]> git.openstreetmap.org Git - rails.git/blobdiff - vendor/assets/iD/iD.js
Update to iD v1.6.2
[rails.git] / vendor / assets / iD / iD.js
index 2ecfaf5255d49a26f4206910d7b50f3f84eeea81..e38326bb73d2f44b45e6e578a1a7515fed7be962 100644 (file)
@@ -6100,8 +6100,12 @@ d3.combobox = function() {
                         // on mousedown
                         d3.event.stopPropagation();
                         d3.event.preventDefault();
-                        input.node().focus();
-                        fetch('', render);
+                        if (!shown) {
+                            input.node().focus();
+                            fetch('', render);
+                        } else {
+                            hide();
+                        }
                     });
             });
 
@@ -6553,14 +6557,20 @@ d3.keybinding = function(namespace) {
         // Up Arrow Key, or ↓
         '↓': 40, down: 40, 'arrow-down': 40,
         // odities, printing characters that come out wrong:
+        // Firefox Equals
+        'ffequals': 61,
         // Num-Multiply, or *
         '*': 106, star: 106, asterisk: 106, multiply: 106,
         // Num-Plus or +
         '+': 107, 'plus': 107,
         // Num-Subtract, or -
         '-': 109, subtract: 109,
+        // Firefox Minus
+        'ffplus': 171,
+        // Firefox Minus
+        'ffminus': 173,
         // Semicolon
-        ';': 186, semicolon:186,
+        ';': 186, semicolon: 186,
         // = or equals
         '=': 187, 'equals': 187,
         // Comma, or ,
@@ -7050,7 +7060,7 @@ var JXON = new (function () {
 /**
  * @license
  * Lo-Dash 2.3.0 (Custom Build) <http://lodash.com/>
- * Build: `lodash --debug --output js/lib/lodash.js include="any,assign,bind,clone,compact,contains,debounce,difference,each,every,extend,filter,find,first,forEach,groupBy,indexOf,intersection,isEmpty,isEqual,isFunction,keys,last,map,omit,pairs,pluck,reject,some,throttle,union,uniq,unique,values,without,flatten,value,chain,cloneDeep,merge,pick" exports="global,node"`
+ * Build: `lodash --debug --output js/lib/lodash.js include="any,assign,bind,clone,compact,contains,debounce,difference,each,every,extend,filter,find,first,forEach,groupBy,indexOf,intersection,isEmpty,isEqual,isFunction,keys,last,map,omit,pairs,pluck,reject,some,throttle,union,uniq,unique,values,without,flatten,value,chain,cloneDeep,merge,pick,reduce" exports="global,node"`
  * Copyright 2012-2013 The Dojo Foundation <http://dojofoundation.org/>
  * Based on Underscore.js 1.5.2 <http://underscorejs.org/LICENSE>
  * Copyright 2009-2013 Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editors
@@ -9833,6 +9843,60 @@ var JXON = new (function () {
    */
   var pluck = map;
 
+  /**
+   * Reduces a collection to a value which is the accumulated result of running
+   * each element in the collection through the callback, where each successive
+   * callback execution consumes the return value of the previous execution. If
+   * `accumulator` is not provided the first element of the collection will be
+   * used as the initial `accumulator` value. The callback is bound to `thisArg`
+   * and invoked with four arguments; (accumulator, value, index|key, collection).
+   *
+   * @static
+   * @memberOf _
+   * @alias foldl, inject
+   * @category Collections
+   * @param {Array|Object|string} collection The collection to iterate over.
+   * @param {Function} [callback=identity] The function called per iteration.
+   * @param {*} [accumulator] Initial value of the accumulator.
+   * @param {*} [thisArg] The `this` binding of `callback`.
+   * @returns {*} Returns the accumulated value.
+   * @example
+   *
+   * var sum = _.reduce([1, 2, 3], function(sum, num) {
+   *   return sum + num;
+   * });
+   * // => 6
+   *
+   * var mapped = _.reduce({ 'a': 1, 'b': 2, 'c': 3 }, function(result, num, key) {
+   *   result[key] = num * 3;
+   *   return result;
+   * }, {});
+   * // => { 'a': 3, 'b': 6, 'c': 9 }
+   */
+  function reduce(collection, callback, accumulator, thisArg) {
+    var noaccum = arguments.length < 3;
+    callback = lodash.createCallback(callback, thisArg, 4);
+
+    if (isArray(collection)) {
+      var index = -1,
+          length = collection.length;
+
+      if (noaccum) {
+        accumulator = collection[++index];
+      }
+      while (++index < length) {
+        accumulator = callback(accumulator, collection[index], index, collection);
+      }
+    } else {
+      baseEach(collection, function(value, index, collection) {
+        accumulator = noaccum
+          ? (noaccum = false, value)
+          : callback(accumulator, value, index, collection)
+      });
+    }
+    return accumulator;
+  }
+
   /**
    * The opposite of `_.filter` this method returns the elements of a
    * collection that the callback does **not** return truey for.
@@ -10970,6 +11034,7 @@ var JXON = new (function () {
   lodash.isString = isString;
   lodash.mixin = mixin;
   lodash.noop = noop;
+  lodash.reduce = reduce;
   lodash.some = some;
   lodash.sortedIndex = sortedIndex;
 
@@ -10978,7 +11043,9 @@ var JXON = new (function () {
   lodash.any = some;
   lodash.detect = find;
   lodash.findWhere = find;
+  lodash.foldl = reduce;
   lodash.include = contains;
+  lodash.inject = reduce;
 
   forOwn(lodash, function(func, methodName) {
     if (!lodash.prototype[methodName]) {
@@ -14127,7 +14194,7 @@ module.exports = function forEach (obj, fn, ctx) {
 function rbush(maxEntries, format) {
 
     // jshint newcap: false, validthis: true
-    if (!(this instanceof rbush)) { return new rbush(maxEntries, format); }
+    if (!(this instanceof rbush)) return new rbush(maxEntries, format);
 
     // max entries in a node is 9 by default; min node fill is 40% for best performance
     this._maxEntries = Math.max(4, maxEntries || 9);
@@ -14149,32 +14216,26 @@ rbush.prototype = {
     search: function (bbox) {
 
         var node = this.data,
-            result = [];
+            result = [],
+            toBBox = this.toBBox;
 
-        if (!this._intersects(bbox, node.bbox)) { return result; }
+        if (!intersects(bbox, node.bbox)) return result;
 
         var nodesToSearch = [],
             i, len, child, childBBox;
 
         while (node) {
             for (i = 0, len = node.children.length; i < len; i++) {
-                child = node.children[i];
-                childBBox = node.leaf ? this.toBBox(child) : child.bbox;
-
-                if (this._intersects(bbox, childBBox)) {
 
-                    if (node.leaf) {
-                        result.push(child);
-
-                    } else if (this._contains(bbox, childBBox)) {
-                        this._all(child, result);
+                child = node.children[i];
+                childBBox = node.leaf ? toBBox(child) : child.bbox;
 
-                    } else {
-                        nodesToSearch.push(child);
-                    }
+                if (intersects(bbox, childBBox)) {
+                    if (node.leaf) result.push(child);
+                    else if (contains(bbox, childBBox)) this._all(child, result);
+                    else nodesToSearch.push(child);
                 }
             }
-
             node = nodesToSearch.pop();
         }
 
@@ -14182,7 +14243,7 @@ rbush.prototype = {
     },
 
     load: function (data) {
-        if (!(data && data.length)) { return this; }
+        if (!(data && data.length)) return this;
 
         if (data.length < this._minEntries) {
             for (var i = 0, len = data.length; i < len; i++) {
@@ -14192,7 +14253,7 @@ rbush.prototype = {
         }
 
         // recursively build the tree with the given data from stratch using OMT algorithm
-        var node = this._build(data.slice(), 0);
+        var node = this._build(data.slice(), 0, data.length - 1, 0);
 
         if (!this.data.children.length) {
             // save as is if tree is empty
@@ -14218,24 +14279,22 @@ rbush.prototype = {
     },
 
     insert: function (item) {
-        if (item) {
-            this._insert(item, this.data.height - 1);
-        }
+        if (item) this._insert(item, this.data.height - 1);
         return this;
     },
 
     clear: function () {
         this.data = {
             children: [],
-            leaf: true,
-            bbox: this._empty(),
-            height: 1
+            height: 1,
+            bbox: empty(),
+            leaf: true
         };
         return this;
     },
 
     remove: function (item) {
-        if (!item) { return this; }
+        if (!item) return this;
 
         var node = this.data,
             bbox = this.toBBox(item),
@@ -14265,7 +14324,7 @@ rbush.prototype = {
                 }
             }
 
-            if (!goingUp && !node.leaf && this._intersects(bbox, node.bbox)) { // go down
+            if (!goingUp && !node.leaf && contains(node.bbox, bbox)) { // go down
                 path.push(node);
                 indexes.push(i);
                 i = 0;
@@ -14277,9 +14336,7 @@ rbush.prototype = {
                 node = parent.children[i];
                 goingUp = false;
 
-            } else { // nothing found
-                node = null;
-            }
+            } else node = null; // nothing found
         }
 
         return this;
@@ -14300,29 +14357,28 @@ rbush.prototype = {
     _all: function (node, result) {
         var nodesToSearch = [];
         while (node) {
-            if (node.leaf) {
-                result.push.apply(result, node.children);
-            } else {
-                nodesToSearch.push.apply(nodesToSearch, node.children);
-            }
+            if (node.leaf) result.push.apply(result, node.children);
+            else nodesToSearch.push.apply(nodesToSearch, node.children);
+
             node = nodesToSearch.pop();
         }
         return result;
     },
 
-    _build: function (items, level, height) {
+    _build: function (items, left, right, level, height) {
 
-        var N = items.length,
+        var N = right - left + 1,
             M = this._maxEntries,
             node;
 
         if (N <= M) {
             node = {
-                children: items,
-                leaf: true,
-                height: 1
+                children: items.slice(left, right + 1),
+                height: 1,
+                bbox: null,
+                leaf: true
             };
-            this._calcBBox(node);
+            calcBBox(node, this.toBBox);
             return node;
         }
 
@@ -14332,34 +14388,37 @@ rbush.prototype = {
 
             // target number of root entries to maximize storage utilization
             M = Math.ceil(N / Math.pow(M, height - 1));
-
-            items.sort(this.compareMinX);
         }
 
         // TODO eliminate recursion?
 
         node = {
             children: [],
-            height: height
+            height: height,
+            bbox: null
         };
 
-        var N1 = Math.ceil(N / M) * Math.ceil(Math.sqrt(M)),
-            N2 = Math.ceil(N / M),
-            compare = level % 2 === 1 ? this.compareMinX : this.compareMinY,
-            i, j, slice, sliceLen, childNode;
+        var N2 = Math.ceil(N / M),
+            N1 = N2 * Math.ceil(Math.sqrt(M)),
+            i, j, right2, childNode;
 
         // split the items into M mostly square tiles
-        for (i = 0; i < N; i += N1) {
-            slice = items.slice(i, i + N1).sort(compare);
+        for (i = left; i <= right; i += N1) {
+
+            if (i + N1 <= right) partitionSort(items, i, right, i + N1, this.compareMinX);
+            right2 = Math.min(i + N1 - 1, right);
+
+            for (j = i; j <= right2; j += N2) {
+
+                if (j + N2 <= right2) partitionSort(items, j, right2, j + N2, this.compareMinY);
 
-            for (j = 0, sliceLen = slice.length; j < sliceLen; j += N2) {
                 // pack each entry recursively
-                childNode = this._build(slice.slice(j, j + N2), level + 1, height - 1);
+                childNode = this._build(items, j, Math.min(j + N2 - 1, right2), level + 1, height - 1);
                 node.children.push(childNode);
             }
         }
 
-        this._calcBBox(node);
+        calcBBox(node, this.toBBox);
 
         return node;
     },
@@ -14371,14 +14430,14 @@ rbush.prototype = {
         while (true) {
             path.push(node);
 
-            if (node.leaf || path.length - 1 === level) { break; }
+            if (node.leaf || path.length - 1 === level) break;
 
             minArea = minEnlargement = Infinity;
 
             for (i = 0, len = node.children.length; i < len; i++) {
                 child = node.children[i];
-                area = this._area(child.bbox);
-                enlargement = this._enlargedArea(bbox, child.bbox) - area;
+                area = bboxArea(child.bbox);
+                enlargement = enlargedArea(bbox, child.bbox) - area;
 
                 // choose entry with the least area enlargement
                 if (enlargement < minEnlargement) {
@@ -14401,28 +14460,26 @@ rbush.prototype = {
         return node;
     },
 
-    _insert: function (item, level, isNode, root) {
+    _insert: function (item, level, isNode) {
 
-        var bbox = isNode ? item.bbox : this.toBBox(item),
+        var toBBox = this.toBBox,
+            bbox = isNode ? item.bbox : toBBox(item),
             insertPath = [];
 
         // find the best node for accommodating the item, saving all nodes along the path too
-        var node = this._chooseSubtree(bbox, root || this.data, level, insertPath),
-            splitOccured;
+        var node = this._chooseSubtree(bbox, this.data, level, insertPath);
 
         // put the item into the node
         node.children.push(item);
-        this._extend(node.bbox, bbox);
+        extend(node.bbox, bbox);
 
         // split on node overflow; propagate upwards if necessary
-        do {
-            splitOccured = false;
+        while (level >= 0) {
             if (insertPath[level].children.length > this._maxEntries) {
                 this._split(insertPath, level);
-                splitOccured = true;
                 level--;
-            }
-        } while (level >= 0 && splitOccured);
+            } else break;
+        }
 
         // adjust bboxes along the insertion path
         this._adjustParentBBoxes(bbox, insertPath, level);
@@ -14442,26 +14499,22 @@ rbush.prototype = {
             height: node.height
         };
 
-        if (node.leaf) {
-            newNode.leaf = true;
-        }
+        if (node.leaf) newNode.leaf = true;
 
-        this._calcBBox(node);
-        this._calcBBox(newNode);
+        calcBBox(node, this.toBBox);
+        calcBBox(newNode, this.toBBox);
 
-        if (level) {
-            insertPath[level - 1].children.push(newNode);
-        } else {
-            this._splitRoot(node, newNode);
-        }
+        if (level) insertPath[level - 1].children.push(newNode);
+        else this._splitRoot(node, newNode);
     },
 
     _splitRoot: function (node, newNode) {
         // split root node
-        this.data = {};
-        this.data.children = [node, newNode];
-        this.data.height = node.height + 1;
-        this._calcBBox(this.data);
+        this.data = {
+            children: [node, newNode],
+            height: node.height + 1
+        };
+        calcBBox(this.data, this.toBBox);
     },
 
     _chooseSplitIndex: function (node, m, M) {
@@ -14471,11 +14524,11 @@ rbush.prototype = {
         minOverlap = minArea = Infinity;
 
         for (i = m; i <= M - m; i++) {
-            bbox1 = this._distBBox(node, 0, i);
-            bbox2 = this._distBBox(node, i, M);
+            bbox1 = distBBox(node, 0, i, this.toBBox);
+            bbox2 = distBBox(node, i, M, this.toBBox);
 
-            overlap = this._intersectionArea(bbox1, bbox2);
-            area = this._area(bbox1) + this._area(bbox2);
+            overlap = intersectionArea(bbox1, bbox2);
+            area = bboxArea(bbox1) + bboxArea(bbox2);
 
             // choose distribution with minimum overlap
             if (overlap < minOverlap) {
@@ -14499,17 +14552,14 @@ rbush.prototype = {
     // sorts node children by the best axis for split
     _chooseSplitAxis: function (node, m, M) {
 
-        var compareMinX = node.leaf ? this.compareMinX : this._compareNodeMinX,
-            compareMinY = node.leaf ? this.compareMinY : this._compareNodeMinY,
+        var compareMinX = node.leaf ? this.compareMinX : compareNodeMinX,
+            compareMinY = node.leaf ? this.compareMinY : compareNodeMinY,
             xMargin = this._allDistMargin(node, m, M, compareMinX),
             yMargin = this._allDistMargin(node, m, M, compareMinY);
 
         // if total distributions margin value is minimal for x, sort by minX,
         // otherwise it's already sorted by minY
-
-        if (xMargin < yMargin) {
-            node.children.sort(compareMinX);
-        }
+        if (xMargin < yMargin) node.children.sort(compareMinX);
     },
 
     // total margin of all possible split distributions where each node is at least m full
@@ -14517,116 +14567,48 @@ rbush.prototype = {
 
         node.children.sort(compare);
 
-        var leftBBox = this._distBBox(node, 0, m),
-            rightBBox = this._distBBox(node, M - m, M),
-            margin = this._margin(leftBBox) + this._margin(rightBBox),
+        var toBBox = this.toBBox,
+            leftBBox = distBBox(node, 0, m, toBBox),
+            rightBBox = distBBox(node, M - m, M, toBBox),
+            margin = bboxMargin(leftBBox) + bboxMargin(rightBBox),
             i, child;
 
         for (i = m; i < M - m; i++) {
             child = node.children[i];
-            this._extend(leftBBox, node.leaf ? this.toBBox(child) : child.bbox);
-            margin += this._margin(leftBBox);
+            extend(leftBBox, node.leaf ? toBBox(child) : child.bbox);
+            margin += bboxMargin(leftBBox);
         }
 
-        for (i = M - m - 1; i >= 0; i--) {
+        for (i = M - m - 1; i >= m; i--) {
             child = node.children[i];
-            this._extend(rightBBox, node.leaf ? this.toBBox(child) : child.bbox);
-            margin += this._margin(rightBBox);
+            extend(rightBBox, node.leaf ? toBBox(child) : child.bbox);
+            margin += bboxMargin(rightBBox);
         }
 
         return margin;
     },
 
-    // min bounding rectangle of node children from k to p-1
-    _distBBox: function (node, k, p) {
-        var bbox = this._empty();
-
-        for (var i = k, child; i < p; i++) {
-            child = node.children[i];
-            this._extend(bbox, node.leaf ? this.toBBox(child) : child.bbox);
-        }
-
-        return bbox;
-    },
-
-    // calculate node's bbox from bboxes of its children
-    _calcBBox: function (node) {
-        node.bbox = this._empty();
-
-        for (var i = 0, len = node.children.length, child; i < len; i++) {
-            child = node.children[i];
-            this._extend(node.bbox, node.leaf ? this.toBBox(child) : child.bbox);
-        }
-    },
-
     _adjustParentBBoxes: function (bbox, path, level) {
         // adjust bboxes along the given tree path
         for (var i = level; i >= 0; i--) {
-            this._extend(path[i].bbox, bbox);
+            extend(path[i].bbox, bbox);
         }
     },
 
     _condense: function (path) {
         // go through the path, removing empty nodes and updating bboxes
-        for (var i = path.length - 1, parent; i >= 0; i--) {
+        for (var i = path.length - 1, siblings; i >= 0; i--) {
             if (path[i].children.length === 0) {
                 if (i > 0) {
-                    parent = path[i - 1].children;
-                    parent.splice(parent.indexOf(path[i]), 1);
-                } else {
-                    this.clear();
-                }
-            } else {
-                this._calcBBox(path[i]);
-            }
-        }
-    },
+                    siblings = path[i - 1].children;
+                    siblings.splice(siblings.indexOf(path[i]), 1);
 
-    _contains: function(a, b) {
-        return a[0] <= b[0] &&
-               a[1] <= b[1] &&
-               b[2] <= a[2] &&
-               b[3] <= a[3];
-    },
-
-    _intersects: function (a, b) {
-        return b[0] <= a[2] &&
-               b[1] <= a[3] &&
-               b[2] >= a[0] &&
-               b[3] >= a[1];
-    },
-
-    _extend: function (a, b) {
-        a[0] = Math.min(a[0], b[0]);
-        a[1] = Math.min(a[1], b[1]);
-        a[2] = Math.max(a[2], b[2]);
-        a[3] = Math.max(a[3], b[3]);
-        return a;
-    },
-
-    _area:   function (a) { return (a[2] - a[0]) * (a[3] - a[1]); },
-    _margin: function (a) { return (a[2] - a[0]) + (a[3] - a[1]); },
-
-    _enlargedArea: function (a, b) {
-        return (Math.max(b[2], a[2]) - Math.min(b[0], a[0])) *
-               (Math.max(b[3], a[3]) - Math.min(b[1], a[1]));
-    },
+                } else this.clear();
 
-    _intersectionArea: function (a, b) {
-        var minX = Math.max(a[0], b[0]),
-            minY = Math.max(a[1], b[1]),
-            maxX = Math.min(a[2], b[2]),
-            maxY = Math.min(a[3], b[3]);
-
-        return Math.max(0, maxX - minX) *
-               Math.max(0, maxY - minY);
+            } else calcBBox(path[i], this.toBBox);
+        }
     },
 
-    _empty: function () { return [Infinity, Infinity, -Infinity, -Infinity]; },
-
-    _compareNodeMinX: function (a, b) { return a.bbox[0] - b.bbox[0]; },
-    _compareNodeMinY: function (a, b) { return a.bbox[1] - b.bbox[1]; },
-
     _initFormat: function (format) {
         // data format (minX, minY, maxX, maxY accessors)
 
@@ -14645,20 +14627,188 @@ rbush.prototype = {
     }
 };
 
-if (typeof define === 'function' && define.amd) {
-    define(function() {
-        return rbush;
-    });
-} else if (typeof module !== 'undefined') {
-    module.exports = rbush;
-} else if (typeof self !== 'undefined') {
-    self.rbush = rbush;
-} else {
-    window.rbush = rbush;
+// calculate node's bbox from bboxes of its children
+function calcBBox(node, toBBox) {
+    node.bbox = distBBox(node, 0, node.children.length, toBBox);
 }
 
-})();
-toGeoJSON = (function() {
+// min bounding rectangle of node children from k to p-1
+function distBBox(node, k, p, toBBox) {
+    var bbox = empty();
+
+    for (var i = k, child; i < p; i++) {
+        child = node.children[i];
+        extend(bbox, node.leaf ? toBBox(child) : child.bbox);
+    }
+
+    return bbox;
+}
+
+
+function empty() { return [Infinity, Infinity, -Infinity, -Infinity]; }
+
+function extend(a, b) {
+    a[0] = Math.min(a[0], b[0]);
+    a[1] = Math.min(a[1], b[1]);
+    a[2] = Math.max(a[2], b[2]);
+    a[3] = Math.max(a[3], b[3]);
+    return a;
+}
+
+function compareNodeMinX(a, b) { return a.bbox[0] - b.bbox[0]; }
+function compareNodeMinY(a, b) { return a.bbox[1] - b.bbox[1]; }
+
+function bboxArea(a)   { return (a[2] - a[0]) * (a[3] - a[1]); }
+function bboxMargin(a) { return (a[2] - a[0]) + (a[3] - a[1]); }
+
+function enlargedArea(a, b) {
+    return (Math.max(b[2], a[2]) - Math.min(b[0], a[0])) *
+           (Math.max(b[3], a[3]) - Math.min(b[1], a[1]));
+}
+
+function intersectionArea (a, b) {
+    var minX = Math.max(a[0], b[0]),
+        minY = Math.max(a[1], b[1]),
+        maxX = Math.min(a[2], b[2]),
+        maxY = Math.min(a[3], b[3]);
+
+    return Math.max(0, maxX - minX) *
+           Math.max(0, maxY - minY);
+}
+
+function contains(a, b) {
+    return a[0] <= b[0] &&
+           a[1] <= b[1] &&
+           b[2] <= a[2] &&
+           b[3] <= a[3];
+}
+
+function intersects (a, b) {
+    return b[0] <= a[2] &&
+           b[1] <= a[3] &&
+           b[2] >= a[0] &&
+           b[3] >= a[1];
+}
+
+
+function partitionSort(arr, left, right, k, compare) {
+    var pivot;
+
+    while (true) {
+        pivot = Math.floor((left + right) / 2);
+        pivot = partition(arr, left, right, pivot, compare);
+
+        if (k === pivot) break;
+        else if (k < pivot) right = pivot - 1;
+        else left = pivot + 1;
+    }
+
+    partition(arr, left, right, k, compare);
+}
+
+function partition(arr, left, right, pivot, compare) {
+    var k = left,
+        value = arr[pivot];
+
+    swap(arr, pivot, right);
+
+    for (var i = left; i < right; i++) {
+        if (compare(arr[i], value) < 0) {
+            swap(arr, k, i);
+            k++;
+        }
+    }
+    swap(arr, right, k);
+
+    return k;
+}
+
+function swap(arr, i, j) {
+    var tmp = arr[i];
+    arr[i] = arr[j];
+    arr[j] = tmp;
+}
+
+
+// export as AMD/CommonJS module or global variable
+if (typeof define === 'function' && define.amd) define(function() { return rbush; });
+else if (typeof module !== 'undefined') module.exports = rbush;
+else if (typeof self !== 'undefined') self.rbush = rbush;
+else window.rbush = rbush;
+
+})();(function(e){if("function"==typeof bootstrap)bootstrap("sexagesimal",e);else if("object"==typeof exports)module.exports=e();else if("function"==typeof define&&define.amd)define(e);else if("undefined"!=typeof ses){if(!ses.ok())return;ses.makeSexagesimal=e}else"undefined"!=typeof window?window.sexagesimal=e():global.sexagesimal=e()})(function(){var define,ses,bootstrap,module,exports;
+return (function e(t,n,r){function s(o,u){if(!n[o]){if(!t[o]){var a=typeof require=="function"&&require;if(!u&&a)return a(o,!0);if(i)return i(o,!0);throw new Error("Cannot find module '"+o+"'")}var f=n[o]={exports:{}};t[o][0].call(f.exports,function(e){var n=t[o][1][e];return s(n?n:e)},f,f.exports,e,t,n,r)}return n[o].exports}var i=typeof require=="function"&&require;for(var o=0;o<r.length;o++)s(r[o]);return s})({1:[function(require,module,exports){
+module.exports = element;
+module.exports.pair = pair;
+module.exports.format = format;
+module.exports.formatPair = formatPair;
+
+function element(x, dims) {
+    return search(x, dims).val;
+}
+
+function formatPair(x) {
+    return format(x.lat, 'lat') + ' ' + format(x.lon, 'lon');
+}
+
+// Is 0 North or South?
+function format(x, dim) {
+    var dirs = {
+            lat: ['N', 'S'],
+            lon: ['E', 'W']
+        }[dim] || '',
+        dir = dirs[x >= 0 ? 0 : 1],
+        abs = Math.abs(x),
+        whole = Math.floor(abs),
+        fraction = abs - whole,
+        fractionMinutes = fraction * 60,
+        minutes = Math.floor(fractionMinutes),
+        seconds = Math.floor((fractionMinutes - minutes) * 60);
+
+    return whole + '° ' +
+        (minutes ? minutes + "' " : '') +
+        (seconds ? seconds + '" ' : '') + dir;
+}
+
+function search(x, dims, r) {
+    if (!dims) dims = 'NSEW';
+    if (typeof x !== 'string') return { val: null, regex: r };
+    r = r || /[\s\,]*([\-|\—|\―]?[0-9.]+)°? *(?:([0-9.]+)['’′‘] *)?(?:([0-9.]+)(?:''|"|”|″) *)?([NSEW])?/gi;
+    var m = r.exec(x);
+    if (!m) return { val: null, regex: r };
+    else if (m[4] && dims.indexOf(m[4]) === -1) return { val: null, regex: r };
+    else return {
+        val: (((m[1]) ? parseFloat(m[1]) : 0) +
+            ((m[2] ? parseFloat(m[2]) / 60 : 0)) +
+            ((m[3] ? parseFloat(m[3]) / 3600 : 0))) *
+            ((m[4] && m[4] === 'S' || m[4] === 'W') ? -1 : 1),
+        regex: r,
+        raw: m[0],
+        dim: m[4]
+    };
+}
+
+function pair(x, dims) {
+    x = x.trim();
+    var one = search(x, dims);
+    if (one.val === null) return null;
+    var two = search(x, dims, one.regex);
+    if (two.val === null) return null;
+    // null if one/two are not contiguous.
+    if (one.raw + two.raw !== x) return null;
+    if (one.dim) return swapdim(one.val, two.val, one.dim);
+    else return [one.val, two.val];
+}
+
+function swapdim(a, b, dim) {
+    if (dim == 'N' || dim == 'S') return [a, b];
+    if (dim == 'W' || dim == 'E') return [b, a];
+}
+
+},{}]},{},[1])
+(1)
+});
+;toGeoJSON = (function() {
     'use strict';
 
     var removeSpace = (/\s*/g),
@@ -16278,7 +16428,7 @@ window.iD = function () {
     return d3.rebind(context, dispatch, 'on');
 };
 
-iD.version = '1.4.0';
+iD.version = '1.6.2';
 
 (function() {
     var detected = {};
@@ -16312,6 +16462,44 @@ iD.version = '1.4.0';
 
     iD.detect = function() { return detected; };
 })();
+iD.countryCode  = function() {
+    var countryCode = {},
+        endpoint = 'https://nominatim.openstreetmap.org/reverse?';
+
+    if (!iD.countryCode.cache) {
+        iD.countryCode.cache = rbush();
+    }
+
+    var cache = iD.countryCode.cache;
+
+    countryCode.search = function(location, callback) {
+        var countryCodes = cache.search([location[0], location[1], location[0], location[1]]);
+
+        if (countryCodes.length > 0)
+            return callback(null, countryCodes[0][4]);
+
+        d3.json(endpoint +
+            iD.util.qsString({
+                format: 'json',
+                addressdetails: 1,
+                lat: location[1],
+                lon: location[0]
+            }), function(err, result) {
+                if (err)
+                    return callback(err);
+                else if (result && result.error)
+                    return callback(result.error);
+
+                var extent = iD.geo.Extent(location).padByMeters(1000);
+
+                cache.insert([extent[0][0], extent[0][1], extent[1][0], extent[1][1], result.address.country_code]);
+
+                callback(null, result.address.country_code);
+            });
+    };
+
+    return countryCode;
+};
 iD.taginfo = function() {
     var taginfo = {},
         endpoint = 'https://taginfo.openstreetmap.org/api/4/',
@@ -16400,7 +16588,7 @@ iD.taginfo = function() {
 
     taginfo.keys = function(parameters, callback) {
         var debounce = parameters.debounce;
-        parameters = clean(shorten(setSort(setFilter(parameters))));
+        parameters = clean(shorten(setSort(parameters)));
         request(endpoint + 'keys/all?' +
             iD.util.qsString(_.extend({
                 rp: 10,
@@ -16552,7 +16740,11 @@ iD.util.stringQs = function(str) {
 };
 
 iD.util.qsString = function(obj, noencode) {
-    function softEncode(s) { return s.replace('&', '%26'); }
+    function softEncode(s) {
+      // encode everything except special characters used in certain hash parameters:
+      // "/" in map states, ":", ",", {" and "}" in background
+      return encodeURIComponent(s).replace(/(%2F|%3A|%2C|%7B|%7D)/g, decodeURIComponent);
+    }
     return Object.keys(obj).sort().map(function(key) {
         return encodeURIComponent(key) + '=' + (
             noencode ? softEncode(obj[key]) : encodeURIComponent(obj[key]));
@@ -16761,11 +16953,38 @@ iD.geo.euclideanDistance = function(a, b) {
     var x = a[0] - b[0], y = a[1] - b[1];
     return Math.sqrt((x * x) + (y * y));
 };
+
+// using WGS84 polar radius (6356752.314245179 m)
+// const = 2 * PI * r / 360
+iD.geo.latToMeters = function(dLat) {
+    return dLat * 110946.257617;
+};
+
+// using WGS84 equatorial radius (6378137.0 m)
+// const = 2 * PI * r / 360
+iD.geo.lonToMeters = function(dLon, atLat) {
+    return Math.abs(atLat) >= 90 ? 0 :
+        dLon * 111319.490793 * Math.abs(Math.cos(atLat * (Math.PI/180)));
+};
+
+// using WGS84 polar radius (6356752.314245179 m)
+// const = 2 * PI * r / 360
+iD.geo.metersToLat = function(m) {
+    return m / 110946.257617;
+};
+
+// using WGS84 equatorial radius (6378137.0 m)
+// const = 2 * PI * r / 360
+iD.geo.metersToLon = function(m, atLat) {
+    return Math.abs(atLat) >= 90 ? 0 :
+        m / 111319.490793 / Math.abs(Math.cos(atLat * (Math.PI/180)));
+};
+
 // Equirectangular approximation of spherical distances on Earth
 iD.geo.sphericalDistance = function(a, b) {
-    var x = Math.cos(a[1]*Math.PI/180) * (a[0] - b[0]),
-        y = a[1] - b[1];
-    return 6.3710E6 * Math.sqrt((x * x) + (y * y)) * Math.PI/180;
+    var x = iD.geo.lonToMeters(a[0] - b[0], (a[1] + b[1]) / 2),
+        y = iD.geo.latToMeters(a[1] - b[1]);
+    return Math.sqrt((x * x) + (y * y));
 };
 
 iD.geo.edgeEqual = function(a, b) {
@@ -16827,6 +17046,39 @@ iD.geo.chooseEdge = function(nodes, point, projection) {
     };
 };
 
+// Return the intersection point of 2 line segments.
+// From https://github.com/pgkelley4/line-segments-intersect
+// This uses the vector cross product approach described below:
+//  http://stackoverflow.com/a/565282/786339
+iD.geo.lineIntersection = function(a, b) {
+    function subtractPoints(point1, point2) {
+        return [point1[0] - point2[0], point1[1] - point2[1]];
+    }
+    function crossProduct(point1, point2) {
+        return point1[0] * point2[1] - point1[1] * point2[0];
+    }
+
+    var p = [a[0][0], a[0][1]],
+        p2 = [a[1][0], a[1][1]],
+        q = [b[0][0], b[0][1]],
+        q2 = [b[1][0], b[1][1]],
+        r = subtractPoints(p2, p),
+        s = subtractPoints(q2, q),
+        uNumerator = crossProduct(subtractPoints(q, p), r),
+        denominator = crossProduct(r, s);
+
+    if (uNumerator && denominator) {
+        var u = uNumerator / denominator,
+            t = crossProduct(subtractPoints(q, p), s) / denominator;
+
+        if ((t >= 0) && (t <= 1) && (u >= 0) && (u <= 1)) {
+            return iD.geo.interp(p, p2, t);
+        }
+    }
+
+    return null;
+};
+
 // Return whether point is contained in polygon.
 //
 // `point` should be a 2-item array of coordinates.
@@ -16860,9 +17112,20 @@ iD.geo.polygonContainsPolygon = function(outer, inner) {
 };
 
 iD.geo.polygonIntersectsPolygon = function(outer, inner) {
+    function testSegments(outer, inner) {
+        for (var i = 0; i < outer.length - 1; i++) {
+            for (var j = 0; j < inner.length - 1; j++) {
+                var a = [ outer[i], outer[i+1] ],
+                    b = [ inner[j], inner[j+1] ];
+                if (iD.geo.lineIntersection(a, b)) return true;
+            }
+        }
+        return false;
+    }
+
     return _.some(inner, function(point) {
         return iD.geo.pointInPolygon(point, outer);
-    });
+    }) || testSegments(outer, inner);
 };
 
 iD.geo.pathLength = function(path) {
@@ -16888,7 +17151,7 @@ iD.geo.Extent = function geoExtent(min, max) {
     }
 };
 
-iD.geo.Extent.prototype = [[], []];
+iD.geo.Extent.prototype = new Array(2);
 
 _.extend(iD.geo.Extent.prototype, {
     extend: function(obj) {
@@ -16899,6 +17162,13 @@ _.extend(iD.geo.Extent.prototype, {
                               Math.max(obj[1][1], this[1][1])]);
     },
 
+    _extend: function(extent) {
+        this[0][0] = Math.min(extent[0][0], this[0][0]);
+        this[0][1] = Math.min(extent[0][1], this[0][1]);
+        this[1][0] = Math.max(extent[1][0], this[1][0]);
+        this[1][1] = Math.max(extent[1][1], this[1][1]);
+    },
+
     area: function() {
         return Math.abs((this[1][0] - this[0][0]) * (this[1][1] - this[0][1]));
     },
@@ -16934,9 +17204,21 @@ _.extend(iD.geo.Extent.prototype, {
                                   Math.min(obj[1][1], this[1][1])]);
     },
 
+    percentContainedIn: function(obj) {
+        if (!(obj instanceof iD.geo.Extent)) obj = new iD.geo.Extent(obj);
+        var a1 = this.intersection(obj).area(),
+            a2 = this.area();
+
+        if (a1 === Infinity || a2 === Infinity || a1 === 0 || a2 === 0) {
+            return 0;
+        } else {
+            return a1 / a2;
+        }
+    },
+
     padByMeters: function(meters) {
-        var dLat = meters / 111200,
-            dLon = meters / 111200 / Math.abs(Math.cos(this.center()[1]));
+        var dLat = iD.geo.metersToLat(meters),
+            dLon = iD.geo.metersToLon(meters, this.center()[1]);
         return iD.geo.Extent(
                 [this[0][0] - dLon, this[0][1] - dLat],
                 [this[1][0] + dLon, this[1][1] + dLat]);
@@ -16945,6 +17227,7 @@ _.extend(iD.geo.Extent.prototype, {
     toParam: function() {
         return [this[0][0], this[0][1], this[1][0], this[1][1]].join(',');
     }
+
 });
 iD.geo.Turn = function(turn) {
     if (!(this instanceof iD.geo.Turn))
@@ -17066,25 +17349,35 @@ iD.geo.Intersection = function(graph, vertexId) {
     return intersection;
 };
 
-iD.geo.inferRestriction = function(from, via, to, projection) {
-    var angle = iD.geo.angle(via, from, projection) -
-                iD.geo.angle(via, to, projection);
+
+iD.geo.inferRestriction = function(graph, from, via, to, projection) {
+    var fromWay = graph.entity(from.way),
+        fromNode = graph.entity(from.node),
+        toWay = graph.entity(to.way),
+        toNode = graph.entity(to.node),
+        viaNode = graph.entity(via.node),
+        fromOneWay = (fromWay.tags.oneway === 'yes' && fromWay.last() === via.node) ||
+            (fromWay.tags.oneway === '-1' && fromWay.first() === via.node),
+        toOneWay = (toWay.tags.oneway === 'yes' && toWay.first() === via.node) ||
+            (toWay.tags.oneway === '-1' && toWay.last() === via.node),
+        angle = iD.geo.angle(viaNode, fromNode, projection) -
+                iD.geo.angle(viaNode, toNode, projection);
 
     angle = angle * 180 / Math.PI;
 
     while (angle < 0)
         angle += 360;
 
-    if (angle < 23)
+    if (fromNode === toNode)
+        return 'no_u_turn';
+    if ((angle < 23 || angle > 336) && fromOneWay && toOneWay)
         return 'no_u_turn';
     if (angle < 158)
         return 'no_right_turn';
-    if (angle < 202)
-        return 'no_straight_on';
-    if (angle < 336)
+    if (angle > 202)
         return 'no_left_turn';
 
-    return 'no_u_turn';
+    return 'no_straight_on';
 };
 // For fixing up rendering of multipolygons with tags on the outer member.
 // https://github.com/openstreetmap/iD/issues/613
@@ -17585,7 +17878,15 @@ iD.actions.Connect = function(nodeIds) {
 };
 iD.actions.DeleteMember = function(relationId, memberIndex) {
     return function(graph) {
-        return graph.replace(graph.entity(relationId).removeMember(memberIndex));
+        var relation = graph.entity(relationId)
+            .removeMember(memberIndex);
+
+        graph = graph.replace(relation);
+
+        if (relation.isDegenerate())
+            graph = iD.actions.DeleteRelation(relation.id)(graph);
+
+        return graph;
     };
 };
 iD.actions.DeleteMultiple = function(ids) {
@@ -18328,14 +18629,8 @@ iD.actions.Orthogonalize = function(wayId, projection) {
 // `from.node` in `from.way` toward `to.node` in `to.way` via `via.node`.
 // (The action does not check that these entities form a valid intersection.)
 //
-// If `restriction` is not provided, it is automatically determined by the
-// angle of the turn:
-//
-//    0-23  degrees: no_u_turn
-//   23-158 degrees: no_right_turn
-//  158-202 degrees: no_straight_on
-//  202-326 degrees: no_left_turn
-//  336-360 degrees: no_u_turn
+// If `restriction` is not provided, it is automatically determined by
+// iD.geo.inferRestriction.
 //
 // If necessary, the `from` and `to` ways are split. In these cases, `from.node`
 // and `to.node` are used to determine which portion of the split ways become
@@ -18391,9 +18686,10 @@ iD.actions.RestrictTurn = function(turn, projection, restrictionId) {
                 type: 'restriction',
                 restriction: turn.restriction ||
                     iD.geo.inferRestriction(
-                        graph.entity(turn.from.node),
-                        via,
-                        graph.entity(turn.to.node),
+                        graph,
+                        turn.from,
+                        turn.via,
+                        turn.to,
                         projection)
             },
             members: [
@@ -18931,6 +19227,9 @@ iD.behavior.drag = function() {
             var p = point(),
                 dx = p[0] - origin_[0],
                 dy = p[1] - origin_[1];
+            
+            if (dx === 0 && dy === 0)
+                return;
 
             if (!started) {
                 started = true;
@@ -19130,7 +19429,7 @@ iD.behavior.Draw = function(context) {
         context.install(hover);
         context.install(edit);
 
-        if (!iD.behavior.Draw.usedTails[tail.text()]) {
+        if (!context.inIntro() && !iD.behavior.Draw.usedTails[tail.text()]) {
             context.install(tail);
         }
 
@@ -19154,7 +19453,7 @@ iD.behavior.Draw = function(context) {
         context.uninstall(hover);
         context.uninstall(edit);
 
-        if (!iD.behavior.Draw.usedTails[tail.text()]) {
+        if (!context.inIntro() && !iD.behavior.Draw.usedTails[tail.text()]) {
             context.uninstall(tail);
             iD.behavior.Draw.usedTails[tail.text()] = true;
         }
@@ -19407,15 +19706,29 @@ iD.behavior.Hash = function(context) {
     };
 
     var formatter = function(map) {
-        var center = map.center(),
+        var mode = context.mode(),
+            center = map.center(),
             zoom = map.zoom(),
-            precision = Math.max(0, Math.ceil(Math.log(zoom) / Math.LN2));
-        var q = iD.util.stringQs(location.hash.substring(1));
-        return '#' + iD.util.qsString(_.assign(q, {
-                map: zoom.toFixed(2) +
-                    '/' + center[0].toFixed(precision) +
-                    '/' + center[1].toFixed(precision)
-            }), true);
+            precision = Math.max(0, Math.ceil(Math.log(zoom) / Math.LN2)),
+            q = _.omit(iD.util.stringQs(location.hash.substring(1)), 'comment'),
+            newParams = {};
+
+        if (mode && mode.id === 'browse') {
+            delete q.id;
+        } else {
+            var selected = context.selectedIDs().filter(function(id) {
+                return !context.entity(id).isNew();
+            });
+            if (selected.length) {
+                newParams.id = selected.join(',');
+            }
+        }
+
+        newParams.map = zoom.toFixed(2) +
+                '/' + center[0].toFixed(precision) +
+                '/' + center[1].toFixed(precision);
+
+        return '#' + iD.util.qsString(_.assign(q, newParams), true);
     };
 
     function update() {
@@ -19423,7 +19736,7 @@ iD.behavior.Hash = function(context) {
         if (s0 !== s1) location.replace(s0 = s1); // don't recenter the map!
     }
 
-    var move = _.throttle(update, 500);
+    var throttledUpdate = _.throttle(update, 500);
 
     function hashchange() {
         if (location.hash === s0) return; // ignore spurious hashchange events
@@ -19434,14 +19747,18 @@ iD.behavior.Hash = function(context) {
 
     function hash() {
         context.map()
-            .on('move.hash', move);
+            .on('move.hash', throttledUpdate);
+
+        context
+            .on('enter.hash', throttledUpdate);
 
         d3.select(window)
             .on('hashchange.hash', hashchange);
 
         if (location.hash) {
             var q = iD.util.stringQs(location.hash.substring(1));
-            if (q.id) context.loadEntity(q.id, !q.map);
+            if (q.id) context.loadEntity(q.id.split(',')[0], !q.map);
+            if (q.comment) context.storage('comment', q.comment);
             hashchange();
             if (q.map) hash.hadHash = true;
         }
@@ -19451,6 +19768,9 @@ iD.behavior.Hash = function(context) {
         context.map()
             .on('move.hash', null);
 
+        context
+            .on('enter.hash', null);
+
         d3.select(window)
             .on('hashchange.hash', null);
 
@@ -19986,8 +20306,7 @@ iD.modes.Browse = function(context) {
         button: 'browse',
         id: 'browse',
         title: t('modes.browse.title'),
-        description: t('modes.browse.description'),
-        key: '1'
+        description: t('modes.browse.description')
     }, sidebar;
 
     var behaviors = [
@@ -20553,7 +20872,7 @@ iD.modes.Save = function(context) {
                     confirm
                         .select('.modal-section.message-text')
                         .append('p')
-                        .text(err.responseText);
+                        .text(err.responseText || t('save.unknown_error_details'));
                 } else {
                     context.flush();
                     success(e, changeset_id);
@@ -20698,17 +21017,6 @@ iD.modes.Select = function(context, selectedIDs) {
             });
         });
 
-        var notNew = selectedIDs.filter(function(id) {
-            return !context.entity(id).isNew();
-        });
-
-        if (notNew.length) {
-            var q = iD.util.stringQs(location.hash.substring(1));
-            location.replace('#' + iD.util.qsString(_.assign(q, {
-                id: notNew.join(',')
-            }), true));
-        }
-
         context.ui().sidebar
             .select(singular() ? singular().id : null, newFeature);
 
@@ -20792,9 +21100,6 @@ iD.modes.Select = function(context, selectedIDs) {
             context.uninstall(behavior);
         });
 
-        var q = iD.util.stringQs(location.hash.substring(1));
-        location.replace('#' + iD.util.qsString(_.omit(q, 'id'), true));
-
         keybinding.off();
 
         context.history()
@@ -20816,6 +21121,8 @@ iD.modes.Select = function(context, selectedIDs) {
 iD.operations = {};
 iD.operations.Circularize = function(selectedIDs, context) {
     var entityId = selectedIDs[0],
+        entity = context.entity(entityId),
+        extent = entity.extent(context.graph()),
         geometry = context.geometry(entityId),
         action = iD.actions.Circularize(entityId, context.projection);
 
@@ -20825,24 +21132,17 @@ iD.operations.Circularize = function(selectedIDs, context) {
     };
 
     operation.available = function() {
-        var entity = context.entity(entityId);
         return selectedIDs.length === 1 &&
             entity.type === 'way' &&
             _.uniq(entity.nodes).length > 1;
     };
 
     operation.disabled = function() {
-        var way = context.entity(entityId),
-            wayExtent = way.extent(context.graph()),
-            mapExtent = context.extent(),
-            intersection = mapExtent.intersection(wayExtent),
-            pctVisible = intersection.area() / wayExtent.area();
-
-        if (pctVisible < 0.8) {
-            return 'too_large';
-        } else {
-            return action.disabled(context.graph());
+        var reason;
+        if (extent.percentContainedIn(context.extent()) < 0.8) {
+            reason = 'too_large';
         }
+        return action.disabled(context.graph()) || reason;
     };
 
     operation.tooltip = function() {
@@ -21070,6 +21370,10 @@ iD.operations.Merge = function(selectedIDs, context) {
     return operation;
 };
 iD.operations.Move = function(selectedIDs, context) {
+    var extent = selectedIDs.reduce(function(extent, id) {
+            return extent.extend(context.entity(id).extent(context.graph()));
+        }, iD.geo.Extent());
+
     var operation = function() {
         context.enter(iD.modes.Move(context, selectedIDs));
     };
@@ -21080,8 +21384,11 @@ iD.operations.Move = function(selectedIDs, context) {
     };
 
     operation.disabled = function() {
-        return iD.actions.Move(selectedIDs)
-            .disabled(context.graph());
+        var reason;
+        if (extent.area() && extent.percentContainedIn(context.extent()) < 0.8) {
+            reason = 'too_large';
+        }
+        return iD.actions.Move(selectedIDs).disabled(context.graph()) || reason;
     };
 
     operation.tooltip = function() {
@@ -21099,16 +21406,17 @@ iD.operations.Move = function(selectedIDs, context) {
 };
 iD.operations.Orthogonalize = function(selectedIDs, context) {
     var entityId = selectedIDs[0],
+        entity = context.entity(entityId),
+        extent = entity.extent(context.graph()),
         geometry = context.geometry(entityId),
         action = iD.actions.Orthogonalize(entityId, context.projection);
 
-    function operation() {
+    var operation = function() {
         var annotation = t('operations.orthogonalize.annotation.' + geometry);
         context.perform(action, annotation);
-    }
+    };
 
     operation.available = function() {
-        var entity = context.entity(entityId);
         return selectedIDs.length === 1 &&
             entity.type === 'way' &&
             entity.isClosed() &&
@@ -21116,17 +21424,11 @@ iD.operations.Orthogonalize = function(selectedIDs, context) {
     };
 
     operation.disabled = function() {
-        var way = context.entity(entityId),
-            wayExtent = way.extent(context.graph()),
-            mapExtent = context.extent(),
-            intersection = mapExtent.intersection(wayExtent),
-            pctVisible = intersection.area() / wayExtent.area();
-
-        if (pctVisible < 0.8) {
-            return 'too_large';
-        } else {
-            return action.disabled(context.graph());
+        var reason;
+        if (extent.percentContainedIn(context.extent()) < 0.8) {
+            reason = 'too_large';
         }
+        return action.disabled(context.graph()) || reason;
     };
 
     operation.tooltip = function() {
@@ -21171,33 +21473,39 @@ iD.operations.Reverse = function(selectedIDs, context) {
     return operation;
 };
 iD.operations.Rotate = function(selectedIDs, context) {
-    var entityId = selectedIDs[0];
+    var entityId = selectedIDs[0],
+        entity = context.entity(entityId),
+        extent = entity.extent(context.graph()),
+        geometry = context.geometry(entityId);
 
     var operation = function() {
         context.enter(iD.modes.RotateWay(context, entityId));
     };
 
     operation.available = function() {
-        var graph = context.graph(),
-            entity = graph.entity(entityId);
-
-        if (selectedIDs.length !== 1 ||
-            entity.type !== 'way')
+        if (selectedIDs.length !== 1 || entity.type !== 'way')
             return false;
-        if (context.geometry(entityId) === 'area')
+        if (geometry === 'area')
             return true;
         if (entity.isClosed() &&
-            graph.parentRelations(entity).some(function(r) { return r.isMultipolygon(); }))
+            context.graph().parentRelations(entity).some(function(r) { return r.isMultipolygon(); }))
             return true;
         return false;
     };
 
     operation.disabled = function() {
-        return false;
+        if (extent.percentContainedIn(context.extent()) < 0.8) {
+            return 'too_large';
+        } else {
+            return false;
+        }
     };
 
     operation.tooltip = function() {
-        return t('operations.rotate.description');
+        var disable = operation.disabled();
+        return disable ?
+            t('operations.rotate.' + disable) :
+            t('operations.rotate.description');
     };
 
     operation.id = 'rotate';
@@ -21304,6 +21612,7 @@ iD.areaKeys = {
         "atm": true,
         "bbq": true,
         "bench": true,
+        "bureau_de_change": true,
         "clock": true,
         "drinking_water": true,
         "parking_entrance": true,
@@ -21343,6 +21652,7 @@ iD.areaKeys = {
     "landuse": {},
     "leisure": {
         "picnic_table": true,
+        "track": true,
         "slipway": true
     },
     "man_made": {
@@ -21457,7 +21767,7 @@ iD.areaKeys = {
         var elems = obj.getElementsByTagName(ndStr),
             nodes = new Array(elems.length);
         for (var i = 0, l = elems.length; i < l; i++) {
-            nodes[i] = 'n' + elems[i].attributes.ref.nodeValue;
+            nodes[i] = 'n' + elems[i].attributes.ref.value;
         }
         return nodes;
     }
@@ -21467,7 +21777,7 @@ iD.areaKeys = {
             tags = {};
         for (var i = 0, l = elems.length; i < l; i++) {
             var attrs = elems[i].attributes;
-            tags[attrs.k.nodeValue] = attrs.v.nodeValue;
+            tags[attrs.k.value] = attrs.v.value;
         }
         return tags;
     }
@@ -21478,9 +21788,9 @@ iD.areaKeys = {
         for (var i = 0, l = elems.length; i < l; i++) {
             var attrs = elems[i].attributes;
             members[i] = {
-                id: attrs.type.nodeValue[0] + attrs.ref.nodeValue,
-                type: attrs.type.nodeValue,
-                role: attrs.role.nodeValue
+                id: attrs.type.value[0] + attrs.ref.value,
+                type: attrs.type.value,
+                role: attrs.role.value
             };
         }
         return members;
@@ -21490,10 +21800,10 @@ iD.areaKeys = {
         node: function nodeData(obj) {
             var attrs = obj.attributes;
             return new iD.Node({
-                id: iD.Entity.id.fromOSM(nodeStr, attrs.id.nodeValue),
-                loc: [parseFloat(attrs.lon.nodeValue), parseFloat(attrs.lat.nodeValue)],
-                version: attrs.version.nodeValue,
-                user: attrs.user && attrs.user.nodeValue,
+                id: iD.Entity.id.fromOSM(nodeStr, attrs.id.value),
+                loc: [parseFloat(attrs.lon.value), parseFloat(attrs.lat.value)],
+                version: attrs.version.value,
+                user: attrs.user && attrs.user.value,
                 tags: getTags(obj)
             });
         },
@@ -21501,9 +21811,9 @@ iD.areaKeys = {
         way: function wayData(obj) {
             var attrs = obj.attributes;
             return new iD.Way({
-                id: iD.Entity.id.fromOSM(wayStr, attrs.id.nodeValue),
-                version: attrs.version.nodeValue,
-                user: attrs.user && attrs.user.nodeValue,
+                id: iD.Entity.id.fromOSM(wayStr, attrs.id.value),
+                version: attrs.version.value,
+                user: attrs.user && attrs.user.value,
                 tags: getTags(obj),
                 nodes: getNodes(obj)
             });
@@ -21512,9 +21822,9 @@ iD.areaKeys = {
         relation: function relationData(obj) {
             var attrs = obj.attributes;
             return new iD.Relation({
-                id: iD.Entity.id.fromOSM(relationStr, attrs.id.nodeValue),
-                version: attrs.version.nodeValue,
-                user: attrs.user && attrs.user.nodeValue,
+                id: iD.Entity.id.fromOSM(relationStr, attrs.id.value),
+                version: attrs.version.value,
+                user: attrs.user && attrs.user.value,
                 tags: getTags(obj),
                 members: getMembers(obj)
             });
@@ -21648,9 +21958,9 @@ iD.areaKeys = {
             }
 
             userDetails = {
-                display_name: u.attributes.display_name.nodeValue,
+                display_name: u.attributes.display_name.value,
                 image_url: image_url,
-                id: u.attributes.id.nodeValue
+                id: u.attributes.id.value
             };
 
             callback(undefined, userDetails);
@@ -22776,8 +23086,7 @@ iD.oneWayTags = {
         'roundabout': true
     },
     'man_made': {
-        'piste:halfpipe': true,
-        'pipeline': true
+        'piste:halfpipe': true
     },
     'piste:type': {
         'downhill': true,
@@ -22816,14 +23125,15 @@ _.extend(iD.Relation.prototype, {
             if (memo && memo[this.id]) return iD.geo.Extent();
             memo = memo || {};
             memo[this.id] = true;
-            return this.members.reduce(function(extent, member) {
-                member = resolver.hasEntity(member.id);
+
+            var extent = iD.geo.Extent();
+            for (var i = 0; i < this.members.length; i++) {
+                var member = resolver.hasEntity(this.members[i].id);
                 if (member) {
-                    return extent.extend(member.extent(resolver, memo));
-                } else {
-                    return extent;
+                    extent._extend(member.extent(resolver, memo));
                 }
-            }, iD.geo.Extent());
+            }
+            return extent;
         });
     },
 
@@ -23061,21 +23371,19 @@ iD.Tree = function(head) {
     }
 
     function updateParents(entity, insertions, memo) {
-        if (memo && memo[entity.id]) return;
-        memo = memo || {};
-        memo[entity.id] = true;
-
         head.parentWays(entity).forEach(function(parent) {
             if (rectangles[parent.id]) {
                 rtree.remove(rectangles[parent.id]);
-                insertions.push(parent);
+                insertions[parent.id] = parent;
             }
         });
 
         head.parentRelations(entity).forEach(function(parent) {
+            if (memo[entity.id]) return;
+            memo[entity.id] = true;
             if (rectangles[parent.id]) {
                 rtree.remove(rectangles[parent.id]);
-                insertions.push(parent);
+                insertions[parent.id] = parent;
             }
             updateParents(parent, insertions, memo);
         });
@@ -23084,18 +23392,19 @@ iD.Tree = function(head) {
     var tree = {};
 
     tree.rebase = function(entities) {
-        var insertions = [];
+        var insertions = {};
+
+        for (var i = 0; i < entities.length; i++) {
+            var entity = entities[i];
 
-        entities.forEach(function(entity) {
             if (head.entities.hasOwnProperty(entity.id) || rectangles[entity.id])
-                return;
+                continue;
 
-            insertions.push(entity);
-            updateParents(entity, insertions);
-        });
+            insertions[entity.id] = entity;
+            updateParents(entity, insertions, {});
+        }
 
-        insertions = _.unique(insertions).map(entityRectangle);
-        rtree.load(insertions);
+        rtree.load(_.map(insertions, entityRectangle));
 
         return tree;
     };
@@ -23103,7 +23412,7 @@ iD.Tree = function(head) {
     tree.intersects = function(extent, graph) {
         if (graph !== head) {
             var diff = iD.Difference(head, graph),
-                insertions = [];
+                insertions = {};
 
             head = graph;
 
@@ -23114,16 +23423,15 @@ iD.Tree = function(head) {
 
             diff.modified().forEach(function(entity) {
                 rtree.remove(rectangles[entity.id]);
-                insertions.push(entity);
-                updateParents(entity, insertions);
+                insertions[entity.id] = entity;
+                updateParents(entity, insertions, {});
             });
 
             diff.created().forEach(function(entity) {
-                insertions.push(entity);
+                insertions[entity.id] = entity;
             });
 
-            insertions = _.unique(insertions).map(entityRectangle);
-            rtree.load(insertions);
+            rtree.load(_.map(insertions, entityRectangle));
         }
 
         return rtree.search(extentRectangle(extent)).map(function(rect) {
@@ -23149,14 +23457,14 @@ _.extend(iD.Way.prototype, {
 
     extent: function(resolver) {
         return resolver.transient(this, 'extent', function() {
-            return this.nodes.reduce(function(extent, id) {
-                var node = resolver.hasEntity(id);
+            var extent = iD.geo.Extent();
+            for (var i = 0; i < this.nodes.length; i++) {
+                var node = resolver.hasEntity(this.nodes[i]);
                 if (node) {
-                    return extent.extend(node.extent());
-                } else {
-                    return extent;
+                    extent._extend(node.extent());
                 }
-            }, iD.geo.Extent());
+            }
+            return extent;
         });
     },
 
@@ -23177,6 +23485,29 @@ _.extend(iD.Way.prototype, {
         if (this.nodes[this.nodes.length - 1] === node) return 'suffix';
     },
 
+    layer: function() {
+        // explicit layer tag, clamp between -10, 10..
+        if (this.tags.layer !== undefined) {
+            return Math.max(-10, Math.min(+(this.tags.layer), 10));
+        }
+
+        // implied layer tag..
+        if (this.tags.location === 'overground') return 1;
+        if (this.tags.location === 'underground') return -1;
+        if (this.tags.location === 'underwater') return -10;
+
+        if (this.tags.power === 'line') return 10;
+        if (this.tags.power === 'minor_line') return 10;
+        if (this.tags.aerialway) return 10;
+        if (this.tags.bridge) return 1;
+        if (this.tags.cutting) return -1;
+        if (this.tags.tunnel) return -1;
+        if (this.tags.waterway) return -1;
+        if (this.tags.man_made === 'pipeline') return -10;
+        if (this.tags.boundary) return -10;
+        return 0;
+    },
+
     isOneWay: function() {
         // explicit oneway tag..
         if (['yes', '1', '-1'].indexOf(this.tags.oneway) !== -1) { return true; }
@@ -23330,20 +23661,20 @@ _.extend(iD.Way.prototype, {
         return resolver.transient(this, 'area', function() {
             var nodes = resolver.childNodes(this);
 
-            if (!this.isClosed() && nodes.length) {
-                nodes = nodes.concat([nodes[0]]);
-            }
-
             var json = {
                 type: 'Polygon',
                 coordinates: [_.pluck(nodes, 'loc')]
             };
 
+            if (!this.isClosed() && nodes.length) {
+                json.coordinates[0].push(nodes[0].loc);
+            }
+
             var area = d3.geo.area(json);
 
             // Heuristic for detecting counterclockwise winding order. Assumes
             // that OpenStreetMap polygons are not hemisphere-spanning.
-            if (d3.geo.area(json) > 2 * Math.PI) {
+            if (area > 2 * Math.PI) {
                 json.coordinates[0] = json.coordinates[0].reverse();
                 area = d3.geo.area(json);
             }
@@ -23358,6 +23689,7 @@ iD.Background = function(context) {
             .projection(context.projection),
         gpxLayer = iD.GpxLayer(context, dispatch)
             .projection(context.projection),
+        mapillaryLayer = iD.MapillaryLayer(context),
         overlayLayers = [];
 
     var backgroundSources = iD.data.imagery.map(function(source) {
@@ -23445,6 +23777,14 @@ iD.Background = function(context) {
 
         overlays.exit()
             .remove();
+
+        var mapillary = selection.selectAll('.layer-mapillary')
+            .data([0]);
+
+        mapillary.enter().insert('div')
+            .attr('class', 'layer-layer layer-mapillary');
+
+        mapillary.call(mapillaryLayer);
     }
 
     background.sources = function(extent) {
@@ -23456,6 +23796,7 @@ iD.Background = function(context) {
     background.dimensions = function(_) {
         baseLayer.dimensions(_);
         gpxLayer.dimensions(_);
+        mapillaryLayer.dimensions(_);
 
         overlayLayers.forEach(function(layer) {
             layer.dimensions(_);
@@ -23503,8 +23844,15 @@ iD.Background = function(context) {
 
     background.zoomToGpxLayer = function() {
         if (background.hasGpxLayer()) {
-            context.map()
-                .extent(d3.geo.bounds(gpxLayer.geojson()));
+            var viewport = context.map().extent().polygon(),
+                coords = _.reduce(gpxLayer.geojson().features, function(coords, feature) {
+                    var c = feature.geometry.coordinates;
+                    return _.union(coords, feature.geometry.type === 'Point' ? [c] : c);
+                }, []);
+
+            if (!iD.geo.polygonIntersectsPolygon(viewport, coords)) {
+                context.map().extent(d3.geo.bounds(gpxLayer.geojson()));
+            }
         }
     };
 
@@ -23513,6 +23861,15 @@ iD.Background = function(context) {
         dispatch.change();
     };
 
+    background.showsMapillaryLayer = function() {
+        return mapillaryLayer.enable();
+    };
+
+    background.toggleMapillaryLayer = function() {
+        mapillaryLayer.enable(!mapillaryLayer.enable());
+        dispatch.change();
+    };
+
     background.showsLayer = function(d) {
         return d === baseLayer.source() ||
             (d.id === 'custom' && baseLayer.source().id === 'custom') ||
@@ -23779,7 +24136,7 @@ iD.GpxLayer = function(context) {
                 .append('text')
                 .attr('class', 'gpx')
                 .text(function(d) {
-                    return d.properties.name;
+                    return d.properties.desc || d.properties.name;
                 })
                 .attr('x', function(d) {
                     var centroid = path.centroid(d);
@@ -23873,8 +24230,6 @@ iD.Map = function(context) {
         supersurface = selection.append('div')
             .attr('id', 'supersurface');
 
-        supersurface.call(context.background());
-
         // Need a wrapper div because Opera can't cope with an absolutely positioned
         // SVG element: http://bl.ocks.org/jfirebaugh/6fbfbd922552bf776c16
         var dataLayer = supersurface.append('div')
@@ -23892,6 +24247,8 @@ iD.Map = function(context) {
             .attr('id', 'surface')
             .call(iD.svg.Surface(context));
 
+        supersurface.call(context.background());
+
         surface.on('mousemove.map', function() {
             mousemove = d3.event;
         });
@@ -23916,10 +24273,9 @@ iD.Map = function(context) {
             if (map.editable() && !transformed) {
                 var all = context.intersects(map.extent()),
                     filter = d3.functor(true),
-                    extent = map.extent(),
                     graph = context.graph();
-                surface.call(vertices, graph, all, filter, extent, map.zoom());
-                surface.call(midpoints, graph, all, filter, extent);
+                surface.call(vertices, graph, all, filter, map.extent(), map.zoom());
+                surface.call(midpoints, graph, all, filter, map.trimmedExtent());
                 dispatch.drawn({full: false});
             }
         });
@@ -23954,7 +24310,7 @@ iD.Map = function(context) {
             .call(vertices, graph, all, filter, map.extent(), map.zoom())
             .call(lines, graph, all, filter)
             .call(areas, graph, all, filter)
-            .call(midpoints, graph, all, filter, map.extent())
+            .call(midpoints, graph, all, filter, map.trimmedExtent())
             .call(labels, graph, all, filter, dimensions, !difference && !extent);
 
         if (points.points(context.intersects(map.extent()), 100).length >= 100) {
@@ -23967,8 +24323,12 @@ iD.Map = function(context) {
     }
 
     function editOff() {
+        var mode = context.mode();
         surface.selectAll('.layer *').remove();
         dispatch.drawn({full: true});
+        if (!(mode && mode.id === 'browse')) {
+            context.enter(iD.modes.Browse(context));
+        }
     }
 
     function zoomPan() {
@@ -24134,8 +24494,8 @@ iD.Map = function(context) {
         return redraw();
     };
 
-    map.zoomIn = function() { return map.zoom(Math.ceil(map.zoom() + 1)); };
-    map.zoomOut = function() { return map.zoom(Math.floor(map.zoom() - 1)); };
+    map.zoomIn = function() { return map.zoom(~~map.zoom() + 1); };
+    map.zoomOut = function() { return map.zoom(~~map.zoom() - 1); };
 
     map.center = function(loc) {
         if (!arguments.length) {
@@ -24206,6 +24566,12 @@ iD.Map = function(context) {
         }
     };
 
+    map.trimmedExtent = function() {
+        var headerY = 60, footerY = 30, pad = 10;
+        return new iD.geo.Extent(projection.invert([pad, dimensions[1] - footerY - pad]),
+                projection.invert([dimensions[0] - pad, headerY + pad]));
+    };
+
     map.extentZoom = function(_) {
         var extent = iD.geo.Extent(_),
             tl = projection([extent[0][0], extent[1][1]]),
@@ -24233,6 +24599,165 @@ iD.Map = function(context) {
 
     return d3.rebind(map, dispatch, 'on');
 };
+iD.MapillaryLayer = function (context) {
+    var enable = false,
+        currentImage,
+        svg, div, request;
+
+    function show(image) {
+        svg.selectAll('g')
+            .classed('selected', function(d) {
+                return currentImage && d.key === currentImage.key;
+            });
+
+        div.classed('hidden', false)
+            .classed('temp', image !== currentImage);
+
+        div.selectAll('img')
+            .attr('src', 'https://d1cuyjsrcm0gby.cloudfront.net/' + image.key + '/thumb-320.jpg');
+
+        div.selectAll('a')
+            .attr('href', 'http://mapillary.com/map/im/' + image.key);
+    }
+
+    function hide() {
+        currentImage = undefined;
+
+        svg.selectAll('g')
+            .classed('selected', false);
+
+        div.classed('hidden', true);
+    }
+
+    function transform(image) {
+        var t = 'translate(' + context.projection(image.loc) + ')';
+        if (image.ca) t += 'rotate(' + image.ca + ',0,0)';
+        return t;
+    }
+
+    function render(selection) {
+        svg = selection.selectAll('svg')
+            .data([0]);
+
+        svg.enter().append('svg')
+            .on('click', function() {
+                var image = d3.event.target.__data__;
+                if (currentImage === image) {
+                    hide();
+                } else {
+                    currentImage = image;
+                    show(image);
+                }
+            })
+            .on('mouseover', function() {
+                show(d3.event.target.__data__);
+            })
+            .on('mouseout', function() {
+                if (currentImage) {
+                    show(currentImage);
+                } else {
+                    hide();
+                }
+            });
+
+        svg.style('display', enable ? 'block' : 'none');
+
+        div = context.container().selectAll('.mapillary-image')
+            .data([0]);
+
+        var enter = div.enter().append('div')
+            .attr('class', 'mapillary-image');
+
+        enter.append('button')
+            .on('click', hide)
+            .append('div')
+            .attr('class', 'icon close');
+
+        enter.append('img');
+
+        var link = enter.append('a')
+            .attr('class', 'link')
+            .attr('target', '_blank');
+
+        link.append('span')
+            .attr('class', 'icon icon-pre-text out-link');
+
+        link.append('span')
+            .text(t('mapillary.view_on_mapillary'));
+
+        if (!enable) {
+            hide();
+
+            svg.selectAll('g')
+                .remove();
+
+            return;
+        }
+
+        // Update existing images while waiting for new ones to load.
+        svg.selectAll('g')
+            .attr('transform', transform);
+
+        var extent = context.map().extent();
+
+        if (request)
+            request.abort();
+
+        request = d3.json('https://mapillary-read-api.herokuapp.com/v1/s/search?min-lat=' +
+            extent[0][1] + '&max-lat=' + extent[1][1] + '&min-lon=' +
+            extent[0][0] + '&max-lon=' + extent[1][0] + '&max-results=100&geojson=true',
+            function (error, data) {
+                if (error) return;
+
+                var images = [];
+
+                for (var i = 0; i < data.features.length; i++) {
+                    var sequence = data.features[i];
+                    for (var j = 0; j < sequence.geometry.coordinates.length; j++) {
+                        images.push({
+                            key: sequence.properties.keys[j],
+                            ca: sequence.properties.cas[j],
+                            loc: sequence.geometry.coordinates[j]
+                        });
+                        if (images.length >= 1000) break;
+                    }
+                }
+
+                var g = svg.selectAll('g')
+                    .data(images, function(d) { return d.key; });
+
+                var enter = g.enter().append('g')
+                    .attr('class', 'image');
+
+                enter.append('path')
+                    .attr('d', 'M 0,-5 l 0,-20 l -5,30 l 10,0 l -5,-30');
+
+                enter.append('circle')
+                    .attr('dx', '0')
+                    .attr('dy', '0')
+                    .attr('r', '8');
+
+                g.attr('transform', transform);
+
+                g.exit()
+                    .remove();
+            });
+    }
+
+    render.enable = function(_) {
+        if (!arguments.length) return enable;
+        enable = _;
+        return render;
+    };
+
+    render.dimensions = function(_) {
+        if (!arguments.length) return svg.dimensions();
+        svg.dimensions(_);
+        return render;
+    };
+
+    return render;
+};
 iD.TileLayer = function() {
     var tileSize = 256,
         tile = d3.geo.tile(),
@@ -24304,6 +24829,7 @@ iD.TileLayer = function() {
             tile().forEach(function(d) {
                 addSource(d);
                 if (d[3] === '') return;
+                if (typeof d[3] !== 'string') return; // Workaround for chrome crash https://github.com/openstreetmap/iD/issues/2295
                 requests.push(d);
                 if (cache[d[3]] === false && lookUp(d)) {
                     requests.push(addSource(lookUp(d)));
@@ -24442,6 +24968,7 @@ iD.svg = {
                 i = 0,
                 offset = dt,
                 segments = [],
+                viewport = iD.geo.Extent(projection.clipExtent()),
                 coordinates = graph.childNodes(entity).map(function(n) {
                     return n.loc;
                 });
@@ -24460,9 +24987,10 @@ iD.svg = {
                     b = [x, y];
 
                     if (a) {
-                        var span = iD.geo.euclideanDistance(a, b) - offset;
+                        var extent = iD.geo.Extent(a).extend(b),
+                            span = iD.geo.euclideanDistance(a, b) - offset;
 
-                        if (span >= 0) {
+                        if (extent.intersects(viewport) && span >= 0) {
                             var angle = Math.atan2(b[1] - a[1], b[0] - a[0]),
                                 dx = dt * Math.cos(angle),
                                 dy = dt * Math.sin(angle),
@@ -24525,6 +25053,12 @@ iD.svg.Areas = function(projection) {
 
     var patternKeys = ['landuse', 'natural', 'amenity'];
 
+    var clipped = ['residential', 'commercial', 'retail', 'industrial'];
+
+    function clip(entity) {
+        return clipped.indexOf(entity.tags.landuse) !== -1;
+    }
+
     function setPattern(d) {
         for (var i = 0; i < patternKeys.length; i++) {
             if (patterns.hasOwnProperty(d.tags[patternKeys[i]])) {
@@ -24567,13 +25101,39 @@ iD.svg.Areas = function(projection) {
         });
 
         var data = {
+            clip: areas.filter(clip),
             shadow: strokes,
             stroke: strokes,
             fill: areas
         };
 
-        var paths = surface.selectAll('.layer-shadow, .layer-stroke, .layer-fill')
-            .selectAll('path.area')
+        var clipPaths = surface.selectAll('defs').selectAll('.clipPath')
+           .filter(filter)
+           .data(data.clip, iD.Entity.key);
+
+        clipPaths.enter()
+           .append('clipPath')
+           .attr('class', 'clipPath')
+           .attr('id', function(entity) { return entity.id + '-clippath'; })
+           .append('path');
+
+        clipPaths.selectAll('path')
+           .attr('d', path);
+
+        clipPaths.exit()
+           .remove();
+
+        var areagroup = surface
+            .select('.layer-areas')
+            .selectAll('g.areagroup')
+            .data(['fill', 'shadow', 'stroke']);
+
+        areagroup.enter()
+            .append('g')
+            .attr('class', function(d) { return 'layer areagroup area-' + d; });
+
+        var paths = areagroup
+            .selectAll('path')
             .filter(filter)
             .data(function(layer) { return data[layer]; }, iD.Entity.key);
 
@@ -24582,7 +25142,7 @@ iD.svg.Areas = function(projection) {
         paths.exit()
             .remove();
 
-        var fills = surface.selectAll('.layer-fill path.area')[0];
+        var fills = surface.selectAll('.area-fill path.area')[0];
 
         var bisect = d3.bisector(function(node) {
             return -node.__data__.area(graph);
@@ -24601,6 +25161,10 @@ iD.svg.Areas = function(projection) {
 
                 this.setAttribute('class', entity.type + ' area ' + layer + ' ' + entity.id);
 
+                if (layer === 'fill' && clip(entity)) {
+                    this.setAttribute('clip-path', 'url(#' + entity.id + '-clippath)');
+                }
+
                 if (layer === 'fill') {
                     setPattern.apply(this, arguments);
                 }
@@ -25199,80 +25763,98 @@ iD.svg.Lines = function(projection) {
     };
 
     function waystack(a, b) {
-        if (!a || !b || !a.tags || !b.tags) return 0;
-        if (a.tags.layer !== undefined && b.tags.layer !== undefined) {
-            return a.tags.layer - b.tags.layer;
-        }
-        if (a.tags.bridge) return 1;
-        if (b.tags.bridge) return -1;
-        if (a.tags.tunnel) return -1;
-        if (b.tags.tunnel) return 1;
         var as = 0, bs = 0;
-        if (a.tags.highway && b.tags.highway) {
-            as -= highway_stack[a.tags.highway];
-            bs -= highway_stack[b.tags.highway];
-        }
+
+        if (a.tags.highway) { as -= highway_stack[a.tags.highway]; }
+        if (b.tags.highway) { bs -= highway_stack[b.tags.highway]; }
         return as - bs;
     }
 
     return function drawLines(surface, graph, entities, filter) {
-        var lines = [],
-            path = iD.svg.Path(projection, graph);
+        var ways = [], pathdata = {}, onewaydata = {},
+            getPath = iD.svg.Path(projection, graph);
 
         for (var i = 0; i < entities.length; i++) {
             var entity = entities[i],
                 outer = iD.geo.simpleMultipolygonOuterMember(entity, graph);
             if (outer) {
-                lines.push(entity.mergeTags(outer.tags));
+                ways.push(entity.mergeTags(outer.tags));
             } else if (entity.geometry(graph) === 'line') {
-                lines.push(entity);
+                ways.push(entity);
             }
         }
 
-        lines = lines.filter(path);
-        lines.sort(waystack);
+        ways = ways.filter(getPath);
 
-        function drawPaths(klass) {
-            var paths = surface.select('.layer-' + klass)
-                .selectAll('path.line')
-                .filter(filter)
-                .data(lines, iD.Entity.key);
+        pathdata = _.groupBy(ways, function(way) { return way.layer(); });
 
-            var enter = paths.enter()
-                .append('path')
-                .attr('class', function(d) { return 'way line ' + klass + ' ' + d.id; });
+        _.forOwn(pathdata, function(v, k) {
+            onewaydata[k] = _(v)
+                .filter(function(d) { return d.isOneWay(); })
+                .map(iD.svg.OneWaySegments(projection, graph, 35))
+                .flatten()
+                .valueOf();
+        });
 
-            // Optimization: call simple TagClasses only on enter selection. This
-            // works because iD.Entity.key is defined to include the entity v attribute.
-            if (klass !== 'stroke') {
-                enter.call(iD.svg.TagClasses());
-            } else {
-                paths.call(iD.svg.TagClasses()
-                    .tags(iD.svg.MultipolygonMemberTags(graph)));
-            }
+        var layergroup = surface
+            .select('.layer-lines')
+            .selectAll('g.layergroup')
+            .data(d3.range(-10, 11));
 
-            paths
-                .order()
-                .attr('d', path);
+        layergroup.enter()
+            .append('g')
+            .attr('class', function(d) { return 'layer layergroup layer' + String(d); });
 
-            paths.exit()
-                .remove();
-        }
 
-        drawPaths('shadow');
-        drawPaths('casing');
-        drawPaths('stroke');
+        var linegroup = layergroup
+            .selectAll('g.linegroup')
+            .data(['shadow', 'casing', 'stroke']);
+
+        linegroup.enter()
+            .append('g')
+            .attr('class', function(d) { return 'layer linegroup line-' + d; });
 
-        var segments = _(lines)
-            .filter(function(d) { return d.isOneWay(); })
-            .map(iD.svg.OneWaySegments(projection, graph, 35))
-            .flatten()
-            .valueOf();
 
-        var oneways = surface.select('.layer-oneway')
-            .selectAll('path.oneway')
+        var lines = linegroup
+            .selectAll('path')
             .filter(filter)
-            .data(segments, function(d) { return [d.id, d.index]; });
+            .data(
+                function() { return pathdata[this.parentNode.parentNode.__data__] || []; },
+                iD.Entity.key
+            );
+
+        // Optimization: call simple TagClasses only on enter selection. This
+        // works because iD.Entity.key is defined to include the entity v attribute.
+        lines.enter()
+            .append('path')
+            .attr('class', function(d) { return 'way line ' + this.parentNode.__data__ + ' ' + d.id; })
+            .call(iD.svg.TagClasses());
+
+        lines
+            .sort(waystack)
+            .attr('d', getPath)
+            .call(iD.svg.TagClasses().tags(iD.svg.MultipolygonMemberTags(graph)));
+
+        lines.exit()
+            .remove();
+
+
+        var onewaygroup = layergroup
+            .selectAll('g.onewaygroup')
+            .data(['oneway']);
+
+        onewaygroup.enter()
+            .append('g')
+            .attr('class', 'layer onewaygroup');
+
+
+        var oneways = onewaygroup
+            .selectAll('path')
+            .filter(filter)
+            .data(
+                function() { return onewaydata[this.parentNode.parentNode.__data__] || []; },
+                function(d) { return [d.id, d.index]; }
+            );
 
         oneways.enter()
             .append('path')
@@ -25280,16 +25862,17 @@ iD.svg.Lines = function(projection) {
             .attr('marker-mid', 'url(#oneway-marker)');
 
         oneways
-            .order()
             .attr('d', function(d) { return d.d; });
 
         oneways.exit()
             .remove();
+
     };
 };
 iD.svg.Midpoints = function(projection, context) {
     return function drawMidpoints(surface, graph, entities, filter, extent) {
-        var midpoints = {};
+        var poly = extent.polygon(),
+            midpoints = {};
 
         for (var i = 0; i < entities.length; i++) {
             var entity = entities[i];
@@ -25311,15 +25894,34 @@ iD.svg.Midpoints = function(projection, context) {
                 if (midpoints[id]) {
                     midpoints[id].parents.push(entity);
                 } else {
-                    var loc = iD.geo.interp(a.loc, b.loc, 0.5);
-                    if (extent.intersects(loc) && iD.geo.euclideanDistance(projection(a.loc), projection(b.loc)) > 40) {
-                        midpoints[id] = {
-                            type: 'midpoint',
-                            id: id,
-                            loc: loc,
-                            edge: [a.id, b.id],
-                            parents: [entity]
-                        };
+                    if (iD.geo.euclideanDistance(projection(a.loc), projection(b.loc)) > 40) {
+                        var point = iD.geo.interp(a.loc, b.loc, 0.5),
+                            loc = null;
+
+                        if (extent.intersects(point)) {
+                            loc = point;
+                        } else {
+                            for (var k = 0; k < 4; k++) {
+                                point = iD.geo.lineIntersection([a.loc, b.loc], [poly[k], poly[k+1]]);
+                                if (point &&
+                                    iD.geo.euclideanDistance(projection(a.loc), projection(point)) > 20 &&
+                                    iD.geo.euclideanDistance(projection(b.loc), projection(point)) > 20)
+                                {
+                                    loc = point;
+                                    break;
+                                }
+                            }
+                        }
+
+                        if (loc) {
+                            midpoints[id] = {
+                                type: 'midpoint',
+                                id: id,
+                                loc: loc,
+                                edge: [a.id, b.id],
+                                parents: [entity]
+                            };
+                        }
                     }
                 }
             }
@@ -25340,23 +25942,33 @@ iD.svg.Midpoints = function(projection, context) {
             .filter(midpointFilter)
             .data(_.values(midpoints), function(d) { return d.id; });
 
-        var group = groups.enter()
+        var enter = groups.enter()
             .insert('g', ':first-child')
             .attr('class', 'midpoint');
 
-        group.append('circle')
-            .attr('r', 7)
+        enter.append('polygon')
+            .attr('points', '-6,8 10,0 -6,-8')
             .attr('class', 'shadow');
 
-        group.append('circle')
-            .attr('r', 3)
+        enter.append('polygon')
+            .attr('points', '-3,4 5,0 -3,-4')
             .attr('class', 'fill');
 
-        groups.attr('transform', iD.svg.PointTransform(projection));
+        groups
+            .attr('transform', function(d) {
+                var translate = iD.svg.PointTransform(projection),
+                    a = context.entity(d.edge[0]),
+                    b = context.entity(d.edge[1]),
+                    angle = Math.round(iD.geo.angle(a, b, projection) * (180 / Math.PI));
+                return translate(d) + ' rotate(' + angle + ')';
+            })
+            .call(iD.svg.TagClasses().tags(
+                function(d) { return d.parents[0].tags; }
+            ));
 
         // Propagate data bindings.
-        groups.select('circle.shadow');
-        groups.select('circle.fill');
+        groups.select('polygon.shadow');
+        groups.select('polygon.fill');
 
         groups.exit()
             .remove();
@@ -25433,8 +26045,13 @@ iD.svg.Points = function(projection, context) {
 };
 iD.svg.Surface = function() {
     return function (selection) {
+        selection.selectAll('defs')
+            .data([0])
+            .enter()
+            .append('defs');
+
         var layers = selection.selectAll('.layer')
-            .data(['fill', 'shadow', 'casing', 'stroke', 'oneway', 'hit', 'halo', 'label']);
+            .data(['areas', 'lines', 'hit', 'halo', 'label']);
 
         layers.enter().append('g')
             .attr('class', function(d) { return 'layer layer-' + d; });
@@ -25612,49 +26229,74 @@ iD.svg.Vertices = function(projection, context) {
         return vertices;
     }
 
-    function draw(groups, vertices, klass, graph, zoom) {
-        groups = groups.data(vertices, function(entity) {
-            return iD.Entity.key(entity) + ',' + zoom;
-        });
+    function draw(selection, vertices, klass, graph, zoom) {
+        var icons = {},
+            z;
 
         if (zoom < 17) {
-            zoom = 0;
+            z = 0;
         } else if (zoom < 18) {
-            zoom = 1;
+            z = 1;
         } else {
-            zoom = 2;
+            z = 2;
         }
 
-        var icons = {};
+        var groups = selection.data(vertices, function(entity) {
+            return iD.Entity.key(entity);
+        });
+
         function icon(entity) {
             if (entity.id in icons) return icons[entity.id];
-            icons[entity.id] = zoom !== 0 &&
+            icons[entity.id] =
                 entity.hasInterestingTags() &&
                 context.presets().match(entity, graph).icon;
             return icons[entity.id];
         }
 
-        function circle(klass) {
-            var rads = radiuses[klass];
+        function classCircle(klass) {
             return function(entity) {
-                var i = icon(entity),
-                    c = i ? 0.5 : 0,
-                    r = rads[i ? 3 : zoom];
                 this.setAttribute('class', 'node vertex ' + klass + ' ' + entity.id);
-                this.setAttribute('cx', c);
-                this.setAttribute('cy', -c);
-                this.setAttribute('r', r);
             };
         }
 
-        var enter = groups.enter().append('g')
+        function setAttributes(selection) {
+            ['shadow','stroke','fill'].forEach(function(klass) {
+                var rads = radiuses[klass];
+                selection.selectAll('.' + klass)
+                    .each(function(entity) {
+                        var i = z && icon(entity),
+                            c = i ? 0.5 : 0,
+                            r = rads[i ? 3 : z];
+                        this.setAttribute('cx', c);
+                        this.setAttribute('cy', -c);
+                        this.setAttribute('r', r);
+                        if (i && klass === 'fill') {
+                            this.setAttribute('visibility', 'hidden');
+                        } else {
+                            this.removeAttribute('visibility');
+                        }
+                    });
+            });
+
+            selection.selectAll('use')
+                .each(function() {
+                    if (z) {
+                        this.removeAttribute('visibility');
+                    } else {
+                        this.setAttribute('visibility', 'hidden');
+                    }
+                });
+        }
+
+        var enter = groups.enter()
+            .append('g')
             .attr('class', function(d) { return 'node vertex ' + klass + ' ' + d.id; });
 
         enter.append('circle')
-            .each(circle('shadow'));
+            .each(classCircle('shadow'));
 
         enter.append('circle')
-            .each(circle('stroke'));
+            .each(classCircle('stroke'));
 
         // Vertices with icons get a `use`.
         enter.filter(function(d) { return icon(d); })
@@ -25663,14 +26305,15 @@ iD.svg.Vertices = function(projection, context) {
             .attr('clip-path', 'url(#clip-square-12)')
             .attr('xlink:href', function(d) { return '#maki-' + icon(d) + '-12'; });
 
-        // Vertices with tags get a `circle`.
-        enter.filter(function(d) { return !icon(d) && d.hasInterestingTags(); })
+        // Vertices with tags get a fill.
+        enter.filter(function(d) { return d.hasInterestingTags(); })
             .append('circle')
-            .each(circle('fill'));
+            .each(classCircle('fill'));
 
         groups
             .attr('transform', iD.svg.PointTransform(projection))
-            .classed('shared', function(entity) { return graph.isShared(entity); });
+            .classed('shared', function(entity) { return graph.isShared(entity); })
+            .call(setAttributes);
 
         groups.exit()
             .remove();
@@ -25798,23 +26441,24 @@ iD.ui = function(context) {
             .attr('class', 'map-control help-control')
             .call(iD.ui.Help(context));
 
-        var about = content.append('div')
-            .attr('class','col12 about-block fillD');
+        var footer = content.append('div')
+            .attr('id', 'footer')
+            .attr('class', 'fillD');
 
-        about.append('div')
-            .attr('class', 'api-status')
-            .call(iD.ui.Status(context));
+        footer.append('div')
+            .attr('id', 'scale-block')
+            .call(iD.ui.Scale(context));
+
+        var linkList = footer.append('div')
+            .attr('id', 'info-block')
+            .append('ul')
+            .attr('id', 'about-list')
+            .attr('class', 'link-list');
 
         if (!context.embed()) {
-            about.append('div')
-                .attr('class', 'account')
-                .call(iD.ui.Account(context));
+            linkList.call(iD.ui.Account(context));
         }
 
-        var linkList = about.append('ul')
-            .attr('id', 'about')
-            .attr('class', 'link-list');
-
         linkList.append('li')
             .append('a')
             .attr('target', '_blank')
@@ -25841,6 +26485,10 @@ iD.ui = function(context) {
             .attr('tabindex', -1)
             .call(iD.ui.Contributors(context));
 
+        footer.append('div')
+            .attr('class', 'api-status')
+            .call(iD.ui.Status(context));
+
         window.onbeforeunload = function() {
             return context.save();
         };
@@ -25911,20 +26559,25 @@ iD.ui.Account = function(context) {
 
     function update(selection) {
         if (!connection.authenticated()) {
-            selection.html('')
+            selection.selectAll('#userLink, #logoutLink')
                 .style('display', 'none');
             return;
         }
 
-        selection.style('display', 'block');
-
         connection.userDetails(function(err, details) {
-            selection.html('');
+            var userLink = selection.select('#userLink'),
+                logoutLink = selection.select('#logoutLink');
+
+            userLink.html('');
+            logoutLink.html('');
 
             if (err) return;
 
+            selection.selectAll('#userLink, #logoutLink')
+                .style('display', 'list-item');
+
             // Link
-            var userLink = selection.append('a')
+            userLink.append('a')
                 .attr('href', connection.userURL(details.display_name))
                 .attr('target', '_blank');
 
@@ -25943,7 +26596,7 @@ iD.ui.Account = function(context) {
                 .attr('class', 'label')
                 .text(details.display_name);
 
-            selection.append('a')
+            logoutLink.append('a')
                 .attr('class', 'logout')
                 .attr('href', '#')
                 .text(t('logout'))
@@ -25955,7 +26608,15 @@ iD.ui.Account = function(context) {
     }
 
     return function(selection) {
-        connection.on('auth', function() { update(selection); });
+        selection.append('li')
+            .attr('id', 'logoutLink')
+            .style('display', 'none');
+
+        selection.append('li')
+            .attr('id', 'userLink')
+            .style('display', 'none');
+
+        connection.on('auth.account', function() { update(selection); });
         update(selection);
     };
 };
@@ -26118,6 +26779,11 @@ iD.ui.Background = function(context) {
             update();
         }
 
+        function clickMapillary() {
+            context.background().toggleMapillaryLayer();
+            update();
+        }
+
         function drawList(layerList, type, change, filter) {
             var sources = context.background()
                 .sources(context.map().extent())
@@ -26165,6 +26831,13 @@ iD.ui.Background = function(context) {
                 .property('disabled', !hasGpx)
                 .property('checked', showsGpx);
 
+            var showsMapillary = context.background().showsMapillaryLayer();
+
+            mapillaryLayerItem
+                .classed('active', showsMapillary)
+                .selectAll('input')
+                .property('checked', showsMapillary);
+
             selectLayer();
 
             var source = context.background().baseLayerSource();
@@ -26305,6 +26978,20 @@ iD.ui.Background = function(context) {
         var overlayList = content.append('ul')
             .attr('class', 'layer-list');
 
+        var mapillaryLayerItem = overlayList.append('li');
+
+        label = mapillaryLayerItem.append('label')
+            .call(bootstrap.tooltip()
+                .title(t('mapillary.tooltip'))
+                .placement('top'));
+
+        label.append('input')
+            .attr('type', 'checkbox')
+            .on('change', clickMapillary);
+
+        label.append('span')
+            .text(t('mapillary.title'));
+
         var gpxLayerItem = content.append('ul')
             .style('display', iD.detect().filedrop ? 'block' : 'none')
             .attr('class', 'layer-list')
@@ -26399,6 +27086,9 @@ iD.ui.Background = function(context) {
 
         var keybinding = d3.keybinding('background');
         keybinding.on(key, toggle);
+        keybinding.on('m', function() {
+            context.enter(iD.modes.SelectImage(context));
+        });
 
         d3.select(document)
             .call(keybinding);
@@ -26480,6 +27170,7 @@ iD.ui.Commit = function(context) {
 
         var commentField = commentSection.append('textarea')
             .attr('placeholder', t('commit.description_placeholder'))
+            .attr('maxlength', 255)
             .property('value', context.storage('comment') || '')
             .on('blur.save', function () {
                 context.storage('comment', this.value);
@@ -26572,7 +27263,7 @@ iD.ui.Commit = function(context) {
             .attr('class', 'commit-section modal-section fillL2');
 
         changeSection.append('h3')
-            .text(summary.length + ' Changes');
+            .text(t('commit.changes', {count: summary.length}));
 
         var li = changeSection.append('ul')
             .attr('class', 'changeset-list')
@@ -26592,7 +27283,7 @@ iD.ui.Commit = function(context) {
         li.append('span')
             .attr('class', 'change-type')
             .text(function(d) {
-                return d.changeType + ' ';
+                return t('commit.' + d.changeType) + ' ';
             });
 
         li.append('strong')
@@ -27040,15 +27731,16 @@ iD.ui.FeatureList = function(context) {
                 });
             }
 
-            var locationMatch = q.match(/^(-?\d+\.?\d*)\s+(-?\d+\.?\d*)$/);
+            var locationMatch = sexagesimal.pair(q.toUpperCase()) || q.match(/^(-?\d+\.?\d*)\s+(-?\d+\.?\d*)$/);
 
             if (locationMatch) {
+                var loc = [parseFloat(locationMatch[0]), parseFloat(locationMatch[1])];
                 result.push({
                     id: -1,
                     geometry: 'point',
                     type: t('inspector.location'),
-                    name: locationMatch[0],
-                    location: [parseFloat(locationMatch[1]), parseFloat(locationMatch[2])]
+                    name: loc[0].toFixed(6) + ', ' + loc[1].toFixed(6),
+                    location: loc
                 });
             }
 
@@ -28091,7 +28783,7 @@ iD.ui.preset = function(context) {
 
         function show(field) {
             field.show = true;
-            context.presets()(selection);
+            presets(selection);
             field.input.focus();
         }
 
@@ -28589,6 +29281,10 @@ iD.ui.RawMemberEditor = function(context) {
         context.perform(
             iD.actions.DeleteMember(d.relation.id, d.index),
             t('operations.delete_member.annotation'));
+
+        if (!context.hasEntity(d.relation.id)) {
+            context.enter(iD.modes.Browse(context));
+        }
     }
 
     function rawMemberEditor(selection) {
@@ -28905,12 +29601,12 @@ iD.ui.RawTagEditor = function(context) {
 
         selection.call(iD.ui.Disclosure()
             .title(t('inspector.all_tags') + ' (' + count + ')')
-            .expanded(iD.ui.RawTagEditor.expanded || preset.isFallback())
+            .expanded(context.storage('raw_tag_editor.expanded') === 'true' || preset.isFallback())
             .on('toggled', toggled)
             .content(content));
 
         function toggled(expanded) {
-            iD.ui.RawTagEditor.expanded = expanded;
+            context.storage('raw_tag_editor.expanded', expanded);
             if (expanded) {
                 selection.node().parentNode.scrollTop += 200;
             }
@@ -29206,7 +29902,7 @@ iD.ui.Save = function(context) {
             .text('0');
 
         var keybinding = d3.keybinding('undo-redo')
-            .on(key, save);
+            .on(key, save, true);
 
         d3.select(document)
             .call(keybinding);
@@ -29236,6 +29932,88 @@ iD.ui.Save = function(context) {
         });
     };
 };
+iD.ui.Scale = function(context) {
+    var projection = context.projection,
+        imperial = (iD.detect().locale.toLowerCase() === 'en-us'),
+        maxLength = 180,
+        tickHeight = 8;
+
+    function scaleDefs(loc1, loc2) {
+        var lat = (loc2[1] + loc1[1]) / 2,
+            conversion = (imperial ? 3.28084 : 1),
+            dist = iD.geo.lonToMeters(loc2[0] - loc1[0], lat) * conversion,
+            scale = { dist: 0, px: 0, text: '' },
+            buckets, i, val, dLon;
+
+        if (imperial) {
+            buckets = [5280000, 528000, 52800, 5280, 500, 50, 5, 1];
+        } else {
+            buckets = [5000000, 500000, 50000, 5000, 500, 50, 5, 1];
+        }
+
+        // determine a user-friendly endpoint for the scale
+        for (i = 0; i < buckets.length; i++) {
+            val = buckets[i];
+            if (dist >= val) {
+                scale.dist = Math.floor(dist / val) * val;
+                break;
+            }
+        }
+
+        dLon = iD.geo.metersToLon(scale.dist / conversion, lat);
+        scale.px = Math.round(projection([loc1[0] + dLon, loc1[1]])[0]);
+
+        if (imperial) {
+            if (scale.dist >= 5280) {
+                scale.dist /= 5280;
+                scale.text = String(scale.dist) + ' mi';
+            } else {
+                scale.text = String(scale.dist) + ' ft';
+            }
+        } else {
+            if (scale.dist >= 1000) {
+                scale.dist /= 1000;
+                scale.text = String(scale.dist) + ' km';
+            } else {
+                scale.text = String(scale.dist) + ' m';
+            }
+        }
+
+        return scale;
+    }
+
+    function update(selection) {
+        // choose loc1, loc2 along bottom of viewport (near where the scale will be drawn)
+        var dims = context.map().dimensions(),
+            loc1 = projection.invert([0, dims[1]]),
+            loc2 = projection.invert([maxLength, dims[1]]),
+            scale = scaleDefs(loc1, loc2);
+
+        selection.select('#scalepath')
+            .attr('d', 'M0.5,0.5v' + tickHeight + 'h' + scale.px + 'v-' + tickHeight);
+
+        selection.select('#scaletext')
+            .attr('x', scale.px + 8)
+            .attr('y', tickHeight)
+            .text(scale.text);
+    }
+
+    return function(selection) {
+        var g = selection.append('svg')
+            .attr('id', 'scale')
+            .append('g')
+            .attr('transform', 'translate(10,11)');
+
+        g.append('path').attr('id', 'scalepath');
+        g.append('text').attr('id', 'scaletext');
+
+        update(selection);
+
+        context.map().on('move.scale', function() {
+            update(selection);
+        });
+    };
+};
 iD.ui.SelectionList = function(context, selectedIDs) {
 
     function selectionList(selection) {
@@ -29873,11 +30651,16 @@ iD.ui.Zoom = function(context) {
         button.append('span')
             .attr('class', function(d) { return d.id + ' icon'; });
 
-        var keybinding = d3.keybinding('zoom')
-            .on('+', function() { context.zoomIn(); })
-            .on('-', function() { context.zoomOut(); })
-            .on('⇧=', function() { context.zoomIn(); })
-            .on('dash', function() { context.zoomOut(); });
+        var keybinding = d3.keybinding('zoom');
+
+        _.each(['=','ffequals','plus','ffplus'], function(key) {
+            keybinding.on(key, function() { context.zoomIn(); });
+            keybinding.on('⇧' + key, function() { context.zoomIn(); });
+        });
+        _.each(['-','ffminus','_','dash'], function(key) {
+            keybinding.on(key, function() { context.zoomOut(); });
+            keybinding.on('⇧' + key, function() { context.zoomOut(); });
+        });
 
         d3.select(document)
             .call(keybinding);
@@ -30078,12 +30861,18 @@ iD.ui.preset.access = function(field) {
     return d3.rebind(access, event, 'on');
 };
 iD.ui.preset.address = function(field, context) {
-    var event = d3.dispatch('change'),
-        housenumber,
-        street,
-        city,
-        postcode,
-        entity;
+    var event = d3.dispatch('init', 'change'),
+        wrap,
+        entity,
+        isInitialized;
+
+    var widths = {
+        housenumber: 1/3,
+        street: 2/3,
+        city: 2/3,
+        state: 1/4,
+        postcode: 1/3
+    };
 
     function getStreets() {
         var extent = entity.extent(context.graph()),
@@ -30168,71 +30957,95 @@ iD.ui.preset.address = function(field, context) {
     }
 
     function address(selection) {
-        var wrap = selection.selectAll('.preset-input-wrap')
-            .data([0]);
+        selection.selectAll('.preset-input-wrap')
+            .remove();
+
+        var center = entity.extent(context.graph()).center(),
+            addressFormat;
 
         // Enter
 
-        var enter = wrap.enter().append('div')
+        wrap = selection.append('div')
             .attr('class', 'preset-input-wrap');
 
-        enter.append('input')
-            .property('type', 'text')
-            .attr('placeholder', field.t('placeholders.number'))
-            .attr('class', 'addr-number');
+        iD.countryCode().search(center, function (err, countryCode) {
+            addressFormat = _.find(iD.data.addressFormats, function (a) {
+                return a && a.countryCodes && _.contains(a.countryCodes, countryCode);
+            }) || _.first(iD.data.addressFormats);
 
-        enter.append('input')
-            .property('type', 'text')
-            .attr('placeholder', field.t('placeholders.street'))
-            .attr('class', 'addr-street');
+            function row(r) {
+                // Normalize widths.
+                var total = _.reduce(r, function(sum, field) {
+                    return sum + (widths[field] || 0.5);
+                }, 0);
 
-        enter.append('input')
-            .property('type', 'text')
-            .attr('placeholder', field.t('placeholders.city'))
-            .attr('class', 'addr-city');
+                return r.map(function (field) {
+                    return {
+                        id: field,
+                        width: (widths[field] || 0.5) / total
+                    };
+                });
+            }
 
-        enter.append('input')
-            .property('type', 'text')
-            .attr('placeholder', field.t('placeholders.postcode'))
-            .attr('class', 'addr-postcode');
+            wrap.selectAll('div')
+                .data(addressFormat.format)
+                .enter()
+                .append('div')
+                .attr('class', 'addr-row')
+                .selectAll('input')
+                .data(row)
+                .enter()
+                .append('input')
+                .property('type', 'text')
+                .attr('placeholder', function (d) { return field.t('placeholders.' + d.id); })
+                .attr('class', function (d) { return 'addr-' + d.id; })
+                .style('width', function (d) { return d.width * 100 + '%'; });
 
-        // Update
+            // Update
 
-        housenumber = wrap.select('.addr-number');
-        street = wrap.select('.addr-street');
-        city = wrap.select('.addr-city');
-        postcode = wrap.select('.addr-postcode');
+            wrap.selectAll('.addr-street')
+                .call(d3.combobox()
+                    .fetcher(function(value, callback) {
+                        callback(getStreets());
+                    }));
 
-        street
-            .call(d3.combobox()
-                .fetcher(function(value, callback) {
-                    callback(getStreets());
-                }));
+            wrap.selectAll('.addr-city')
+                .call(d3.combobox()
+                    .fetcher(function(value, callback) {
+                        callback(getCities());
+                    }));
 
-        city
-            .call(d3.combobox()
-                .fetcher(function(value, callback) {
-                    callback(getCities());
-                }));
+            wrap.selectAll('.addr-postcode')
+                .call(d3.combobox()
+                    .fetcher(function(value, callback) {
+                        callback(getPostCodes());
+                    }));
 
-        postcode
-            .call(d3.combobox()
-                .fetcher(function(value, callback) {
-                    callback(getPostCodes());
-                }));
+            wrap.selectAll('input')
+                .on('blur', change)
+                .on('change', change);
 
-        wrap.selectAll('input')
-            .on('blur', change)
-            .on('change', change);
+            event.init();
+            isInitialized = true;
+        });
     }
 
     function change() {
-        event.change({
-            'addr:housenumber': housenumber.value() || undefined,
-            'addr:street': street.value() || undefined,
-            'addr:city': city.value() || undefined,
-            'addr:postcode': postcode.value() || undefined
-        });
+        var tags = {};
+
+        wrap.selectAll('input')
+            .each(function (field) {
+                tags['addr:' + field.id] = this.value || undefined;
+            });
+
+        event.change(tags);
+    }
+
+    function updateTags(tags) {
+        wrap.selectAll('input')
+            .value(function (field) {
+                return tags['addr:' + field.id] || '';
+            });
     }
 
     address.entity = function(_) {
@@ -30242,14 +31055,17 @@ iD.ui.preset.address = function(field, context) {
     };
 
     address.tags = function(tags) {
-        housenumber.value(tags['addr:housenumber'] || '');
-        street.value(tags['addr:street'] || '');
-        city.value(tags['addr:city'] || '');
-        postcode.value(tags['addr:postcode'] || '');
+        if (isInitialized) {
+            updateTags(tags);
+        } else {
+            event.on('init', function () {
+                updateTags(tags);
+            });
+        }
     };
 
     address.focus = function() {
-        housenumber.node().focus();
+        wrap.selectAll('input').node().focus();
     };
 
     return d3.rebind(address, event, 'on');
@@ -30265,7 +31081,7 @@ iD.ui.preset.defaultcheck = function(field) {
     if (options) {
         for (var k in options) {
             values.push(k === 'undefined' ? undefined : k);
-            texts.push(field.t('check.' + k, { 'default': options[k] }));
+            texts.push(field.t('options.' + k, { 'default': options[k] }));
         }
     } else {
         values = [undefined, 'yes'];
@@ -30282,8 +31098,7 @@ iD.ui.preset.defaultcheck = function(field) {
         if (field.id === 'oneway') {
             for (var key in entity.tags) {
                 if (key in iD.oneWayTags && (entity.tags[key] in iD.oneWayTags[key])) {
-                    texts.shift();
-                    texts.unshift(t('presets.fields.oneway_yes.check.undefined', { 'default': 'Assumed to be Yes' }));
+                    texts[0] = t('presets.fields.oneway_yes.options.undefined');
                     break;
                 }
             }
@@ -30340,6 +31155,9 @@ iD.ui.preset.defaultcheck = function(field) {
 iD.ui.preset.combo =
 iD.ui.preset.typeCombo = function(field) {
     var event = d3.dispatch('change'),
+        optstrings = field.strings && field.strings.options,
+        optarray = field.options,
+        strings = {},
         input;
 
     function combo(selection) {
@@ -30348,46 +31166,66 @@ iD.ui.preset.typeCombo = function(field) {
         input = selection.selectAll('input')
             .data([0]);
 
-        input.enter().append('input')
+        var enter = input.enter()
+            .append('input')
             .attr('type', 'text')
             .attr('id', 'preset-input-' + field.id);
 
+        if (optstrings) { enter.attr('readonly', 'readonly'); }
+
         input
             .call(combobox)
             .on('change', change)
             .on('blur', change)
             .each(function() {
-                if (field.options) {
-                    options(field.options);
+                if (optstrings) {
+                    _.each(optstrings, function(v, k) {
+                        strings[k] = field.t('options.' + k, { 'default': v });
+                    });
+                    stringsLoaded();
+                } else if (optarray) {
+                    _.each(optarray, function(k) {
+                        strings[k] = k.replace(/_+/g, ' ');
+                    });
+                    stringsLoaded();
                 } else {
-                    iD.taginfo().values({
-                        key: field.key
-                    }, function(err, data) {
-                        if (!err) options(_.pluck(data, 'value'));
+                    iD.taginfo().values({key: field.key}, function(err, data) {
+                        if (!err) {
+                            _.each(_.pluck(data, 'value'), function(k) {
+                                strings[k] = k.replace(/_+/g, ' ');
+                            });
+                            stringsLoaded();
+                        }
                     });
                 }
             });
 
-        function options(opts) {
-            combobox.data(opts.map(function(d) {
-                var o = {};
-                o.title = o.value = d.replace(/_+/g, ' ');
+        function stringsLoaded() {
+            var keys = _.keys(strings),
+                strs = [],
+                placeholders;
+
+            combobox.data(keys.map(function(k) {
+                var s = strings[k],
+                    o = {};
+                o.title = o.value = s;
+                if (s.length < 20) { strs.push(s); }
                 return o;
             }));
 
-            input.attr('placeholder', function() {
-                if (opts.length < 3) return '';
-                return opts.slice(0, 3).join(', ') + '...';
-            });
+            placeholders = strs.length > 1 ? strs : keys;
+            input.attr('placeholder', field.placeholder() ||
+                (placeholders.slice(0, 3).join(', ') + '...'));
         }
     }
 
     function change() {
-        var value = input.value()
-            .split(';')
-            .map(function(s) { return s.trim(); })
-            .join(';')
-            .replace(/\s+/g, '_');
+        var optstring = _.find(_.keys(strings), function(k) { return strings[k] === input.value(); }),
+            value = optstring || (input.value()
+                .split(';')
+                .map(function(s) { return s.trim(); })
+                .join(';')
+                .replace(/\s+/g, '_'));
 
         if (field.type === 'typeCombo' && !value) value = 'yes';
 
@@ -30397,8 +31235,9 @@ iD.ui.preset.typeCombo = function(field) {
     }
 
     combo.tags = function(tags) {
-        var value = tags[field.key] || '';
-        if (field.type === 'typeCombo' && value === 'yes') value = '';
+        var key = tags[field.key],
+            value = strings[key] || key || '';
+        if (field.type === 'typeCombo' && value.toLowerCase() === 'yes') value = '';
         input.value(value);
     };
 
@@ -30993,9 +31832,10 @@ iD.ui.preset.restrictions = function(field, context) {
                 } else {
                     preset = presets.item('type/restriction/' +
                         iD.geo.inferRestriction(
-                            graph.entity(datum.from.node),
-                            graph.entity(datum.via.node),
-                            graph.entity(datum.to.node),
+                            graph,
+                            datum.from,
+                            datum.via,
+                            datum.to,
                             projection));
                 }
 
@@ -32137,7 +32977,7 @@ iD.validate = function(changes, graph) {
         if ((geometry === 'point' || geometry === 'line' || geometry === 'area') && !change.isUsed(graph)) {
             warnings.push({
                 message: t('validations.untagged_' + geometry),
-                tooltip: t('validations.untagged_tooltip', {geometry: geometry}),
+                tooltip: t('validations.untagged_' + geometry + '_tooltip'),
                 entity: change
             });
         }
@@ -36498,6 +37338,404 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
             "terms_text": "geoimage.at",
             "id": "geoimage.at"
         },
+        {
+            "name": "Geoportal.gov.pl (Orthophotomap)",
+            "type": "tms",
+            "template": "http://wms.misek.pl/geoportal.orto/tms/{zoom}/{x}/{y}",
+            "scaleExtent": [
+                6,
+                24
+            ],
+            "polygon": [
+                [
+                    [
+                        15.9751041,
+                        54.3709213
+                    ],
+                    [
+                        16.311164,
+                        54.5561775
+                    ],
+                    [
+                        17.1391878,
+                        54.7845723
+                    ],
+                    [
+                        18.3448458,
+                        54.9022727
+                    ],
+                    [
+                        19.6613689,
+                        54.4737213
+                    ],
+                    [
+                        20.2815206,
+                        54.4213456
+                    ],
+                    [
+                        21.4663914,
+                        54.3406369
+                    ],
+                    [
+                        22.7759855,
+                        54.3769755
+                    ],
+                    [
+                        22.8625989,
+                        54.4233613
+                    ],
+                    [
+                        23.2956657,
+                        54.2678633
+                    ],
+                    [
+                        23.5347186,
+                        54.0955258
+                    ],
+                    [
+                        23.5208604,
+                        53.9775182
+                    ],
+                    [
+                        23.7183389,
+                        53.4629603
+                    ],
+                    [
+                        23.9296755,
+                        53.1856735
+                    ],
+                    [
+                        23.9296755,
+                        52.6887269
+                    ],
+                    [
+                        23.732197,
+                        52.6067497
+                    ],
+                    [
+                        23.5658994,
+                        52.5878101
+                    ],
+                    [
+                        23.2090523,
+                        52.3302642
+                    ],
+                    [
+                        23.1951942,
+                        52.2370089
+                    ],
+                    [
+                        23.5035377,
+                        52.1860596
+                    ],
+                    [
+                        23.6906226,
+                        52.0030113
+                    ],
+                    [
+                        23.5970802,
+                        51.739903
+                    ],
+                    [
+                        23.6629063,
+                        51.3888562
+                    ],
+                    [
+                        23.9366046,
+                        50.9827781
+                    ],
+                    [
+                        24.1687284,
+                        50.8604752
+                    ],
+                    [
+                        24.0197534,
+                        50.8035823
+                    ],
+                    [
+                        24.1098313,
+                        50.6610467
+                    ],
+                    [
+                        24.0578633,
+                        50.4188439
+                    ],
+                    [
+                        23.6178674,
+                        50.3083403
+                    ],
+                    [
+                        22.6824431,
+                        49.5163532
+                    ],
+                    [
+                        22.7378756,
+                        49.2094935
+                    ],
+                    [
+                        22.9041733,
+                        49.0780441
+                    ],
+                    [
+                        22.8625989,
+                        48.9940062
+                    ],
+                    [
+                        22.6096878,
+                        49.0371785
+                    ],
+                    [
+                        22.0761495,
+                        49.2004392
+                    ],
+                    [
+                        21.8474902,
+                        49.3721872
+                    ],
+                    [
+                        21.3763135,
+                        49.4488281
+                    ],
+                    [
+                        21.1026153,
+                        49.3721872
+                    ],
+                    [
+                        20.9120659,
+                        49.3022043
+                    ],
+                    [
+                        20.6452967,
+                        49.3902311
+                    ],
+                    [
+                        20.1845136,
+                        49.3315641
+                    ],
+                    [
+                        20.1186875,
+                        49.2004392
+                    ],
+                    [
+                        19.9419962,
+                        49.1302123
+                    ],
+                    [
+                        19.765305,
+                        49.2117568
+                    ],
+                    [
+                        19.7479823,
+                        49.3992506
+                    ],
+                    [
+                        19.6024718,
+                        49.4150307
+                    ],
+                    [
+                        19.5089294,
+                        49.5815389
+                    ],
+                    [
+                        19.4292451,
+                        49.5905232
+                    ],
+                    [
+                        19.2317666,
+                        49.4150307
+                    ],
+                    [
+                        18.9961783,
+                        49.387976
+                    ],
+                    [
+                        18.9338167,
+                        49.4916048
+                    ],
+                    [
+                        18.8368097,
+                        49.4938552
+                    ],
+                    [
+                        18.8021643,
+                        49.6623381
+                    ],
+                    [
+                        18.6427958,
+                        49.7094091
+                    ],
+                    [
+                        18.521537,
+                        49.8994693
+                    ],
+                    [
+                        18.0815412,
+                        50.0109209
+                    ],
+                    [
+                        17.8875272,
+                        49.9886512
+                    ],
+                    [
+                        17.7385522,
+                        50.0687739
+                    ],
+                    [
+                        17.6068999,
+                        50.1709584
+                    ],
+                    [
+                        17.7454813,
+                        50.2153184
+                    ],
+                    [
+                        17.710836,
+                        50.3017019
+                    ],
+                    [
+                        17.4163505,
+                        50.2640668
+                    ],
+                    [
+                        16.9486384,
+                        50.4453265
+                    ],
+                    [
+                        16.8932058,
+                        50.4033889
+                    ],
+                    [
+                        17.0006064,
+                        50.3105529
+                    ],
+                    [
+                        17.017929,
+                        50.2241854
+                    ],
+                    [
+                        16.8135215,
+                        50.186489
+                    ],
+                    [
+                        16.6402948,
+                        50.0976742
+                    ],
+                    [
+                        16.4324227,
+                        50.2862087
+                    ],
+                    [
+                        16.1968344,
+                        50.4276731
+                    ],
+                    [
+                        16.4220291,
+                        50.5885165
+                    ],
+                    [
+                        16.3388803,
+                        50.6632429
+                    ],
+                    [
+                        16.2280152,
+                        50.6368824
+                    ],
+                    [
+                        16.0547884,
+                        50.6127057
+                    ],
+                    [
+                        15.5732181,
+                        50.7641544
+                    ],
+                    [
+                        15.2683391,
+                        50.8976368
+                    ],
+                    [
+                        15.2440873,
+                        50.980597
+                    ],
+                    [
+                        15.0292862,
+                        51.0133036
+                    ],
+                    [
+                        15.0015699,
+                        50.8582883
+                    ],
+                    [
+                        14.8110205,
+                        50.8735944
+                    ],
+                    [
+                        14.956531,
+                        51.0721176
+                    ],
+                    [
+                        15.0188926,
+                        51.2914636
+                    ],
+                    [
+                        14.9392083,
+                        51.4601459
+                    ],
+                    [
+                        14.7209426,
+                        51.5571799
+                    ],
+                    [
+                        14.7521234,
+                        51.6260562
+                    ],
+                    [
+                        14.5996839,
+                        51.8427626
+                    ],
+                    [
+                        14.70362,
+                        52.0733396
+                    ],
+                    [
+                        14.5581095,
+                        52.2497371
+                    ],
+                    [
+                        14.5165351,
+                        52.425436
+                    ],
+                    [
+                        14.6031485,
+                        52.5878101
+                    ],
+                    [
+                        14.1146491,
+                        52.8208272
+                    ],
+                    [
+                        14.152759,
+                        52.9733951
+                    ],
+                    [
+                        14.3502374,
+                        53.0734212
+                    ],
+                    [
+                        14.4229927,
+                        53.2665624
+                    ],
+                    [
+                        14.1977979,
+                        53.8734759
+                    ],
+                    [
+                        14.2220497,
+                        53.9958517
+                    ]
+                ]
+            ],
+            "terms_text": "Copyright © Główny Urząd Geodezji i Kartografii."
+        },
         {
             "name": "Imagerie Drone (Haiti)",
             "type": "tms",
@@ -41803,8 +43041,7 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                     ]
                 ]
             ],
-            "id": "kelowna_2012",
-            "default": true
+            "id": "kelowna_2012"
         },
         {
             "name": "Kelowna Roads overlay",
@@ -42235,7 +43472,7 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
         {
             "name": "Latest southwest British Columbia Landsat",
             "type": "tms",
-            "description": "Recent lower-resolution landwsat imagery for southwest British Columbia",
+            "description": "Recent lower-resolution landsat imagery for southwest British Columbia",
             "template": "http://{switch:a,b,c,d}.tile.paulnorman.ca/landsat_047026/{zoom}/{x}/{y}.png",
             "scaleExtent": [
                 5,
@@ -42470,7 +43707,7 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
             "name": "Locator Overlay",
             "type": "tms",
             "description": "Shows major features to help orient you.",
-            "template": "http://{switch:a,b,c}.tiles.mapbox.com/v3/openstreetmap.map-btyhiati/{zoom}/{x}/{y}.png",
+            "template": "http://{switch:a,b,c}.tiles.mapbox.com/v4/openstreetmap.map-inh76ba2/{zoom}/{x}/{y}.png?access_token=pk.eyJ1Ijoib3BlbnN0cmVldG1hcCIsImEiOiJhNVlHd29ZIn0.ti6wATGDWOmCnCYen-Ip7Q",
             "scaleExtent": [
                 0,
                 16
@@ -42481,3008 +43718,2935 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
             "overlay": true
         },
         {
-            "name": "MapQuest Open Aerial",
-            "type": "tms",
-            "template": "http://oatile{switch:1,2,3,4}.mqcdn.com/tiles/1.0.0/sat/{zoom}/{x}/{y}.png",
-            "default": true
-        },
-        {
-            "name": "Mapbox Satellite",
-            "type": "tms",
-            "description": "Satellite and aerial imagery.",
-            "template": "http://{switch:a,b,c}.tiles.mapbox.com/v3/openstreetmap.map-4wvf9l0l/{zoom}/{x}/{y}.png",
-            "scaleExtent": [
-                0,
-                19
-            ],
-            "terms_url": "http://www.mapbox.com/about/maps/",
-            "terms_text": "Terms & Feedback",
-            "id": "Mapbox",
-            "default": true
-        },
-        {
-            "name": "NLS - Bartholomew Half Inch, 1897-1907",
+            "name": "Luxembourg Inspire Ortho 2010",
             "type": "tms",
-            "template": "http://geo.nls.uk/mapdata2/bartholomew/great_britain/{zoom}/{x}/{-y}.png",
+            "template": "http://mapproxy.openstreetmap.lu/tiles/ortho2010/EPSG900913/{z}/{x}/{y}.jpeg",
             "scaleExtent": [
                 0,
-                15
+                20
             ],
             "polygon": [
                 [
                     [
-                        -9,
-                        49.8
+                        5.961753,
+                        50.17631
                     ],
                     [
-                        -9,
-                        61.1
+                        6.026268,
+                        50.18496
                     ],
                     [
-                        1.9,
-                        61.1
+                        6.033182,
+                        50.16395
                     ],
                     [
-                        1.9,
-                        49.8
+                        6.060695,
+                        50.15536
                     ],
                     [
-                        -9,
-                        49.8
-                    ]
-                ]
-            ],
-            "terms_url": "http://geo.nls.uk/maps/",
-            "terms_text": "National Library of Scotland Historic Maps"
-        },
-        {
-            "name": "NLS - OS 1-inch 7th Series 1955-61",
-            "type": "tms",
-            "template": "http://geo.nls.uk/mapdata2/os/seventh/{zoom}/{x}/{-y}.png",
-            "scaleExtent": [
-                5,
-                16
-            ],
-            "polygon": [
-                [
+                        6.07668,
+                        50.15913
+                    ],
                     [
-                        -6.4585407,
-                        49.9044128
+                        6.078237,
+                        50.17255
                     ],
                     [
-                        -6.3872009,
-                        49.9841116
+                        6.101762,
+                        50.17199
                     ],
                     [
-                        -6.2296827,
-                        49.9896159
+                        6.122501,
+                        50.16437
                     ],
                     [
-                        -6.2171269,
-                        49.8680087
+                        6.120101,
+                        50.15594
                     ],
                     [
-                        -6.4551164,
-                        49.8591793
-                    ]
-                ],
-                [
+                        6.127695,
+                        50.14993
+                    ],
                     [
-                        -1.4495137,
-                        60.8634056
+                        6.113228,
+                        50.13739
                     ],
                     [
-                        -0.7167114,
-                        60.8545122
+                        6.123691,
+                        50.13719
                     ],
                     [
-                        -0.7349744,
-                        60.4359756
+                        6.140929,
+                        50.1305
                     ],
                     [
-                        -0.6938826,
-                        60.4168218
+                        6.135554,
+                        50.11899
                     ],
                     [
-                        -0.7258429,
-                        60.3942735
+                        6.138082,
+                        50.10263
                     ],
                     [
-                        -0.7395401,
-                        60.0484714
+                        6.131085,
+                        50.09964
                     ],
                     [
-                        -0.9267357,
-                        60.0461918
+                        6.135473,
+                        50.09119
                     ],
                     [
-                        -0.9381501,
-                        59.8266157
+                        6.121939,
+                        50.09059
                     ],
                     [
-                        -1.4586452,
-                        59.831205
+                        6.126335,
+                        50.07817
                     ],
                     [
-                        -1.4455187,
-                        60.0535999
+                        6.131858,
+                        50.07348
                     ],
                     [
-                        -1.463211,
-                        60.0535999
+                        6.121171,
+                        50.064
                     ],
                     [
-                        -1.4643524,
-                        60.0630002
+                        6.114444,
+                        50.06139
                     ],
                     [
-                        -1.5716475,
-                        60.0638546
+                        6.115631,
+                        50.05817
                     ],
                     [
-                        -1.5693646,
-                        60.1790005
+                        6.123611,
+                        50.06323
                     ],
                     [
-                        -1.643558,
-                        60.1807033
+                        6.136608,
+                        50.04178
                     ],
                     [
-                        -1.643558,
-                        60.1892162
+                        6.130343,
+                        50.02975
                     ],
                     [
-                        -1.8216221,
-                        60.1894999
+                        6.148207,
+                        50.02307
                     ],
                     [
-                        -1.8204807,
-                        60.3615507
+                        6.13868,
+                        50.01572
                     ],
                     [
-                        -1.8415973,
-                        60.3697345
+                        6.135938,
+                        50.01485
                     ],
                     [
-                        -1.8216221,
-                        60.3832755
+                        6.131384,
+                        50.01905
                     ],
                     [
-                        -1.8179852,
-                        60.5934321
+                        6.130243,
+                        50.01819
                     ],
                     [
-                        -1.453168,
-                        60.5934321
-                    ]
-                ],
-                [
+                        6.139343,
+                        50.01116
+                    ],
                     [
-                        -4.9089213,
-                        54.4242078
+                        6.151702,
+                        50.01058
                     ],
                     [
-                        -4.282598,
-                        54.4429861
+                        6.145464,
+                        49.99689
                     ],
                     [
-                        -4.2535417,
-                        54.029769
+                        6.139657,
+                        49.9994
                     ],
                     [
-                        -4.8766366,
-                        54.0221831
-                    ]
-                ],
-                [
+                        6.138524,
+                        49.99829
+                    ],
                     [
-                        -5.8667408,
-                        59.1444603
+                        6.142178,
+                        49.99535
                     ],
                     [
-                        -5.7759966,
-                        59.1470945
+                        6.150227,
+                        49.99518
                     ],
                     [
-                        -5.7720016,
-                        59.1014052
+                        6.156247,
+                        49.98867
                     ],
                     [
-                        -5.8621751,
-                        59.0990605
-                    ]
-                ],
-                [
+                        6.173045,
+                        49.98589
+                    ],
                     [
-                        -1.7065887,
-                        59.5703599
+                        6.17348,
+                        49.98344
                     ],
                     [
-                        -1.5579165,
-                        59.5693481
+                        6.170353,
+                        49.98376
                     ],
                     [
-                        -1.5564897,
-                        59.4965695
+                        6.165487,
+                        49.97115
                     ],
                     [
-                        -1.7054472,
-                        59.4975834
-                    ]
-                ],
-                [
+                        6.171512,
+                        49.96298
+                    ],
                     [
-                        -7.6865827,
-                        58.2940975
+                        6.176298,
+                        49.962
                     ],
                     [
-                        -7.5330594,
-                        58.3006957
+                        6.179954,
+                        49.95386
                     ],
                     [
-                        -7.5256401,
-                        58.2646905
+                        6.183393,
+                        49.9548
                     ],
                     [
-                        -7.6797341,
-                        58.2577853
-                    ]
-                ],
-                [
+                        6.179829,
+                        49.96307
+                    ],
                     [
-                        -4.5338281,
-                        59.0359871
+                        6.183312,
+                        49.9686
                     ],
                     [
-                        -4.481322,
-                        59.0371616
+                        6.192774,
+                        49.97158
                     ],
                     [
-                        -4.4796099,
-                        59.0186583
+                        6.199783,
+                        49.95352
                     ],
                     [
-                        -4.5332574,
-                        59.0180707
-                    ]
-                ],
-                [
+                        6.207066,
+                        49.95672
+                    ],
                     [
-                        -8.6710698,
-                        57.8769896
+                        6.212689,
+                        49.9514
                     ],
                     [
-                        -8.4673234,
-                        57.8897332
+                        6.225023,
+                        49.95039
                     ],
                     [
-                        -8.4467775,
-                        57.7907
+                        6.22044,
+                        49.94369
                     ],
                     [
-                        -8.6510947,
-                        57.7779213
-                    ]
-                ],
-                [
+                        6.228241,
+                        49.93726
+                    ],
                     [
-                        -5.2395519,
-                        50.3530581
+                        6.22635,
+                        49.92766
                     ],
                     [
-                        -5.7920073,
-                        50.3384899
+                        6.219133,
+                        49.92354
                     ],
                     [
-                        -5.760047,
-                        49.9317027
+                        6.229862,
+                        49.92125
                     ],
                     [
-                        -4.6551363,
-                        49.9581461
+                        6.236032,
+                        49.91355
                     ],
                     [
-                        -4.677965,
-                        50.2860073
+                        6.231867,
+                        49.91064
                     ],
                     [
-                        -4.244219,
-                        50.2801723
+                        6.227694,
+                        49.91062
                     ],
                     [
-                        -4.2487848,
-                        50.2042525
+                        6.232286,
+                        49.9072
                     ],
                     [
-                        -3.3812929,
-                        50.2042525
+                        6.23381,
+                        49.90028
                     ],
                     [
-                        -3.4223846,
-                        50.5188201
+                        6.246919,
+                        49.89535
                     ],
                     [
-                        -3.1164796,
-                        50.5246258
+                        6.257809,
+                        49.88724
                     ],
                     [
-                        -3.1210453,
-                        50.6579592
+                        6.263008,
+                        49.88101
                     ],
                     [
-                        -2.6736357,
-                        50.6619495
+                        6.276455,
+                        49.87725
                     ],
                     [
-                        -2.5953453,
-                        50.6394325
+                        6.281126,
+                        49.87957
                     ],
                     [
-                        -2.5905026,
-                        50.5728419
+                        6.291661,
+                        49.87548
                     ],
                     [
-                        -2.4791203,
-                        50.5733545
+                        6.297699,
+                        49.86673
                     ],
                     [
-                        -2.4758919,
-                        50.5066704
+                        6.309889,
+                        49.87107
                     ],
                     [
-                        -2.3967943,
-                        50.5056438
+                        6.315324,
+                        49.8673
                     ],
                     [
-                        -2.401637,
-                        50.5723293
+                        6.314651,
+                        49.86057
                     ],
                     [
-                        -1.0400296,
-                        50.5718167
+                        6.323611,
+                        49.85188
                     ],
                     [
-                        -1.0335726,
-                        50.7059289
+                        6.321577,
+                        49.8409
                     ],
                     [
-                        -0.549302,
-                        50.7038843
+                        6.327406,
+                        49.83673
                     ],
                     [
-                        -0.5460736,
-                        50.7886618
+                        6.336561,
+                        49.83998
                     ],
                     [
-                        -0.0924734,
-                        50.7856002
+                        6.339366,
+                        49.8507
                     ],
                     [
-                        -0.0876307,
-                        50.7181949
+                        6.364651,
+                        49.85164
                     ],
                     [
-                        0.4789659,
-                        50.7120623
+                        6.402203,
+                        49.82098
                     ],
                     [
-                        0.487037,
-                        50.8182467
+                        6.426434,
+                        49.81629
                     ],
                     [
-                        0.9761503,
-                        50.8049868
+                        6.428071,
+                        49.81186
                     ],
                     [
-                        0.9922927,
-                        51.0126311
+                        6.43097,
+                        49.81129
                     ],
                     [
-                        1.4491213,
-                        51.0004424
+                        6.441608,
+                        49.81547
                     ],
                     [
-                        1.4781775,
-                        51.4090372
+                        6.443442,
+                        49.81233
                     ],
                     [
-                        1.0229632,
-                        51.4271576
+                        6.45366,
+                        49.81275
                     ],
                     [
-                        1.035877,
-                        51.7640881
+                        6.464538,
+                        49.81975
                     ],
                     [
-                        1.6105448,
-                        51.7500992
+                        6.47057,
+                        49.82385
                     ],
                     [
-                        1.646058,
-                        52.1560003
+                        6.496805,
+                        49.81277
                     ],
                     [
-                        1.7267698,
-                        52.1540195
+                        6.50669,
+                        49.80993
                     ],
                     [
-                        1.749369,
-                        52.4481811
+                        6.511554,
+                        49.80238
                     ],
                     [
-                        1.7870672,
-                        52.4811624
+                        6.51485,
+                        49.80513
                     ],
                     [
-                        1.759102,
-                        52.522505
+                        6.519604,
+                        49.81446
                     ],
                     [
-                        1.7933451,
-                        52.9602749
+                        6.529808,
+                        49.81048
                     ],
                     [
-                        0.3798147,
-                        52.9958468
+                        6.532249,
+                        49.80686
                     ],
                     [
-                        0.3895238,
-                        53.2511239
+                        6.530829,
+                        49.80116
                     ],
                     [
-                        0.3478614,
-                        53.2511239
+                        6.506225,
+                        49.78899
                     ],
                     [
-                        0.3238912,
-                        53.282186
+                        6.519171,
+                        49.78344
                     ],
                     [
-                        0.3461492,
-                        53.6538501
+                        6.511055,
+                        49.77422
                     ],
                     [
-                        0.128487,
-                        53.6575466
+                        6.520563,
+                        49.76818
                     ],
                     [
-                        0.116582,
-                        53.6674703
+                        6.520516,
+                        49.76134
                     ],
                     [
-                        0.1350586,
-                        54.0655731
+                        6.503734,
+                        49.75086
                     ],
                     [
-                        -0.0609831,
-                        54.065908
+                        6.502627,
+                        49.73298
                     ],
                     [
-                        -0.0414249,
-                        54.4709448
+                        6.507266,
+                        49.72938
                     ],
                     [
-                        -0.5662701,
-                        54.4771794
+                        6.518092,
+                        49.7242
                     ],
                     [
-                        -0.5592078,
-                        54.6565127
+                        6.516417,
+                        49.72129
                     ],
                     [
-                        -1.1665638,
-                        54.6623485
+                        6.511763,
+                        49.72016
                     ],
                     [
-                        -1.1637389,
-                        54.842611
+                        6.504791,
+                        49.725
                     ],
                     [
-                        -1.3316194,
-                        54.843909
+                        6.498913,
+                        49.72639
                     ],
                     [
-                        -1.3257065,
-                        55.2470842
+                        6.495576,
+                        49.72443
                     ],
                     [
-                        -1.529453,
-                        55.2487108
+                        6.507122,
+                        49.71655
                     ],
                     [
-                        -1.524178,
-                        55.6540122
+                        6.507884,
+                        49.71215
                     ],
                     [
-                        -1.7638798,
-                        55.6540122
+                        6.504598,
+                        49.71227
                     ],
                     [
-                        -1.7733693,
-                        55.9719116
+                        6.427139,
+                        49.66237
                     ],
                     [
-                        -2.1607858,
-                        55.9682981
+                        6.439899,
+                        49.66025
                     ],
                     [
-                        -2.1543289,
-                        56.0621387
+                        6.442511,
+                        49.65591
                     ],
                     [
-                        -2.4578051,
-                        56.0585337
+                        6.421781,
+                        49.61809
                     ],
                     [
-                        -2.4190635,
-                        56.641717
+                        6.398978,
+                        49.60094
                     ],
                     [
-                        -2.0962164,
-                        56.641717
+                        6.379408,
+                        49.59526
                     ],
                     [
-                        -2.0833025,
-                        57.0021322
+                        6.375507,
+                        49.58809
                     ],
                     [
-                        -1.9283359,
-                        57.0126802
+                        6.384426,
+                        49.5801
                     ],
                     [
-                        -1.9180966,
-                        57.3590895
+                        6.381188,
+                        49.57509
                     ],
                     [
-                        -1.7502161,
-                        57.3625721
+                        6.369093,
+                        49.5783
                     ],
                     [
-                        -1.7695869,
-                        57.7608634
+                        6.357913,
+                        49.57166
                     ],
                     [
-                        -3.6937554,
-                        57.7574187
+                        6.384902,
+                        49.55817
                     ],
                     [
-                        -3.7066693,
-                        57.9806386
+                        6.380095,
+                        49.54856
                     ],
                     [
-                        -3.5969013,
-                        57.9772149
+                        6.358555,
+                        49.53296
                     ],
                     [
-                        -3.6033582,
-                        58.1207277
+                        6.359322,
+                        49.52481
                     ],
                     [
-                        -3.0222335,
-                        58.1309566
+                        6.370763,
+                        49.50545
                     ],
                     [
-                        -3.0286905,
-                        58.5410788
+                        6.370562,
+                        49.45732
                     ],
                     [
-                        -2.8478961,
-                        58.530968
+                        6.333403,
+                        49.46493
                     ],
                     [
-                        -2.86081,
-                        58.8430508
+                        6.321894,
+                        49.47244
                     ],
                     [
-                        -2.679624,
-                        58.8414991
+                        6.295034,
+                        49.47928
                     ],
                     [
-                        -2.6841897,
-                        58.885175
+                        6.287889,
+                        49.48379
                     ],
                     [
-                        -2.6339665,
-                        58.9052239
+                        6.271912,
+                        49.49995
                     ],
                     [
-                        -2.679624,
-                        58.9335083
+                        6.241327,
+                        49.50693
                     ],
                     [
-                        -2.6887555,
-                        59.0229231
+                        6.196692,
+                        49.50331
                     ],
                     [
-                        -2.3668703,
-                        59.0229231
+                        6.173373,
+                        49.50577
                     ],
                     [
-                        -2.3702946,
-                        59.2652861
+                        6.160858,
+                        49.50085
                     ],
                     [
-                        -2.3429001,
-                        59.2821989
+                        6.167099,
+                        49.49006
                     ],
                     [
-                        -2.3714361,
-                        59.2996861
+                        6.140179,
+                        49.48525
                     ],
                     [
-                        -2.3737189,
-                        59.3707083
+                        6.129367,
+                        49.48803
                     ],
                     [
-                        -2.3429001,
-                        59.385825
+                        6.127247,
+                        49.47081
                     ],
                     [
-                        -2.3725775,
-                        59.400354
+                        6.101403,
+                        49.46726
                     ],
                     [
-                        -2.3714361,
-                        59.4259098
+                        6.104826,
+                        49.45076
                     ],
                     [
-                        -3.0734196,
-                        59.4230067
+                        6.081667,
+                        49.45417
                     ],
                     [
-                        -3.0711368,
-                        59.3433649
+                        6.077222,
+                        49.46139
                     ],
                     [
-                        -3.103097,
-                        59.3311405
+                        6.059167,
+                        49.46306
                     ],
                     [
-                        -3.0745611,
-                        59.3136695
+                        6.052222,
+                        49.46028
                     ],
                     [
-                        -3.0722782,
-                        59.232603
+                        6.044213,
+                        49.44553
                     ],
                     [
-                        -3.3850319,
-                        59.1484167
+                        6.025294,
+                        49.44703
                     ],
                     [
-                        -3.3747589,
-                        58.9352753
+                        6.021545,
+                        49.45127
                     ],
                     [
-                        -3.5653789,
-                        58.9323303
+                        6.01574,
+                        49.44885
                     ],
                     [
-                        -3.554829,
-                        58.69759
+                        5.994123,
+                        49.45301
                     ],
                     [
-                        -5.2808579,
-                        58.6667732
+                        5.976569,
+                        49.44885
                     ],
                     [
-                        -5.2534159,
-                        58.3514125
+                        5.977725,
+                        49.45955
                     ],
                     [
-                        -5.5068508,
-                        58.3437887
+                        5.972317,
+                        49.46087
                     ],
                     [
-                        -5.4761804,
-                        58.0323557
+                        5.968912,
+                        49.48202
                     ],
                     [
-                        -5.8974958,
-                        58.0212436
+                        5.9616,
+                        49.49026
                     ],
                     [
-                        -5.8522972,
-                        57.6171758
+                        5.915781,
+                        49.49835
                     ],
                     [
-                        -6.1396311,
-                        57.6137174
+                        5.890334,
+                        49.4948
                     ],
                     [
-                        -6.1541592,
-                        57.7423183
+                        5.863321,
+                        49.50006
                     ],
                     [
-                        -6.2913692,
-                        57.7380102
+                        5.84897,
+                        49.50826
                     ],
                     [
-                        -6.3365678,
-                        58.1398784
+                        5.84828,
+                        49.51397
                     ],
                     [
-                        -6.1121891,
-                        58.1466944
+                        5.83641,
+                        49.51817
                     ],
                     [
-                        -6.1473778,
-                        58.5106285
+                        5.831868,
+                        49.52639
                     ],
                     [
-                        -6.2934817,
-                        58.5416182
+                        5.84308,
+                        49.53081
                     ],
                     [
-                        -6.8413713,
-                        58.2977321
+                        5.835622,
+                        49.54114
                     ],
                     [
-                        -7.0057382,
-                        58.2929331
+                        5.816251,
+                        49.53325
                     ],
                     [
-                        -7.1016189,
-                        58.2064403
+                        5.805201,
+                        49.54272
                     ],
                     [
-                        -7.2573132,
-                        58.1793148
+                        5.859432,
+                        49.57158
                     ],
                     [
-                        -7.2531092,
-                        58.1004928
+                        5.868663,
+                        49.587
                     ],
                     [
-                        -7.4070698,
-                        58.0905566
+                        5.862888,
+                        49.58525
                     ],
                     [
-                        -7.391347,
-                        57.7911354
+                        5.851102,
+                        49.58379
                     ],
                     [
-                        -7.790991,
-                        57.7733151
+                        5.847116,
+                        49.58961
                     ],
                     [
-                        -7.7624215,
-                        57.5444165
+                        5.845652,
+                        49.5981
                     ],
                     [
-                        -7.698501,
-                        57.1453194
+                        5.869401,
+                        49.6106
                     ],
                     [
-                        -7.7943817,
-                        57.1304547
+                        5.881819,
+                        49.63815
                     ],
                     [
-                        -7.716764,
-                        56.7368628
+                        5.899978,
+                        49.63907
                     ],
                     [
-                        -7.0122067,
-                        56.7654359
+                        5.899339,
+                        49.66239
                     ],
                     [
-                        -6.979922,
-                        56.5453858
+                        5.856561,
+                        49.67628
                     ],
                     [
-                        -7.0638622,
-                        56.5453858
+                        5.856283,
+                        49.68211
                     ],
                     [
-                        -7.0444914,
-                        56.3562587
+                        5.875703,
+                        49.71118
                     ],
                     [
-                        -6.500676,
-                        56.3812917
+                        5.864811,
+                        49.72331
                     ],
                     [
-                        -6.4491433,
-                        55.9793649
+                        5.843249,
+                        49.71822
                     ],
                     [
-                        -6.563287,
-                        55.9691456
+                        5.82191,
+                        49.72128
                     ],
                     [
-                        -6.5393742,
-                        55.7030135
+                        5.824894,
+                        49.73767
                     ],
                     [
-                        -6.5595521,
-                        55.6907321
+                        5.820728,
+                        49.74878
                     ],
                     [
-                        -6.5345315,
-                        55.6761713
+                        5.786264,
+                        49.79079
                     ],
                     [
-                        -6.5216176,
-                        55.5704434
+                        5.765172,
+                        49.78961
                     ],
                     [
-                        -5.8912587,
-                        55.5923416
+                        5.750937,
+                        49.79094
                     ],
                     [
-                        -5.8560127,
-                        55.2320733
+                        5.741591,
+                        49.82126
                     ],
                     [
-                        -5.2293639,
-                        55.2515958
+                        5.745814,
+                        49.82435
                     ],
                     [
-                        -5.1837064,
-                        54.6254139
+                        5.737197,
+                        49.83353
                     ],
                     [
-                        -3.6655956,
-                        54.6518373
+                        5.740531,
+                        49.84142
                     ],
                     [
-                        -3.6496155,
-                        54.4320023
+                        5.747012,
+                        49.84048
                     ],
                     [
-                        -3.5400375,
-                        54.4306744
+                        5.746237,
+                        49.84783
                     ],
                     [
-                        -3.530906,
-                        54.0290181
+                        5.753989,
+                        49.84878
                     ],
                     [
-                        -3.0697656,
-                        54.030359
+                        5.740663,
+                        49.85152
                     ],
                     [
-                        -3.0675737,
-                        53.8221388
+                        5.752288,
+                        49.85922
                     ],
                     [
-                        -3.0804876,
-                        53.7739911
+                        5.749545,
+                        49.87554
                     ],
                     [
-                        -3.0619239,
-                        53.7477488
+                        5.775668,
+                        49.87438
                     ],
                     [
-                        -3.0611168,
-                        53.6737049
+                        5.775053,
+                        49.88057
                     ],
                     [
-                        -3.2144691,
-                        53.6708361
+                        5.734598,
+                        49.89341
                     ],
                     [
-                        -3.2057699,
-                        53.4226163
+                        5.733033,
+                        49.90285
                     ],
                     [
-                        -3.2799632,
-                        53.355224
+                        5.757834,
+                        49.91737
                     ],
                     [
-                        -3.2896655,
-                        53.3608441
+                        5.760393,
+                        49.93252
                     ],
                     [
-                        -3.3327547,
-                        53.364931
+                        5.770728,
+                        49.93711
                     ],
                     [
-                        -3.3761293,
-                        53.3540318
+                        5.768783,
+                        49.94239
                     ],
                     [
-                        -4.0888976,
-                        53.3433102
+                        5.768802,
+                        49.96104
                     ],
                     [
-                        -4.0945474,
-                        53.4612036
+                        5.786724,
+                        49.96816
                     ],
                     [
-                        -4.697412,
-                        53.4448624
+                        5.80524,
+                        49.96677
                     ],
                     [
-                        -4.6882805,
-                        53.3318598
+                        5.806521,
+                        49.97321
                     ],
                     [
-                        -4.7202407,
-                        53.2895771
+                        5.831293,
+                        49.97995
                     ],
                     [
-                        -4.6837148,
-                        53.2486184
+                        5.834616,
+                        49.98656
                     ],
                     [
-                        -4.6768661,
-                        53.1542644
+                        5.818057,
+                        49.99936
                     ],
                     [
-                        -4.8480816,
-                        53.1446807
+                        5.815606,
+                        50.01437
                     ],
                     [
-                        -4.8178336,
-                        52.7440299
+                        5.847923,
+                        50.02809
                     ],
                     [
-                        -4.2545751,
-                        52.7558939
+                        5.861889,
+                        50.04581
                     ],
                     [
-                        -4.228876,
-                        52.254876
+                        5.850872,
+                        50.0563
                     ],
                     [
-                        -4.2607571,
-                        52.2536408
+                        5.857809,
+                        50.07186
                     ],
                     [
-                        -4.2724603,
-                        52.2432637
+                        5.880997,
+                        50.08069
                     ],
                     [
-                        -4.8136263,
-                        52.230095
+                        5.891965,
+                        50.12041
                     ],
                     [
-                        -4.8079191,
-                        52.1138892
+                        5.952856,
+                        50.13384
                     ],
                     [
-                        -5.3889104,
-                        52.0991668
+                        5.961753,
+                        50.17631
+                    ]
+                ]
+            ],
+            "terms_url": "http://www.act.public.lu/fr/actualites/2014/02/ortho2014/",
+            "terms_text": "Administration du Cadastre et de la Topographie",
+            "id": "lu.geoportail.inspire.ortho2010"
+        },
+        {
+            "name": "Luxembourg Inspire Ortho 2013",
+            "type": "tms",
+            "template": "http://mapproxy.openstreetmap.lu/tiles/ortho2013/EPSG900913/{z}/{x}/{y}.jpeg",
+            "scaleExtent": [
+                0,
+                20
+            ],
+            "polygon": [
+                [
+                    [
+                        5.961753,
+                        50.17631
                     ],
                     [
-                        -5.3717888,
-                        51.9129667
+                        6.026268,
+                        50.18496
                     ],
                     [
-                        -5.4208706,
-                        51.9101502
+                        6.033182,
+                        50.16395
                     ],
                     [
-                        -5.414022,
-                        51.8453218
+                        6.060695,
+                        50.15536
                     ],
                     [
-                        -5.3683645,
-                        51.8474373
+                        6.07668,
+                        50.15913
                     ],
                     [
-                        -5.3466772,
-                        51.5595332
+                        6.078237,
+                        50.17255
                     ],
                     [
-                        -4.773676,
-                        51.5758518
+                        6.101762,
+                        50.17199
                     ],
                     [
-                        -4.7656859,
-                        51.4885146
+                        6.122501,
+                        50.16437
                     ],
                     [
-                        -4.1915432,
-                        51.4970427
+                        6.120101,
+                        50.15594
                     ],
                     [
-                        -4.1869775,
-                        51.4344663
+                        6.127695,
+                        50.14993
                     ],
                     [
-                        -3.6151177,
-                        51.4444274
+                        6.113228,
+                        50.13739
                     ],
                     [
-                        -3.6105519,
-                        51.3746543
+                        6.123691,
+                        50.13719
                     ],
                     [
-                        -3.1494115,
-                        51.3789292
+                        6.140929,
+                        50.1305
                     ],
                     [
-                        -3.1494115,
-                        51.2919281
+                        6.135554,
+                        50.11899
                     ],
                     [
-                        -4.3038735,
-                        51.2745907
+                        6.138082,
+                        50.10263
                     ],
                     [
-                        -4.2861169,
-                        51.0508721
+                        6.131085,
+                        50.09964
                     ],
                     [
-                        -4.8543277,
-                        51.0366633
+                        6.135473,
+                        50.09119
                     ],
                     [
-                        -4.8372201,
-                        50.7212787
+                        6.121939,
+                        50.09059
                     ],
                     [
-                        -5.2618345,
-                        50.7082694
-                    ]
-                ],
-                [
+                        6.126335,
+                        50.07817
+                    ],
                     [
-                        -2.1502671,
-                        60.171318
+                        6.131858,
+                        50.07348
                     ],
                     [
-                        -2.0030218,
-                        60.1696146
+                        6.121171,
+                        50.064
                     ],
                     [
-                        -2.0013096,
-                        60.0997023
+                        6.114444,
+                        50.06139
                     ],
                     [
-                        -2.148555,
-                        60.1011247
-                    ]
-                ],
-                [
+                        6.115631,
+                        50.05817
+                    ],
                     [
-                        -6.2086011,
-                        59.1163488
+                        6.123611,
+                        50.06323
                     ],
                     [
-                        -6.1229934,
-                        59.1166418
+                        6.136608,
+                        50.04178
                     ],
                     [
-                        -6.121852,
-                        59.0714985
+                        6.130343,
+                        50.02975
                     ],
                     [
-                        -6.2097426,
-                        59.0714985
-                    ]
-                ],
-                [
+                        6.148207,
+                        50.02307
+                    ],
                     [
-                        -4.4159559,
-                        59.0889036
+                        6.13868,
+                        50.01572
                     ],
                     [
-                        -4.4212022,
-                        59.0770848
+                        6.135938,
+                        50.01485
                     ],
                     [
-                        -4.3971904,
-                        59.0779143
+                        6.131384,
+                        50.01905
                     ],
                     [
-                        -4.3913388,
-                        59.0897328
-                    ]
-                ]
-            ],
-            "terms_url": "http://geo.nls.uk/maps/",
-            "terms_text": "National Library of Scotland Historic Maps"
-        },
-        {
-            "name": "NLS - OS 1:25k 1st Series 1937-61",
-            "type": "tms",
-            "template": "http://geo.nls.uk/mapdata2/os/25000/{zoom}/{x}/{-y}.png",
-            "scaleExtent": [
-                5,
-                16
-            ],
-            "polygon": [
-                [
+                        6.130243,
+                        50.01819
+                    ],
                     [
-                        -4.7157244,
-                        54.6796556
+                        6.139343,
+                        50.01116
                     ],
                     [
-                        -4.6850662,
-                        54.6800268
+                        6.151702,
+                        50.01058
                     ],
                     [
-                        -4.6835779,
-                        54.6623245
+                        6.145464,
+                        49.99689
                     ],
                     [
-                        -4.7148782,
-                        54.6615818
-                    ]
-                ],
-                [
+                        6.139657,
+                        49.9994
+                    ],
                     [
-                        -3.7085748,
-                        58.3371151
+                        6.138524,
+                        49.99829
                     ],
                     [
-                        -3.5405937,
-                        58.3380684
+                        6.142178,
+                        49.99535
                     ],
                     [
-                        -3.5315137,
-                        58.1608002
+                        6.150227,
+                        49.99518
                     ],
                     [
-                        -3.3608086,
-                        58.1622372
+                        6.156247,
+                        49.98867
                     ],
                     [
-                        -3.3653486,
-                        58.252173
+                        6.173045,
+                        49.98589
                     ],
                     [
-                        -3.1610473,
-                        58.2536063
+                        6.17348,
+                        49.98344
                     ],
                     [
-                        -3.1610473,
-                        58.3261509
+                        6.170353,
+                        49.98376
                     ],
                     [
-                        -3.0275704,
-                        58.3271045
+                        6.165487,
+                        49.97115
                     ],
                     [
-                        -3.0366505,
-                        58.6139001
+                        6.171512,
+                        49.96298
                     ],
                     [
-                        -3.0021463,
-                        58.614373
+                        6.176298,
+                        49.962
                     ],
                     [
-                        -3.0030543,
-                        58.7036341
+                        6.179954,
+                        49.95386
                     ],
                     [
-                        -3.4180129,
-                        58.7003322
+                        6.183393,
+                        49.9548
                     ],
                     [
-                        -3.4171049,
-                        58.6290293
+                        6.179829,
+                        49.96307
                     ],
                     [
-                        -3.7240109,
-                        58.6266658
+                        6.183312,
+                        49.9686
                     ],
                     [
-                        -3.7231029,
-                        58.606806
+                        6.192774,
+                        49.97158
                     ],
                     [
-                        -4.2361262,
-                        58.5992374
+                        6.199783,
+                        49.95352
                     ],
                     [
-                        -4.2334022,
-                        58.5092347
+                        6.207066,
+                        49.95672
                     ],
                     [
-                        -3.88836,
-                        58.5144516
+                        6.212689,
+                        49.9514
                     ],
                     [
-                        -3.8829119,
-                        58.4261327
+                        6.225023,
+                        49.95039
                     ],
                     [
-                        -3.7158389,
-                        58.4270836
-                    ]
-                ],
-                [
+                        6.22044,
+                        49.94369
+                    ],
                     [
-                        -6.46676,
-                        49.9943621
+                        6.228241,
+                        49.93726
                     ],
                     [
-                        -6.1889102,
-                        50.004868
+                        6.22635,
+                        49.92766
                     ],
                     [
-                        -6.1789222,
-                        49.8967815
+                        6.219133,
+                        49.92354
                     ],
                     [
-                        -6.3169391,
-                        49.8915171
+                        6.229862,
+                        49.92125
                     ],
                     [
-                        -6.312399,
-                        49.8200979
+                        6.236032,
+                        49.91355
                     ],
                     [
-                        -6.4504159,
-                        49.8159968
-                    ]
-                ],
-                [
+                        6.231867,
+                        49.91064
+                    ],
                     [
-                        -5.6453263,
-                        50.2029809
+                        6.227694,
+                        49.91062
                     ],
                     [
-                        -5.7801329,
-                        50.2014076
+                        6.232286,
+                        49.9072
                     ],
                     [
-                        -5.7637888,
-                        50.0197267
+                        6.23381,
+                        49.90028
                     ],
                     [
-                        -5.3479221,
-                        50.0290604
+                        6.246919,
+                        49.89535
                     ],
                     [
-                        -5.3388421,
-                        49.9414854
+                        6.257809,
+                        49.88724
                     ],
                     [
-                        -5.024672,
-                        49.9473287
+                        6.263008,
+                        49.88101
                     ],
                     [
-                        -5.0355681,
-                        50.0383923
+                        6.276455,
+                        49.87725
                     ],
                     [
-                        -5.0010639,
-                        50.0453901
+                        6.281126,
+                        49.87957
                     ],
                     [
-                        -4.9974319,
-                        50.1304478
+                        6.291661,
+                        49.87548
                     ],
                     [
-                        -4.855783,
-                        50.13394
+                        6.297699,
+                        49.86673
                     ],
                     [
-                        -4.861231,
-                        50.206057
+                        6.309889,
+                        49.87107
                     ],
                     [
-                        -4.6546085,
-                        50.2140172
+                        6.315324,
+                        49.8673
                     ],
                     [
-                        -4.6558926,
-                        50.3018616
+                        6.314651,
+                        49.86057
                     ],
                     [
-                        -4.5184924,
-                        50.3026818
+                        6.323611,
+                        49.85188
                     ],
                     [
-                        -4.51464,
-                        50.325642
+                        6.321577,
+                        49.8409
                     ],
                     [
-                        -4.2488284,
-                        50.3264618
+                        6.327406,
+                        49.83673
                     ],
                     [
-                        -4.2488284,
-                        50.3100631
+                        6.336561,
+                        49.83998
                     ],
                     [
-                        -4.10886,
-                        50.3141633
+                        6.339366,
+                        49.8507
                     ],
                     [
-                        -4.1062917,
-                        50.2411267
+                        6.364651,
+                        49.85164
                     ],
                     [
-                        -3.9648088,
-                        50.2432047
+                        6.402203,
+                        49.82098
                     ],
                     [
-                        -3.9640778,
-                        50.2254158
+                        6.426434,
+                        49.81629
                     ],
                     [
-                        -3.8522287,
-                        50.2273626
+                        6.428071,
+                        49.81186
                     ],
                     [
-                        -3.8503757,
-                        50.1552563
+                        6.43097,
+                        49.81129
                     ],
                     [
-                        -3.6921809,
-                        50.1572487
+                        6.441608,
+                        49.81547
                     ],
                     [
-                        -3.5414602,
-                        50.1602198
+                        6.443442,
+                        49.81233
                     ],
                     [
-                        -3.5465781,
-                        50.3226814
+                        6.45366,
+                        49.81275
                     ],
                     [
-                        -3.4068012,
-                        50.3241013
+                        6.464538,
+                        49.81975
                     ],
                     [
-                        -3.4165761,
-                        50.5892711
+                        6.47057,
+                        49.82385
                     ],
                     [
-                        -3.2746691,
-                        50.5962721
+                        6.496805,
+                        49.81277
                     ],
                     [
-                        -3.2749172,
-                        50.6106323
+                        6.50669,
+                        49.80993
                     ],
                     [
-                        -2.9971742,
-                        50.613972
+                        6.511554,
+                        49.80238
                     ],
                     [
-                        -2.9896008,
-                        50.688537
+                        6.51485,
+                        49.80513
                     ],
                     [
-                        -2.7120266,
-                        50.690565
+                        6.519604,
+                        49.81446
                     ],
                     [
-                        -2.710908,
-                        50.6195964
+                        6.529808,
+                        49.81048
                     ],
                     [
-                        -2.5695473,
-                        50.6157538
+                        6.532249,
+                        49.80686
                     ],
                     [
-                        -2.5651019,
-                        50.5134083
+                        6.530829,
+                        49.80116
                     ],
                     [
-                        -2.4014463,
-                        50.513379
+                        6.506225,
+                        49.78899
                     ],
                     [
-                        -2.3940583,
-                        50.6160348
+                        6.519171,
+                        49.78344
                     ],
                     [
-                        -2.2894123,
-                        50.6147436
+                        6.511055,
+                        49.77422
                     ],
                     [
-                        -2.2876184,
-                        50.6008549
+                        6.520563,
+                        49.76818
                     ],
                     [
-                        -2.1477855,
-                        50.6048506
+                        6.520516,
+                        49.76134
                     ],
                     [
-                        -2.1451013,
-                        50.5325437
+                        6.503734,
+                        49.75086
                     ],
                     [
-                        -1.9335117,
-                        50.5347477
+                        6.502627,
+                        49.73298
                     ],
                     [
-                        -1.9362139,
-                        50.6170445
+                        6.507266,
+                        49.72938
                     ],
                     [
-                        -1.8573025,
-                        50.6228094
+                        6.518092,
+                        49.7242
                     ],
                     [
-                        -1.8554865,
-                        50.709139
+                        6.516417,
+                        49.72129
                     ],
                     [
-                        -1.6066929,
-                        50.709139
+                        6.511763,
+                        49.72016
                     ],
                     [
-                        -1.6085089,
-                        50.6239615
+                        6.504791,
+                        49.725
                     ],
                     [
-                        -1.4450678,
-                        50.6228094
+                        6.498913,
+                        49.72639
                     ],
                     [
-                        -1.4432518,
-                        50.5317039
+                        6.495576,
+                        49.72443
                     ],
                     [
-                        -1.1545059,
-                        50.5293951
+                        6.507122,
+                        49.71655
                     ],
                     [
-                        -1.1472419,
-                        50.6170485
+                        6.507884,
+                        49.71215
                     ],
                     [
-                        -1.011041,
-                        50.6205051
+                        6.504598,
+                        49.71227
                     ],
                     [
-                        -1.011041,
-                        50.7056889
+                        6.427139,
+                        49.66237
                     ],
                     [
-                        -0.704135,
-                        50.7045388
+                        6.439899,
+                        49.66025
                     ],
                     [
-                        -0.700503,
-                        50.7769401
+                        6.442511,
+                        49.65591
                     ],
                     [
-                        -0.5860943,
-                        50.7723465
+                        6.421781,
+                        49.61809
                     ],
                     [
-                        -0.5879103,
-                        50.7907181
+                        6.398978,
+                        49.60094
                     ],
                     [
-                        -0.0149586,
-                        50.7798108
+                        6.379408,
+                        49.59526
                     ],
                     [
-                        -0.0185906,
-                        50.7625836
+                        6.375507,
+                        49.58809
                     ],
                     [
-                        0.0967261,
-                        50.7620093
+                        6.384426,
+                        49.5801
                     ],
                     [
-                        0.0921861,
-                        50.6913106
+                        6.381188,
+                        49.57509
                     ],
                     [
-                        0.3046595,
-                        50.6890096
+                        6.369093,
+                        49.5783
                     ],
                     [
-                        0.3101075,
-                        50.7757917
+                        6.357913,
+                        49.57166
                     ],
                     [
-                        0.5511831,
-                        50.7726336
+                        6.384902,
+                        49.55817
                     ],
                     [
-                        0.5529991,
-                        50.8432096
+                        6.380095,
+                        49.54856
                     ],
                     [
-                        0.695556,
-                        50.8403428
+                        6.358555,
+                        49.53296
                     ],
                     [
-                        0.696464,
-                        50.8592608
+                        6.359322,
+                        49.52481
                     ],
                     [
-                        0.9852099,
-                        50.8523824
+                        6.370763,
+                        49.50545
                     ],
                     [
-                        0.9906579,
-                        50.9417226
+                        6.370562,
+                        49.45732
                     ],
                     [
-                        1.0160821,
-                        50.9411504
+                        6.333403,
+                        49.46493
                     ],
                     [
-                        1.0215301,
-                        51.0303204
+                        6.321894,
+                        49.47244
                     ],
                     [
-                        1.2812198,
-                        51.0240383
+                        6.295034,
+                        49.47928
                     ],
                     [
-                        1.2848518,
-                        51.0948044
+                        6.287889,
+                        49.48379
                     ],
                     [
-                        1.4277848,
-                        51.0948044
+                        6.271912,
+                        49.49995
                     ],
                     [
-                        1.4386809,
-                        51.2882859
+                        6.241327,
+                        49.50693
                     ],
                     [
-                        1.4713691,
-                        51.2871502
+                        6.196692,
+                        49.50331
                     ],
                     [
-                        1.4804492,
-                        51.3994534
+                        6.173373,
+                        49.50577
                     ],
                     [
-                        1.1590151,
-                        51.4073836
+                        6.160858,
+                        49.50085
                     ],
                     [
-                        1.1590151,
-                        51.3869889
+                        6.167099,
+                        49.49006
                     ],
                     [
-                        1.0191822,
-                        51.3903886
+                        6.140179,
+                        49.48525
                     ],
                     [
-                        1.0228142,
-                        51.4798247
+                        6.129367,
+                        49.48803
                     ],
                     [
-                        0.8793493,
-                        51.4843484
+                        6.127247,
+                        49.47081
                     ],
                     [
-                        0.8829813,
-                        51.5566675
+                        6.101403,
+                        49.46726
                     ],
                     [
-                        1.0264462,
-                        51.5544092
+                        6.104826,
+                        49.45076
                     ],
                     [
-                        1.0373423,
-                        51.7493319
+                        6.081667,
+                        49.45417
                     ],
                     [
-                        1.2607117,
-                        51.7482076
+                        6.077222,
+                        49.46139
                     ],
                     [
-                        1.2661598,
-                        51.8279642
+                        6.059167,
+                        49.46306
                     ],
                     [
-                        1.3351682,
-                        51.8335756
+                        6.052222,
+                        49.46028
                     ],
                     [
-                        1.3478803,
-                        51.9199021
+                        6.044213,
+                        49.44553
                     ],
                     [
-                        1.4840812,
-                        51.9199021
+                        6.025294,
+                        49.44703
                     ],
                     [
-                        1.4986093,
-                        52.0038271
+                        6.021545,
+                        49.45127
                     ],
                     [
-                        1.6438902,
-                        52.0027092
+                        6.01574,
+                        49.44885
                     ],
                     [
-                        1.6656823,
-                        52.270221
+                        5.994123,
+                        49.45301
                     ],
                     [
-                        1.7310588,
-                        52.270221
+                        5.976569,
+                        49.44885
                     ],
                     [
-                        1.7528509,
-                        52.4465637
+                        5.977725,
+                        49.45955
                     ],
                     [
-                        1.8254914,
-                        52.4476705
+                        5.972317,
+                        49.46087
                     ],
                     [
-                        1.8345714,
-                        52.624408
+                        5.968912,
+                        49.48202
                     ],
                     [
-                        1.7690346,
-                        52.6291402
+                        5.9616,
+                        49.49026
                     ],
                     [
-                        1.7741711,
-                        52.717904
+                        5.915781,
+                        49.49835
                     ],
                     [
-                        1.6996925,
-                        52.721793
+                        5.890334,
+                        49.4948
                     ],
                     [
-                        1.706113,
-                        52.8103687
+                        5.863321,
+                        49.50006
                     ],
                     [
-                        1.559724,
-                        52.8165777
+                        5.84897,
+                        49.50826
                     ],
                     [
-                        1.5648605,
-                        52.9034116
+                        5.84828,
+                        49.51397
                     ],
                     [
-                        1.4184715,
-                        52.9103818
+                        5.83641,
+                        49.51817
                     ],
                     [
-                        1.4223238,
-                        52.9281894
+                        5.831868,
+                        49.52639
                     ],
                     [
-                        1.3439928,
-                        52.9289635
+                        5.84308,
+                        49.53081
                     ],
                     [
-                        1.3491293,
-                        53.0001194
+                        5.835622,
+                        49.54114
                     ],
                     [
-                        0.4515789,
-                        53.022589
+                        5.816251,
+                        49.53325
                     ],
                     [
-                        0.4497629,
-                        52.9351139
+                        5.805201,
+                        49.54272
                     ],
                     [
-                        0.3789384,
-                        52.9351139
+                        5.859432,
+                        49.57158
                     ],
                     [
-                        0.3716744,
-                        52.846365
+                        5.868663,
+                        49.587
                     ],
                     [
-                        0.2227614,
-                        52.8496552
+                        5.862888,
+                        49.58525
                     ],
                     [
-                        0.2336575,
-                        52.9329248
+                        5.851102,
+                        49.58379
                     ],
                     [
-                        0.3062979,
-                        52.9351139
+                        5.847116,
+                        49.58961
                     ],
                     [
-                        0.308114,
-                        53.022589
+                        5.845652,
+                        49.5981
                     ],
                     [
-                        0.3807544,
-                        53.0236813
+                        5.869401,
+                        49.6106
                     ],
                     [
-                        0.3993708,
-                        53.2933729
+                        5.881819,
+                        49.63815
                     ],
                     [
-                        0.3248922,
-                        53.2987454
+                        5.899978,
+                        49.63907
                     ],
                     [
-                        0.3274604,
-                        53.3853782
+                        5.899339,
+                        49.66239
                     ],
                     [
-                        0.2504136,
-                        53.38691
+                        5.856561,
+                        49.67628
                     ],
                     [
-                        0.2581183,
-                        53.4748924
+                        5.856283,
+                        49.68211
                     ],
                     [
-                        0.1862079,
-                        53.4779494
+                        5.875703,
+                        49.71118
                     ],
                     [
-                        0.1913443,
-                        53.6548777
+                        5.864811,
+                        49.72331
                     ],
                     [
-                        0.1502527,
-                        53.6594436
+                        5.843249,
+                        49.71822
                     ],
                     [
-                        0.1528209,
-                        53.7666003
+                        5.82191,
+                        49.72128
                     ],
                     [
-                        0.0012954,
-                        53.7734308
+                        5.824894,
+                        49.73767
                     ],
                     [
-                        0.0025796,
-                        53.8424326
+                        5.820728,
+                        49.74878
                     ],
                     [
-                        -0.0282392,
-                        53.841675
+                        5.786264,
+                        49.79079
                     ],
                     [
-                        -0.0226575,
-                        53.9311501
+                        5.765172,
+                        49.78961
                     ],
                     [
-                        -0.1406983,
-                        53.9322193
+                        5.750937,
+                        49.79094
                     ],
                     [
-                        -0.1416063,
-                        54.0219323
+                        5.741591,
+                        49.82126
                     ],
                     [
-                        -0.1706625,
-                        54.0235326
+                        5.745814,
+                        49.82435
                     ],
                     [
-                        -0.1679384,
-                        54.0949482
+                        5.737197,
+                        49.83353
                     ],
                     [
-                        -0.0126694,
-                        54.0912206
+                        5.740531,
+                        49.84142
                     ],
                     [
-                        -0.0099454,
-                        54.1811226
+                        5.747012,
+                        49.84048
                     ],
                     [
-                        -0.1615824,
-                        54.1837795
+                        5.746237,
+                        49.84783
                     ],
                     [
-                        -0.1606744,
-                        54.2029038
+                        5.753989,
+                        49.84878
                     ],
                     [
-                        -0.2405789,
-                        54.2034349
+                        5.740663,
+                        49.85152
                     ],
                     [
-                        -0.2378549,
-                        54.2936234
+                        5.752288,
+                        49.85922
                     ],
                     [
-                        -0.3894919,
-                        54.2941533
+                        5.749545,
+                        49.87554
                     ],
                     [
-                        -0.3857497,
-                        54.3837321
+                        5.775668,
+                        49.87438
                     ],
                     [
-                        -0.461638,
-                        54.3856364
+                        5.775053,
+                        49.88057
                     ],
                     [
-                        -0.4571122,
-                        54.4939066
+                        5.734598,
+                        49.89341
                     ],
                     [
-                        -0.6105651,
-                        54.4965434
+                        5.733033,
+                        49.90285
                     ],
                     [
-                        -0.6096571,
-                        54.5676704
+                        5.757834,
+                        49.91737
                     ],
                     [
-                        -0.7667421,
-                        54.569776
+                        5.760393,
+                        49.93252
                     ],
                     [
-                        -0.7640181,
-                        54.5887213
+                        5.770728,
+                        49.93711
                     ],
                     [
-                        -0.9192871,
-                        54.5908258
+                        5.768783,
+                        49.94239
                     ],
                     [
-                        -0.9148116,
-                        54.6608348
+                        5.768802,
+                        49.96104
                     ],
                     [
-                        -1.1485204,
-                        54.6634343
+                        5.786724,
+                        49.96816
                     ],
                     [
-                        -1.1472363,
-                        54.7528316
+                        5.80524,
+                        49.96677
                     ],
                     [
-                        -1.2268514,
-                        54.7532021
+                        5.806521,
+                        49.97321
                     ],
                     [
-                        -1.2265398,
-                        54.8429879
+                        5.831293,
+                        49.97995
                     ],
                     [
-                        -1.2991803,
-                        54.8435107
+                        5.834616,
+                        49.98656
                     ],
                     [
-                        -1.2991803,
-                        54.9333391
+                        5.818057,
+                        49.99936
                     ],
                     [
-                        -1.3454886,
-                        54.9354258
+                        5.815606,
+                        50.01437
                     ],
                     [
-                        -1.3436726,
-                        55.0234878
+                        5.847923,
+                        50.02809
                     ],
                     [
-                        -1.3772688,
-                        55.0255698
+                        5.861889,
+                        50.04581
                     ],
                     [
-                        -1.3754528,
-                        55.1310877
+                        5.850872,
+                        50.0563
                     ],
                     [
-                        -1.4997441,
-                        55.1315727
+                        5.857809,
+                        50.07186
                     ],
                     [
-                        -1.4969272,
-                        55.2928323
+                        5.880997,
+                        50.08069
                     ],
                     [
-                        -1.5296721,
-                        55.2942946
+                        5.891965,
+                        50.12041
                     ],
                     [
-                        -1.5258198,
-                        55.6523803
+                        5.952856,
+                        50.13384
                     ],
                     [
-                        -1.7659492,
-                        55.6545537
-                    ],
+                        5.961753,
+                        50.17631
+                    ]
+                ]
+            ],
+            "terms_url": "http://www.act.public.lu/fr/actualites/2014/02/ortho2014/",
+            "terms_text": "Administration du Cadastre et de la Topographie",
+            "id": "lu.geoportail.inspire.ortho2013"
+        },
+        {
+            "name": "MapQuest Open Aerial",
+            "type": "tms",
+            "template": "http://oatile{switch:1,2,3,4}.mqcdn.com/tiles/1.0.0/sat/{zoom}/{x}/{y}.png",
+            "default": true
+        },
+        {
+            "name": "Mapbox Satellite",
+            "type": "tms",
+            "description": "Satellite and aerial imagery.",
+            "template": "http://{switch:a,b,c}.tiles.mapbox.com/v4/openstreetmap.map-inh7ifmo/{zoom}/{x}/{y}.png?access_token=pk.eyJ1Ijoib3BlbnN0cmVldG1hcCIsImEiOiJhNVlHd29ZIn0.ti6wATGDWOmCnCYen-Ip7Q",
+            "scaleExtent": [
+                0,
+                19
+            ],
+            "terms_url": "http://www.mapbox.com/about/maps/",
+            "terms_text": "Terms & Feedback",
+            "id": "Mapbox",
+            "default": true
+        },
+        {
+            "name": "NLS - Bartholomew Half Inch, 1897-1907",
+            "type": "tms",
+            "template": "http://geo.nls.uk/mapdata2/bartholomew/great_britain/{zoom}/{x}/{-y}.png",
+            "scaleExtent": [
+                0,
+                15
+            ],
+            "polygon": [
+                [
                     [
-                        -1.7620968,
-                        55.7435626
+                        -9,
+                        49.8
                     ],
                     [
-                        -1.9688392,
-                        55.7435626
+                        -9,
+                        61.1
                     ],
                     [
-                        -1.9698023,
-                        55.8334505
+                        1.9,
+                        61.1
                     ],
                     [
-                        -2.0019051,
-                        55.8336308
+                        1.9,
+                        49.8
                     ],
                     [
-                        -2.0015841,
-                        55.9235526
-                    ],
+                        -9,
+                        49.8
+                    ]
+                ]
+            ],
+            "terms_url": "http://geo.nls.uk/maps/",
+            "terms_text": "National Library of Scotland Historic Maps"
+        },
+        {
+            "name": "NLS - OS 1-inch 7th Series 1955-61",
+            "type": "tms",
+            "template": "http://geo.nls.uk/mapdata2/os/seventh/{zoom}/{x}/{-y}.png",
+            "scaleExtent": [
+                5,
+                16
+            ],
+            "polygon": [
+                [
                     [
-                        -2.1604851,
-                        55.9240613
+                        -6.4585407,
+                        49.9044128
                     ],
                     [
-                        -2.1613931,
-                        55.9413549
+                        -6.3872009,
+                        49.9841116
                     ],
                     [
-                        -2.3202942,
-                        55.9408463
+                        -6.2296827,
+                        49.9896159
                     ],
                     [
-                        -2.3212022,
-                        56.0145126
+                        -6.2171269,
+                        49.8680087
                     ],
                     [
-                        -2.5627317,
-                        56.0124824
-                    ],
+                        -6.4551164,
+                        49.8591793
+                    ]
+                ],
+                [
                     [
-                        -2.5645477,
-                        56.1022207
+                        -1.4495137,
+                        60.8634056
                     ],
                     [
-                        -2.9658863,
-                        56.0991822
+                        -0.7167114,
+                        60.8545122
                     ],
                     [
-                        -2.9667943,
-                        56.1710304
+                        -0.7349744,
+                        60.4359756
                     ],
                     [
-                        -2.4828272,
-                        56.1755797
+                        -0.6938826,
+                        60.4168218
                     ],
                     [
-                        -2.4882752,
-                        56.2856078
+                        -0.7258429,
+                        60.3942735
                     ],
                     [
-                        -2.5645477,
-                        56.2835918
+                        -0.7395401,
+                        60.0484714
                     ],
                     [
-                        -2.5681798,
-                        56.3742075
+                        -0.9267357,
+                        60.0461918
                     ],
                     [
-                        -2.7261728,
-                        56.3732019
+                        -0.9381501,
+                        59.8266157
                     ],
                     [
-                        -2.7316208,
-                        56.4425301
+                        -1.4586452,
+                        59.831205
                     ],
                     [
-                        -2.6190281,
-                        56.4425301
+                        -1.4455187,
+                        60.0535999
                     ],
                     [
-                        -2.6153961,
-                        56.5317671
+                        -1.463211,
+                        60.0535999
                     ],
                     [
-                        -2.453771,
-                        56.5347715
+                        -1.4643524,
+                        60.0630002
                     ],
                     [
-                        -2.4534686,
-                        56.6420248
+                        -1.5716475,
+                        60.0638546
                     ],
                     [
-                        -2.4062523,
-                        56.6440218
+                        -1.5693646,
+                        60.1790005
                     ],
                     [
-                        -2.3953562,
-                        56.7297964
+                        -1.643558,
+                        60.1807033
                     ],
                     [
-                        -2.2936596,
-                        56.7337811
+                        -1.643558,
+                        60.1892162
                     ],
                     [
-                        -2.2972916,
-                        56.807423
+                        -1.8216221,
+                        60.1894999
                     ],
                     [
-                        -2.1629067,
-                        56.8113995
+                        -1.8204807,
+                        60.3615507
                     ],
                     [
-                        -2.1592747,
-                        56.9958425
+                        -1.8415973,
+                        60.3697345
                     ],
                     [
-                        -1.9922016,
-                        57.0017771
+                        -1.8216221,
+                        60.3832755
                     ],
                     [
-                        -2.0067297,
-                        57.2737477
+                        -1.8179852,
+                        60.5934321
                     ],
                     [
-                        -1.9195612,
-                        57.2757112
-                    ],
+                        -1.453168,
+                        60.5934321
+                    ]
+                ],
+                [
                     [
-                        -1.9304572,
-                        57.3482876
+                        -4.9089213,
+                        54.4242078
                     ],
                     [
-                        -1.8106005,
-                        57.3443682
+                        -4.282598,
+                        54.4429861
                     ],
                     [
-                        -1.7997044,
-                        57.4402728
+                        -4.2535417,
+                        54.029769
                     ],
                     [
-                        -1.6616875,
-                        57.4285429
-                    ],
+                        -4.8766366,
+                        54.0221831
+                    ]
+                ],
+                [
                     [
-                        -1.6689516,
-                        57.5398256
+                        -5.8667408,
+                        59.1444603
                     ],
                     [
-                        -1.7452241,
-                        57.5398256
+                        -5.7759966,
+                        59.1470945
                     ],
                     [
-                        -1.7524881,
-                        57.6313302
+                        -5.7720016,
+                        59.1014052
                     ],
                     [
-                        -1.8287606,
-                        57.6332746
-                    ],
+                        -5.8621751,
+                        59.0990605
+                    ]
+                ],
+                [
                     [
-                        -1.8287606,
-                        57.7187255
+                        -1.7065887,
+                        59.5703599
                     ],
                     [
-                        -3.1768526,
-                        57.7171219
+                        -1.5579165,
+                        59.5693481
                     ],
                     [
-                        -3.1794208,
-                        57.734264
+                        -1.5564897,
+                        59.4965695
                     ],
                     [
-                        -3.5134082,
-                        57.7292105
-                    ],
+                        -1.7054472,
+                        59.4975834
+                    ]
+                ],
+                [
                     [
-                        -3.5129542,
-                        57.7112683
+                        -7.6865827,
+                        58.2940975
                     ],
                     [
-                        -3.7635638,
-                        57.7076303
+                        -7.5330594,
+                        58.3006957
                     ],
                     [
-                        -3.7598539,
-                        57.635713
+                        -7.5256401,
+                        58.2646905
                     ],
                     [
-                        -3.8420372,
-                        57.6343382
-                    ],
+                        -7.6797341,
+                        58.2577853
+                    ]
+                ],
+                [
                     [
-                        -3.8458895,
-                        57.6178365
+                        -4.5338281,
+                        59.0359871
                     ],
                     [
-                        -3.9794374,
-                        57.6157733
+                        -4.481322,
+                        59.0371616
                     ],
                     [
-                        -3.9794374,
-                        57.686544
+                        -4.4796099,
+                        59.0186583
                     ],
                     [
-                        -3.8150708,
-                        57.689976
-                    ],
+                        -4.5332574,
+                        59.0180707
+                    ]
+                ],
+                [
                     [
-                        -3.817639,
-                        57.7968899
+                        -8.6710698,
+                        57.8769896
                     ],
                     [
-                        -3.6853753,
-                        57.7989429
+                        -8.4673234,
+                        57.8897332
                     ],
                     [
-                        -3.6892276,
-                        57.8891567
+                        -8.4467775,
+                        57.7907
                     ],
                     [
-                        -3.9383458,
-                        57.8877915
-                    ],
+                        -8.6510947,
+                        57.7779213
+                    ]
+                ],
+                [
                     [
-                        -3.9421981,
-                        57.9750592
+                        -5.2395519,
+                        50.3530581
                     ],
                     [
-                        -3.6943641,
-                        57.9784638
+                        -5.7920073,
+                        50.3384899
                     ],
                     [
-                        -3.6969323,
-                        58.0695865
+                        -5.760047,
+                        49.9317027
                     ],
                     [
-                        -4.0372226,
-                        58.0641528
+                        -4.6551363,
+                        49.9581461
                     ],
                     [
-                        -4.0346543,
-                        57.9730163
+                        -4.677965,
+                        50.2860073
                     ],
                     [
-                        -4.2003051,
-                        57.9702923
+                        -4.244219,
+                        50.2801723
                     ],
                     [
-                        -4.1832772,
-                        57.7012869
+                        -4.2487848,
+                        50.2042525
                     ],
                     [
-                        -4.518752,
-                        57.6951111
+                        -3.3812929,
+                        50.2042525
                     ],
                     [
-                        -4.5122925,
-                        57.6050682
+                        -3.4223846,
+                        50.5188201
                     ],
                     [
-                        -4.6789116,
-                        57.6016628
+                        -3.1164796,
+                        50.5246258
                     ],
                     [
-                        -4.666022,
-                        57.4218334
+                        -3.1210453,
+                        50.6579592
                     ],
                     [
-                        -3.6677696,
-                        57.4394729
+                        -2.6736357,
+                        50.6619495
                     ],
                     [
-                        -3.671282,
-                        57.5295384
+                        -2.5953453,
+                        50.6394325
                     ],
                     [
-                        -3.3384979,
-                        57.5331943
+                        -2.5905026,
+                        50.5728419
                     ],
                     [
-                        -3.3330498,
-                        57.4438859
+                        -2.4791203,
+                        50.5733545
                     ],
                     [
-                        -2.8336466,
-                        57.4485275
+                        -2.4758919,
+                        50.5066704
                     ],
                     [
-                        -2.8236396,
-                        56.9992706
+                        -2.3967943,
+                        50.5056438
                     ],
                     [
-                        -2.3305398,
-                        57.0006693
+                        -2.401637,
+                        50.5723293
                     ],
                     [
-                        -2.3298977,
-                        56.9113932
+                        -1.0400296,
+                        50.5718167
                     ],
                     [
-                        -2.6579889,
-                        56.9092901
+                        -1.0335726,
+                        50.7059289
                     ],
                     [
-                        -2.6559637,
-                        56.8198406
+                        -0.549302,
+                        50.7038843
                     ],
                     [
-                        -2.8216747,
-                        56.8188467
+                        -0.5460736,
+                        50.7886618
                     ],
                     [
-                        -2.8184967,
-                        56.7295397
+                        -0.0924734,
+                        50.7856002
                     ],
                     [
-                        -3.1449248,
-                        56.7265508
+                        -0.0876307,
+                        50.7181949
                     ],
                     [
-                        -3.1435628,
-                        56.6362749
+                        0.4789659,
+                        50.7120623
                     ],
                     [
-                        -3.4679089,
-                        56.6350265
+                        0.487037,
+                        50.8182467
                     ],
                     [
-                        -3.474265,
-                        56.7238108
+                        0.9761503,
+                        50.8049868
                     ],
                     [
-                        -3.8011471,
-                        56.7188284
+                        0.9922927,
+                        51.0126311
                     ],
                     [
-                        -3.785711,
-                        56.4493026
+                        1.4491213,
+                        51.0004424
                     ],
                     [
-                        -3.946428,
-                        56.4457896
+                        1.4781775,
+                        51.4090372
                     ],
                     [
-                        -3.9428873,
-                        56.2659777
+                        1.0229632,
+                        51.4271576
                     ],
                     [
-                        -4.423146,
-                        56.2588459
+                        1.035877,
+                        51.7640881
                     ],
                     [
-                        -4.4141572,
-                        56.0815506
+                        1.6105448,
+                        51.7500992
                     ],
                     [
-                        -4.8944159,
-                        56.0708008
+                        1.646058,
+                        52.1560003
                     ],
                     [
-                        -4.8791072,
-                        55.8896994
+                        1.7267698,
+                        52.1540195
                     ],
                     [
-                        -5.1994158,
-                        55.8821374
+                        1.749369,
+                        52.4481811
                     ],
                     [
-                        -5.1852906,
-                        55.7023791
+                        1.7870672,
+                        52.4811624
                     ],
                     [
-                        -5.0273445,
-                        55.7067203
+                        1.759102,
+                        52.522505
                     ],
                     [
-                        -5.0222081,
-                        55.6879046
+                        1.7933451,
+                        52.9602749
                     ],
                     [
-                        -4.897649,
-                        55.6907999
+                        0.3798147,
+                        52.9958468
                     ],
                     [
-                        -4.8880181,
-                        55.6002822
+                        0.3895238,
+                        53.2511239
                     ],
                     [
-                        -4.7339244,
-                        55.6046348
+                        0.3478614,
+                        53.2511239
                     ],
                     [
-                        -4.7275038,
-                        55.5342082
+                        0.3238912,
+                        53.282186
                     ],
                     [
-                        -4.773732,
-                        55.5334815
+                        0.3461492,
+                        53.6538501
                     ],
                     [
-                        -4.7685955,
-                        55.4447227
+                        0.128487,
+                        53.6575466
                     ],
                     [
-                        -4.8494947,
-                        55.4418092
+                        0.116582,
+                        53.6674703
                     ],
                     [
-                        -4.8405059,
-                        55.3506535
+                        0.1350586,
+                        54.0655731
                     ],
                     [
-                        -4.8700405,
-                        55.3513836
+                        -0.0609831,
+                        54.065908
                     ],
                     [
-                        -4.8649041,
-                        55.2629462
+                        -0.0414249,
+                        54.4709448
                     ],
                     [
-                        -4.9920314,
-                        55.2592875
+                        -0.5662701,
+                        54.4771794
                     ],
                     [
-                        -4.9907473,
-                        55.1691779
+                        -0.5592078,
+                        54.6565127
                     ],
                     [
-                        -5.0600894,
-                        55.1655105
+                        -1.1665638,
+                        54.6623485
                     ],
                     [
-                        -5.0575212,
-                        55.0751884
+                        -1.1637389,
+                        54.842611
                     ],
                     [
-                        -5.2141831,
-                        55.0722477
+                        -1.3316194,
+                        54.843909
                     ],
                     [
-                        -5.1991766,
-                        54.8020337
+                        -1.3257065,
+                        55.2470842
                     ],
                     [
-                        -5.0466316,
-                        54.8062205
+                        -1.529453,
+                        55.2487108
                     ],
                     [
-                        -5.0502636,
-                        54.7244996
+                        -1.524178,
+                        55.6540122
                     ],
                     [
-                        -4.9703591,
-                        54.7203043
+                        -1.7638798,
+                        55.6540122
                     ],
                     [
-                        -4.9776232,
-                        54.6215905
+                        -1.7733693,
+                        55.9719116
                     ],
                     [
-                        -4.796022,
-                        54.6342056
+                        -2.1607858,
+                        55.9682981
                     ],
                     [
-                        -4.796022,
-                        54.7307917
+                        -2.1543289,
+                        56.0621387
                     ],
                     [
-                        -4.8977186,
-                        54.7265971
+                        -2.4578051,
+                        56.0585337
                     ],
                     [
-                        -4.9086147,
-                        54.8145928
+                        -2.4190635,
+                        56.641717
                     ],
                     [
-                        -4.8069181,
-                        54.8166856
+                        -2.0962164,
+                        56.641717
                     ],
                     [
-                        -4.8105501,
-                        54.7915648
+                        -2.0833025,
+                        57.0021322
                     ],
                     [
-                        -4.6943253,
-                        54.7978465
+                        -1.9283359,
+                        57.0126802
                     ],
                     [
-                        -4.6761652,
-                        54.7244996
+                        -1.9180966,
+                        57.3590895
                     ],
                     [
-                        -4.5744686,
-                        54.7244996
+                        -1.7502161,
+                        57.3625721
                     ],
                     [
-                        -4.5599405,
-                        54.6426135
+                        -1.7695869,
+                        57.7608634
                     ],
                     [
-                        -4.3093309,
-                        54.6384098
+                        -3.6937554,
+                        57.7574187
                     ],
                     [
-                        -4.3333262,
-                        54.8229889
+                        -3.7066693,
+                        57.9806386
                     ],
                     [
-                        -4.2626999,
-                        54.8274274
+                        -3.5969013,
+                        57.9772149
                     ],
                     [
-                        -4.2549952,
-                        54.7348587
+                        -3.6033582,
+                        58.1207277
                     ],
                     [
-                        -3.8338058,
-                        54.7400481
+                        -3.0222335,
+                        58.1309566
                     ],
                     [
-                        -3.836374,
-                        54.8141105
+                        -3.0286905,
+                        58.5410788
                     ],
                     [
-                        -3.7118149,
-                        54.8133706
+                        -2.8478961,
+                        58.530968
                     ],
                     [
-                        -3.7143831,
-                        54.8318654
+                        -2.86081,
+                        58.8430508
                     ],
                     [
-                        -3.5346072,
-                        54.8355633
+                        -2.679624,
+                        58.8414991
                     ],
                     [
-                        -3.5271039,
-                        54.9066228
+                        -2.6841897,
+                        58.885175
                     ],
                     [
-                        -3.4808758,
-                        54.9084684
+                        -2.6339665,
+                        58.9052239
                     ],
                     [
-                        -3.4776655,
-                        54.7457328
+                        -2.679624,
+                        58.9335083
                     ],
                     [
-                        -3.5874573,
-                        54.744621
+                        -2.6887555,
+                        59.0229231
                     ],
                     [
-                        -3.5836049,
-                        54.6546166
+                        -2.3668703,
+                        59.0229231
                     ],
                     [
-                        -3.7107322,
-                        54.6531308
+                        -2.3702946,
+                        59.2652861
                     ],
                     [
-                        -3.6991752,
-                        54.4550407
+                        -2.3429001,
+                        59.2821989
                     ],
                     [
-                        -3.5746161,
-                        54.4572801
+                        -2.3714361,
+                        59.2996861
                     ],
                     [
-                        -3.5759002,
-                        54.3863042
+                        -2.3737189,
+                        59.3707083
                     ],
                     [
-                        -3.539945,
-                        54.3855564
+                        -2.3429001,
+                        59.385825
                     ],
                     [
-                        -3.5386609,
-                        54.297224
+                        -2.3725775,
+                        59.400354
                     ],
                     [
-                        -3.46033,
-                        54.2957252
+                        -2.3714361,
+                        59.4259098
                     ],
                     [
-                        -3.4590458,
-                        54.2079507
+                        -3.0734196,
+                        59.4230067
                     ],
                     [
-                        -3.3807149,
-                        54.2102037
+                        -3.0711368,
+                        59.3433649
                     ],
                     [
-                        -3.381999,
-                        54.1169788
+                        -3.103097,
+                        59.3311405
                     ],
                     [
-                        -3.302878,
-                        54.1160656
+                        -3.0745611,
+                        59.3136695
                     ],
                     [
-                        -3.300154,
-                        54.0276224
+                        -3.0722782,
+                        59.232603
                     ],
                     [
-                        -3.1013007,
-                        54.0292224
+                        -3.3850319,
+                        59.1484167
                     ],
                     [
-                        -3.093596,
-                        53.6062158
+                        -3.3747589,
+                        58.9352753
                     ],
                     [
-                        -3.2065981,
-                        53.6016441
+                        -3.5653789,
+                        58.9323303
                     ],
                     [
-                        -3.2091663,
-                        53.4917753
+                        -3.554829,
+                        58.69759
                     ],
                     [
-                        -3.2451215,
-                        53.4887193
+                        -5.2808579,
+                        58.6667732
                     ],
                     [
-                        -3.2348486,
-                        53.4045934
+                        -5.2534159,
+                        58.3514125
                     ],
                     [
-                        -3.5276266,
-                        53.3999999
+                        -5.5068508,
+                        58.3437887
                     ],
                     [
-                        -3.5343966,
-                        53.328481
+                        -5.4761804,
+                        58.0323557
                     ],
                     [
-                        -3.6488053,
-                        53.3252272
+                        -5.8974958,
+                        58.0212436
                     ],
                     [
-                        -3.6527308,
-                        53.3057716
+                        -5.8522972,
+                        57.6171758
                     ],
                     [
-                        -3.7271873,
-                        53.3046865
+                        -6.1396311,
+                        57.6137174
                     ],
                     [
-                        -3.7315003,
-                        53.3945257
+                        -6.1541592,
+                        57.7423183
                     ],
                     [
-                        -3.9108315,
-                        53.3912769
+                        -6.2913692,
+                        57.7380102
                     ],
                     [
-                        -3.9071995,
-                        53.3023804
+                        -6.3365678,
+                        58.1398784
                     ],
                     [
-                        -3.9521457,
-                        53.3015665
+                        -6.1121891,
+                        58.1466944
                     ],
                     [
-                        -3.9566724,
-                        53.3912183
+                        -6.1473778,
+                        58.5106285
                     ],
                     [
-                        -4.1081979,
-                        53.3889209
+                        -6.2934817,
+                        58.5416182
                     ],
                     [
-                        -4.1081979,
-                        53.4072967
+                        -6.8413713,
+                        58.2977321
                     ],
                     [
-                        -4.2622916,
-                        53.4065312
+                        -7.0057382,
+                        58.2929331
                     ],
                     [
-                        -4.2635757,
-                        53.4753707
+                        -7.1016189,
+                        58.2064403
                     ],
                     [
-                        -4.638537,
-                        53.4677274
+                        -7.2573132,
+                        58.1793148
                     ],
                     [
-                        -4.6346847,
-                        53.3812621
+                        -7.2531092,
+                        58.1004928
                     ],
                     [
-                        -4.7091633,
-                        53.3774321
+                        -7.4070698,
+                        58.0905566
                     ],
                     [
-                        -4.7001745,
-                        53.1954965
+                        -7.391347,
+                        57.7911354
                     ],
                     [
-                        -4.5499332,
-                        53.1962658
+                        -7.790991,
+                        57.7733151
                     ],
                     [
-                        -4.5435126,
-                        53.1092488
+                        -7.7624215,
+                        57.5444165
                     ],
                     [
-                        -4.3919871,
-                        53.1100196
+                        -7.698501,
+                        57.1453194
                     ],
                     [
-                        -4.3855666,
-                        53.0236002
+                        -7.7943817,
+                        57.1304547
                     ],
                     [
-                        -4.6115707,
-                        53.0205105
+                        -7.716764,
+                        56.7368628
                     ],
                     [
-                        -4.603866,
-                        52.9284932
+                        -7.0122067,
+                        56.7654359
                     ],
                     [
-                        -4.7566756,
-                        52.9261709
+                        -6.979922,
+                        56.5453858
                     ],
                     [
-                        -4.7476868,
-                        52.8370555
+                        -7.0638622,
+                        56.5453858
                     ],
                     [
-                        -4.8208813,
-                        52.8331768
+                        -7.0444914,
+                        56.3562587
                     ],
                     [
-                        -4.8208813,
-                        52.7446476
+                        -6.500676,
+                        56.3812917
                     ],
                     [
-                        -4.3701572,
-                        52.7539749
+                        -6.4491433,
+                        55.9793649
                     ],
                     [
-                        -4.3765778,
-                        52.8401583
+                        -6.563287,
+                        55.9691456
                     ],
                     [
-                        -4.2314728,
-                        52.8455875
+                        -6.5393742,
+                        55.7030135
                     ],
                     [
-                        -4.2237682,
-                        52.7586379
+                        -6.5595521,
+                        55.6907321
                     ],
                     [
-                        -4.1056297,
-                        52.7570836
+                        -6.5345315,
+                        55.6761713
                     ],
                     [
-                        -4.1015192,
-                        52.6714874
+                        -6.5216176,
+                        55.5704434
                     ],
                     [
-                        -4.1487355,
-                        52.6703862
+                        -5.8912587,
+                        55.5923416
                     ],
                     [
-                        -4.1305754,
-                        52.4008596
+                        -5.8560127,
+                        55.2320733
                     ],
                     [
-                        -4.1995838,
-                        52.3986435
+                        -5.2293639,
+                        55.2515958
                     ],
                     [
-                        -4.2050319,
-                        52.3110195
+                        -5.1837064,
+                        54.6254139
                     ],
                     [
-                        -4.3466808,
-                        52.303247
+                        -3.6655956,
+                        54.6518373
                     ],
                     [
-                        -4.3484968,
-                        52.2365693
+                        -3.6496155,
+                        54.4320023
                     ],
                     [
-                        -4.4901457,
-                        52.2332328
+                        -3.5400375,
+                        54.4306744
                     ],
                     [
-                        -4.4883297,
-                        52.2098702
+                        -3.530906,
+                        54.0290181
                     ],
                     [
-                        -4.6572188,
-                        52.2098702
+                        -3.0697656,
+                        54.030359
                     ],
                     [
-                        -4.6590348,
-                        52.1385939
+                        -3.0675737,
+                        53.8221388
                     ],
                     [
-                        -4.7788916,
-                        52.13525
+                        -3.0804876,
+                        53.7739911
                     ],
                     [
-                        -4.7807076,
-                        52.1162967
+                        -3.0619239,
+                        53.7477488
                     ],
                     [
-                        -4.9259885,
-                        52.1140663
+                        -3.0611168,
+                        53.6737049
                     ],
                     [
-                        -4.9187245,
-                        52.0392855
+                        -3.2144691,
+                        53.6708361
                     ],
                     [
-                        -5.2365265,
-                        52.0314653
+                        -3.2057699,
+                        53.4226163
                     ],
                     [
-                        -5.2347105,
-                        51.9442339
+                        -3.2799632,
+                        53.355224
                     ],
                     [
-                        -5.3473032,
-                        51.9408755
+                        -3.2896655,
+                        53.3608441
                     ],
                     [
-                        -5.3473032,
-                        51.9195995
+                        -3.3327547,
+                        53.364931
                     ],
                     [
-                        -5.4925842,
-                        51.9162392
+                        -3.3761293,
+                        53.3540318
                     ],
                     [
-                        -5.4853201,
-                        51.8265386
+                        -4.0888976,
+                        53.3433102
                     ],
                     [
-                        -5.1983903,
-                        51.8321501
+                        -4.0945474,
+                        53.4612036
                     ],
                     [
-                        -5.1893102,
-                        51.7625177
+                        -4.697412,
+                        53.4448624
                     ],
                     [
-                        -5.335825,
-                        51.7589528
+                        -4.6882805,
+                        53.3318598
                     ],
                     [
-                        -5.3281204,
-                        51.6686495
+                        -4.7202407,
+                        53.2895771
                     ],
                     [
-                        -5.1836575,
-                        51.6730296
+                        -4.6837148,
+                        53.2486184
                     ],
                     [
-                        -5.1836575,
-                        51.6539134
+                        -4.6768661,
+                        53.1542644
                     ],
                     [
-                        -5.0674452,
-                        51.6578966
+                        -4.8480816,
+                        53.1446807
                     ],
                     [
-                        -5.0603825,
-                        51.5677905
+                        -4.8178336,
+                        52.7440299
                     ],
                     [
-                        -4.5974594,
-                        51.5809588
+                        -4.2545751,
+                        52.7558939
                     ],
                     [
-                        -4.60388,
-                        51.6726314
+                        -4.228876,
+                        52.254876
                     ],
                     [
-                        -4.345773,
-                        51.6726314
+                        -4.2607571,
+                        52.2536408
                     ],
                     [
-                        -4.3355001,
-                        51.4962964
+                        -4.2724603,
+                        52.2432637
                     ],
                     [
-                        -3.9528341,
-                        51.5106841
+                        -4.8136263,
+                        52.230095
                     ],
                     [
-                        -3.9425611,
-                        51.5905333
+                        -4.8079191,
+                        52.1138892
                     ],
                     [
-                        -3.8809237,
-                        51.5953198
+                        -5.3889104,
+                        52.0991668
                     ],
                     [
-                        -3.8706508,
-                        51.5074872
+                        -5.3717888,
+                        51.9129667
                     ],
                     [
-                        -3.7679216,
-                        51.4978952
+                        -5.4208706,
+                        51.9101502
                     ],
                     [
-                        -3.7550805,
-                        51.4242895
+                        -5.414022,
+                        51.8453218
                     ],
                     [
-                        -3.5855774,
-                        51.41468
+                        -5.3683645,
+                        51.8474373
                     ],
                     [
-                        -3.5778727,
-                        51.3329177
+                        -5.3466772,
+                        51.5595332
                     ],
                     [
-                        -3.0796364,
-                        51.3329177
+                        -4.773676,
+                        51.5758518
                     ],
                     [
-                        -3.0770682,
-                        51.2494018
+                        -4.7656859,
+                        51.4885146
                     ],
                     [
-                        -3.7216935,
-                        51.2381477
+                        -4.1915432,
+                        51.4970427
                     ],
                     [
-                        -3.7216935,
-                        51.2558315
-                    ],
-                    [
-                        -3.8706508,
-                        51.2558315
-                    ],
-                    [
-                        -3.8680825,
-                        51.2365398
-                    ],
-                    [
-                        -4.2944084,
-                        51.2252825
-                    ],
-                    [
-                        -4.289272,
-                        51.0496352
-                    ],
-                    [
-                        -4.5692089,
-                        51.0431767
-                    ],
-                    [
-                        -4.5624122,
-                        50.9497388
-                    ],
-                    [
-                        -4.5905604,
-                        50.9520269
-                    ],
-                    [
-                        -4.5896524,
-                        50.8627065
-                    ],
-                    [
-                        -4.6296046,
-                        50.8592677
-                    ],
-                    [
-                        -4.6226411,
-                        50.7691513
-                    ],
-                    [
-                        -4.6952816,
-                        50.7680028
-                    ],
-                    [
-                        -4.6934655,
-                        50.6967379
-                    ],
-                    [
-                        -4.8342064,
-                        50.6938621
-                    ],
-                    [
-                        -4.8296664,
-                        50.6046231
-                    ],
-                    [
-                        -4.9676833,
-                        50.6000126
-                    ],
-                    [
-                        -4.9685913,
-                        50.5821427
-                    ],
-                    [
-                        -5.1084242,
-                        50.5786832
-                    ],
-                    [
-                        -5.1029762,
-                        50.4892254
-                    ],
-                    [
-                        -5.1311244,
-                        50.48807
+                        -4.1869775,
+                        51.4344663
                     ],
                     [
-                        -5.1274923,
-                        50.4163798
+                        -3.6151177,
+                        51.4444274
                     ],
                     [
-                        -5.2664172,
-                        50.4117509
+                        -3.6105519,
+                        51.3746543
                     ],
                     [
-                        -5.2609692,
-                        50.3034214
+                        -3.1494115,
+                        51.3789292
                     ],
                     [
-                        -5.5124868,
-                        50.2976214
+                        -3.1494115,
+                        51.2919281
                     ],
                     [
-                        -5.5061308,
-                        50.2256428
+                        -4.3038735,
+                        51.2745907
                     ],
                     [
-                        -5.6468717,
-                        50.2209953
-                    ]
-                ],
-                [
-                    [
-                        -5.1336607,
-                        55.2630226
+                        -4.2861169,
+                        51.0508721
                     ],
                     [
-                        -5.1021999,
-                        55.2639372
+                        -4.8543277,
+                        51.0366633
                     ],
                     [
-                        -5.0999527,
-                        55.2458239
+                        -4.8372201,
+                        50.7212787
                     ],
                     [
-                        -5.1322161,
-                        55.2446343
+                        -5.2618345,
+                        50.7082694
                     ]
                 ],
                 [
                     [
-                        -5.6431878,
-                        55.5095745
+                        -2.1502671,
+                        60.171318
                     ],
                     [
-                        -5.4861028,
-                        55.5126594
+                        -2.0030218,
+                        60.1696146
                     ],
                     [
-                        -5.4715747,
-                        55.3348829
+                        -2.0013096,
+                        60.0997023
                     ],
                     [
-                        -5.6277517,
-                        55.3302345
+                        -2.148555,
+                        60.1011247
                     ]
                 ],
                 [
                     [
-                        -4.7213517,
-                        51.2180246
+                        -6.2086011,
+                        59.1163488
                     ],
                     [
-                        -4.5804201,
-                        51.2212417
+                        -6.1229934,
+                        59.1166418
                     ],
                     [
-                        -4.5746416,
-                        51.1306736
+                        -6.121852,
+                        59.0714985
                     ],
                     [
-                        -4.7174993,
-                        51.1280545
+                        -6.2097426,
+                        59.0714985
                     ]
                 ],
                 [
                     [
-                        -5.1608796,
-                        55.4153626
+                        -4.4159559,
+                        59.0889036
                     ],
                     [
-                        -5.0045387,
-                        55.4190069
+                        -4.4212022,
+                        59.0770848
                     ],
                     [
-                        -5.0184798,
-                        55.6153521
+                        -4.3971904,
+                        59.0779143
                     ],
                     [
-                        -5.1755648,
-                        55.6138137
+                        -4.3913388,
+                        59.0897328
                     ]
                 ]
             ],
@@ -45490,9 +46654,9 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
             "terms_text": "National Library of Scotland Historic Maps"
         },
         {
-            "name": "NLS - OS 6-inch Scotland 1842-82",
+            "name": "NLS - OS 1:25k 1st Series 1937-61",
             "type": "tms",
-            "template": "http://geo.nls.uk/maps/os/six_inch/{zoom}/{x}/{-y}.png",
+            "template": "http://geo.nls.uk/mapdata2/os/25000/{zoom}/{x}/{-y}.png",
             "scaleExtent": [
                 5,
                 16
@@ -45500,16703 +46664,18646 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
             "polygon": [
                 [
                     [
-                        -5.2112173,
-                        54.8018593
+                        -4.7157244,
+                        54.6796556
                     ],
                     [
-                        -5.0642752,
-                        54.8026508
+                        -4.6850662,
+                        54.6800268
                     ],
                     [
-                        -5.0560354,
-                        54.6305176
+                        -4.6835779,
+                        54.6623245
                     ],
                     [
-                        -4.3158316,
-                        54.6297227
-                    ],
+                        -4.7148782,
+                        54.6615818
+                    ]
+                ],
+                [
                     [
-                        -4.3117117,
-                        54.7448258
+                        -3.7085748,
+                        58.3371151
                     ],
                     [
-                        -3.8530325,
-                        54.7464112
+                        -3.5405937,
+                        58.3380684
                     ],
                     [
-                        -3.8530325,
-                        54.8034424
+                        -3.5315137,
+                        58.1608002
                     ],
                     [
-                        -3.5522818,
-                        54.8034424
+                        -3.3608086,
+                        58.1622372
                     ],
                     [
-                        -3.5522818,
-                        54.8374644
+                        -3.3653486,
+                        58.252173
                     ],
                     [
-                        -3.468511,
-                        54.8406277
+                        -3.1610473,
+                        58.2536063
                     ],
                     [
-                        -3.4657644,
-                        54.8983158
+                        -3.1610473,
+                        58.3261509
                     ],
                     [
-                        -3.3847403,
-                        54.8991055
+                        -3.0275704,
+                        58.3271045
                     ],
                     [
-                        -3.3888601,
-                        54.9559214
+                        -3.0366505,
+                        58.6139001
                     ],
                     [
-                        -3.0920786,
-                        54.9539468
+                        -3.0021463,
+                        58.614373
                     ],
                     [
-                        -3.0392359,
-                        54.9923274
+                        -3.0030543,
+                        58.7036341
                     ],
                     [
-                        -3.0212713,
-                        55.0493881
+                        -3.4180129,
+                        58.7003322
                     ],
                     [
-                        -2.9591232,
-                        55.0463283
+                        -3.4171049,
+                        58.6290293
                     ],
                     [
-                        -2.9202807,
-                        55.0666294
+                        -3.7240109,
+                        58.6266658
                     ],
                     [
-                        -2.7857081,
-                        55.068652
+                        -3.7231029,
+                        58.606806
                     ],
                     [
-                        -2.7852225,
-                        55.0914426
+                        -4.2361262,
+                        58.5992374
                     ],
                     [
-                        -2.7337562,
-                        55.0922761
+                        -4.2334022,
+                        58.5092347
                     ],
                     [
-                        -2.737616,
-                        55.151204
+                        -3.88836,
+                        58.5144516
                     ],
                     [
-                        -2.7648395,
-                        55.1510672
+                        -3.8829119,
+                        58.4261327
                     ],
                     [
-                        -2.7013114,
-                        55.1722505
-                    ],
+                        -3.7158389,
+                        58.4270836
+                    ]
+                ],
+                [
                     [
-                        -2.6635459,
-                        55.2192808
+                        -6.46676,
+                        49.9943621
                     ],
                     [
-                        -2.6460364,
-                        55.2188891
+                        -6.1889102,
+                        50.004868
                     ],
                     [
-                        -2.629042,
-                        55.2233933
+                        -6.1789222,
+                        49.8967815
                     ],
                     [
-                        -2.6317886,
-                        55.2287781
+                        -6.3169391,
+                        49.8915171
                     ],
                     [
-                        -2.6235488,
-                        55.2446345
+                        -6.312399,
+                        49.8200979
                     ],
                     [
-                        -2.6197723,
-                        55.2454663
+                        -6.4504159,
+                        49.8159968
+                    ]
+                ],
+                [
+                    [
+                        -5.6453263,
+                        50.2029809
                     ],
                     [
-                        -2.6099017,
-                        55.2454174
+                        -5.7801329,
+                        50.2014076
                     ],
                     [
-                        -2.6099876,
-                        55.2486466
+                        -5.7637888,
+                        50.0197267
                     ],
                     [
-                        -2.6408121,
-                        55.2590039
+                        -5.3479221,
+                        50.0290604
                     ],
                     [
-                        -2.6247896,
-                        55.2615631
+                        -5.3388421,
+                        49.9414854
                     ],
                     [
-                        -2.6045186,
-                        55.2823081
+                        -5.024672,
+                        49.9473287
                     ],
                     [
-                        -2.5693176,
-                        55.296132
+                        -5.0355681,
+                        50.0383923
                     ],
                     [
-                        -2.5479542,
-                        55.3121617
+                        -5.0010639,
+                        50.0453901
                     ],
                     [
-                        -2.5091116,
-                        55.3234891
+                        -4.9974319,
+                        50.1304478
                     ],
                     [
-                        -2.4780376,
-                        55.3494471
+                        -4.855783,
+                        50.13394
                     ],
                     [
-                        -2.4421083,
-                        55.3533118
+                        -4.861231,
+                        50.206057
                     ],
                     [
-                        -2.4052079,
-                        55.3439256
+                        -4.6546085,
+                        50.2140172
                     ],
                     [
-                        -2.3726772,
-                        55.3447539
+                        -4.6558926,
+                        50.3018616
                     ],
                     [
-                        -2.3221819,
-                        55.3687665
+                        -4.5184924,
+                        50.3026818
                     ],
                     [
-                        -2.3241241,
-                        55.3999337
+                        -4.51464,
+                        50.325642
                     ],
                     [
-                        -2.2576062,
-                        55.425015
+                        -4.2488284,
+                        50.3264618
                     ],
                     [
-                        -2.1985547,
-                        55.4273529
+                        -4.2488284,
+                        50.3100631
                     ],
                     [
-                        -2.1484296,
-                        55.4717466
+                        -4.10886,
+                        50.3141633
                     ],
                     [
-                        -2.1944348,
-                        55.484199
+                        -4.1062917,
+                        50.2411267
                     ],
                     [
-                        -2.2040479,
-                        55.529306
+                        -3.9648088,
+                        50.2432047
                     ],
                     [
-                        -2.2960584,
-                        55.6379722
+                        -3.9640778,
+                        50.2254158
                     ],
                     [
-                        -2.2177808,
-                        55.6379722
+                        -3.8522287,
+                        50.2273626
                     ],
                     [
-                        -2.1059266,
-                        55.7452498
+                        -3.8503757,
+                        50.1552563
                     ],
                     [
-                        -1.9716874,
-                        55.7462161
+                        -3.6921809,
+                        50.1572487
                     ],
                     [
-                        -1.9697453,
-                        55.9190951
+                        -3.5414602,
+                        50.1602198
                     ],
                     [
-                        -2.1201694,
-                        55.9207115
+                        -3.5465781,
+                        50.3226814
                     ],
                     [
-                        -2.1242893,
-                        55.9776133
+                        -3.4068012,
+                        50.3241013
                     ],
                     [
-                        -2.3440159,
-                        55.9783817
+                        -3.4165761,
+                        50.5892711
                     ],
                     [
-                        -2.3440159,
-                        56.0390349
+                        -3.2746691,
+                        50.5962721
                     ],
                     [
-                        -2.5046909,
-                        56.0413363
+                        -3.2749172,
+                        50.6106323
                     ],
                     [
-                        -2.500571,
-                        56.1003588
+                        -2.9971742,
+                        50.613972
                     ],
                     [
-                        -2.8823459,
-                        56.0957629
+                        -2.9896008,
+                        50.688537
                     ],
                     [
-                        -2.8823459,
-                        56.1722898
+                        -2.7120266,
+                        50.690565
                     ],
                     [
-                        -2.4126804,
-                        56.1692316
+                        -2.710908,
+                        50.6195964
                     ],
                     [
-                        -2.4181736,
-                        56.2334017
+                        -2.5695473,
+                        50.6157538
                     ],
                     [
-                        -2.5857151,
-                        56.2303484
+                        -2.5651019,
+                        50.5134083
                     ],
                     [
-                        -2.5719822,
-                        56.3416356
+                        -2.4014463,
+                        50.513379
                     ],
                     [
-                        -2.7257908,
-                        56.3462022
+                        -2.3940583,
+                        50.6160348
                     ],
                     [
-                        -2.7312839,
-                        56.4343808
+                        -2.2894123,
+                        50.6147436
                     ],
                     [
-                        -2.6928318,
-                        56.4343808
+                        -2.2876184,
+                        50.6008549
                     ],
                     [
-                        -2.6928318,
-                        56.4859769
+                        -2.1477855,
+                        50.6048506
                     ],
                     [
-                        -2.5307834,
-                        56.4935587
+                        -2.1451013,
+                        50.5325437
                     ],
                     [
-                        -2.5307834,
-                        56.570806
+                        -1.9335117,
+                        50.5347477
                     ],
                     [
-                        -2.5302878,
-                        56.6047947
+                        -1.9362139,
+                        50.6170445
                     ],
                     [
-                        -2.3732428,
-                        56.6044452
+                        -1.8573025,
+                        50.6228094
                     ],
                     [
-                        -2.3684363,
-                        56.7398824
+                        -1.8554865,
+                        50.709139
                     ],
                     [
-                        -2.3292975,
-                        56.7398824
+                        -1.6066929,
+                        50.709139
                     ],
                     [
-                        -2.3292975,
-                        56.7888065
+                        -1.6085089,
+                        50.6239615
                     ],
                     [
-                        -2.3145346,
-                        56.7891826
+                        -1.4450678,
+                        50.6228094
                     ],
                     [
-                        -2.3148779,
-                        56.7967036
+                        -1.4432518,
+                        50.5317039
                     ],
                     [
-                        -2.171369,
-                        56.7967036
+                        -1.1545059,
+                        50.5293951
                     ],
                     [
-                        -2.1703979,
-                        56.9710595
+                        -1.1472419,
+                        50.6170485
                     ],
                     [
-                        -2.0101725,
-                        56.9694716
+                        -1.011041,
+                        50.6205051
                     ],
                     [
-                        -2.0101725,
-                        57.0846832
+                        -1.011041,
+                        50.7056889
                     ],
                     [
-                        -2.0817687,
-                        57.085349
+                        -0.704135,
+                        50.7045388
                     ],
                     [
-                        -2.0488097,
-                        57.1259963
+                        -0.700503,
+                        50.7769401
                     ],
                     [
-                        -2.0409133,
-                        57.126369
+                        -0.5860943,
+                        50.7723465
                     ],
                     [
-                        -2.0383434,
-                        57.2411129
+                        -0.5879103,
+                        50.7907181
                     ],
                     [
-                        -1.878118,
-                        57.2421638
+                        -0.0149586,
+                        50.7798108
                     ],
                     [
-                        -1.8771469,
-                        57.2978175
+                        -0.0185906,
+                        50.7625836
                     ],
                     [
-                        -1.9868771,
-                        57.2983422
+                        0.0967261,
+                        50.7620093
                     ],
                     [
-                        -1.9082209,
-                        57.3560063
+                        0.0921861,
+                        50.6913106
                     ],
                     [
-                        -1.8752048,
-                        57.3560063
+                        0.3046595,
+                        50.6890096
                     ],
                     [
-                        -1.8761758,
-                        57.3769527
+                        0.3101075,
+                        50.7757917
                     ],
                     [
-                        -1.8120857,
-                        57.4120111
+                        0.5511831,
+                        50.7726336
                     ],
                     [
-                        -1.7120661,
-                        57.4120111
+                        0.5529991,
+                        50.8432096
                     ],
                     [
-                        -1.7034646,
-                        57.6441388
+                        0.695556,
+                        50.8403428
                     ],
                     [
-                        -1.8666032,
-                        57.6451781
+                        0.696464,
+                        50.8592608
                     ],
                     [
-                        -1.8646611,
-                        57.7033351
+                        0.9852099,
+                        50.8523824
                     ],
                     [
-                        -3.1204292,
-                        57.7064705
+                        0.9906579,
+                        50.9417226
                     ],
                     [
-                        -3.1218025,
-                        57.7504652
+                        1.0160821,
+                        50.9411504
                     ],
                     [
-                        -3.4445259,
-                        57.7526635
+                        1.0215301,
+                        51.0303204
                     ],
                     [
-                        -3.4472724,
-                        57.7138067
+                        1.2812198,
+                        51.0240383
                     ],
                     [
-                        -3.5145637,
-                        57.7094052
+                        1.2848518,
+                        51.0948044
                     ],
                     [
-                        -3.5118171,
-                        57.6939956
+                        1.4277848,
+                        51.0948044
                     ],
                     [
-                        -3.7645027,
-                        57.6917938
+                        1.4386809,
+                        51.2882859
                     ],
                     [
-                        -3.7672492,
-                        57.6344975
+                        1.4713691,
+                        51.2871502
                     ],
                     [
-                        -3.842378,
-                        57.6288312
+                        1.4804492,
+                        51.3994534
                     ],
                     [
-                        -3.8438346,
-                        57.5965825
+                        1.1590151,
+                        51.4073836
                     ],
                     [
-                        -3.9414265,
-                        57.5916386
+                        1.1590151,
+                        51.3869889
                     ],
                     [
-                        -3.9404554,
-                        57.6537782
+                        1.0191822,
+                        51.3903886
                     ],
                     [
-                        -3.8894746,
-                        57.6529989
+                        1.0228142,
+                        51.4798247
                     ],
                     [
-                        -3.8826772,
-                        57.7676408
+                        0.8793493,
+                        51.4843484
                     ],
                     [
-                        -3.7224517,
-                        57.766087
+                        0.8829813,
+                        51.5566675
                     ],
                     [
-                        -3.7195385,
-                        57.8819201
+                        1.0264462,
+                        51.5544092
                     ],
                     [
-                        -3.9146888,
-                        57.8853352
+                        1.0373423,
+                        51.7493319
                     ],
                     [
-                        -3.916062,
-                        57.9546243
+                        1.2607117,
+                        51.7482076
                     ],
                     [
-                        -3.745774,
-                        57.9538956
+                        1.2661598,
+                        51.8279642
                     ],
                     [
-                        -3.7471473,
-                        58.0688409
+                        1.3351682,
+                        51.8335756
                     ],
                     [
-                        -3.5837256,
-                        58.0695672
+                        1.3478803,
+                        51.9199021
                     ],
                     [
-                        -3.5837256,
-                        58.1116689
+                        1.4840812,
+                        51.9199021
                     ],
                     [
-                        -3.4560096,
-                        58.1138452
+                        1.4986093,
+                        52.0038271
                     ],
                     [
-                        -3.4544646,
-                        58.228503
+                        1.6438902,
+                        52.0027092
                     ],
                     [
-                        -3.4379851,
-                        58.2283222
+                        1.6656823,
+                        52.270221
                     ],
                     [
-                        -3.4243233,
-                        58.2427725
+                        1.7310588,
+                        52.270221
                     ],
                     [
-                        -3.412307,
-                        58.2438567
+                        1.7528509,
+                        52.4465637
                     ],
                     [
-                        -3.3735115,
-                        58.2695057
+                        1.8254914,
+                        52.4476705
                     ],
                     [
-                        -3.3063919,
-                        58.2862038
+                        1.8345714,
+                        52.624408
                     ],
                     [
-                        -3.1229154,
-                        58.2859395
+                        1.7690346,
+                        52.6291402
                     ],
                     [
-                        -3.123602,
-                        58.3443661
+                        1.7741711,
+                        52.717904
                     ],
                     [
-                        -2.9574338,
-                        58.3447264
+                        1.6996925,
+                        52.721793
                     ],
                     [
-                        -2.951254,
-                        58.6422011
+                        1.706113,
+                        52.8103687
                     ],
                     [
-                        -2.8812162,
-                        58.6429157
+                        1.559724,
+                        52.8165777
                     ],
                     [
-                        -2.8851004,
-                        58.8112825
+                        1.5648605,
+                        52.9034116
                     ],
                     [
-                        -2.7180775,
-                        58.8142997
+                        1.4184715,
+                        52.9103818
                     ],
                     [
-                        -2.7161354,
-                        58.8715749
+                        1.4223238,
+                        52.9281894
                     ],
                     [
-                        -2.556881,
-                        58.8775984
+                        1.3439928,
+                        52.9289635
                     ],
                     [
-                        -2.5544533,
-                        58.9923453
+                        1.3491293,
+                        53.0001194
                     ],
                     [
-                        -2.5567617,
-                        59.0483775
+                        0.4515789,
+                        53.022589
                     ],
                     [
-                        -2.391893,
-                        59.0485996
+                        0.4497629,
+                        52.9351139
                     ],
                     [
-                        -2.3918002,
-                        59.1106996
+                        0.3789384,
+                        52.9351139
                     ],
                     [
-                        -2.4733695,
-                        59.1106996
+                        0.3716744,
+                        52.846365
                     ],
                     [
-                        -2.5591563,
-                        59.1783028
+                        0.2227614,
+                        52.8496552
                     ],
                     [
-                        -2.5630406,
-                        59.2210646
+                        0.2336575,
+                        52.9329248
                     ],
                     [
-                        -2.3921334,
-                        59.224046
+                        0.3062979,
+                        52.9351139
                     ],
                     [
-                        -2.3911409,
-                        59.2740075
+                        0.308114,
+                        53.022589
                     ],
                     [
-                        -2.3639512,
-                        59.2745036
+                        0.3807544,
+                        53.0236813
                     ],
                     [
-                        -2.3658933,
-                        59.285417
+                        0.3993708,
+                        53.2933729
                     ],
                     [
-                        -2.3911409,
-                        59.284921
+                        0.3248922,
+                        53.2987454
                     ],
                     [
-                        -2.3911409,
-                        59.3379505
+                        0.3274604,
+                        53.3853782
                     ],
                     [
-                        -2.2221759,
-                        59.3381981
+                        0.2504136,
+                        53.38691
                     ],
                     [
-                        -2.2233897,
-                        59.395965
+                        0.2581183,
+                        53.4748924
                     ],
                     [
-                        -2.3758467,
-                        59.396583
+                        0.1862079,
+                        53.4779494
                     ],
                     [
-                        -2.3899271,
-                        59.4026383
+                        0.1913443,
+                        53.6548777
                     ],
                     [
-                        -2.4008516,
-                        59.3962122
+                        0.1502527,
+                        53.6594436
                     ],
                     [
-                        -2.5637882,
-                        59.3952604
+                        0.1528209,
+                        53.7666003
                     ],
                     [
-                        -2.5637882,
-                        59.3385811
+                        0.0012954,
+                        53.7734308
                     ],
                     [
-                        -2.7320164,
-                        59.3375306
+                        0.0025796,
+                        53.8424326
                     ],
                     [
-                        -2.7333896,
-                        59.3952604
+                        -0.0282392,
+                        53.841675
                     ],
                     [
-                        -3.0726511,
-                        59.3931174
+                        -0.0226575,
+                        53.9311501
                     ],
                     [
-                        -3.0703404,
-                        59.3354759
+                        -0.1406983,
+                        53.9322193
                     ],
                     [
-                        -3.0753186,
-                        59.3355634
+                        -0.1416063,
+                        54.0219323
                     ],
                     [
-                        -3.0749753,
-                        59.3292593
+                        -0.1706625,
+                        54.0235326
                     ],
                     [
-                        -3.0698254,
-                        59.3289091
+                        -0.1679384,
+                        54.0949482
                     ],
                     [
-                        -3.069801,
-                        59.2196159
+                        -0.0126694,
+                        54.0912206
                     ],
                     [
-                        -3.2363384,
-                        59.2166341
+                        -0.0099454,
+                        54.1811226
                     ],
                     [
-                        -3.2336751,
-                        59.1606496
+                        -0.1615824,
+                        54.1837795
                     ],
                     [
-                        -3.4032766,
-                        59.1588895
+                        -0.1606744,
+                        54.2029038
                     ],
                     [
-                        -3.394086,
-                        58.9279316
+                        -0.2405789,
+                        54.2034349
                     ],
                     [
-                        -3.5664497,
-                        58.9259268
+                        -0.2378549,
+                        54.2936234
                     ],
                     [
-                        -3.5611089,
-                        58.8679885
+                        -0.3894919,
+                        54.2941533
                     ],
                     [
-                        -3.392508,
-                        58.8699339
+                        -0.3857497,
+                        54.3837321
                     ],
                     [
-                        -3.3894734,
-                        58.8698711
+                        -0.461638,
+                        54.3856364
                     ],
                     [
-                        -3.3891093,
-                        58.8684905
+                        -0.4571122,
+                        54.4939066
                     ],
                     [
-                        -3.3912942,
-                        58.868616
+                        -0.6105651,
+                        54.4965434
                     ],
                     [
-                        -3.3884161,
-                        58.7543084
+                        -0.6096571,
+                        54.5676704
                     ],
                     [
-                        -3.2238208,
-                        58.7555677
+                        -0.7667421,
+                        54.569776
                     ],
                     [
-                        -3.2189655,
-                        58.691289
+                        -0.7640181,
+                        54.5887213
                     ],
                     [
-                        -3.4634113,
-                        58.6905753
+                        -0.9192871,
+                        54.5908258
                     ],
                     [
-                        -3.4551716,
-                        58.6341518
+                        -0.9148116,
+                        54.6608348
                     ],
                     [
-                        -3.787508,
-                        58.6341518
+                        -1.1485204,
+                        54.6634343
                     ],
                     [
-                        -3.7861347,
-                        58.5769211
+                        -1.1472363,
+                        54.7528316
                     ],
                     [
-                        -3.9028645,
-                        58.5733411
+                        -1.2268514,
+                        54.7532021
                     ],
                     [
-                        -3.9028645,
-                        58.6477304
+                        -1.2265398,
+                        54.8429879
                     ],
                     [
-                        -4.0690327,
-                        58.6491594
+                        -1.2991803,
+                        54.8435107
                     ],
                     [
-                        -4.0690327,
-                        58.5912376
+                        -1.2991803,
+                        54.9333391
                     ],
                     [
-                        -4.7364521,
-                        58.5933845
+                        -1.3454886,
+                        54.9354258
                     ],
                     [
-                        -4.7364521,
-                        58.6505884
+                        -1.3436726,
+                        55.0234878
                     ],
                     [
-                        -5.0715351,
-                        58.6520173
+                        -1.3772688,
+                        55.0255698
                     ],
                     [
-                        -5.0654779,
-                        58.5325854
+                        -1.3754528,
+                        55.1310877
                     ],
                     [
-                        -5.2332047,
-                        58.5316087
+                        -1.4997441,
+                        55.1315727
                     ],
                     [
-                        -5.2283494,
-                        58.4719947
+                        -1.4969272,
+                        55.2928323
                     ],
                     [
-                        -5.2424298,
-                        58.4719947
+                        -1.5296721,
+                        55.2942946
                     ],
                     [
-                        -5.2366034,
-                        58.4089731
+                        -1.5258198,
+                        55.6523803
                     ],
                     [
-                        -5.2283494,
-                        58.4094818
+                        -1.7659492,
+                        55.6545537
                     ],
                     [
-                        -5.2210664,
-                        58.3005859
+                        -1.7620968,
+                        55.7435626
                     ],
                     [
-                        -5.5657939,
-                        58.2959933
+                        -1.9688392,
+                        55.7435626
                     ],
                     [
-                        -5.5580254,
-                        58.2372573
+                        -1.9698023,
+                        55.8334505
                     ],
                     [
-                        -5.4146722,
-                        58.2401326
+                        -2.0019051,
+                        55.8336308
                     ],
                     [
-                        -5.4141866,
-                        58.2267768
+                        -2.0015841,
+                        55.9235526
                     ],
                     [
-                        -5.3885749,
-                        58.2272242
+                        -2.1604851,
+                        55.9240613
                     ],
                     [
-                        -5.382714,
-                        58.1198615
+                        -2.1613931,
+                        55.9413549
                     ],
                     [
-                        -5.51043,
-                        58.1191362
+                        -2.3202942,
+                        55.9408463
                     ],
                     [
-                        -5.5114011,
-                        58.006214
+                        -2.3212022,
+                        56.0145126
                     ],
                     [
-                        -5.6745397,
-                        58.0041559
+                        -2.5627317,
+                        56.0124824
                     ],
                     [
-                        -5.6716266,
-                        57.9449366
+                        -2.5645477,
+                        56.1022207
                     ],
                     [
-                        -5.6716266,
-                        57.8887166
+                        -2.9658863,
+                        56.0991822
                     ],
                     [
-                        -5.8347652,
-                        57.8856193
+                        -2.9667943,
+                        56.1710304
                     ],
                     [
-                        -5.8277052,
-                        57.5988958
+                        -2.4828272,
+                        56.1755797
                     ],
                     [
-                        -6.0384259,
-                        57.5986357
+                        -2.4882752,
+                        56.2856078
                     ],
                     [
-                        -6.0389115,
-                        57.6459559
+                        -2.5645477,
+                        56.2835918
                     ],
                     [
-                        -6.1981658,
-                        57.6456961
+                        -2.5681798,
+                        56.3742075
                     ],
                     [
-                        -6.2076123,
-                        57.7600132
+                        -2.7261728,
+                        56.3732019
                     ],
                     [
-                        -6.537067,
-                        57.7544033
+                        -2.7316208,
+                        56.4425301
                     ],
                     [
-                        -6.5312406,
-                        57.6402392
+                        -2.6190281,
+                        56.4425301
                     ],
                     [
-                        -6.7002056,
-                        57.6360809
+                        -2.6153961,
+                        56.5317671
                     ],
                     [
-                        -6.6807844,
-                        57.5236293
+                        -2.453771,
+                        56.5347715
                     ],
                     [
-                        -6.8516915,
-                        57.5152857
+                        -2.4534686,
+                        56.6420248
                     ],
                     [
-                        -6.8361545,
-                        57.3385811
+                        -2.4062523,
+                        56.6440218
                     ],
                     [
-                        -6.6730158,
-                        57.3438213
+                        -2.3953562,
+                        56.7297964
                     ],
                     [
-                        -6.674958,
-                        57.2850883
+                        -2.2936596,
+                        56.7337811
                     ],
                     [
-                        -6.5098772,
-                        57.2850883
+                        -2.2972916,
+                        56.807423
                     ],
                     [
-                        -6.4982244,
-                        57.1757637
+                        -2.1629067,
+                        56.8113995
                     ],
                     [
-                        -6.3506228,
-                        57.1820797
+                        -2.1592747,
+                        56.9958425
                     ],
                     [
-                        -6.3312015,
-                        57.1251969
+                        -1.9922016,
+                        57.0017771
                     ],
                     [
-                        -6.1797156,
-                        57.1230884
+                        -2.0067297,
+                        57.2737477
                     ],
                     [
-                        -6.1719471,
-                        57.0682265
+                        -1.9195612,
+                        57.2757112
                     ],
                     [
-                        -6.4593819,
-                        57.059779
+                        -1.9304572,
+                        57.3482876
                     ],
                     [
-                        -6.4564687,
-                        57.1093806
+                        -1.8106005,
+                        57.3443682
                     ],
                     [
-                        -6.6671895,
-                        57.1062165
+                        -1.7997044,
+                        57.4402728
                     ],
                     [
-                        -6.6730158,
-                        57.002708
+                        -1.6616875,
+                        57.4285429
                     ],
                     [
-                        -6.5021087,
-                        57.0048233
+                        -1.6689516,
+                        57.5398256
                     ],
                     [
-                        -6.4836097,
-                        56.8917522
+                        -1.7452241,
+                        57.5398256
                     ],
                     [
-                        -6.3266104,
-                        56.8894062
+                        -1.7524881,
+                        57.6313302
                     ],
                     [
-                        -6.3156645,
-                        56.7799312
+                        -1.8287606,
+                        57.6332746
                     ],
                     [
-                        -6.2146739,
-                        56.775675
+                        -1.8287606,
+                        57.7187255
                     ],
                     [
-                        -6.2146739,
-                        56.7234965
+                        -3.1768526,
+                        57.7171219
                     ],
                     [
-                        -6.6866107,
-                        56.7224309
+                        -3.1794208,
+                        57.734264
                     ],
                     [
-                        -6.6769001,
-                        56.6114413
+                        -3.5134082,
+                        57.7292105
                     ],
                     [
-                        -6.8419809,
-                        56.607166
+                        -3.5129542,
+                        57.7112683
                     ],
                     [
-                        -6.8400387,
-                        56.5483307
+                        -3.7635638,
+                        57.7076303
                     ],
                     [
-                        -7.1546633,
-                        56.5461895
+                        -3.7598539,
+                        57.635713
                     ],
                     [
-                        -7.1488369,
-                        56.4872592
+                        -3.8420372,
+                        57.6343382
                     ],
                     [
-                        -6.9915246,
-                        56.490476
+                        -3.8458895,
+                        57.6178365
                     ],
                     [
-                        -6.9876404,
-                        56.4325329
+                        -3.9794374,
+                        57.6157733
                     ],
                     [
-                        -6.6827265,
-                        56.4314591
+                        -3.9794374,
+                        57.686544
                     ],
                     [
-                        -6.6769001,
-                        56.5472601
+                        -3.8150708,
+                        57.689976
                     ],
                     [
-                        -6.5292985,
-                        56.5504717
+                        -3.817639,
+                        57.7968899
                     ],
                     [
-                        -6.5234721,
-                        56.4379018
+                        -3.6853753,
+                        57.7989429
                     ],
                     [
-                        -6.3661598,
-                        56.4368281
+                        -3.6892276,
+                        57.8891567
                     ],
                     [
-                        -6.3642177,
-                        56.3766524
+                        -3.9383458,
+                        57.8877915
                     ],
                     [
-                        -6.5273563,
-                        56.3712749
+                        -3.9421981,
+                        57.9750592
                     ],
                     [
-                        -6.5171745,
-                        56.2428427
+                        -3.6943641,
+                        57.9784638
                     ],
                     [
-                        -6.4869621,
-                        56.247421
+                        -3.6969323,
+                        58.0695865
                     ],
                     [
-                        -6.4869621,
-                        56.1893882
+                        -4.0372226,
+                        58.0641528
                     ],
                     [
-                        -6.3001945,
-                        56.1985572
+                        -4.0346543,
+                        57.9730163
                     ],
                     [
-                        -6.3029411,
-                        56.2581017
+                        -4.2003051,
+                        57.9702923
                     ],
                     [
-                        -5.9019401,
-                        56.256576
+                        -4.1832772,
+                        57.7012869
                     ],
                     [
-                        -5.8964469,
-                        56.0960466
+                        -4.518752,
+                        57.6951111
                     ],
                     [
-                        -6.0282829,
-                        56.0883855
+                        -4.5122925,
+                        57.6050682
                     ],
                     [
-                        -6.0392692,
-                        56.1557502
+                        -4.6789116,
+                        57.6016628
                     ],
                     [
-                        -6.3853385,
-                        56.1542205
+                        -4.666022,
+                        57.4218334
                     ],
                     [
-                        -6.3606193,
-                        55.96099
+                        -3.6677696,
+                        57.4394729
                     ],
                     [
-                        -6.2123039,
-                        55.9640647
+                        -3.671282,
+                        57.5295384
                     ],
                     [
-                        -6.2047508,
-                        55.9202269
+                        -3.3384979,
+                        57.5331943
                     ],
                     [
-                        -6.5185478,
-                        55.9129158
+                        -3.3330498,
+                        57.4438859
                     ],
                     [
-                        -6.5061881,
-                        55.7501763
+                        -2.8336466,
+                        57.4485275
                     ],
                     [
-                        -6.6764762,
-                        55.7409005
+                        -2.8236396,
+                        56.9992706
                     ],
                     [
-                        -6.6599967,
-                        55.6263176
+                        -2.3305398,
+                        57.0006693
                     ],
                     [
-                        -6.3551261,
-                        55.6232161
+                        -2.3298977,
+                        56.9113932
                     ],
                     [
-                        -6.3578727,
-                        55.5689002
+                        -2.6579889,
+                        56.9092901
                     ],
                     [
-                        -6.0392692,
-                        55.5720059
+                        -2.6559637,
+                        56.8198406
                     ],
                     [
-                        -6.0310294,
-                        55.6247669
+                        -2.8216747,
+                        56.8188467
                     ],
                     [
-                        -5.7398917,
-                        55.6309694
+                        -2.8184967,
+                        56.7295397
                     ],
                     [
-                        -5.7371452,
-                        55.4569279
+                        -3.1449248,
+                        56.7265508
                     ],
                     [
-                        -5.8964469,
-                        55.4600426
+                        -3.1435628,
+                        56.6362749
                     ],
                     [
-                        -5.8964469,
-                        55.2789864
+                        -3.4679089,
+                        56.6350265
                     ],
                     [
-                        -5.4350211,
-                        55.2821151
+                        -3.474265,
+                        56.7238108
                     ],
                     [
-                        -5.4405143,
-                        55.4506979
+                        -3.8011471,
+                        56.7188284
                     ],
                     [
-                        -5.2867057,
-                        55.4569279
+                        -3.785711,
+                        56.4493026
                     ],
                     [
-                        -5.3086784,
-                        55.4070602
+                        -3.946428,
+                        56.4457896
                     ],
                     [
-                        -4.9735954,
-                        55.4008223
+                        -3.9428873,
+                        56.2659777
                     ],
                     [
-                        -4.9845817,
-                        55.2038242
+                        -4.423146,
+                        56.2588459
                     ],
                     [
-                        -5.1493766,
-                        55.2038242
+                        -4.4141572,
+                        56.0815506
                     ],
                     [
-                        -5.1411369,
-                        55.037337
+                        -4.8944159,
+                        56.0708008
                     ],
                     [
-                        -5.2152946,
-                        55.0341891
-                    ]
-                ],
-                [
-                    [
-                        -2.1646559,
-                        60.1622059
+                        -4.8791072,
+                        55.8896994
                     ],
                     [
-                        -1.9930299,
-                        60.1609801
+                        -5.1994158,
+                        55.8821374
                     ],
                     [
-                        -1.9946862,
-                        60.1035151
+                        -5.1852906,
+                        55.7023791
                     ],
                     [
-                        -2.1663122,
-                        60.104743
-                    ]
-                ],
-                [
-                    [
-                        -1.5360658,
-                        59.8570831
+                        -5.0273445,
+                        55.7067203
                     ],
                     [
-                        -1.3653566,
-                        59.8559841
+                        -5.0222081,
+                        55.6879046
                     ],
                     [
-                        -1.366847,
-                        59.7975565
+                        -4.897649,
+                        55.6907999
                     ],
                     [
-                        -1.190628,
-                        59.7964199
+                        -4.8880181,
+                        55.6002822
                     ],
                     [
-                        -1.1862046,
-                        59.9695391
+                        -4.7339244,
+                        55.6046348
                     ],
                     [
-                        -1.0078652,
-                        59.9683948
+                        -4.7275038,
+                        55.5342082
                     ],
                     [
-                        -1.0041233,
-                        60.114145
+                        -4.773732,
+                        55.5334815
                     ],
                     [
-                        -0.8360832,
-                        60.1130715
+                        -4.7685955,
+                        55.4447227
                     ],
                     [
-                        -0.834574,
-                        60.1716772
+                        -4.8494947,
+                        55.4418092
                     ],
                     [
-                        -1.0074262,
-                        60.1727795
+                        -4.8405059,
+                        55.3506535
                     ],
                     [
-                        -1.0052165,
-                        60.2583924
+                        -4.8700405,
+                        55.3513836
                     ],
                     [
-                        -0.8299659,
-                        60.2572778
+                        -4.8649041,
+                        55.2629462
                     ],
                     [
-                        -0.826979,
-                        60.3726551
+                        -4.9920314,
+                        55.2592875
                     ],
                     [
-                        -0.6507514,
-                        60.3715381
+                        -4.9907473,
+                        55.1691779
                     ],
                     [
-                        -0.6477198,
-                        60.4882292
+                        -5.0600894,
+                        55.1655105
                     ],
                     [
-                        -0.9984896,
-                        60.4904445
+                        -5.0575212,
+                        55.0751884
                     ],
                     [
-                        -0.9970279,
-                        60.546555
+                        -5.2141831,
+                        55.0722477
                     ],
                     [
-                        -0.6425288,
-                        60.5443201
+                        -5.1991766,
+                        54.8020337
                     ],
                     [
-                        -0.6394896,
-                        60.6606792
+                        -5.0466316,
+                        54.8062205
                     ],
                     [
-                        -0.8148133,
-                        60.6617806
+                        -5.0502636,
+                        54.7244996
                     ],
                     [
-                        -0.8132987,
-                        60.7196112
+                        -4.9703591,
+                        54.7203043
                     ],
                     [
-                        -0.6383298,
-                        60.7185141
+                        -4.9776232,
+                        54.6215905
                     ],
                     [
-                        -0.635467,
-                        60.8275393
+                        -4.796022,
+                        54.6342056
                     ],
                     [
-                        -0.797568,
-                        60.8285523
+                        -4.796022,
+                        54.7307917
                     ],
                     [
-                        -0.9941426,
-                        60.8297807
+                        -4.8977186,
+                        54.7265971
                     ],
                     [
-                        -0.9954966,
-                        60.7782667
+                        -4.9086147,
+                        54.8145928
                     ],
                     [
-                        -1.1670282,
-                        60.7793403
+                        -4.8069181,
+                        54.8166856
                     ],
                     [
-                        -1.1700357,
-                        60.6646181
+                        -4.8105501,
+                        54.7915648
                     ],
                     [
-                        -1.5222599,
-                        60.6668304
+                        -4.6943253,
+                        54.7978465
                     ],
                     [
-                        -1.5237866,
-                        60.6084426
+                        -4.6761652,
+                        54.7244996
                     ],
                     [
-                        -1.6975673,
-                        60.609536
+                        -4.5744686,
+                        54.7244996
                     ],
                     [
-                        -1.7021271,
-                        60.4345249
+                        -4.5599405,
+                        54.6426135
                     ],
                     [
-                        -1.5260578,
-                        60.4334111
+                        -4.3093309,
+                        54.6384098
                     ],
                     [
-                        -1.5275203,
-                        60.3770719
+                        -4.3333262,
+                        54.8229889
                     ],
                     [
-                        -1.8751127,
-                        60.3792746
+                        -4.2626999,
+                        54.8274274
                     ],
                     [
-                        -1.8781372,
-                        60.2624647
+                        -4.2549952,
+                        54.7348587
                     ],
                     [
-                        -1.7019645,
-                        60.2613443
+                        -3.8338058,
+                        54.7400481
                     ],
                     [
-                        -1.7049134,
-                        60.1470532
+                        -3.836374,
+                        54.8141105
                     ],
                     [
-                        -1.528659,
-                        60.1459283
-                    ]
-                ],
-                [
-                    [
-                        -0.9847667,
-                        60.8943762
+                        -3.7118149,
+                        54.8133706
                     ],
                     [
-                        -0.9860347,
-                        60.8361105
+                        -3.7143831,
+                        54.8318654
                     ],
                     [
-                        -0.8078362,
-                        60.8351904
+                        -3.5346072,
+                        54.8355633
                     ],
                     [
-                        -0.8065683,
-                        60.8934578
-                    ]
-                ],
-                [
-                    [
-                        -7.7696901,
-                        56.8788231
+                        -3.5271039,
+                        54.9066228
                     ],
                     [
-                        -7.7614504,
-                        56.7608274
+                        -3.4808758,
+                        54.9084684
                     ],
                     [
-                        -7.6009049,
-                        56.7641903
+                        -3.4776655,
+                        54.7457328
                     ],
                     [
-                        -7.5972473,
-                        56.819332
+                        -3.5874573,
+                        54.744621
                     ],
                     [
-                        -7.4479894,
-                        56.8203948
+                        -3.5836049,
+                        54.6546166
                     ],
                     [
-                        -7.4489319,
-                        56.8794098
+                        -3.7107322,
+                        54.6531308
                     ],
                     [
-                        -7.2841369,
-                        56.8794098
+                        -3.6991752,
+                        54.4550407
                     ],
                     [
-                        -7.2813904,
-                        57.0471152
+                        -3.5746161,
+                        54.4572801
                     ],
                     [
-                        -7.1303283,
-                        57.0515969
+                        -3.5759002,
+                        54.3863042
                     ],
                     [
-                        -7.1330749,
-                        57.511801
+                        -3.539945,
+                        54.3855564
                     ],
                     [
-                        -6.96828,
-                        57.5147514
+                        -3.5386609,
+                        54.297224
                     ],
                     [
-                        -6.9765198,
-                        57.6854668
+                        -3.46033,
+                        54.2957252
                     ],
                     [
-                        -6.8062317,
-                        57.6913392
+                        -3.4590458,
+                        54.2079507
                     ],
                     [
-                        -6.8089782,
-                        57.8041985
+                        -3.3807149,
+                        54.2102037
                     ],
                     [
-                        -6.6496765,
-                        57.8071252
+                        -3.381999,
+                        54.1169788
                     ],
                     [
-                        -6.6441833,
-                        57.8612267
+                        -3.302878,
+                        54.1160656
                     ],
                     [
-                        -6.3200866,
-                        57.8626878
+                        -3.300154,
+                        54.0276224
                     ],
                     [
-                        -6.3200866,
-                        58.1551617
+                        -3.1013007,
+                        54.0292224
                     ],
                     [
-                        -6.1607849,
-                        58.1522633
+                        -3.093596,
+                        53.6062158
                     ],
                     [
-                        -6.1552917,
-                        58.20874
+                        -3.2065981,
+                        53.6016441
                     ],
                     [
-                        -5.9850036,
-                        58.2101869
+                        -3.2091663,
+                        53.4917753
                     ],
                     [
-                        -5.9904968,
-                        58.2680163
+                        -3.2451215,
+                        53.4887193
                     ],
                     [
-                        -6.1497986,
-                        58.2665717
+                        -3.2348486,
+                        53.4045934
                     ],
                     [
-                        -6.1415588,
-                        58.5557514
+                        -3.5276266,
+                        53.3999999
                     ],
                     [
-                        -6.3173401,
-                        58.5557514
+                        -3.5343966,
+                        53.328481
                     ],
                     [
-                        -6.3091003,
-                        58.4983923
+                        -3.6488053,
+                        53.3252272
                     ],
                     [
-                        -6.4876282,
-                        58.4955218
+                        -3.6527308,
+                        53.3057716
                     ],
                     [
-                        -6.4876282,
-                        58.4423768
+                        -3.7271873,
+                        53.3046865
                     ],
                     [
-                        -6.6606628,
-                        58.4395018
+                        -3.7315003,
+                        53.3945257
                     ],
                     [
-                        -6.6469299,
-                        58.3819525
+                        -3.9108315,
+                        53.3912769
                     ],
                     [
-                        -6.8117248,
-                        58.3805125
+                        -3.9071995,
+                        53.3023804
                     ],
                     [
-                        -6.8117248,
-                        58.3286357
+                        -3.9521457,
+                        53.3015665
                     ],
                     [
-                        -6.9792663,
-                        58.3286357
+                        -3.9566724,
+                        53.3912183
                     ],
                     [
-                        -6.9710266,
-                        58.2694608
+                        -4.1081979,
+                        53.3889209
                     ],
                     [
-                        -7.1413147,
-                        58.2680163
+                        -4.1081979,
+                        53.4072967
                     ],
                     [
-                        -7.1403816,
-                        58.0358742
+                        -4.2622916,
+                        53.4065312
                     ],
                     [
-                        -7.3020636,
-                        58.0351031
+                        -4.2635757,
+                        53.4753707
                     ],
                     [
-                        -7.3030347,
-                        57.9774797
+                        -4.638537,
+                        53.4677274
                     ],
                     [
-                        -7.1379539,
-                        57.9777372
+                        -4.6346847,
+                        53.3812621
                     ],
                     [
-                        -7.1413526,
-                        57.9202792
+                        -4.7091633,
+                        53.3774321
                     ],
                     [
-                        -7.1398961,
-                        57.8640206
+                        -4.7001745,
+                        53.1954965
                     ],
                     [
-                        -7.3020636,
-                        57.862471
+                        -4.5499332,
+                        53.1962658
                     ],
                     [
-                        -7.298484,
-                        57.7442293
+                        -4.5435126,
+                        53.1092488
                     ],
                     [
-                        -7.4509193,
-                        57.7456951
+                        -4.3919871,
+                        53.1100196
                     ],
                     [
-                        -7.4550392,
-                        57.6899522
+                        -4.3855666,
+                        53.0236002
                     ],
                     [
-                        -7.6186131,
-                        57.6906048
+                        -4.6115707,
+                        53.0205105
                     ],
                     [
-                        -7.6198341,
-                        57.7456951
+                        -4.603866,
+                        52.9284932
                     ],
                     [
-                        -7.7901222,
-                        57.7442293
+                        -4.7566756,
+                        52.9261709
                     ],
                     [
-                        -7.7873756,
-                        57.6855477
+                        -4.7476868,
+                        52.8370555
                     ],
                     [
-                        -7.6222332,
-                        57.6853817
+                        -4.8208813,
+                        52.8331768
                     ],
                     [
-                        -7.6173779,
-                        57.5712602
+                        -4.8208813,
+                        52.7446476
                     ],
                     [
-                        -7.788285,
-                        57.5709998
+                        -4.3701572,
+                        52.7539749
                     ],
                     [
-                        -7.7892561,
-                        57.512109
+                        -4.3765778,
+                        52.8401583
                     ],
                     [
-                        -7.7038025,
-                        57.5115874
+                        -4.2314728,
+                        52.8455875
                     ],
                     [
-                        -7.6999183,
-                        57.4546902
+                        -4.2237682,
+                        52.7586379
                     ],
                     [
-                        -7.5367796,
-                        57.4552126
+                        -4.1056297,
+                        52.7570836
                     ],
                     [
-                        -7.5348375,
-                        57.5126306
+                        -4.1015192,
+                        52.6714874
                     ],
                     [
-                        -7.4581235,
-                        57.5131521
+                        -4.1487355,
+                        52.6703862
                     ],
                     [
-                        -7.4552103,
-                        57.2824165
+                        -4.1305754,
+                        52.4008596
                     ],
                     [
-                        -7.6115515,
-                        57.2845158
+                        -4.1995838,
+                        52.3986435
                     ],
                     [
-                        -7.6144647,
-                        57.2272651
+                        -4.2050319,
+                        52.3110195
                     ],
                     [
-                        -7.451326,
-                        57.2256881
+                        -4.3466808,
+                        52.303247
                     ],
                     [
-                        -7.451326,
-                        57.1103873
+                        -4.3484968,
+                        52.2365693
                     ],
                     [
-                        -7.6164068,
-                        57.1088053
+                        -4.4901457,
+                        52.2332328
                     ],
                     [
-                        -7.603783,
-                        56.8792358
-                    ]
-                ],
-                [
-                    [
-                        -1.7106618,
-                        59.5626284
+                        -4.4883297,
+                        52.2098702
                     ],
                     [
-                        -1.5417509,
-                        59.562215
+                        -4.6572188,
+                        52.2098702
                     ],
                     [
-                        -1.5423082,
-                        59.5037224
+                        -4.6590348,
+                        52.1385939
                     ],
                     [
-                        -1.7112191,
-                        59.5041365
-                    ]
-                ]
-            ],
-            "terms_url": "http://geo.nls.uk/maps/",
-            "terms_text": "National Library of Scotland Historic Maps"
-        },
-        {
-            "name": "New & Misaligned TIGER Roads",
-            "type": "tms",
-            "description": "At zoom level 16+, public domain map data from the US Census. At lower zooms, only changes since 2006 minus changes already incorporated into OpenStreetMap",
-            "template": "http://{switch:a,b,c}.tiles.mapbox.com/v3/enf.y5c4ygb9,enf.ho20a3n1,enf.game1617/{zoom}/{x}/{y}.png",
-            "scaleExtent": [
-                0,
-                22
-            ],
-            "polygon": [
-                [
+                        -4.7788916,
+                        52.13525
+                    ],
                     [
-                        -124.7617886,
-                        48.4130148
+                        -4.7807076,
+                        52.1162967
                     ],
                     [
-                        -124.6059492,
-                        45.90245
+                        -4.9259885,
+                        52.1140663
                     ],
                     [
-                        -124.9934269,
-                        40.0557614
+                        -4.9187245,
+                        52.0392855
                     ],
                     [
-                        -122.5369737,
-                        36.8566086
+                        -5.2365265,
+                        52.0314653
                     ],
                     [
-                        -119.9775867,
-                        33.0064099
+                        -5.2347105,
+                        51.9442339
                     ],
                     [
-                        -117.675935,
-                        32.4630223
+                        -5.3473032,
+                        51.9408755
                     ],
                     [
-                        -114.8612307,
-                        32.4799891
+                        -5.3473032,
+                        51.9195995
                     ],
                     [
-                        -111.0089311,
-                        31.336015
+                        -5.4925842,
+                        51.9162392
                     ],
                     [
-                        -108.1992687,
-                        31.3260016
+                        -5.4853201,
+                        51.8265386
                     ],
                     [
-                        -108.1871123,
-                        31.7755116
+                        -5.1983903,
+                        51.8321501
                     ],
                     [
-                        -106.5307225,
-                        31.7820947
+                        -5.1893102,
+                        51.7625177
                     ],
                     [
-                        -106.4842052,
-                        31.7464455
+                        -5.335825,
+                        51.7589528
                     ],
                     [
-                        -106.429317,
-                        31.7520583
+                        -5.3281204,
+                        51.6686495
                     ],
                     [
-                        -106.2868855,
-                        31.5613291
+                        -5.1836575,
+                        51.6730296
                     ],
                     [
-                        -106.205248,
-                        31.446704
+                        -5.1836575,
+                        51.6539134
                     ],
                     [
-                        -105.0205259,
-                        30.5360988
+                        -5.0674452,
+                        51.6578966
                     ],
                     [
-                        -104.5881916,
-                        29.6997856
+                        -5.0603825,
+                        51.5677905
                     ],
                     [
-                        -103.2518856,
-                        28.8908685
+                        -4.5974594,
+                        51.5809588
                     ],
                     [
-                        -102.7173632,
-                        29.3920567
+                        -4.60388,
+                        51.6726314
                     ],
                     [
-                        -102.1513983,
-                        29.7475702
+                        -4.345773,
+                        51.6726314
                     ],
                     [
-                        -101.2552871,
-                        29.4810523
+                        -4.3355001,
+                        51.4962964
                     ],
                     [
-                        -100.0062436,
-                        28.0082173
+                        -3.9528341,
+                        51.5106841
                     ],
                     [
-                        -99.2351068,
-                        26.4475962
+                        -3.9425611,
+                        51.5905333
                     ],
                     [
-                        -98.0109067,
-                        25.9928035
+                        -3.8809237,
+                        51.5953198
                     ],
                     [
-                        -97.435024,
-                        25.8266009
+                        -3.8706508,
+                        51.5074872
                     ],
                     [
-                        -96.9555259,
-                        25.9821589
+                        -3.7679216,
+                        51.4978952
                     ],
                     [
-                        -96.8061741,
-                        27.7978168
+                        -3.7550805,
+                        51.4242895
                     ],
                     [
-                        -95.5563349,
-                        28.5876066
+                        -3.5855774,
+                        51.41468
                     ],
                     [
-                        -93.7405308,
-                        29.4742093
+                        -3.5778727,
+                        51.3329177
                     ],
                     [
-                        -90.9028456,
-                        28.8564513
+                        -3.0796364,
+                        51.3329177
                     ],
                     [
-                        -88.0156706,
-                        28.9944338
+                        -3.0770682,
+                        51.2494018
                     ],
                     [
-                        -88.0162494,
-                        30.0038862
+                        -3.7216935,
+                        51.2381477
                     ],
                     [
-                        -86.0277506,
-                        30.0047454
+                        -3.7216935,
+                        51.2558315
                     ],
                     [
-                        -84.0187909,
-                        28.9961781
+                        -3.8706508,
+                        51.2558315
                     ],
                     [
-                        -81.9971976,
-                        25.9826768
+                        -3.8680825,
+                        51.2365398
                     ],
                     [
-                        -81.9966618,
-                        25.0134917
+                        -4.2944084,
+                        51.2252825
                     ],
                     [
-                        -84.0165592,
-                        25.0125783
+                        -4.289272,
+                        51.0496352
                     ],
                     [
-                        -84.0160068,
-                        24.0052745
+                        -4.5692089,
+                        51.0431767
                     ],
                     [
-                        -80.0199985,
-                        24.007096
+                        -4.5624122,
+                        50.9497388
                     ],
                     [
-                        -79.8901116,
-                        26.8550713
+                        -4.5905604,
+                        50.9520269
                     ],
                     [
-                        -80.0245309,
-                        32.0161282
+                        -4.5896524,
+                        50.8627065
                     ],
                     [
-                        -75.4147385,
-                        35.0531894
+                        -4.6296046,
+                        50.8592677
                     ],
                     [
-                        -74.0211163,
-                        39.5727927
+                        -4.6226411,
+                        50.7691513
                     ],
                     [
-                        -72.002019,
-                        40.9912464
+                        -4.6952816,
+                        50.7680028
                     ],
                     [
-                        -69.8797398,
-                        40.9920457
+                        -4.6934655,
+                        50.6967379
                     ],
                     [
-                        -69.8489304,
-                        43.2619916
+                        -4.8342064,
+                        50.6938621
                     ],
                     [
-                        -66.9452845,
-                        44.7104937
+                        -4.8296664,
+                        50.6046231
                     ],
                     [
-                        -67.7596632,
-                        47.0990024
+                        -4.9676833,
+                        50.6000126
                     ],
                     [
-                        -69.2505131,
-                        47.5122328
+                        -4.9685913,
+                        50.5821427
                     ],
                     [
-                        -70.4614886,
-                        46.2176574
+                        -5.1084242,
+                        50.5786832
                     ],
                     [
-                        -71.412273,
-                        45.254878
+                        -5.1029762,
+                        50.4892254
                     ],
                     [
-                        -72.0222508,
-                        45.0059846
+                        -5.1311244,
+                        50.48807
                     ],
                     [
-                        -75.0798841,
-                        44.9802854
+                        -5.1274923,
+                        50.4163798
                     ],
                     [
-                        -76.9023061,
-                        43.8024568
+                        -5.2664172,
+                        50.4117509
                     ],
                     [
-                        -78.7623935,
-                        43.6249578
+                        -5.2609692,
+                        50.3034214
                     ],
                     [
-                        -79.15798,
-                        43.4462589
+                        -5.5124868,
+                        50.2976214
                     ],
                     [
-                        -79.0060087,
-                        42.8005317
+                        -5.5061308,
+                        50.2256428
                     ],
                     [
-                        -82.662475,
-                        41.6889458
-                    ],
+                        -5.6468717,
+                        50.2209953
+                    ]
+                ],
+                [
                     [
-                        -82.1761642,
-                        43.588535
+                        -5.1336607,
+                        55.2630226
                     ],
                     [
-                        -83.2813977,
-                        46.138853
+                        -5.1021999,
+                        55.2639372
                     ],
                     [
-                        -87.5064535,
-                        48.0142702
+                        -5.0999527,
+                        55.2458239
                     ],
                     [
-                        -88.3492194,
-                        48.2963271
+                        -5.1322161,
+                        55.2446343
+                    ]
+                ],
+                [
+                    [
+                        -5.6431878,
+                        55.5095745
                     ],
                     [
-                        -89.4353148,
-                        47.9837822
+                        -5.4861028,
+                        55.5126594
                     ],
                     [
-                        -93.9981078,
-                        49.0067142
+                        -5.4715747,
+                        55.3348829
                     ],
                     [
-                        -95.1105379,
-                        49.412004
+                        -5.6277517,
+                        55.3302345
+                    ]
+                ],
+                [
+                    [
+                        -4.7213517,
+                        51.2180246
                     ],
                     [
-                        -96.0131199,
-                        49.0060547
+                        -4.5804201,
+                        51.2212417
                     ],
                     [
-                        -123.3228926,
-                        49.0042878
+                        -4.5746416,
+                        51.1306736
                     ],
                     [
-                        -123.2275233,
-                        48.1849927
+                        -4.7174993,
+                        51.1280545
                     ]
                 ],
                 [
                     [
-                        -160.5787616,
-                        22.5062947
+                        -5.1608796,
+                        55.4153626
                     ],
                     [
-                        -160.5782192,
-                        21.4984647
+                        -5.0045387,
+                        55.4190069
                     ],
                     [
-                        -158.7470604,
-                        21.2439843
+                        -5.0184798,
+                        55.6153521
                     ],
                     [
-                        -157.5083185,
-                        20.995803
-                    ],
+                        -5.1755648,
+                        55.6138137
+                    ]
+                ]
+            ],
+            "terms_url": "http://geo.nls.uk/maps/",
+            "terms_text": "National Library of Scotland Historic Maps"
+        },
+        {
+            "name": "NLS - OS 6-inch Scotland 1842-82",
+            "type": "tms",
+            "template": "http://geo.nls.uk/maps/os/six_inch/{zoom}/{x}/{-y}.png",
+            "scaleExtent": [
+                5,
+                16
+            ],
+            "polygon": [
+                [
                     [
-                        -155.9961942,
-                        18.7790194
+                        -5.2112173,
+                        54.8018593
                     ],
                     [
-                        -154.6217803,
-                        18.7586966
+                        -5.0642752,
+                        54.8026508
                     ],
                     [
-                        -154.6890176,
-                        19.8805722
+                        -5.0560354,
+                        54.6305176
                     ],
                     [
-                        -156.2927622,
-                        21.2225888
+                        -4.3158316,
+                        54.6297227
                     ],
                     [
-                        -157.5047384,
-                        21.9984962
+                        -4.3117117,
+                        54.7448258
                     ],
                     [
-                        -159.0093692,
-                        22.5070181
-                    ]
-                ],
-                [
-                    [
-                        -167.1571546,
-                        68.721974
+                        -3.8530325,
+                        54.7464112
                     ],
                     [
-                        -164.8553982,
-                        67.0255078
+                        -3.8530325,
+                        54.8034424
                     ],
                     [
-                        -168.002195,
-                        66.0017503
+                        -3.5522818,
+                        54.8034424
                     ],
                     [
-                        -169.0087448,
-                        66.001546
+                        -3.5522818,
+                        54.8374644
                     ],
                     [
-                        -169.0075381,
-                        64.9987675
+                        -3.468511,
+                        54.8406277
                     ],
                     [
-                        -172.5143281,
-                        63.8767267
+                        -3.4657644,
+                        54.8983158
                     ],
                     [
-                        -173.8197023,
-                        59.74014
+                        -3.3847403,
+                        54.8991055
                     ],
                     [
-                        -162.5018149,
-                        58.0005815
+                        -3.3888601,
+                        54.9559214
                     ],
                     [
-                        -160.0159024,
-                        58.0012389
+                        -3.0920786,
+                        54.9539468
                     ],
                     [
-                        -160.0149725,
-                        57.000035
+                        -3.0392359,
+                        54.9923274
                     ],
                     [
-                        -160.5054788,
-                        56.9999017
+                        -3.0212713,
+                        55.0493881
                     ],
                     [
-                        -165.8092575,
-                        54.824847
+                        -2.9591232,
+                        55.0463283
                     ],
                     [
-                        -178.000097,
-                        52.2446469
+                        -2.9202807,
+                        55.0666294
                     ],
                     [
-                        -177.9992996,
-                        51.2554252
+                        -2.7857081,
+                        55.068652
                     ],
                     [
-                        -171.4689067,
-                        51.8215329
+                        -2.7852225,
+                        55.0914426
                     ],
                     [
-                        -162.40251,
-                        53.956664
+                        -2.7337562,
+                        55.0922761
                     ],
                     [
-                        -159.0075717,
-                        55.002502
+                        -2.737616,
+                        55.151204
                     ],
                     [
-                        -158.0190709,
-                        55.0027849
+                        -2.7648395,
+                        55.1510672
                     ],
                     [
-                        -151.9963213,
-                        55.9991902
+                        -2.7013114,
+                        55.1722505
                     ],
                     [
-                        -151.500341,
-                        57.9987853
+                        -2.6635459,
+                        55.2192808
                     ],
                     [
-                        -151.5012894,
-                        58.9919816
+                        -2.6460364,
+                        55.2188891
                     ],
                     [
-                        -138.5159989,
-                        58.9953194
+                        -2.629042,
+                        55.2233933
                     ],
                     [
-                        -138.5150471,
-                        57.9986434
+                        -2.6317886,
+                        55.2287781
                     ],
                     [
-                        -133.9948193,
-                        54.0031685
+                        -2.6235488,
+                        55.2446345
                     ],
                     [
-                        -130.0044418,
-                        54.0043387
+                        -2.6197723,
+                        55.2454663
                     ],
                     [
-                        -130.0070826,
-                        57.0000507
+                        -2.6099017,
+                        55.2454174
                     ],
                     [
-                        -131.975877,
-                        56.9995156
+                        -2.6099876,
+                        55.2486466
                     ],
                     [
-                        -135.1229873,
-                        59.756601
+                        -2.6408121,
+                        55.2590039
                     ],
                     [
-                        -138.0071813,
-                        59.991805
+                        -2.6247896,
+                        55.2615631
                     ],
                     [
-                        -139.1715881,
-                        60.4127229
+                        -2.6045186,
+                        55.2823081
                     ],
                     [
-                        -140.9874011,
-                        61.0118551
+                        -2.5693176,
+                        55.296132
                     ],
                     [
-                        -140.9683975,
-                        69.9535069
+                        -2.5479542,
+                        55.3121617
                     ],
                     [
-                        -156.176891,
-                        71.5633329
+                        -2.5091116,
+                        55.3234891
                     ],
                     [
-                        -160.413634,
-                        70.7397728
+                        -2.4780376,
+                        55.3494471
                     ],
                     [
-                        -163.0218273,
-                        69.9707435
+                        -2.4421083,
+                        55.3533118
                     ],
                     [
-                        -164.9717003,
-                        68.994689
-                    ]
-                ]
-            ],
-            "overlay": true
-        },
-        {
-            "name": "OS 1:25k historic (OSM)",
-            "type": "tms",
-            "template": "http://ooc.openstreetmap.org/os1/{zoom}/{x}/{y}.jpg",
-            "scaleExtent": [
-                6,
-                17
-            ],
-            "polygon": [
-                [
-                    [
-                        -9,
-                        49.8
+                        -2.4052079,
+                        55.3439256
                     ],
                     [
-                        -9,
-                        61.1
+                        -2.3726772,
+                        55.3447539
                     ],
                     [
-                        1.9,
-                        61.1
+                        -2.3221819,
+                        55.3687665
                     ],
                     [
-                        1.9,
-                        49.8
+                        -2.3241241,
+                        55.3999337
                     ],
                     [
-                        -9,
-                        49.8
-                    ]
-                ]
-            ]
-        },
-        {
-            "name": "OS New Popular Edition historic",
-            "type": "tms",
-            "template": "http://ooc.openstreetmap.org/npe/{zoom}/{x}/{y}.png",
-            "polygon": [
-                [
-                    [
-                        -5.8,
-                        49.8
+                        -2.2576062,
+                        55.425015
                     ],
                     [
-                        -5.8,
-                        55.8
+                        -2.1985547,
+                        55.4273529
                     ],
                     [
-                        1.9,
-                        55.8
+                        -2.1484296,
+                        55.4717466
                     ],
                     [
-                        1.9,
-                        49.8
+                        -2.1944348,
+                        55.484199
                     ],
                     [
-                        -5.8,
-                        49.8
-                    ]
-                ]
-            ]
-        },
-        {
-            "name": "OS OpenData Locator",
-            "type": "tms",
-            "template": "http://tiles.itoworld.com/os_locator/{zoom}/{x}/{y}.png",
-            "polygon": [
-                [
-                    [
-                        -9,
-                        49.8
+                        -2.2040479,
+                        55.529306
                     ],
                     [
-                        -9,
-                        61.1
+                        -2.2960584,
+                        55.6379722
                     ],
                     [
-                        1.9,
-                        61.1
+                        -2.2177808,
+                        55.6379722
                     ],
                     [
-                        1.9,
-                        49.8
+                        -2.1059266,
+                        55.7452498
                     ],
                     [
-                        -9,
-                        49.8
-                    ]
-                ]
-            ],
-            "overlay": true
-        },
-        {
-            "name": "OS OpenData StreetView",
-            "type": "tms",
-            "template": "http://os.openstreetmap.org/sv/{zoom}/{x}/{y}.png",
-            "scaleExtent": [
-                1,
-                18
-            ],
-            "polygon": [
-                [
-                    [
-                        -5.8292886,
-                        50.0229734
+                        -1.9716874,
+                        55.7462161
                     ],
                     [
-                        -5.8292886,
-                        50.254819
+                        -1.9697453,
+                        55.9190951
                     ],
                     [
-                        -5.373356,
-                        50.254819
+                        -2.1201694,
+                        55.9207115
                     ],
                     [
-                        -5.373356,
-                        50.3530588
+                        -2.1242893,
+                        55.9776133
                     ],
                     [
-                        -5.1756021,
-                        50.3530588
+                        -2.3440159,
+                        55.9783817
                     ],
                     [
-                        -5.1756021,
-                        50.5925406
+                        -2.3440159,
+                        56.0390349
                     ],
                     [
-                        -4.9970743,
-                        50.5925406
+                        -2.5046909,
+                        56.0413363
                     ],
                     [
-                        -4.9970743,
-                        50.6935617
+                        -2.500571,
+                        56.1003588
                     ],
                     [
-                        -4.7965738,
-                        50.6935617
+                        -2.8823459,
+                        56.0957629
                     ],
                     [
-                        -4.7965738,
-                        50.7822112
+                        -2.8823459,
+                        56.1722898
                     ],
                     [
-                        -4.6949503,
-                        50.7822112
+                        -2.4126804,
+                        56.1692316
                     ],
                     [
-                        -4.6949503,
-                        50.9607371
+                        -2.4181736,
+                        56.2334017
                     ],
                     [
-                        -4.6043131,
-                        50.9607371
+                        -2.5857151,
+                        56.2303484
                     ],
                     [
-                        -4.6043131,
-                        51.0692066
+                        -2.5719822,
+                        56.3416356
                     ],
                     [
-                        -4.3792215,
-                        51.0692066
+                        -2.7257908,
+                        56.3462022
                     ],
                     [
-                        -4.3792215,
-                        51.2521782
+                        -2.7312839,
+                        56.4343808
                     ],
                     [
-                        -3.9039346,
-                        51.2521782
+                        -2.6928318,
+                        56.4343808
                     ],
                     [
-                        -3.9039346,
-                        51.2916998
+                        -2.6928318,
+                        56.4859769
                     ],
                     [
-                        -3.7171671,
-                        51.2916998
+                        -2.5307834,
+                        56.4935587
                     ],
                     [
-                        -3.7171671,
-                        51.2453014
+                        -2.5307834,
+                        56.570806
                     ],
                     [
-                        -3.1486246,
-                        51.2453014
+                        -2.5302878,
+                        56.6047947
                     ],
                     [
-                        -3.1486246,
-                        51.362067
+                        -2.3732428,
+                        56.6044452
                     ],
                     [
-                        -3.7446329,
-                        51.362067
+                        -2.3684363,
+                        56.7398824
                     ],
                     [
-                        -3.7446329,
-                        51.4340386
+                        -2.3292975,
+                        56.7398824
                     ],
                     [
-                        -3.8297769,
-                        51.4340386
+                        -2.3292975,
+                        56.7888065
                     ],
                     [
-                        -3.8297769,
-                        51.5298246
+                        -2.3145346,
+                        56.7891826
                     ],
                     [
-                        -4.0852091,
-                        51.5298246
+                        -2.3148779,
+                        56.7967036
                     ],
                     [
-                        -4.0852091,
-                        51.4939284
+                        -2.171369,
+                        56.7967036
                     ],
                     [
-                        -4.3792215,
-                        51.4939284
+                        -2.1703979,
+                        56.9710595
                     ],
                     [
-                        -4.3792215,
-                        51.5427168
+                        -2.0101725,
+                        56.9694716
                     ],
                     [
-                        -5.1444195,
-                        51.5427168
+                        -2.0101725,
+                        57.0846832
                     ],
                     [
-                        -5.1444195,
-                        51.6296003
+                        -2.0817687,
+                        57.085349
                     ],
                     [
-                        -5.7387103,
-                        51.6296003
+                        -2.0488097,
+                        57.1259963
                     ],
                     [
-                        -5.7387103,
-                        51.774037
+                        -2.0409133,
+                        57.126369
                     ],
                     [
-                        -5.5095393,
-                        51.774037
+                        -2.0383434,
+                        57.2411129
                     ],
                     [
-                        -5.5095393,
-                        51.9802596
+                        -1.878118,
+                        57.2421638
                     ],
                     [
-                        -5.198799,
-                        51.9802596
+                        -1.8771469,
+                        57.2978175
                     ],
                     [
-                        -5.198799,
-                        52.0973358
+                        -1.9868771,
+                        57.2983422
                     ],
                     [
-                        -4.8880588,
-                        52.0973358
+                        -1.9082209,
+                        57.3560063
                     ],
                     [
-                        -4.8880588,
-                        52.1831557
+                        -1.8752048,
+                        57.3560063
                     ],
                     [
-                        -4.4957492,
-                        52.1831557
+                        -1.8761758,
+                        57.3769527
                     ],
                     [
-                        -4.4957492,
-                        52.2925739
+                        -1.8120857,
+                        57.4120111
                     ],
                     [
-                        -4.3015365,
-                        52.2925739
+                        -1.7120661,
+                        57.4120111
                     ],
                     [
-                        -4.3015365,
-                        52.3685318
+                        -1.7034646,
+                        57.6441388
                     ],
                     [
-                        -4.1811246,
-                        52.3685318
+                        -1.8666032,
+                        57.6451781
                     ],
                     [
-                        -4.1811246,
-                        52.7933685
+                        -1.8646611,
+                        57.7033351
                     ],
                     [
-                        -4.4413696,
-                        52.7933685
+                        -3.1204292,
+                        57.7064705
                     ],
                     [
-                        -4.4413696,
-                        52.7369614
+                        -3.1218025,
+                        57.7504652
                     ],
                     [
-                        -4.8569847,
-                        52.7369614
+                        -3.4445259,
+                        57.7526635
                     ],
                     [
-                        -4.8569847,
-                        52.9317255
+                        -3.4472724,
+                        57.7138067
                     ],
                     [
-                        -4.7288044,
-                        52.9317255
+                        -3.5145637,
+                        57.7094052
                     ],
                     [
-                        -4.7288044,
-                        53.5038599
+                        -3.5118171,
+                        57.6939956
                     ],
                     [
-                        -4.1578191,
-                        53.5038599
+                        -3.7645027,
+                        57.6917938
                     ],
                     [
-                        -4.1578191,
-                        53.4113498
+                        -3.7672492,
+                        57.6344975
                     ],
                     [
-                        -3.3110518,
-                        53.4113498
+                        -3.842378,
+                        57.6288312
                     ],
                     [
-                        -3.3110518,
-                        53.5038599
+                        -3.8438346,
+                        57.5965825
                     ],
                     [
-                        -3.2333667,
-                        53.5038599
+                        -3.9414265,
+                        57.5916386
                     ],
                     [
-                        -3.2333667,
-                        54.0159169
+                        -3.9404554,
+                        57.6537782
                     ],
                     [
-                        -3.3926211,
-                        54.0159169
+                        -3.8894746,
+                        57.6529989
                     ],
                     [
-                        -3.3926211,
-                        54.1980953
+                        -3.8826772,
+                        57.7676408
                     ],
                     [
-                        -3.559644,
-                        54.1980953
+                        -3.7224517,
+                        57.766087
                     ],
                     [
-                        -3.559644,
-                        54.433732
+                        -3.7195385,
+                        57.8819201
                     ],
                     [
-                        -3.7188984,
-                        54.433732
+                        -3.9146888,
+                        57.8853352
                     ],
                     [
-                        -3.7188984,
-                        54.721897
+                        -3.916062,
+                        57.9546243
                     ],
                     [
-                        -4.3015365,
-                        54.721897
+                        -3.745774,
+                        57.9538956
                     ],
                     [
-                        -4.3015365,
-                        54.6140739
+                        -3.7471473,
+                        58.0688409
                     ],
                     [
-                        -5.0473132,
-                        54.6140739
+                        -3.5837256,
+                        58.0695672
                     ],
                     [
-                        -5.0473132,
-                        54.7532915
+                        -3.5837256,
+                        58.1116689
                     ],
                     [
-                        -5.2298731,
-                        54.7532915
+                        -3.4560096,
+                        58.1138452
                     ],
                     [
-                        -5.2298731,
-                        55.2190799
+                        -3.4544646,
+                        58.228503
                     ],
                     [
-                        -5.6532567,
-                        55.2190799
+                        -3.4379851,
+                        58.2283222
                     ],
                     [
-                        -5.6532567,
-                        55.250088
+                        -3.4243233,
+                        58.2427725
                     ],
                     [
-                        -5.8979647,
-                        55.250088
+                        -3.412307,
+                        58.2438567
                     ],
                     [
-                        -5.8979647,
-                        55.4822462
+                        -3.3735115,
+                        58.2695057
                     ],
                     [
-                        -6.5933212,
-                        55.4822462
+                        -3.3063919,
+                        58.2862038
                     ],
                     [
-                        -6.5933212,
-                        56.3013441
+                        -3.1229154,
+                        58.2859395
                     ],
                     [
-                        -7.1727691,
-                        56.3013441
+                        -3.123602,
+                        58.3443661
                     ],
                     [
-                        -7.1727691,
-                        56.5601822
+                        -2.9574338,
+                        58.3447264
                     ],
                     [
-                        -6.8171722,
-                        56.5601822
+                        -2.951254,
+                        58.6422011
                     ],
                     [
-                        -6.8171722,
-                        56.6991713
+                        -2.8812162,
+                        58.6429157
                     ],
                     [
-                        -6.5315276,
-                        56.6991713
+                        -2.8851004,
+                        58.8112825
                     ],
                     [
-                        -6.5315276,
-                        56.9066964
+                        -2.7180775,
+                        58.8142997
                     ],
                     [
-                        -6.811679,
-                        56.9066964
+                        -2.7161354,
+                        58.8715749
                     ],
                     [
-                        -6.811679,
-                        57.3716613
+                        -2.556881,
+                        58.8775984
                     ],
                     [
-                        -6.8721038,
-                        57.3716613
+                        -2.5544533,
+                        58.9923453
                     ],
                     [
-                        -6.8721038,
-                        57.5518893
+                        -2.5567617,
+                        59.0483775
                     ],
                     [
-                        -7.0973235,
-                        57.5518893
+                        -2.391893,
+                        59.0485996
                     ],
                     [
-                        -7.0973235,
-                        57.2411085
+                        -2.3918002,
+                        59.1106996
                     ],
                     [
-                        -7.1742278,
-                        57.2411085
+                        -2.4733695,
+                        59.1106996
                     ],
                     [
-                        -7.1742278,
-                        56.9066964
+                        -2.5591563,
+                        59.1783028
                     ],
                     [
-                        -7.3719817,
-                        56.9066964
+                        -2.5630406,
+                        59.2210646
                     ],
                     [
-                        -7.3719817,
-                        56.8075885
+                        -2.3921334,
+                        59.224046
                     ],
                     [
-                        -7.5202972,
-                        56.8075885
+                        -2.3911409,
+                        59.2740075
                     ],
                     [
-                        -7.5202972,
-                        56.7142479
+                        -2.3639512,
+                        59.2745036
                     ],
                     [
-                        -7.8306806,
-                        56.7142479
+                        -2.3658933,
+                        59.285417
                     ],
                     [
-                        -7.8306806,
-                        56.8994605
+                        -2.3911409,
+                        59.284921
                     ],
                     [
-                        -7.6494061,
-                        56.8994605
+                        -2.3911409,
+                        59.3379505
                     ],
                     [
-                        -7.6494061,
-                        57.4739617
+                        -2.2221759,
+                        59.3381981
                     ],
                     [
-                        -7.8306806,
-                        57.4739617
+                        -2.2233897,
+                        59.395965
                     ],
                     [
-                        -7.8306806,
-                        57.7915584
+                        -2.3758467,
+                        59.396583
                     ],
                     [
-                        -7.4736249,
-                        57.7915584
+                        -2.3899271,
+                        59.4026383
                     ],
                     [
-                        -7.4736249,
-                        58.086063
+                        -2.4008516,
+                        59.3962122
                     ],
                     [
-                        -7.1879804,
-                        58.086063
+                        -2.5637882,
+                        59.3952604
                     ],
                     [
-                        -7.1879804,
-                        58.367197
+                        -2.5637882,
+                        59.3385811
                     ],
                     [
-                        -6.8034589,
-                        58.367197
+                        -2.7320164,
+                        59.3375306
                     ],
                     [
-                        -6.8034589,
-                        58.4155786
+                        -2.7333896,
+                        59.3952604
                     ],
                     [
-                        -6.638664,
-                        58.4155786
+                        -3.0726511,
+                        59.3931174
                     ],
                     [
-                        -6.638664,
-                        58.4673277
+                        -3.0703404,
+                        59.3354759
                     ],
                     [
-                        -6.5178143,
-                        58.4673277
+                        -3.0753186,
+                        59.3355634
                     ],
                     [
-                        -6.5178143,
-                        58.5625632
+                        -3.0749753,
+                        59.3292593
                     ],
                     [
-                        -6.0536224,
-                        58.5625632
+                        -3.0698254,
+                        59.3289091
                     ],
                     [
-                        -6.0536224,
-                        58.1568843
+                        -3.069801,
+                        59.2196159
                     ],
                     [
-                        -6.1470062,
-                        58.1568843
+                        -3.2363384,
+                        59.2166341
                     ],
                     [
-                        -6.1470062,
-                        58.1105865
+                        -3.2336751,
+                        59.1606496
                     ],
                     [
-                        -6.2799798,
-                        58.1105865
+                        -3.4032766,
+                        59.1588895
                     ],
                     [
-                        -6.2799798,
-                        57.7122664
+                        -3.394086,
+                        58.9279316
                     ],
                     [
-                        -6.1591302,
-                        57.7122664
+                        -3.5664497,
+                        58.9259268
                     ],
                     [
-                        -6.1591302,
-                        57.6667563
+                        -3.5611089,
+                        58.8679885
                     ],
                     [
-                        -5.9339104,
-                        57.6667563
+                        -3.392508,
+                        58.8699339
                     ],
                     [
-                        -5.9339104,
-                        57.8892524
+                        -3.3894734,
+                        58.8698711
                     ],
                     [
-                        -5.80643,
-                        57.8892524
+                        -3.3891093,
+                        58.8684905
                     ],
                     [
-                        -5.80643,
-                        57.9621767
+                        -3.3912942,
+                        58.868616
                     ],
                     [
-                        -5.6141692,
-                        57.9621767
+                        -3.3884161,
+                        58.7543084
                     ],
                     [
-                        -5.6141692,
-                        58.0911236
+                        -3.2238208,
+                        58.7555677
                     ],
                     [
-                        -5.490819,
-                        58.0911236
+                        -3.2189655,
+                        58.691289
                     ],
                     [
-                        -5.490819,
-                        58.3733281
+                        -3.4634113,
+                        58.6905753
                     ],
                     [
-                        -5.3199118,
-                        58.3733281
+                        -3.4551716,
+                        58.6341518
                     ],
                     [
-                        -5.3199118,
-                        58.75015
+                        -3.787508,
+                        58.6341518
                     ],
                     [
-                        -3.5719977,
-                        58.75015
+                        -3.7861347,
+                        58.5769211
                     ],
                     [
-                        -3.5719977,
-                        59.2091788
+                        -3.9028645,
+                        58.5733411
                     ],
                     [
-                        -3.1944501,
-                        59.2091788
+                        -3.9028645,
+                        58.6477304
                     ],
                     [
-                        -3.1944501,
-                        59.4759216
+                        -4.0690327,
+                        58.6491594
                     ],
                     [
-                        -2.243583,
-                        59.4759216
+                        -4.0690327,
+                        58.5912376
                     ],
                     [
-                        -2.243583,
-                        59.1388749
+                        -4.7364521,
+                        58.5933845
                     ],
                     [
-                        -2.4611012,
-                        59.1388749
+                        -4.7364521,
+                        58.6505884
                     ],
                     [
-                        -2.4611012,
-                        58.8185938
+                        -5.0715351,
+                        58.6520173
                     ],
                     [
-                        -2.7407675,
-                        58.8185938
+                        -5.0654779,
+                        58.5325854
                     ],
                     [
-                        -2.7407675,
-                        58.5804743
+                        -5.2332047,
+                        58.5316087
                     ],
                     [
-                        -2.9116746,
-                        58.5804743
+                        -5.2283494,
+                        58.4719947
                     ],
                     [
-                        -2.9116746,
-                        58.1157523
+                        -5.2424298,
+                        58.4719947
                     ],
                     [
-                        -3.4865441,
-                        58.1157523
+                        -5.2366034,
+                        58.4089731
                     ],
                     [
-                        -3.4865441,
-                        57.740386
+                        -5.2283494,
+                        58.4094818
                     ],
                     [
-                        -1.7153245,
-                        57.740386
+                        -5.2210664,
+                        58.3005859
                     ],
                     [
-                        -1.7153245,
-                        57.2225558
+                        -5.5657939,
+                        58.2959933
                     ],
                     [
-                        -1.9794538,
-                        57.2225558
+                        -5.5580254,
+                        58.2372573
                     ],
                     [
-                        -1.9794538,
-                        56.8760742
+                        -5.4146722,
+                        58.2401326
                     ],
                     [
-                        -2.1658979,
-                        56.8760742
+                        -5.4141866,
+                        58.2267768
                     ],
                     [
-                        -2.1658979,
-                        56.6333186
+                        -5.3885749,
+                        58.2272242
                     ],
                     [
-                        -2.3601106,
-                        56.6333186
+                        -5.382714,
+                        58.1198615
                     ],
                     [
-                        -2.3601106,
-                        56.0477521
+                        -5.51043,
+                        58.1191362
                     ],
                     [
-                        -1.9794538,
-                        56.0477521
+                        -5.5114011,
+                        58.006214
                     ],
                     [
-                        -1.9794538,
-                        55.8650949
+                        -5.6745397,
+                        58.0041559
                     ],
                     [
-                        -1.4745008,
-                        55.8650949
+                        -5.6716266,
+                        57.9449366
                     ],
                     [
-                        -1.4745008,
-                        55.2499926
+                        -5.6716266,
+                        57.8887166
                     ],
                     [
-                        -1.3221997,
-                        55.2499926
+                        -5.8347652,
+                        57.8856193
                     ],
                     [
-                        -1.3221997,
-                        54.8221737
+                        -5.8277052,
+                        57.5988958
                     ],
                     [
-                        -1.0550014,
-                        54.8221737
+                        -6.0384259,
+                        57.5986357
                     ],
                     [
-                        -1.0550014,
-                        54.6746628
+                        -6.0389115,
+                        57.6459559
                     ],
                     [
-                        -0.6618765,
-                        54.6746628
+                        -6.1981658,
+                        57.6456961
                     ],
                     [
-                        -0.6618765,
-                        54.5527463
+                        -6.2076123,
+                        57.7600132
                     ],
                     [
-                        -0.3247617,
-                        54.5527463
+                        -6.537067,
+                        57.7544033
                     ],
                     [
-                        -0.3247617,
-                        54.2865195
+                        -6.5312406,
+                        57.6402392
                     ],
                     [
-                        0.0092841,
-                        54.2865195
+                        -6.7002056,
+                        57.6360809
                     ],
                     [
-                        0.0092841,
-                        53.7938518
+                        -6.6807844,
+                        57.5236293
                     ],
                     [
-                        0.2081962,
-                        53.7938518
+                        -6.8516915,
+                        57.5152857
                     ],
                     [
-                        0.2081962,
-                        53.5217726
+                        -6.8361545,
+                        57.3385811
                     ],
                     [
-                        0.4163548,
-                        53.5217726
+                        -6.6730158,
+                        57.3438213
                     ],
                     [
-                        0.4163548,
-                        53.0298851
+                        -6.674958,
+                        57.2850883
                     ],
                     [
-                        1.4273388,
-                        53.0298851
+                        -6.5098772,
+                        57.2850883
                     ],
                     [
-                        1.4273388,
-                        52.92021
+                        -6.4982244,
+                        57.1757637
                     ],
                     [
-                        1.8333912,
-                        52.92021
+                        -6.3506228,
+                        57.1820797
                     ],
                     [
-                        1.8333912,
-                        52.042488
+                        -6.3312015,
+                        57.1251969
                     ],
                     [
-                        1.5235504,
-                        52.042488
+                        -6.1797156,
+                        57.1230884
                     ],
                     [
-                        1.5235504,
-                        51.8261335
+                        -6.1719471,
+                        57.0682265
                     ],
                     [
-                        1.2697049,
-                        51.8261335
+                        -6.4593819,
+                        57.059779
                     ],
                     [
-                        1.2697049,
-                        51.6967453
+                        -6.4564687,
+                        57.1093806
                     ],
                     [
-                        1.116651,
-                        51.6967453
+                        -6.6671895,
+                        57.1062165
                     ],
                     [
-                        1.116651,
-                        51.440346
+                        -6.6730158,
+                        57.002708
                     ],
                     [
-                        1.5235504,
-                        51.440346
+                        -6.5021087,
+                        57.0048233
                     ],
                     [
-                        1.5235504,
-                        51.3331831
+                        -6.4836097,
+                        56.8917522
                     ],
                     [
-                        1.4507565,
-                        51.3331831
+                        -6.3266104,
+                        56.8894062
                     ],
                     [
-                        1.4507565,
-                        51.0207553
+                        -6.3156645,
+                        56.7799312
                     ],
                     [
-                        1.0699883,
-                        51.0207553
+                        -6.2146739,
+                        56.775675
                     ],
                     [
-                        1.0699883,
-                        50.9008416
+                        -6.2146739,
+                        56.7234965
                     ],
                     [
-                        0.7788126,
-                        50.9008416
+                        -6.6866107,
+                        56.7224309
                     ],
                     [
-                        0.7788126,
-                        50.729843
+                        -6.6769001,
+                        56.6114413
                     ],
                     [
-                        -0.7255952,
-                        50.729843
+                        -6.8419809,
+                        56.607166
                     ],
                     [
-                        -0.7255952,
-                        50.7038437
+                        -6.8400387,
+                        56.5483307
                     ],
                     [
-                        -1.0074383,
-                        50.7038437
+                        -7.1546633,
+                        56.5461895
                     ],
                     [
-                        -1.0074383,
-                        50.5736307
+                        -7.1488369,
+                        56.4872592
                     ],
                     [
-                        -2.3625252,
-                        50.5736307
+                        -6.9915246,
+                        56.490476
                     ],
                     [
-                        -2.3625252,
-                        50.4846421
+                        -6.9876404,
+                        56.4325329
                     ],
                     [
-                        -2.4987805,
-                        50.4846421
+                        -6.6827265,
+                        56.4314591
                     ],
                     [
-                        -2.4987805,
-                        50.5736307
+                        -6.6769001,
+                        56.5472601
                     ],
                     [
-                        -3.4096378,
-                        50.5736307
+                        -6.5292985,
+                        56.5504717
                     ],
                     [
-                        -3.4096378,
-                        50.2057837
+                        -6.5234721,
+                        56.4379018
                     ],
                     [
-                        -3.6922446,
-                        50.2057837
+                        -6.3661598,
+                        56.4368281
                     ],
                     [
-                        -3.6922446,
-                        50.1347737
+                        -6.3642177,
+                        56.3766524
                     ],
                     [
-                        -5.005468,
-                        50.1347737
+                        -6.5273563,
+                        56.3712749
                     ],
                     [
-                        -5.005468,
-                        49.9474456
+                        -6.5171745,
+                        56.2428427
                     ],
                     [
-                        -5.2839506,
-                        49.9474456
+                        -6.4869621,
+                        56.247421
                     ],
                     [
-                        -5.2839506,
-                        50.0229734
-                    ]
-                ],
-                [
+                        -6.4869621,
+                        56.1893882
+                    ],
                     [
-                        -6.4580707,
-                        49.8673563
+                        -6.3001945,
+                        56.1985572
                     ],
                     [
-                        -6.4580707,
-                        49.9499935
+                        -6.3029411,
+                        56.2581017
                     ],
                     [
-                        -6.3978807,
-                        49.9499935
+                        -5.9019401,
+                        56.256576
                     ],
                     [
-                        -6.3978807,
-                        50.0053797
+                        -5.8964469,
+                        56.0960466
                     ],
                     [
-                        -6.1799606,
-                        50.0053797
+                        -6.0282829,
+                        56.0883855
                     ],
                     [
-                        -6.1799606,
-                        49.9168614
+                        -6.0392692,
+                        56.1557502
                     ],
                     [
-                        -6.2540201,
-                        49.9168614
+                        -6.3853385,
+                        56.1542205
                     ],
                     [
-                        -6.2540201,
-                        49.8673563
-                    ]
-                ],
-                [
+                        -6.3606193,
+                        55.96099
+                    ],
                     [
-                        -5.8343165,
-                        49.932156
+                        -6.2123039,
+                        55.9640647
                     ],
                     [
-                        -5.8343165,
-                        49.9754641
+                        -6.2047508,
+                        55.9202269
                     ],
                     [
-                        -5.7683254,
-                        49.9754641
+                        -6.5185478,
+                        55.9129158
                     ],
                     [
-                        -5.7683254,
-                        49.932156
-                    ]
-                ],
-                [
+                        -6.5061881,
+                        55.7501763
+                    ],
                     [
-                        -1.9483797,
-                        60.6885737
+                        -6.6764762,
+                        55.7409005
                     ],
                     [
-                        -1.9483797,
-                        60.3058841
+                        -6.6599967,
+                        55.6263176
                     ],
                     [
-                        -1.7543149,
-                        60.3058841
+                        -6.3551261,
+                        55.6232161
                     ],
                     [
-                        -1.7543149,
-                        60.1284428
+                        -6.3578727,
+                        55.5689002
                     ],
                     [
-                        -1.5754914,
-                        60.1284428
+                        -6.0392692,
+                        55.5720059
                     ],
                     [
-                        -1.5754914,
-                        59.797917
+                        -6.0310294,
+                        55.6247669
                     ],
                     [
-                        -1.0316959,
-                        59.797917
+                        -5.7398917,
+                        55.6309694
                     ],
                     [
-                        -1.0316959,
-                        60.0354518
+                        -5.7371452,
+                        55.4569279
                     ],
                     [
-                        -0.6626918,
-                        60.0354518
+                        -5.8964469,
+                        55.4600426
                     ],
                     [
-                        -0.6626918,
-                        60.9103862
+                        -5.8964469,
+                        55.2789864
                     ],
                     [
-                        -1.1034395,
-                        60.9103862
+                        -5.4350211,
+                        55.2821151
                     ],
                     [
-                        -1.1034395,
-                        60.8040022
+                        -5.4405143,
+                        55.4506979
                     ],
                     [
-                        -1.3506319,
-                        60.8040022
+                        -5.2867057,
+                        55.4569279
                     ],
                     [
-                        -1.3506319,
-                        60.6885737
-                    ]
-                ],
-                [
+                        -5.3086784,
+                        55.4070602
+                    ],
                     [
-                        -2.203381,
-                        60.1968568
+                        -4.9735954,
+                        55.4008223
                     ],
                     [
-                        -2.203381,
-                        60.0929443
+                        -4.9845817,
+                        55.2038242
                     ],
                     [
-                        -1.9864011,
-                        60.0929443
+                        -5.1493766,
+                        55.2038242
                     ],
                     [
-                        -1.9864011,
-                        60.1968568
+                        -5.1411369,
+                        55.037337
+                    ],
+                    [
+                        -5.2152946,
+                        55.0341891
                     ]
                 ],
                 [
                     [
-                        -1.7543149,
-                        59.5698289
+                        -2.1646559,
+                        60.1622059
                     ],
                     [
-                        -1.7543149,
-                        59.4639383
+                        -1.9930299,
+                        60.1609801
                     ],
                     [
-                        -1.5373349,
-                        59.4639383
+                        -1.9946862,
+                        60.1035151
                     ],
                     [
-                        -1.5373349,
-                        59.5698289
+                        -2.1663122,
+                        60.104743
                     ]
                 ],
                 [
                     [
-                        -4.5585981,
-                        59.1370518
+                        -1.5360658,
+                        59.8570831
                     ],
                     [
-                        -4.5585981,
-                        58.9569099
+                        -1.3653566,
+                        59.8559841
                     ],
                     [
-                        -4.2867004,
-                        58.9569099
+                        -1.366847,
+                        59.7975565
                     ],
                     [
-                        -4.2867004,
-                        59.1370518
-                    ]
-                ],
-                [
+                        -1.190628,
+                        59.7964199
+                    ],
                     [
-                        -6.2787732,
-                        59.2025744
+                        -1.1862046,
+                        59.9695391
                     ],
                     [
-                        -6.2787732,
-                        59.0227769
+                        -1.0078652,
+                        59.9683948
                     ],
                     [
-                        -5.6650612,
-                        59.0227769
+                        -1.0041233,
+                        60.114145
                     ],
                     [
-                        -5.6650612,
-                        59.2025744
-                    ]
-                ],
-                [
+                        -0.8360832,
+                        60.1130715
+                    ],
                     [
-                        -8.7163482,
-                        57.9440556
+                        -0.834574,
+                        60.1716772
                     ],
                     [
-                        -8.7163482,
-                        57.7305936
+                        -1.0074262,
+                        60.1727795
                     ],
                     [
-                        -8.3592926,
-                        57.7305936
+                        -1.0052165,
+                        60.2583924
                     ],
                     [
-                        -8.3592926,
-                        57.9440556
-                    ]
-                ],
-                [
+                        -0.8299659,
+                        60.2572778
+                    ],
                     [
-                        -7.6077005,
-                        50.4021026
+                        -0.826979,
+                        60.3726551
                     ],
                     [
-                        -7.6077005,
-                        50.2688657
+                        -0.6507514,
+                        60.3715381
                     ],
                     [
-                        -7.3907205,
-                        50.2688657
+                        -0.6477198,
+                        60.4882292
                     ],
                     [
-                        -7.3907205,
-                        50.4021026
-                    ]
-                ],
-                [
+                        -0.9984896,
+                        60.4904445
+                    ],
                     [
-                        -7.7304303,
-                        58.3579902
+                        -0.9970279,
+                        60.546555
                     ],
                     [
-                        -7.7304303,
-                        58.248313
+                        -0.6425288,
+                        60.5443201
                     ],
                     [
-                        -7.5134503,
-                        58.248313
+                        -0.6394896,
+                        60.6606792
                     ],
                     [
-                        -7.5134503,
-                        58.3579902
-                    ]
-                ]
-            ]
-        },
-        {
-            "name": "OS Scottish Popular historic",
-            "type": "tms",
-            "template": "http://ooc.openstreetmap.org/npescotland/tiles/{zoom}/{x}/{y}.jpg",
-            "scaleExtent": [
-                6,
-                15
-            ],
-            "polygon": [
-                [
+                        -0.8148133,
+                        60.6617806
+                    ],
                     [
-                        -7.8,
-                        54.5
+                        -0.8132987,
+                        60.7196112
                     ],
                     [
-                        -7.8,
-                        61.1
+                        -0.6383298,
+                        60.7185141
                     ],
                     [
-                        -1.1,
-                        61.1
+                        -0.635467,
+                        60.8275393
                     ],
                     [
-                        -1.1,
-                        54.5
+                        -0.797568,
+                        60.8285523
                     ],
                     [
-                        -7.8,
-                        54.5
-                    ]
-                ]
-            ]
-        },
-        {
-            "name": "OS Town Plans, Aberdeen 1866-1867 (NLS)",
-            "type": "tms",
-            "description": "Detailed town plan of Aberdeen 1866-1867, courtesy of National Library of Scotland.",
-            "template": "http://geo.nls.uk/maps/towns/aberdeen/{zoom}/{x}/{-y}.png",
-            "scaleExtent": [
-                13,
-                20
-            ],
-            "polygon": [
-                [
+                        -0.9941426,
+                        60.8297807
+                    ],
                     [
-                        -2.14039404,
-                        57.11218789
+                        -0.9954966,
+                        60.7782667
                     ],
                     [
-                        -2.14064752,
-                        57.17894161
+                        -1.1670282,
+                        60.7793403
                     ],
                     [
-                        -2.04501987,
-                        57.17901252
+                        -1.1700357,
+                        60.6646181
                     ],
                     [
-                        -2.04493842,
-                        57.11225862
-                    ]
-                ]
-            ],
-            "terms_url": "http://maps.nls.uk/townplans/aberdeen.html",
-            "terms_text": "National Library of Scotland - Aberdeen 1866-1867"
-        },
-        {
-            "name": "OS Town Plans, Airdrie 1858 (NLS)",
-            "type": "tms",
-            "description": "Detailed town plan of Airdrie 1858, courtesy of National Library of Scotland.",
-            "template": "http://geo.nls.uk/maps/towns/airdrie/{zoom}/{x}/{-y}.png",
-            "scaleExtent": [
-                13,
-                20
-            ],
-            "polygon": [
-                [
+                        -1.5222599,
+                        60.6668304
+                    ],
                     [
-                        -3.99291738,
-                        55.86408041
+                        -1.5237866,
+                        60.6084426
                     ],
                     [
-                        -3.99338933,
-                        55.87329115
+                        -1.6975673,
+                        60.609536
                     ],
                     [
-                        -3.9691085,
-                        55.87368212
+                        -1.7021271,
+                        60.4345249
                     ],
                     [
-                        -3.9686423,
-                        55.86447124
-                    ]
-                ]
-            ],
-            "terms_url": "http://maps.nls.uk/townplans/airdrie.html",
-            "terms_text": "National Library of Scotland - Airdrie 1858"
-        },
-        {
-            "name": "OS Town Plans, Alexandria 1859 (NLS)",
-            "type": "tms",
-            "description": "Detailed town plan of Alexandria 1859, courtesy of National Library of Scotland.",
-            "template": "http://geo.nls.uk/maps/towns/alexandria/{zoom}/{x}/{-y}.png",
-            "scaleExtent": [
-                13,
-                20
-            ],
-            "polygon": [
-                [
+                        -1.5260578,
+                        60.4334111
+                    ],
                     [
-                        -4.58973571,
-                        55.97536707
+                        -1.5275203,
+                        60.3770719
                     ],
                     [
-                        -4.59104461,
-                        55.99493153
+                        -1.8751127,
+                        60.3792746
                     ],
                     [
-                        -4.55985072,
-                        55.99558348
+                        -1.8781372,
+                        60.2624647
                     ],
                     [
-                        -4.55855754,
-                        55.97601855
+                        -1.7019645,
+                        60.2613443
+                    ],
+                    [
+                        -1.7049134,
+                        60.1470532
+                    ],
+                    [
+                        -1.528659,
+                        60.1459283
                     ]
-                ]
-            ],
-            "terms_url": "http://maps.nls.uk/townplans/alexandria.html",
-            "terms_text": "National Library of Scotland - Alexandria 1859"
-        },
-        {
-            "name": "OS Town Plans, Alloa 1861-1862 (NLS)",
-            "type": "tms",
-            "description": "Detailed town plan of Alloa 1861-1862, courtesy of National Library of Scotland.",
-            "template": "http://geo.nls.uk/maps/towns/alloa/{zoom}/{x}/{-y}.png",
-            "scaleExtent": [
-                13,
-                20
-            ],
-            "polygon": [
+                ],
                 [
                     [
-                        -3.81166061,
-                        56.09864363
+                        -0.9847667,
+                        60.8943762
                     ],
                     [
-                        -3.81274448,
-                        56.12169929
+                        -0.9860347,
+                        60.8361105
                     ],
                     [
-                        -3.7804609,
-                        56.12216898
+                        -0.8078362,
+                        60.8351904
                     ],
                     [
-                        -3.77939631,
-                        56.09911292
+                        -0.8065683,
+                        60.8934578
                     ]
-                ]
-            ],
-            "terms_url": "http://maps.nls.uk/townplans/alloa.html",
-            "terms_text": "National Library of Scotland - Alloa 1861-1862"
-        },
-        {
-            "name": "OS Town Plans, Annan 1859 (NLS)",
-            "type": "tms",
-            "description": "Detailed town plan of Annan 1859, courtesy of National Library of Scotland.",
-            "template": "http://geo.nls.uk/maps/towns/annan/{zoom}/{x}/{-y}.png",
-            "scaleExtent": [
-                13,
-                20
-            ],
-            "polygon": [
+                ],
                 [
                     [
-                        -3.27921439,
-                        54.98252155
+                        -7.7696901,
+                        56.8788231
                     ],
                     [
-                        -3.27960062,
-                        54.9946601
+                        -7.7614504,
+                        56.7608274
                     ],
                     [
-                        -3.24866331,
-                        54.99498165
+                        -7.6009049,
+                        56.7641903
                     ],
                     [
-                        -3.24828642,
-                        54.98284297
-                    ]
-                ]
-            ],
-            "terms_url": "http://maps.nls.uk/townplans/annan.html",
-            "terms_text": "National Library of Scotland - Annan 1859"
-        },
-        {
-            "name": "OS Town Plans, Arbroath 1858 (NLS)",
-            "type": "tms",
-            "description": "Detailed town plan of Arbroath 1858, courtesy of National Library of Scotland.",
-            "template": "http://geo.nls.uk/maps/towns/arbroath/{zoom}/{x}/{-y}.png",
-            "scaleExtent": [
-                13,
-                20
-            ],
-            "polygon": [
-                [
+                        -7.5972473,
+                        56.819332
+                    ],
                     [
-                        -2.60716469,
-                        56.53995105
+                        -7.4479894,
+                        56.8203948
                     ],
                     [
-                        -2.60764981,
-                        56.57022426
+                        -7.4489319,
+                        56.8794098
                     ],
                     [
-                        -2.56498708,
-                        56.57042549
+                        -7.2841369,
+                        56.8794098
                     ],
                     [
-                        -2.564536,
-                        56.54015206
-                    ]
-                ]
-            ],
-            "terms_url": "http://maps.nls.uk/townplans/arbroath.html",
-            "terms_text": "National Library of Scotland - Arbroath 1858"
-        },
-        {
-            "name": "OS Town Plans, Ayr 1855 (NLS)",
-            "type": "tms",
-            "description": "Detailed town plan of Ayr 1855, courtesy of National Library of Scotland.",
-            "template": "http://geo.nls.uk/maps/towns/ayr/{zoom}/{x}/{-y}.png",
-            "scaleExtent": [
-                13,
-                20
-            ],
-            "polygon": [
-                [
+                        -7.2813904,
+                        57.0471152
+                    ],
                     [
-                        -4.66768105,
-                        55.43748864
+                        -7.1303283,
+                        57.0515969
                     ],
                     [
-                        -4.67080057,
-                        55.48363961
+                        -7.1330749,
+                        57.511801
                     ],
                     [
-                        -4.60609844,
-                        55.48503484
+                        -6.96828,
+                        57.5147514
                     ],
                     [
-                        -4.60305426,
-                        55.43888149
-                    ]
-                ]
-            ],
-            "terms_url": "http://maps.nls.uk/townplans/ayr.html",
-            "terms_text": "National Library of Scotland - Ayr 1855"
-        },
-        {
-            "name": "OS Town Plans, Berwick-upon-Tweed 1852 (NLS)",
-            "type": "tms",
-            "description": "Detailed town plan of Berwick-upon-Tweed 1852, courtesy of National Library of Scotland.",
-            "template": "http://geo.nls.uk/maps/towns/berwick/{zoom}/{x}/{-y}.png",
-            "scaleExtent": [
-                13,
-                20
-            ],
-            "polygon": [
-                [
+                        -6.9765198,
+                        57.6854668
+                    ],
                     [
-                        -2.02117487,
-                        55.75577627
+                        -6.8062317,
+                        57.6913392
                     ],
                     [
-                        -2.02118763,
-                        55.77904118
+                        -6.8089782,
+                        57.8041985
                     ],
                     [
-                        -1.98976956,
-                        55.77904265
+                        -6.6496765,
+                        57.8071252
                     ],
                     [
-                        -1.9897755,
-                        55.75577774
-                    ]
-                ]
-            ],
-            "terms_url": "http://maps.nls.uk/townplans/berwick.html",
-            "terms_text": "National Library of Scotland - Berwick-upon-Tweed 1852"
-        },
-        {
-            "name": "OS Town Plans, Brechin 1862 (NLS)",
-            "type": "tms",
-            "description": "Detailed town plan of Brechin 1862, courtesy of National Library of Scotland.",
-            "template": "http://geo.nls.uk/maps/towns/brechin/{zoom}/{x}/{-y}.png",
-            "scaleExtent": [
-                13,
-                20
-            ],
-            "polygon": [
-                [
+                        -6.6441833,
+                        57.8612267
+                    ],
                     [
-                        -2.67480248,
-                        56.71456775
+                        -6.3200866,
+                        57.8626878
                     ],
                     [
-                        -2.67521172,
-                        56.73739937
+                        -6.3200866,
+                        58.1551617
                     ],
                     [
-                        -2.64319679,
-                        56.73756872
+                        -6.1607849,
+                        58.1522633
                     ],
                     [
-                        -2.64280695,
-                        56.71473694
-                    ]
-                ]
-            ],
-            "terms_url": "http://maps.nls.uk/townplans/brechin.html",
-            "terms_text": "National Library of Scotland - Brechin 1862"
-        },
-        {
-            "name": "OS Town Plans, Burntisland 1894 (NLS)",
-            "type": "tms",
-            "description": "Detailed town plan of Burntisland 1894, courtesy of National Library of Scotland.",
-            "template": "http://geo.nls.uk/maps/towns/burntisland/{zoom}/{x}/{-y}.png",
-            "scaleExtent": [
-                13,
-                20
-            ],
-            "polygon": [
-                [
+                        -6.1552917,
+                        58.20874
+                    ],
                     [
-                        -3.24879624,
-                        56.04240046
+                        -5.9850036,
+                        58.2101869
                     ],
                     [
-                        -3.2495182,
-                        56.06472996
+                        -5.9904968,
+                        58.2680163
                     ],
                     [
-                        -3.21830572,
-                        56.06504207
+                        -6.1497986,
+                        58.2665717
                     ],
                     [
-                        -3.21760179,
-                        56.0427123
-                    ]
-                ]
-            ],
-            "terms_url": "http://maps.nls.uk/townplans/burntisland.html",
-            "terms_text": "National Library of Scotland - Burntisland 1894"
-        },
-        {
-            "name": "OS Town Plans, Campbelton 1865 (NLS)",
-            "type": "tms",
-            "description": "Detailed town plan of Campbelton 1865, courtesy of National Library of Scotland.",
-            "template": "http://geo.nls.uk/maps/towns/campbeltown/{zoom}/{x}/{-y}.png",
-            "scaleExtent": [
-                13,
-                20
-            ],
-            "polygon": [
-                [
+                        -6.1415588,
+                        58.5557514
+                    ],
                     [
-                        -5.62345307,
-                        55.40255998
+                        -6.3173401,
+                        58.5557514
                     ],
                     [
-                        -5.62631353,
-                        55.43375303
+                        -6.3091003,
+                        58.4983923
                     ],
                     [
-                        -5.58276654,
-                        55.43503753
+                        -6.4876282,
+                        58.4955218
                     ],
                     [
-                        -5.57994024,
-                        55.40384299
-                    ]
-                ]
-            ],
-            "terms_url": "http://maps.nls.uk/townplans/campbelton.html",
-            "terms_text": "National Library of Scotland - Campbelton 1865"
-        },
-        {
-            "name": "OS Town Plans, Coatbridge 1858 (NLS)",
-            "type": "tms",
-            "description": "Detailed town plan of Coatbridge 1858, courtesy of National Library of Scotland.",
-            "template": "http://geo.nls.uk/maps/towns/coatbridge/{zoom}/{x}/{-y}.png",
-            "scaleExtent": [
-                13,
-                20
-            ],
-            "polygon": [
-                [
+                        -6.4876282,
+                        58.4423768
+                    ],
                     [
-                        -4.05035921,
-                        55.84648689
+                        -6.6606628,
+                        58.4395018
                     ],
                     [
-                        -4.05157062,
-                        55.86947193
+                        -6.6469299,
+                        58.3819525
                     ],
                     [
-                        -4.01953905,
-                        55.87000186
+                        -6.8117248,
+                        58.3805125
                     ],
                     [
-                        -4.01834651,
-                        55.84701638
-                    ]
-                ]
-            ],
-            "terms_url": "http://maps.nls.uk/townplans/coatbridge.html",
-            "terms_text": "National Library of Scotland - Coatbridge 1858"
-        },
-        {
-            "name": "OS Town Plans, Cupar 1854 (NLS)",
-            "type": "tms",
-            "description": "Detailed town plan of Cupar 1854, courtesy of National Library of Scotland.",
-            "template": "http://geo.nls.uk/maps/towns/cupar1854/{zoom}/{x}/{-y}.png",
-            "scaleExtent": [
-                13,
-                20
-            ],
-            "polygon": [
-                [
+                        -6.8117248,
+                        58.3286357
+                    ],
                     [
-                        -3.04765872,
-                        56.28653177
+                        -6.9792663,
+                        58.3286357
                     ],
                     [
-                        -3.04890965,
-                        56.332192
+                        -6.9710266,
+                        58.2694608
                     ],
                     [
-                        -2.98498515,
-                        56.33271677
+                        -7.1413147,
+                        58.2680163
                     ],
                     [
-                        -2.98381041,
-                        56.28705563
-                    ]
-                ]
-            ],
-            "terms_url": "http://maps.nls.uk/townplans/cupar_1.html",
-            "terms_text": "National Library of Scotland - Cupar 1854"
-        },
-        {
-            "name": "OS Town Plans, Cupar 1893-1894 (NLS)",
-            "type": "tms",
-            "description": "Detailed town plan of Cupar 1893-1894, courtesy of National Library of Scotland.",
-            "template": "http://geo.nls.uk/maps/towns/cupar1893/{zoom}/{x}/{-y}.png",
-            "scaleExtent": [
-                13,
-                20
-            ],
-            "polygon": [
-                [
+                        -7.1403816,
+                        58.0358742
+                    ],
                     [
-                        -3.0327697,
-                        56.30243657
+                        -7.3020636,
+                        58.0351031
                     ],
                     [
-                        -3.03338443,
-                        56.32520139
+                        -7.3030347,
+                        57.9774797
                     ],
                     [
-                        -3.00146629,
-                        56.32546356
+                        -7.1379539,
+                        57.9777372
                     ],
                     [
-                        -3.00087054,
-                        56.30269852
-                    ]
-                ]
-            ],
-            "terms_url": "http://maps.nls.uk/townplans/cupar_2.html",
-            "terms_text": "National Library of Scotland - Cupar 1893-1894"
-        },
-        {
-            "name": "OS Town Plans, Dalkeith 1852 (NLS)",
-            "type": "tms",
-            "description": "Detailed town plan of Dalkeith 1852, courtesy of National Library of Scotland.",
-            "template": "http://geo.nls.uk/maps/towns/dalkeith1852/{zoom}/{x}/{-y}.png",
-            "scaleExtent": [
-                13,
-                20
-            ],
-            "polygon": [
-                [
+                        -7.1413526,
+                        57.9202792
+                    ],
                     [
-                        -3.07862465,
-                        55.88900264
+                        -7.1398961,
+                        57.8640206
                     ],
                     [
-                        -3.0790381,
-                        55.90389729
+                        -7.3020636,
+                        57.862471
                     ],
                     [
-                        -3.05835611,
-                        55.90407681
+                        -7.298484,
+                        57.7442293
                     ],
                     [
-                        -3.05795059,
-                        55.88918206
-                    ]
-                ]
-            ],
-            "terms_url": "http://maps.nls.uk/townplans/dalkeith_1.html",
-            "terms_text": "National Library of Scotland - Dalkeith 1852"
-        },
-        {
-            "name": "OS Town Plans, Dalkeith 1893 (NLS)",
-            "type": "tms",
-            "description": "Detailed town plan of Dalkeith 1893, courtesy of National Library of Scotland.",
-            "template": "http://geo.nls.uk/maps/towns/dalkeith1893/{zoom}/{x}/{-y}.png",
-            "scaleExtent": [
-                13,
-                20
-            ],
-            "polygon": [
-                [
+                        -7.4509193,
+                        57.7456951
+                    ],
                     [
-                        -3.08600192,
-                        55.87936087
+                        -7.4550392,
+                        57.6899522
                     ],
                     [
-                        -3.08658588,
-                        55.90025926
+                        -7.6186131,
+                        57.6906048
                     ],
                     [
-                        -3.0436473,
-                        55.90063074
+                        -7.6198341,
+                        57.7456951
                     ],
                     [
-                        -3.04308639,
-                        55.87973206
-                    ]
-                ]
-            ],
-            "terms_url": "http://maps.nls.uk/townplans/dalkeith_2.html",
-            "terms_text": "National Library of Scotland - Dalkeith 1893"
-        },
-        {
-            "name": "OS Town Plans, Dumbarton 1859 (NLS)",
-            "type": "tms",
-            "description": "Detailed town plan of Dumbarton 1859, courtesy of National Library of Scotland.",
-            "template": "http://geo.nls.uk/maps/towns/dumbarton/{zoom}/{x}/{-y}.png",
-            "scaleExtent": [
-                13,
-                20
-            ],
-            "polygon": [
-                [
+                        -7.7901222,
+                        57.7442293
+                    ],
                     [
-                        -4.58559982,
-                        55.92742578
+                        -7.7873756,
+                        57.6855477
                     ],
                     [
-                        -4.58714245,
-                        55.95056014
+                        -7.6222332,
+                        57.6853817
                     ],
                     [
-                        -4.55463269,
-                        55.95123882
+                        -7.6173779,
+                        57.5712602
                     ],
                     [
-                        -4.55310939,
-                        55.92810387
-                    ]
-                ]
-            ],
-            "terms_url": "http://maps.nls.uk/townplans/dumbarton.html",
-            "terms_text": "National Library of Scotland - Dumbarton 1859"
-        },
-        {
-            "name": "OS Town Plans, Dumfries 1850 (NLS)",
-            "type": "tms",
-            "description": "Detailed town plan of Dumfries 1850, courtesy of National Library of Scotland.",
-            "template": "http://geo.nls.uk/maps/towns/dumfries1850/{zoom}/{x}/{-y}.png",
-            "scaleExtent": [
-                13,
-                20
-            ],
-            "polygon": [
-                [
+                        -7.788285,
+                        57.5709998
+                    ],
                     [
-                        -3.63928076,
-                        55.03715991
+                        -7.7892561,
+                        57.512109
                     ],
                     [
-                        -3.64116352,
-                        55.08319002
+                        -7.7038025,
+                        57.5115874
                     ],
                     [
-                        -3.57823183,
-                        55.08402202
+                        -7.6999183,
+                        57.4546902
                     ],
                     [
-                        -3.57642118,
-                        55.0379905
-                    ]
-                ]
-            ],
-            "terms_url": "http://maps.nls.uk/townplans/dumfries_1.html",
-            "terms_text": "National Library of Scotland - Dumfries 1850"
-        },
-        {
-            "name": "OS Town Plans, Dumfries 1893 (NLS)",
-            "type": "tms",
-            "description": "Detailed town plan of Dumfries 1893, courtesy of National Library of Scotland.",
-            "template": "http://geo.nls.uk/maps/towns/dumfries1893/{zoom}/{x}/{-y}.png",
-            "scaleExtent": [
-                13,
-                20
-            ],
-            "polygon": [
-                [
+                        -7.5367796,
+                        57.4552126
+                    ],
                     [
-                        -3.63179081,
-                        55.04150111
+                        -7.5348375,
+                        57.5126306
                     ],
                     [
-                        -3.63330662,
-                        55.07873429
+                        -7.4581235,
+                        57.5131521
                     ],
                     [
-                        -3.58259012,
-                        55.07940411
+                        -7.4552103,
+                        57.2824165
                     ],
                     [
-                        -3.58112132,
-                        55.04217001
-                    ]
-                ]
-            ],
-            "terms_url": "http://maps.nls.uk/townplans/dumfries_2.html",
-            "terms_text": "National Library of Scotland - Dumfries 1893"
-        },
-        {
-            "name": "OS Town Plans, Dundee 1857-1858 (NLS)",
-            "type": "tms",
-            "description": "Detailed town plan of Dundee 1857-1858, courtesy of National Library of Scotland.",
-            "template": "http://geo.nls.uk/maps/towns/dundee1857/{zoom}/{x}/{-y}.png",
-            "scaleExtent": [
-                13,
-                20
-            ],
-            "polygon": [
-                [
+                        -7.6115515,
+                        57.2845158
+                    ],
                     [
-                        -3.02584468,
-                        56.44879161
+                        -7.6144647,
+                        57.2272651
                     ],
                     [
-                        -3.02656969,
-                        56.47566815
+                        -7.451326,
+                        57.2256881
                     ],
                     [
-                        -2.94710317,
-                        56.47629984
+                        -7.451326,
+                        57.1103873
                     ],
                     [
-                        -2.94643424,
-                        56.44942266
+                        -7.6164068,
+                        57.1088053
+                    ],
+                    [
+                        -7.603783,
+                        56.8792358
                     ]
-                ]
-            ],
-            "terms_url": "http://maps.nls.uk/townplans/dundee_1.html",
-            "terms_text": "National Library of Scotland - Dundee 1857-1858"
-        },
-        {
-            "name": "OS Town Plans, Dundee 1870-1872 (NLS)",
-            "type": "tms",
-            "description": "Detailed town plan of Dundee 1870-1872, courtesy of National Library of Scotland.",
-            "template": "http://geo.nls.uk/maps/towns/dundee1870/{zoom}/{x}/{-y}.png",
-            "scaleExtent": [
-                13,
-                20
-            ],
-            "polygon": [
+                ],
                 [
                     [
-                        -3.03399945,
-                        56.448497
+                        -1.7106618,
+                        59.5626284
                     ],
                     [
-                        -3.03497463,
-                        56.48435238
+                        -1.5417509,
+                        59.562215
                     ],
                     [
-                        -2.92352705,
-                        56.48523137
+                        -1.5423082,
+                        59.5037224
                     ],
                     [
-                        -2.92265681,
-                        56.4493748
+                        -1.7112191,
+                        59.5041365
                     ]
                 ]
             ],
-            "terms_url": "http://maps.nls.uk/townplans/dundee_2.html",
-            "terms_text": "National Library of Scotland - Dundee 1870-1872"
+            "terms_url": "http://geo.nls.uk/maps/",
+            "terms_text": "National Library of Scotland Historic Maps"
         },
         {
-            "name": "OS Town Plans, Dunfermline 1854 (NLS)",
+            "name": "New & Misaligned TIGER Roads",
             "type": "tms",
-            "description": "Detailed town plan of Dunfermline 1854, courtesy of National Library of Scotland.",
-            "template": "http://geo.nls.uk/maps/towns/dunfermline1854/{zoom}/{x}/{-y}.png",
+            "description": "At zoom level 16+, public domain map data from the US Census. At lower zooms, only changes since 2006 minus changes already incorporated into OpenStreetMap",
+            "template": "http://{switch:a,b,c}.tiles.mapbox.com/v4/enf.e0b8291e/{zoom}/{x}/{y}.png?access_token=pk.eyJ1Ijoib3BlbnN0cmVldG1hcCIsImEiOiJhNVlHd29ZIn0.ti6wATGDWOmCnCYen-Ip7Q",
             "scaleExtent": [
-                13,
-                20
+                0,
+                22
             ],
             "polygon": [
                 [
                     [
-                        -3.49045481,
-                        56.0605979
+                        -124.7617886,
+                        48.4130148
                     ],
                     [
-                        -3.49116489,
-                        56.07898822
+                        -124.6059492,
+                        45.90245
                     ],
                     [
-                        -3.44374075,
-                        56.07955208
+                        -124.9934269,
+                        40.0557614
                     ],
                     [
-                        -3.44305323,
-                        56.06116138
-                    ]
-                ]
-            ],
-            "terms_url": "http://maps.nls.uk/townplans/dunfermline_1.html",
-            "terms_text": "National Library of Scotland - Dunfermline 1854"
-        },
-        {
-            "name": "OS Town Plans, Dunfermline 1894 (NLS)",
-            "type": "tms",
-            "description": "Detailed town plan of Dunfermline 1894, courtesy of National Library of Scotland.",
-            "template": "http://geo.nls.uk/maps/towns/dunfermline1893/{zoom}/{x}/{-y}.png",
-            "scaleExtent": [
-                13,
-                20
-            ],
-            "polygon": [
-                [
+                        -122.5369737,
+                        36.8566086
+                    ],
                     [
-                        -3.48284159,
-                        56.05198219
+                        -119.9775867,
+                        33.0064099
                     ],
                     [
-                        -3.48399434,
-                        56.08198924
+                        -117.675935,
+                        32.4630223
                     ],
                     [
-                        -3.44209721,
-                        56.08248587
+                        -114.8612307,
+                        32.4799891
                     ],
                     [
-                        -3.44097697,
-                        56.05247826
-                    ]
-                ]
-            ],
-            "terms_url": "http://maps.nls.uk/townplans/dunfermline_2.html",
-            "terms_text": "National Library of Scotland - Dunfermline 1894"
-        },
-        {
-            "name": "OS Town Plans, Edinburgh 1849-1851 (NLS)",
-            "type": "tms",
-            "description": "Detailed town plan of Edinburgh 1849-1851, courtesy of National Library of Scotland.",
-            "template": "http://geo.nls.uk/maps/towns/edinburgh1849/{zoom}/{x}/{-y}.png",
-            "scaleExtent": [
-                13,
-                20
-            ],
-            "polygon": [
-                [
+                        -111.0089311,
+                        31.336015
+                    ],
                     [
-                        -3.2361048,
-                        55.921366
+                        -108.1992687,
+                        31.3260016
                     ],
                     [
-                        -3.23836397,
-                        55.99217223
+                        -108.1871123,
+                        31.7755116
                     ],
                     [
-                        -3.14197035,
-                        55.99310288
+                        -106.5307225,
+                        31.7820947
                     ],
                     [
-                        -3.13988689,
-                        55.92229419
-                    ]
-                ]
-            ],
-            "terms_url": "http://maps.nls.uk/townplans/edinburgh1056_1.html",
-            "terms_text": "National Library of Scotland - Edinburgh 1849-1851"
-        },
-        {
-            "name": "OS Town Plans, Edinburgh 1876-1877 (NLS)",
-            "type": "tms",
-            "description": "Detailed town plan of Edinburgh 1876-1877, courtesy of National Library of Scotland.",
-            "template": "http://geo.nls.uk/maps/towns/edinburgh1876/{zoom}/{x}/{-y}.png",
-            "scaleExtent": [
-                13,
-                20
-            ],
-            "polygon": [
-                [
+                        -106.4842052,
+                        31.7464455
+                    ],
                     [
-                        -3.24740498,
-                        55.92116518
+                        -106.429317,
+                        31.7520583
                     ],
                     [
-                        -3.24989581,
-                        55.99850896
+                        -106.2868855,
+                        31.5613291
                     ],
                     [
-                        -3.13061127,
-                        55.99966059
+                        -106.205248,
+                        31.446704
                     ],
                     [
-                        -3.12835798,
-                        55.92231348
-                    ]
-                ]
-            ],
-            "terms_url": "http://maps.nls.uk/townplans/edinburgh1056_2.html",
-            "terms_text": "National Library of Scotland - Edinburgh 1876-1877"
-        },
-        {
-            "name": "OS Town Plans, Edinburgh 1893-1894 (NLS)",
-            "type": "tms",
-            "description": "Detailed town plan of Edinburgh 1893-1894, courtesy of National Library of Scotland.",
-            "template": "http://geo.nls.uk/maps/towns/edinburgh1893/{zoom}/{x}/{-y}.png",
-            "scaleExtent": [
-                13,
-                20
-            ],
-            "polygon": [
-                [
+                        -105.0205259,
+                        30.5360988
+                    ],
                     [
-                        -3.26111081,
-                        55.89555387
+                        -104.5881916,
+                        29.6997856
                     ],
                     [
-                        -3.26450423,
-                        55.9997912
+                        -103.2518856,
+                        28.8908685
                     ],
                     [
-                        -3.11970824,
-                        56.00119128
+                        -102.7173632,
+                        29.3920567
                     ],
                     [
-                        -3.1167031,
-                        55.89694851
-                    ]
-                ]
-            ],
-            "terms_url": "http://maps.nls.uk/townplans/edinburgh500.html",
-            "terms_text": "National Library of Scotland - Edinburgh 1893-1894"
-        },
-        {
-            "name": "OS Town Plans, Elgin 1868 (NLS)",
-            "type": "tms",
-            "description": "Detailed town plan of Elgin 1868, courtesy of National Library of Scotland.",
-            "template": "http://geo.nls.uk/maps/towns/elgin/{zoom}/{x}/{-y}.png",
-            "scaleExtent": [
-                13,
-                20
-            ],
-            "polygon": [
-                [
+                        -102.1513983,
+                        29.7475702
+                    ],
                     [
-                        -3.33665196,
-                        57.62879017
+                        -101.2552871,
+                        29.4810523
                     ],
                     [
-                        -3.33776583,
-                        57.65907381
+                        -100.0062436,
+                        28.0082173
                     ],
                     [
-                        -3.29380859,
-                        57.65953111
+                        -99.2351068,
+                        26.4475962
                     ],
                     [
-                        -3.29273129,
-                        57.62924695
-                    ]
-                ]
-            ],
-            "terms_url": "http://maps.nls.uk/townplans/elgin.html",
-            "terms_text": "National Library of Scotland - Elgin 1868"
-        },
-        {
-            "name": "OS Town Plans, Falkirk 1858-1859 (NLS)",
-            "type": "tms",
-            "description": "Detailed town plan of Falkirk 1858-1859, courtesy of National Library of Scotland.",
-            "template": "http://geo.nls.uk/maps/towns/falkirk/{zoom}/{x}/{-y}.png",
-            "scaleExtent": [
-                13,
-                20
-            ],
-            "polygon": [
-                [
+                        -98.0109067,
+                        25.9928035
+                    ],
                     [
-                        -3.79587441,
-                        55.99343101
+                        -97.435024,
+                        25.8266009
                     ],
                     [
-                        -3.79697783,
-                        56.01720281
+                        -96.9555259,
+                        25.9821589
                     ],
                     [
-                        -3.76648151,
-                        56.01764348
+                        -96.8061741,
+                        27.7978168
                     ],
                     [
-                        -3.76539679,
-                        55.99387129
-                    ]
-                ]
-            ],
-            "terms_url": "http://maps.nls.uk/townplans/falkirk.html",
-            "terms_text": "National Library of Scotland - Falkirk 1858-1859"
-        },
-        {
-            "name": "OS Town Plans, Forfar 1860-1861 (NLS)",
-            "type": "tms",
-            "description": "Detailed town plan of Forfar 1860-1861, courtesy of National Library of Scotland.",
-            "template": "http://geo.nls.uk/maps/towns/forfar/{zoom}/{x}/{-y}.png",
-            "scaleExtent": [
-                13,
-                20
-            ],
-            "polygon": [
-                [
+                        -95.5563349,
+                        28.5876066
+                    ],
                     [
-                        -2.90326183,
-                        56.6289471
+                        -93.7405308,
+                        29.4742093
                     ],
                     [
-                        -2.90378797,
-                        56.65095013
+                        -90.9028456,
+                        28.8564513
                     ],
                     [
-                        -2.87228457,
-                        56.65117489
+                        -88.0156706,
+                        28.9944338
                     ],
                     [
-                        -2.87177676,
-                        56.62917168
-                    ]
-                ]
-            ],
-            "terms_url": "http://maps.nls.uk/townplans/forfar.html",
-            "terms_text": "National Library of Scotland - Forfar 1860-1861"
-        },
-        {
-            "name": "OS Town Plans, Forres 1868 (NLS)",
-            "type": "tms",
-            "description": "Detailed town plan of Forres 1868, courtesy of National Library of Scotland.",
-            "template": "http://geo.nls.uk/maps/towns/forres/{zoom}/{x}/{-y}.png",
-            "scaleExtent": [
-                13,
-                20
-            ],
-            "polygon": [
-                [
+                        -88.0162494,
+                        30.0038862
+                    ],
                     [
-                        -3.63516795,
-                        57.58887872
+                        -86.0277506,
+                        30.0047454
                     ],
                     [
-                        -3.63647637,
-                        57.618002
+                        -84.0187909,
+                        28.9961781
                     ],
                     [
-                        -3.57751453,
-                        57.61875171
+                        -81.9971976,
+                        25.9826768
                     ],
                     [
-                        -3.5762532,
-                        57.58962759
-                    ]
-                ]
-            ],
-            "terms_url": "http://maps.nls.uk/townplans/forres.html",
-            "terms_text": "National Library of Scotland - Forres 1868"
-        },
-        {
-            "name": "OS Town Plans, Galashiels 1858 (NLS)",
-            "type": "tms",
-            "description": "Detailed town plan of Galashiels 1858, courtesy of National Library of Scotland.",
-            "template": "http://geo.nls.uk/maps/towns/galashiels/{zoom}/{x}/{-y}.png",
-            "scaleExtent": [
-                13,
-                20
-            ],
-            "polygon": [
-                [
+                        -81.9966618,
+                        25.0134917
+                    ],
                     [
-                        -2.82918609,
-                        55.59586303
+                        -84.0165592,
+                        25.0125783
                     ],
                     [
-                        -2.82981273,
-                        55.62554026
+                        -84.0160068,
+                        24.0052745
                     ],
                     [
-                        -2.78895254,
-                        55.62580992
+                        -80.0199985,
+                        24.007096
                     ],
                     [
-                        -2.78835674,
-                        55.59613239
-                    ]
-                ]
-            ],
-            "terms_url": "http://maps.nls.uk/townplans/galashiels.html",
-            "terms_text": "National Library of Scotland - Galashiels 1858"
-        },
-        {
-            "name": "OS Town Plans, Girvan 1857 (NLS)",
-            "type": "tms",
-            "description": "Detailed town plan of Girvan 1857, courtesy of National Library of Scotland.",
-            "template": "http://geo.nls.uk/maps/towns/girvan/{zoom}/{x}/{-y}.png",
-            "scaleExtent": [
-                13,
-                20
-            ],
-            "polygon": [
-                [
+                        -79.8901116,
+                        26.8550713
+                    ],
                     [
-                        -4.87424251,
-                        55.22679729
+                        -80.0245309,
+                        32.0161282
                     ],
                     [
-                        -4.87587895,
-                        55.24945946
+                        -75.4147385,
+                        35.0531894
                     ],
                     [
-                        -4.84447382,
-                        55.25019598
+                        -74.0211163,
+                        39.5727927
                     ],
                     [
-                        -4.84285519,
-                        55.22753318
-                    ]
-                ]
-            ],
-            "terms_url": "http://maps.nls.uk/townplans/girvan.html",
-            "terms_text": "National Library of Scotland - Girvan 1857"
-        },
-        {
-            "name": "OS Town Plans, Glasgow 1857-1858 (NLS)",
-            "type": "tms",
-            "description": "Detailed town plan of Glasgow 1857-1858, courtesy of National Library of Scotland.",
-            "template": "http://geo.nls.uk/maps/towns/glasgow1857/{zoom}/{x}/{-y}.png",
-            "scaleExtent": [
-                13,
-                20
-            ],
-            "polygon": [
-                [
+                        -72.002019,
+                        40.9912464
+                    ],
                     [
-                        -4.31575491,
-                        55.82072009
+                        -69.8797398,
+                        40.9920457
                     ],
                     [
-                        -4.319683,
-                        55.88667625
+                        -69.8489304,
+                        43.2619916
                     ],
                     [
-                        -4.1771319,
-                        55.88928081
+                        -66.9452845,
+                        44.7104937
                     ],
                     [
-                        -4.1734447,
-                        55.82331825
-                    ]
-                ]
-            ],
-            "terms_url": "http://maps.nls.uk/townplans/glasgow_1.html",
-            "terms_text": "National Library of Scotland - Glasgow 1857-1858"
-        },
-        {
-            "name": "OS Town Plans, Glasgow 1892-1894 (NLS)",
-            "type": "tms",
-            "description": "Detailed town plan of Glasgow 1892-1894, courtesy of National Library of Scotland.",
-            "template": "http://geo.nls.uk/maps/towns/glasgow1894/{zoom}/{x}/{-y}.png",
-            "scaleExtent": [
-                13,
-                20
-            ],
-            "polygon": [
-                [
+                        -67.7596632,
+                        47.0990024
+                    ],
                     [
-                        -4.3465357,
-                        55.81456228
+                        -69.2505131,
+                        47.5122328
                     ],
                     [
-                        -4.35157646,
-                        55.89806268
+                        -70.4614886,
+                        46.2176574
                     ],
                     [
-                        -4.17788765,
-                        55.9012587
+                        -71.412273,
+                        45.254878
                     ],
                     [
-                        -4.17321842,
-                        55.81774834
-                    ]
-                ]
-            ],
-            "terms_url": "http://maps.nls.uk/townplans/glasgow_2.html",
-            "terms_text": "National Library of Scotland - Glasgow 1892-1894"
-        },
-        {
-            "name": "OS Town Plans, Greenock 1857 (NLS)",
-            "type": "tms",
-            "description": "Detailed town plan of Greenock 1857, courtesy of National Library of Scotland.",
-            "template": "http://geo.nls.uk/maps/towns/greenock/{zoom}/{x}/{-y}.png",
-            "scaleExtent": [
-                13,
-                20
-            ],
-            "polygon": [
-                [
+                        -72.0222508,
+                        45.0059846
+                    ],
                     [
-                        -4.78108857,
-                        55.92617865
+                        -75.0798841,
+                        44.9802854
                     ],
                     [
-                        -4.78382957,
-                        55.96437481
+                        -76.9023061,
+                        43.8024568
                     ],
                     [
-                        -4.7302257,
-                        55.96557475
+                        -78.7623935,
+                        43.6249578
                     ],
                     [
-                        -4.72753731,
-                        55.92737687
-                    ]
-                ]
-            ],
-            "terms_url": "http://maps.nls.uk/townplans/greenock.html",
-            "terms_text": "National Library of Scotland - Greenock 1857"
-        },
-        {
-            "name": "OS Town Plans, Haddington 1853 (NLS)",
-            "type": "tms",
-            "description": "Detailed town plan of Haddington 1853, courtesy of National Library of Scotland.",
-            "template": "http://geo.nls.uk/maps/towns/haddington1853/{zoom}/{x}/{-y}.png",
-            "scaleExtent": [
-                13,
-                20
-            ],
-            "polygon": [
-                [
+                        -79.15798,
+                        43.4462589
+                    ],
                     [
-                        -2.78855542,
-                        55.9451862
+                        -79.0060087,
+                        42.8005317
                     ],
                     [
-                        -2.78888196,
-                        55.96124194
+                        -82.662475,
+                        41.6889458
                     ],
                     [
-                        -2.76674325,
-                        55.9613817
+                        -82.1761642,
+                        43.588535
                     ],
                     [
-                        -2.76642588,
-                        55.94532587
-                    ]
-                ]
-            ],
-            "terms_url": "http://maps.nls.uk/townplans/haddington_1.html",
-            "terms_text": "National Library of Scotland - Haddington 1853"
-        },
-        {
-            "name": "OS Town Plans, Haddington 1893 (NLS)",
-            "type": "tms",
-            "description": "Detailed town plan of Haddington 1893, courtesy of National Library of Scotland.",
-            "template": "http://geo.nls.uk/maps/towns/haddington1893/{zoom}/{x}/{-y}.png",
-            "scaleExtent": [
-                13,
-                20
-            ],
-            "polygon": [
-                [
+                        -83.2813977,
+                        46.138853
+                    ],
                     [
-                        -2.80152293,
-                        55.93428734
+                        -87.5064535,
+                        48.0142702
                     ],
                     [
-                        -2.80214693,
-                        55.96447189
+                        -88.3492194,
+                        48.2963271
                     ],
                     [
-                        -2.76038069,
-                        55.9647367
+                        -89.4353148,
+                        47.9837822
                     ],
                     [
-                        -2.75978916,
-                        55.93455185
+                        -93.9981078,
+                        49.0067142
+                    ],
+                    [
+                        -95.1105379,
+                        49.412004
+                    ],
+                    [
+                        -96.0131199,
+                        49.0060547
+                    ],
+                    [
+                        -123.3228926,
+                        49.0042878
+                    ],
+                    [
+                        -123.2275233,
+                        48.1849927
                     ]
-                ]
-            ],
-            "terms_url": "http://maps.nls.uk/townplans/haddington_2.html",
-            "terms_text": "National Library of Scotland - Haddington 1893"
-        },
-        {
-            "name": "OS Town Plans, Hamilton 1858 (NLS)",
-            "type": "tms",
-            "description": "Detailed town plan of Hamilton 1858, courtesy of National Library of Scotland.",
-            "template": "http://geo.nls.uk/maps/towns/hamilton/{zoom}/{x}/{-y}.png",
-            "scaleExtent": [
-                13,
-                20
-            ],
-            "polygon": [
+                ],
                 [
                     [
-                        -4.06721642,
-                        55.74877265
+                        -160.5787616,
+                        22.5062947
                     ],
                     [
-                        -4.06924047,
-                        55.78698508
+                        -160.5782192,
+                        21.4984647
                     ],
                     [
-                        -4.01679233,
-                        55.78785698
+                        -158.7470604,
+                        21.2439843
                     ],
                     [
-                        -4.01481949,
-                        55.74964331
+                        -157.5083185,
+                        20.995803
+                    ],
+                    [
+                        -155.9961942,
+                        18.7790194
+                    ],
+                    [
+                        -154.6217803,
+                        18.7586966
+                    ],
+                    [
+                        -154.6890176,
+                        19.8805722
+                    ],
+                    [
+                        -156.2927622,
+                        21.2225888
+                    ],
+                    [
+                        -157.5047384,
+                        21.9984962
+                    ],
+                    [
+                        -159.0093692,
+                        22.5070181
                     ]
-                ]
-            ],
-            "terms_url": "http://maps.nls.uk/townplans/hamilton.html",
-            "terms_text": "National Library of Scotland - Hamilton 1858"
-        },
-        {
-            "name": "OS Town Plans, Hawick 1857-1858 (NLS)",
-            "type": "tms",
-            "description": "Detailed town plan of Hawick 1857-1858, courtesy of National Library of Scotland.",
-            "template": "http://geo.nls.uk/maps/towns/hawick/{zoom}/{x}/{-y}.png",
-            "scaleExtent": [
-                13,
-                20
-            ],
-            "polygon": [
+                ],
                 [
                     [
-                        -2.80130149,
-                        55.4102516
+                        -167.1571546,
+                        68.721974
                     ],
                     [
-                        -2.80176329,
-                        55.43304638
+                        -164.8553982,
+                        67.0255078
                     ],
                     [
-                        -2.7708832,
-                        55.43324489
+                        -168.002195,
+                        66.0017503
                     ],
                     [
-                        -2.77043917,
-                        55.41044995
+                        -169.0087448,
+                        66.001546
+                    ],
+                    [
+                        -169.0075381,
+                        64.9987675
+                    ],
+                    [
+                        -172.5143281,
+                        63.8767267
+                    ],
+                    [
+                        -173.8197023,
+                        59.74014
+                    ],
+                    [
+                        -162.5018149,
+                        58.0005815
+                    ],
+                    [
+                        -160.0159024,
+                        58.0012389
+                    ],
+                    [
+                        -160.0149725,
+                        57.000035
+                    ],
+                    [
+                        -160.5054788,
+                        56.9999017
+                    ],
+                    [
+                        -165.8092575,
+                        54.824847
+                    ],
+                    [
+                        -178.000097,
+                        52.2446469
+                    ],
+                    [
+                        -177.9992996,
+                        51.2554252
+                    ],
+                    [
+                        -171.4689067,
+                        51.8215329
+                    ],
+                    [
+                        -162.40251,
+                        53.956664
+                    ],
+                    [
+                        -159.0075717,
+                        55.002502
+                    ],
+                    [
+                        -158.0190709,
+                        55.0027849
+                    ],
+                    [
+                        -151.9963213,
+                        55.9991902
+                    ],
+                    [
+                        -151.500341,
+                        57.9987853
+                    ],
+                    [
+                        -151.5012894,
+                        58.9919816
+                    ],
+                    [
+                        -138.5159989,
+                        58.9953194
+                    ],
+                    [
+                        -138.5150471,
+                        57.9986434
+                    ],
+                    [
+                        -133.9948193,
+                        54.0031685
+                    ],
+                    [
+                        -130.0044418,
+                        54.0043387
+                    ],
+                    [
+                        -130.0070826,
+                        57.0000507
+                    ],
+                    [
+                        -131.975877,
+                        56.9995156
+                    ],
+                    [
+                        -135.1229873,
+                        59.756601
+                    ],
+                    [
+                        -138.0071813,
+                        59.991805
+                    ],
+                    [
+                        -139.1715881,
+                        60.4127229
+                    ],
+                    [
+                        -140.9874011,
+                        61.0118551
+                    ],
+                    [
+                        -140.9683975,
+                        69.9535069
+                    ],
+                    [
+                        -156.176891,
+                        71.5633329
+                    ],
+                    [
+                        -160.413634,
+                        70.7397728
+                    ],
+                    [
+                        -163.0218273,
+                        69.9707435
+                    ],
+                    [
+                        -164.9717003,
+                        68.994689
                     ]
                 ]
             ],
-            "terms_url": "http://maps.nls.uk/townplans/hawick.html",
-            "terms_text": "National Library of Scotland - Hawick 1857-1858"
+            "overlay": true
         },
         {
-            "name": "OS Town Plans, Inverness 1867-1868 (NLS)",
+            "name": "OS 1:25k historic (OSM)",
             "type": "tms",
-            "description": "Detailed town plan of Inverness 1867-1868, courtesy of National Library of Scotland.",
-            "template": "http://geo.nls.uk/maps/towns/inverness/{zoom}/{x}/{-y}.png",
+            "template": "http://ooc.openstreetmap.org/os1/{zoom}/{x}/{y}.jpg",
             "scaleExtent": [
-                13,
-                20
+                6,
+                17
             ],
             "polygon": [
                 [
                     [
-                        -4.25481758,
-                        57.45916363
+                        -9,
+                        49.8
                     ],
                     [
-                        -4.25752308,
-                        57.50302387
+                        -9,
+                        61.1
                     ],
                     [
-                        -4.19713638,
-                        57.50409032
+                        1.9,
+                        61.1
                     ],
                     [
-                        -4.1945031,
-                        57.46022829
+                        1.9,
+                        49.8
+                    ],
+                    [
+                        -9,
+                        49.8
                     ]
                 ]
-            ],
-            "terms_url": "http://maps.nls.uk/townplans/inverness.html",
-            "terms_text": "National Library of Scotland - Inverness 1867-1868"
+            ]
         },
         {
-            "name": "OS Town Plans, Irvine 1859 (NLS)",
+            "name": "OS New Popular Edition historic",
             "type": "tms",
-            "description": "Detailed town plan of Irvine 1859, courtesy of National Library of Scotland.",
-            "template": "http://geo.nls.uk/maps/towns/irvine/{zoom}/{x}/{-y}.png",
-            "scaleExtent": [
-                13,
-                20
-            ],
+            "template": "http://ooc.openstreetmap.org/npe/{zoom}/{x}/{y}.png",
             "polygon": [
                 [
                     [
-                        -4.67540402,
-                        55.60649957
+                        -5.8,
+                        49.8
                     ],
                     [
-                        -4.67643252,
-                        55.62159024
+                        -5.8,
+                        55.8
                     ],
                     [
-                        -4.65537888,
-                        55.62204812
+                        1.9,
+                        55.8
                     ],
                     [
-                        -4.65435844,
-                        55.60695719
+                        1.9,
+                        49.8
+                    ],
+                    [
+                        -5.8,
+                        49.8
                     ]
                 ]
-            ],
-            "terms_url": "http://maps.nls.uk/townplans/irvine.html",
-            "terms_text": "National Library of Scotland - Irvine 1859"
+            ]
         },
         {
-            "name": "OS Town Plans, Jedburgh 1858 (NLS)",
+            "name": "OS OpenData Locator",
             "type": "tms",
-            "description": "Detailed town plan of Jedburgh 1858, courtesy of National Library of Scotland.",
-            "template": "http://geo.nls.uk/maps/towns/jedburgh/{zoom}/{x}/{-y}.png",
-            "scaleExtent": [
-                13,
-                20
-            ],
+            "template": "http://tiles.itoworld.com/os_locator/{zoom}/{x}/{y}.png",
             "polygon": [
                 [
                     [
-                        -2.56332521,
-                        55.47105448
+                        -9,
+                        49.8
                     ],
                     [
-                        -2.56355503,
-                        55.48715562
+                        -9,
+                        61.1
                     ],
                     [
-                        -2.54168193,
-                        55.48725438
+                        1.9,
+                        61.1
                     ],
                     [
-                        -2.54146103,
-                        55.47115318
+                        1.9,
+                        49.8
+                    ],
+                    [
+                        -9,
+                        49.8
                     ]
                 ]
             ],
-            "terms_url": "http://maps.nls.uk/townplans/jedburgh.html",
-            "terms_text": "National Library of Scotland - Jedburgh 1858"
+            "overlay": true
         },
         {
-            "name": "OS Town Plans, Kelso 1857 (NLS)",
+            "name": "OS OpenData StreetView",
             "type": "tms",
-            "description": "Detailed town plan of Kelso 1857, courtesy of National Library of Scotland.",
-            "template": "http://geo.nls.uk/maps/towns/kelso/{zoom}/{x}/{-y}.png",
+            "template": "http://os.openstreetmap.org/sv/{zoom}/{x}/{y}.png",
             "scaleExtent": [
-                13,
-                20
+                1,
+                18
             ],
             "polygon": [
                 [
                     [
-                        -2.44924544,
-                        55.58390848
+                        -5.8292886,
+                        50.0229734
                     ],
                     [
-                        -2.44949757,
-                        55.6059582
+                        -5.8292886,
+                        50.254819
                     ],
                     [
-                        -2.41902085,
-                        55.60606617
+                        -5.373356,
+                        50.254819
                     ],
                     [
-                        -2.41878581,
-                        55.58401636
-                    ]
-                ]
-            ],
-            "terms_url": "http://maps.nls.uk/townplans/kelso.html",
-            "terms_text": "National Library of Scotland - Kelso 1857"
-        },
-        {
-            "name": "OS Town Plans, Kilmarnock 1857-1859 (NLS)",
-            "type": "tms",
-            "description": "Detailed town plan of Kilmarnock 1857-1859, courtesy of National Library of Scotland.",
-            "template": "http://geo.nls.uk/maps/towns/kilmarnock/{zoom}/{x}/{-y}.png",
-            "scaleExtent": [
-                13,
-                20
-            ],
-            "polygon": [
-                [
+                        -5.373356,
+                        50.3530588
+                    ],
                     [
-                        -4.51746876,
-                        55.58950933
+                        -5.1756021,
+                        50.3530588
                     ],
                     [
-                        -4.5194347,
-                        55.62017114
+                        -5.1756021,
+                        50.5925406
                     ],
                     [
-                        -4.47675652,
-                        55.62104083
+                        -4.9970743,
+                        50.5925406
                     ],
                     [
-                        -4.4748238,
-                        55.59037802
-                    ]
-                ]
-            ],
-            "terms_url": "http://maps.nls.uk/townplans/kilmarnock.html",
-            "terms_text": "National Library of Scotland - Kilmarnock 1857-1859"
-        },
-        {
-            "name": "OS Town Plans, Kirkcaldy 1855 (NLS)",
-            "type": "tms",
-            "description": "Detailed town plan of Kirkcaldy 1855, courtesy of National Library of Scotland.",
-            "template": "http://geo.nls.uk/maps/towns/kirkcaldy1855/{zoom}/{x}/{-y}.png",
-            "scaleExtent": [
-                13,
-                20
-            ],
-            "polygon": [
-                [
+                        -4.9970743,
+                        50.6935617
+                    ],
                     [
-                        -3.17455285,
-                        56.09518942
+                        -4.7965738,
+                        50.6935617
                     ],
                     [
-                        -3.17554995,
-                        56.12790251
+                        -4.7965738,
+                        50.7822112
                     ],
                     [
-                        -3.12991402,
-                        56.12832843
+                        -4.6949503,
+                        50.7822112
                     ],
                     [
-                        -3.12895559,
-                        56.09561481
-                    ]
-                ]
-            ],
-            "terms_url": "http://maps.nls.uk/townplans/kirkcaldy_1.html",
-            "terms_text": "National Library of Scotland - Kirkcaldy 1855"
-        },
-        {
-            "name": "OS Town Plans, Kirkcaldy 1894 (NLS)",
-            "type": "tms",
-            "description": "Detailed town plan of Kirkcaldy 1894, courtesy of National Library of Scotland.",
-            "template": "http://geo.nls.uk/maps/towns/kirkcaldy1894/{zoom}/{x}/{-y}.png",
-            "scaleExtent": [
-                13,
-                20
-            ],
-            "polygon": [
-                [
+                        -4.6949503,
+                        50.9607371
+                    ],
                     [
-                        -3.17460426,
-                        56.09513375
+                        -4.6043131,
+                        50.9607371
                     ],
                     [
-                        -3.17560428,
-                        56.12794116
+                        -4.6043131,
+                        51.0692066
                     ],
                     [
-                        -3.12989512,
-                        56.12836777
+                        -4.3792215,
+                        51.0692066
                     ],
                     [
-                        -3.12893395,
-                        56.09555983
-                    ]
-                ]
-            ],
-            "terms_url": "http://maps.nls.uk/townplans/kirkcaldy_2.html",
-            "terms_text": "National Library of Scotland - Kirkcaldy 1894"
-        },
-        {
-            "name": "OS Town Plans, Kirkcudbright 1850 (NLS)",
-            "type": "tms",
-            "description": "Detailed town plan of Kirkcudbright 1850, courtesy of National Library of Scotland.",
-            "template": "http://geo.nls.uk/maps/towns/kirkcudbright1850/{zoom}/{x}/{-y}.png",
-            "scaleExtent": [
-                13,
-                20
-            ],
-            "polygon": [
-                [
+                        -4.3792215,
+                        51.2521782
+                    ],
                     [
-                        -4.06154334,
-                        54.82586314
+                        -3.9039346,
+                        51.2521782
                     ],
                     [
-                        -4.0623081,
-                        54.84086061
+                        -3.9039346,
+                        51.2916998
                     ],
                     [
-                        -4.0420219,
-                        54.84120364
+                        -3.7171671,
+                        51.2916998
                     ],
                     [
-                        -4.04126464,
-                        54.82620598
-                    ]
-                ]
-            ],
-            "terms_url": "http://maps.nls.uk/townplans/kirkcudbright_1.html",
-            "terms_text": "National Library of Scotland - Kirkcudbright 1850"
-        },
-        {
-            "name": "OS Town Plans, Kirkcudbright 1893 (NLS)",
-            "type": "tms",
-            "description": "Detailed town plan of Kirkcudbright 1893, courtesy of National Library of Scotland.",
-            "template": "http://geo.nls.uk/maps/towns/kirkcudbright1893/{zoom}/{x}/{-y}.png",
-            "scaleExtent": [
-                13,
-                20
-            ],
-            "polygon": [
-                [
+                        -3.7171671,
+                        51.2453014
+                    ],
                     [
-                        -4.06001868,
-                        54.82720122
+                        -3.1486246,
+                        51.2453014
                     ],
                     [
-                        -4.06079036,
-                        54.84234455
+                        -3.1486246,
+                        51.362067
                     ],
                     [
-                        -4.04025067,
-                        54.84269158
+                        -3.7446329,
+                        51.362067
                     ],
                     [
-                        -4.03948667,
-                        54.82754805
-                    ]
-                ]
-            ],
-            "terms_url": "http://maps.nls.uk/townplans/kirkcudbright_2.html",
-            "terms_text": "National Library of Scotland - Kirkcudbright 1893"
-        },
-        {
-            "name": "OS Town Plans, Kirkintilloch 1859 (NLS)",
-            "type": "tms",
-            "description": "Detailed town plan of Kirkintilloch 1859, courtesy of National Library of Scotland.",
-            "template": "http://geo.nls.uk/maps/towns/kirkintilloch/{zoom}/{x}/{-y}.png",
-            "scaleExtent": [
-                13,
-                20
-            ],
-            "polygon": [
-                [
+                        -3.7446329,
+                        51.4340386
+                    ],
                     [
-                        -4.16664222,
-                        55.93124287
+                        -3.8297769,
+                        51.4340386
                     ],
                     [
-                        -4.16748402,
-                        55.94631265
+                        -3.8297769,
+                        51.5298246
                     ],
                     [
-                        -4.14637318,
-                        55.94668235
+                        -4.0852091,
+                        51.5298246
                     ],
                     [
-                        -4.14553956,
-                        55.93161237
-                    ]
-                ]
-            ],
-            "terms_url": "http://maps.nls.uk/townplans/kirkintilloch.html",
-            "terms_text": "National Library of Scotland - Kirkintilloch 1859"
-        },
-        {
-            "name": "OS Town Plans, Kirriemuir 1861 (NLS)",
-            "type": "tms",
-            "description": "Detailed town plan of Kirriemuir 1861, courtesy of National Library of Scotland.",
-            "template": "http://geo.nls.uk/maps/towns/kirriemuir/{zoom}/{x}/{-y}.png",
-            "scaleExtent": [
-                13,
-                20
-            ],
-            "polygon": [
-                [
+                        -4.0852091,
+                        51.4939284
+                    ],
                     [
-                        -3.01255744,
-                        56.65896044
+                        -4.3792215,
+                        51.4939284
                     ],
                     [
-                        -3.01302683,
-                        56.67645382
+                        -4.3792215,
+                        51.5427168
                     ],
                     [
-                        -2.98815879,
-                        56.67665366
+                        -5.1444195,
+                        51.5427168
                     ],
                     [
-                        -2.98770092,
-                        56.65916014
-                    ]
-                ]
-            ],
-            "terms_url": "http://maps.nls.uk/townplans/kirriemuir.html",
-            "terms_text": "National Library of Scotland - Kirriemuir 1861"
-        },
-        {
-            "name": "OS Town Plans, Lanark 1858 (NLS)",
-            "type": "tms",
-            "description": "Detailed town plan of Lanark 1858, courtesy of National Library of Scotland.",
-            "template": "http://geo.nls.uk/maps/towns/lanark/{zoom}/{x}/{-y}.png",
-            "scaleExtent": [
-                13,
-                20
-            ],
-            "polygon": [
-                [
+                        -5.1444195,
+                        51.6296003
+                    ],
                     [
-                        -3.78642584,
-                        55.66308804
+                        -5.7387103,
+                        51.6296003
                     ],
                     [
-                        -3.78710605,
-                        55.67800854
+                        -5.7387103,
+                        51.774037
                     ],
                     [
-                        -3.76632876,
-                        55.67830935
+                        -5.5095393,
+                        51.774037
                     ],
                     [
-                        -3.76565645,
-                        55.66338868
-                    ]
-                ]
-            ],
-            "terms_url": "http://maps.nls.uk/townplans/lanark.html",
-            "terms_text": "National Library of Scotland - Lanark 1858"
-        },
-        {
-            "name": "OS Town Plans, Linlithgow 1856 (NLS)",
-            "type": "tms",
-            "description": "Detailed town plan of Linlithgow 1856, courtesy of National Library of Scotland.",
-            "template": "http://geo.nls.uk/maps/towns/linlithgow/{zoom}/{x}/{-y}.png",
-            "scaleExtent": [
-                13,
-                20
-            ],
-            "polygon": [
-                [
+                        -5.5095393,
+                        51.9802596
+                    ],
                     [
-                        -3.61908334,
-                        55.95549561
+                        -5.198799,
+                        51.9802596
                     ],
                     [
-                        -3.62033259,
-                        55.98538615
+                        -5.198799,
+                        52.0973358
                     ],
                     [
-                        -3.57838447,
-                        55.98593047
+                        -4.8880588,
+                        52.0973358
                     ],
                     [
-                        -3.57716753,
-                        55.95603932
-                    ]
-                ]
-            ],
-            "terms_url": "http://maps.nls.uk/townplans/linlithgow.html",
-            "terms_text": "National Library of Scotland - Linlithgow 1856"
-        },
-        {
-            "name": "OS Town Plans, Mayole 1856-1857 (NLS)",
-            "type": "tms",
-            "description": "Detailed town plan of Mayole 1856-1857, courtesy of National Library of Scotland.",
-            "template": "http://geo.nls.uk/maps/towns/maybole/{zoom}/{x}/{-y}.png",
-            "scaleExtent": [
-                13,
-                20
-            ],
-            "polygon": [
-                [
+                        -4.8880588,
+                        52.1831557
+                    ],
                     [
-                        -4.69086378,
-                        55.34340178
+                        -4.4957492,
+                        52.1831557
                     ],
                     [
-                        -4.6918884,
-                        55.35849731
+                        -4.4957492,
+                        52.2925739
                     ],
                     [
-                        -4.67089656,
-                        55.35895813
+                        -4.3015365,
+                        52.2925739
                     ],
                     [
-                        -4.6698799,
-                        55.34386234
-                    ]
-                ]
-            ],
-            "terms_url": "http://maps.nls.uk/townplans/maybole.html",
-            "terms_text": "National Library of Scotland - Mayole 1856-1857"
-        },
-        {
-            "name": "OS Town Plans, Montrose 1861-1862 (NLS)",
-            "type": "tms",
-            "description": "Detailed town plan of Montrose 1861-1862, courtesy of National Library of Scotland.",
-            "template": "http://geo.nls.uk/maps/towns/montrose/{zoom}/{x}/{-y}.png",
-            "scaleExtent": [
-                13,
-                20
-            ],
-            "polygon": [
-                [
+                        -4.3015365,
+                        52.3685318
+                    ],
                     [
-                        -2.4859324,
-                        56.69645192
+                        -4.1811246,
+                        52.3685318
                     ],
                     [
-                        -2.4862257,
-                        56.71918799
+                        -4.1811246,
+                        52.7933685
                     ],
                     [
-                        -2.45405417,
-                        56.71930941
+                        -4.4413696,
+                        52.7933685
                     ],
                     [
-                        -2.45378027,
-                        56.69657324
-                    ]
-                ]
-            ],
-            "terms_url": "http://maps.nls.uk/townplans/montrose.html",
-            "terms_text": "National Library of Scotland - Montrose 1861-1862"
-        },
-        {
-            "name": "OS Town Plans, Musselburgh 1853 (NLS)",
-            "type": "tms",
-            "description": "Detailed town plan of Musselburgh 1853, courtesy of National Library of Scotland.",
-            "template": "http://geo.nls.uk/maps/towns/musselburgh1853/{zoom}/{x}/{-y}.png",
-            "scaleExtent": [
-                13,
-                20
-            ],
-            "polygon": [
-                [
+                        -4.4413696,
+                        52.7369614
+                    ],
                     [
-                        -3.07888558,
-                        55.93371953
+                        -4.8569847,
+                        52.7369614
                     ],
                     [
-                        -3.07954151,
-                        55.95729781
+                        -4.8569847,
+                        52.9317255
                     ],
                     [
-                        -3.03240684,
-                        55.95770177
+                        -4.7288044,
+                        52.9317255
                     ],
                     [
-                        -3.03177952,
-                        55.93412313
-                    ]
-                ]
-            ],
-            "terms_url": "http://maps.nls.uk/townplans/musselburgh_1.html",
-            "terms_text": "National Library of Scotland - Musselburgh 1853"
-        },
-        {
-            "name": "OS Town Plans, Musselburgh 1893 (NLS)",
-            "type": "tms",
-            "description": "Detailed town plan of Musselburgh 1893, courtesy of National Library of Scotland.",
-            "template": "http://geo.nls.uk/maps/towns/musselburgh1893/{zoom}/{x}/{-y}.png",
-            "scaleExtent": [
-                13,
-                20
-            ],
-            "polygon": [
-                [
+                        -4.7288044,
+                        53.5038599
+                    ],
                     [
-                        -3.07017621,
-                        55.92694102
+                        -4.1578191,
+                        53.5038599
                     ],
                     [
-                        -3.07078961,
-                        55.94917624
+                        -4.1578191,
+                        53.4113498
                     ],
                     [
-                        -3.03988228,
-                        55.94944099
+                        -3.3110518,
+                        53.4113498
                     ],
                     [
-                        -3.03928658,
-                        55.92720556
-                    ]
-                ]
-            ],
-            "terms_url": "http://maps.nls.uk/townplans/musselburgh_2.html",
-            "terms_text": "National Library of Scotland - Musselburgh 1893"
-        },
-        {
-            "name": "OS Town Plans, Nairn 1867-1868 (NLS)",
-            "type": "tms",
-            "description": "Detailed town plan of Nairn 1867-1868, courtesy of National Library of Scotland.",
-            "template": "http://geo.nls.uk/maps/towns/nairn/{zoom}/{x}/{-y}.png",
-            "scaleExtent": [
-                13,
-                20
-            ],
-            "polygon": [
-                [
+                        -3.3110518,
+                        53.5038599
+                    ],
                     [
-                        -3.88433907,
-                        57.57899149
+                        -3.2333667,
+                        53.5038599
                     ],
                     [
-                        -3.88509905,
-                        57.5936822
+                        -3.2333667,
+                        54.0159169
                     ],
                     [
-                        -3.85931017,
-                        57.59406441
+                        -3.3926211,
+                        54.0159169
                     ],
                     [
-                        -3.85856057,
-                        57.57937348
-                    ]
-                ]
-            ],
-            "terms_url": "http://maps.nls.uk/townplans/nairn.html",
-            "terms_text": "National Library of Scotland - Nairn 1867-1868"
-        },
-        {
-            "name": "OS Town Plans, Oban 1867-1868 (NLS)",
-            "type": "tms",
-            "description": "Detailed town plan of Oban 1867-1868, courtesy of National Library of Scotland.",
-            "template": "http://geo.nls.uk/maps/towns/oban/{zoom}/{x}/{-y}.png",
-            "scaleExtent": [
-                13,
-                20
-            ],
-            "polygon": [
-                [
+                        -3.3926211,
+                        54.1980953
+                    ],
                     [
-                        -5.49548449,
-                        56.39080407
+                        -3.559644,
+                        54.1980953
                     ],
                     [
-                        -5.49836627,
-                        56.42219039
+                        -3.559644,
+                        54.433732
                     ],
                     [
-                        -5.45383984,
-                        56.42343933
+                        -3.7188984,
+                        54.433732
                     ],
                     [
-                        -5.45099456,
-                        56.39205153
-                    ]
-                ]
-            ],
-            "terms_url": "http://maps.nls.uk/townplans/oban.html",
-            "terms_text": "National Library of Scotland - Oban 1867-1868"
-        },
-        {
-            "name": "OS Town Plans, Peebles 1856 (NLS)",
-            "type": "tms",
-            "description": "Detailed town plan of Peebles 1856, courtesy of National Library of Scotland.",
-            "template": "http://geo.nls.uk/maps/towns/peebles/{zoom}/{x}/{-y}.png",
-            "scaleExtent": [
-                13,
-                20
-            ],
-            "polygon": [
-                [
+                        -3.7188984,
+                        54.721897
+                    ],
                     [
-                        -3.20921287,
-                        55.63635834
+                        -4.3015365,
+                        54.721897
                     ],
                     [
-                        -3.20990288,
-                        55.65873817
+                        -4.3015365,
+                        54.6140739
                     ],
                     [
-                        -3.17896372,
-                        55.65903935
+                        -5.0473132,
+                        54.6140739
                     ],
                     [
-                        -3.17829135,
-                        55.63665927
-                    ]
-                ]
-            ],
-            "terms_url": "http://maps.nls.uk/townplans/peebles.html",
-            "terms_text": "National Library of Scotland - Peebles 1856"
-        },
-        {
-            "name": "OS Town Plans, Perth 1860 (NLS)",
-            "type": "tms",
-            "description": "Detailed town plan of Perth 1860, courtesy of National Library of Scotland.",
-            "template": "http://geo.nls.uk/maps/towns/perth/{zoom}/{x}/{-y}.png",
-            "scaleExtent": [
-                13,
-                20
-            ],
-            "polygon": [
-                [
+                        -5.0473132,
+                        54.7532915
+                    ],
                     [
-                        -3.45302495,
-                        56.37794226
+                        -5.2298731,
+                        54.7532915
                     ],
                     [
-                        -3.45416664,
-                        56.40789908
+                        -5.2298731,
+                        55.2190799
                     ],
                     [
-                        -3.41187528,
-                        56.40838777
+                        -5.6532567,
+                        55.2190799
                     ],
                     [
-                        -3.41076676,
-                        56.3784304
-                    ]
-                ]
-            ],
-            "terms_url": "http://maps.nls.uk/townplans/perth.html",
-            "terms_text": "National Library of Scotland - Perth 1860"
-        },
-        {
-            "name": "OS Town Plans, Peterhead 1868 (NLS)",
-            "type": "tms",
-            "description": "Detailed town plan of Peterhead 1868, courtesy of National Library of Scotland.",
-            "template": "http://geo.nls.uk/maps/towns/peterhead/{zoom}/{x}/{-y}.png",
-            "scaleExtent": [
-                13,
-                20
-            ],
-            "polygon": [
-                [
+                        -5.6532567,
+                        55.250088
+                    ],
                     [
-                        -1.80513747,
-                        57.48046916
+                        -5.8979647,
+                        55.250088
                     ],
                     [
-                        -1.80494005,
-                        57.51755411
+                        -5.8979647,
+                        55.4822462
                     ],
                     [
-                        -1.75135366,
-                        57.51746003
+                        -6.5933212,
+                        55.4822462
                     ],
                     [
-                        -1.75160539,
-                        57.48037522
-                    ]
-                ]
-            ],
-            "terms_url": "http://maps.nls.uk/townplans/peterhead",
-            "terms_text": "National Library of Scotland - Peterhead 1868"
-        },
-        {
-            "name": "OS Town Plans, Port Glasgow 1856-1857 (NLS)",
-            "type": "tms",
-            "description": "Detailed town plan of Port Glasgow 1856-1857, courtesy of National Library of Scotland.",
-            "template": "http://geo.nls.uk/maps/towns/portglasgow/{zoom}/{x}/{-y}.png",
-            "scaleExtent": [
-                13,
-                20
-            ],
-            "polygon": [
-                [
+                        -6.5933212,
+                        56.3013441
+                    ],
                     [
-                        -4.70063209,
-                        55.91995983
+                        -7.1727691,
+                        56.3013441
                     ],
                     [
-                        -4.70222026,
-                        55.9427679
+                        -7.1727691,
+                        56.5601822
                     ],
                     [
-                        -4.67084958,
-                        55.94345237
+                        -6.8171722,
+                        56.5601822
                     ],
                     [
-                        -4.6692798,
-                        55.92064372
-                    ]
-                ]
-            ],
-            "terms_url": "http://maps.nls.uk/townplans/port-glasgow.html",
-            "terms_text": "National Library of Scotland - Port Glasgow 1856-1857"
-        },
-        {
-            "name": "OS Town Plans, Portobello 1893-1894 (NLS)",
-            "type": "tms",
-            "description": "Detailed town plan of Portobello 1893-1894, courtesy of National Library of Scotland.",
-            "template": "http://geo.nls.uk/maps/towns/portobello/{zoom}/{x}/{-y}.png",
-            "scaleExtent": [
-                13,
-                20
-            ],
-            "polygon": [
-                [
+                        -6.8171722,
+                        56.6991713
+                    ],
                     [
-                        -3.12437919,
-                        55.93846889
+                        -6.5315276,
+                        56.6991713
                     ],
                     [
-                        -3.1250234,
-                        55.96068605
+                        -6.5315276,
+                        56.9066964
                     ],
                     [
-                        -3.09394827,
-                        55.96096586
+                        -6.811679,
+                        56.9066964
                     ],
                     [
-                        -3.09332184,
-                        55.93874847
-                    ]
-                ]
-            ],
-            "terms_url": "http://maps.nls.uk/townplans/portobello.html",
-            "terms_text": "National Library of Scotland - Portobello 1893-1894"
-        },
-        {
-            "name": "OS Town Plans, Rothesay 1862-1863 (NLS)",
-            "type": "tms",
-            "description": "Detailed town plan of Rothesay 1862-1863, courtesy of National Library of Scotland.",
-            "template": "http://geo.nls.uk/maps/towns/rothesay/{zoom}/{x}/{-y}.png",
-            "scaleExtent": [
-                13,
-                20
-            ],
-            "polygon": [
-                [
+                        -6.811679,
+                        57.3716613
+                    ],
                     [
-                        -5.06449893,
-                        55.82864114
+                        -6.8721038,
+                        57.3716613
                     ],
                     [
-                        -5.06569719,
-                        55.84385927
+                        -6.8721038,
+                        57.5518893
                     ],
                     [
-                        -5.04413114,
-                        55.84439519
+                        -7.0973235,
+                        57.5518893
                     ],
                     [
-                        -5.04294127,
-                        55.82917676
-                    ]
-                ]
-            ],
-            "terms_url": "http://maps.nls.uk/townplans/rothesay.html",
-            "terms_text": "National Library of Scotland - Rothesay 1862-1863"
-        },
-        {
-            "name": "OS Town Plans, Selkirk 1865 (NLS)",
-            "type": "tms",
-            "description": "Detailed town plan of Selkirk 1865, courtesy of National Library of Scotland.",
-            "template": "http://geo.nls.uk/maps/towns/selkirk/{zoom}/{x}/{-y}.png",
-            "scaleExtent": [
-                13,
-                20
-            ],
-            "polygon": [
-                [
+                        -7.0973235,
+                        57.2411085
+                    ],
                     [
-                        -2.85998582,
-                        55.53499576
+                        -7.1742278,
+                        57.2411085
                     ],
                     [
-                        -2.86063259,
-                        55.56459732
+                        -7.1742278,
+                        56.9066964
                     ],
                     [
-                        -2.82003242,
-                        55.56487574
+                        -7.3719817,
+                        56.9066964
                     ],
                     [
-                        -2.81941615,
-                        55.53527387
-                    ]
-                ]
-            ],
-            "terms_url": "http://maps.nls.uk/townplans/selkirk.html",
-            "terms_text": "National Library of Scotland - Selkirk 1865"
-        },
-        {
-            "name": "OS Town Plans, St Andrews 1854 (NLS)",
-            "type": "tms",
-            "description": "Detailed town plan of St Andrews 1854, courtesy of National Library of Scotland.",
-            "template": "http://geo.nls.uk/maps/towns/standrews1854/{zoom}/{x}/{-y}.png",
-            "scaleExtent": [
-                13,
-                20
-            ],
-            "polygon": [
-                [
+                        -7.3719817,
+                        56.8075885
+                    ],
                     [
-                        -2.81342686,
-                        56.32097352
+                        -7.5202972,
+                        56.8075885
                     ],
                     [
-                        -2.81405804,
-                        56.3506222
+                        -7.5202972,
+                        56.7142479
                     ],
                     [
-                        -2.77243712,
-                        56.35088865
+                        -7.8306806,
+                        56.7142479
                     ],
                     [
-                        -2.77183819,
-                        56.32123967
-                    ]
-                ]
-            ],
-            "terms_url": "http://maps.nls.uk/townplans/st-andrews_1.html",
-            "terms_text": "National Library of Scotland - St Andrews 1854"
-        },
-        {
-            "name": "OS Town Plans, St Andrews 1893 (NLS)",
-            "type": "tms",
-            "description": "Detailed town plan of St Andrews 1893, courtesy of National Library of Scotland.",
-            "template": "http://geo.nls.uk/maps/towns/standrews1893/{zoom}/{x}/{-y}.png",
-            "scaleExtent": [
-                13,
-                20
-            ],
-            "polygon": [
-                [
+                        -7.8306806,
+                        56.8994605
+                    ],
                     [
-                        -2.81545583,
-                        56.31861733
+                        -7.6494061,
+                        56.8994605
                     ],
                     [
-                        -2.81609919,
-                        56.3487653
+                        -7.6494061,
+                        57.4739617
                     ],
                     [
-                        -2.77387785,
-                        56.34903619
+                        -7.8306806,
+                        57.4739617
                     ],
                     [
-                        -2.77326775,
-                        56.31888792
-                    ]
-                ]
-            ],
-            "terms_url": "http://maps.nls.uk/townplans/st-andrews_2.html",
-            "terms_text": "National Library of Scotland - St Andrews 1893"
-        },
-        {
-            "name": "OS Town Plans, Stirling 1858 (NLS)",
-            "type": "tms",
-            "description": "Detailed town plan of Stirling 1858, courtesy of National Library of Scotland.",
-            "template": "http://geo.nls.uk/maps/towns/stirling/{zoom}/{x}/{-y}.png",
-            "scaleExtent": [
-                13,
-                20
-            ],
-            "polygon": [
-                [
+                        -7.8306806,
+                        57.7915584
+                    ],
                     [
-                        -3.95768489,
-                        56.10754239
+                        -7.4736249,
+                        57.7915584
                     ],
                     [
-                        -3.95882978,
-                        56.13007142
+                        -7.4736249,
+                        58.086063
                     ],
                     [
-                        -3.92711024,
-                        56.13057046
+                        -7.1879804,
+                        58.086063
                     ],
                     [
-                        -3.92598386,
-                        56.10804101
-                    ]
-                ]
-            ],
-            "terms_url": "http://maps.nls.uk/townplans/stirling.html",
-            "terms_text": "National Library of Scotland - Stirling 1858"
-        },
-        {
-            "name": "OS Town Plans, Stonehaven 1864 (NLS)",
-            "type": "tms",
-            "description": "Detailed town plan of Stonehaven 1864, courtesy of National Library of Scotland.",
-            "template": "http://geo.nls.uk/maps/towns/stonehaven/{zoom}/{x}/{-y}.png",
-            "scaleExtent": [
-                13,
-                20
-            ],
-            "polygon": [
-                [
+                        -7.1879804,
+                        58.367197
+                    ],
                     [
-                        -2.220167,
-                        56.9565098
+                        -6.8034589,
+                        58.367197
                     ],
                     [
-                        -2.2202543,
-                        56.97129283
+                        -6.8034589,
+                        58.4155786
                     ],
                     [
-                        -2.19924399,
-                        56.9713281
+                        -6.638664,
+                        58.4155786
                     ],
                     [
-                        -2.19916501,
-                        56.95654504
-                    ]
-                ]
-            ],
-            "terms_url": "http://maps.nls.uk/townplans/stonehaven.html",
-            "terms_text": "National Library of Scotland - Stonehaven 1864"
-        },
-        {
-            "name": "OS Town Plans, Stranraer 1847 (NLS)",
-            "type": "tms",
-            "description": "Detailed town plan of Stranraer 1847, courtesy of National Library of Scotland.",
-            "template": "http://geo.nls.uk/maps/towns/stranraer1847/{zoom}/{x}/{-y}.png",
-            "scaleExtent": [
-                13,
-                20
-            ],
-            "polygon": [
-                [
+                        -6.638664,
+                        58.4673277
+                    ],
                     [
-                        -5.04859743,
-                        54.8822997
+                        -6.5178143,
+                        58.4673277
                     ],
                     [
-                        -5.0508954,
-                        54.91268061
+                        -6.5178143,
+                        58.5625632
                     ],
                     [
-                        -5.0095373,
-                        54.91371278
+                        -6.0536224,
+                        58.5625632
                     ],
                     [
-                        -5.00727037,
-                        54.88333071
-                    ]
-                ]
-            ],
-            "terms_url": "http://maps.nls.uk/townplans/stranraer_1.html",
-            "terms_text": "National Library of Scotland - Stranraer 1847"
-        },
-        {
-            "name": "OS Town Plans, Stranraer 1863-1877 (NLS)",
-            "type": "tms",
-            "description": "Detailed town plan of Stranraer 1863-1877, courtesy of National Library of Scotland.",
-            "template": "http://geo.nls.uk/maps/towns/stranraer1867/{zoom}/{x}/{-y}.png",
-            "scaleExtent": [
-                13,
-                20
-            ],
-            "polygon": [
-                [
+                        -6.0536224,
+                        58.1568843
+                    ],
                     [
-                        -5.04877289,
-                        54.88228699
+                        -6.1470062,
+                        58.1568843
                     ],
                     [
-                        -5.05107324,
-                        54.9126976
+                        -6.1470062,
+                        58.1105865
                     ],
                     [
-                        -5.00947337,
-                        54.91373582
+                        -6.2799798,
+                        58.1105865
                     ],
                     [
-                        -5.00720427,
-                        54.88332405
-                    ]
-                ]
-            ],
-            "terms_url": "http://maps.nls.uk/townplans/stranraer_1a.html",
-            "terms_text": "National Library of Scotland - Stranraer 1863-1877"
-        },
-        {
-            "name": "OS Town Plans, Stranraer 1893 (NLS)",
-            "type": "tms",
-            "description": "Detailed town plan of Stranraer 1893, courtesy of National Library of Scotland.",
-            "template": "http://geo.nls.uk/maps/towns/stranraer1893/{zoom}/{x}/{-y}.png",
-            "scaleExtent": [
-                13,
-                20
-            ],
-            "polygon": [
-                [
+                        -6.2799798,
+                        57.7122664
+                    ],
                     [
-                        -5.04418424,
-                        54.89773858
+                        -6.1591302,
+                        57.7122664
                     ],
                     [
-                        -5.04511026,
-                        54.90999885
+                        -6.1591302,
+                        57.6667563
                     ],
                     [
-                        -5.0140499,
-                        54.91077389
+                        -5.9339104,
+                        57.6667563
                     ],
                     [
-                        -5.0131333,
-                        54.89851327
-                    ]
-                ]
-            ],
-            "terms_url": "http://maps.nls.uk/townplans/stranraer_2.html",
-            "terms_text": "National Library of Scotland - Stranraer 1893"
-        },
-        {
-            "name": "OS Town Plans, Strathaven 1858 (NLS)",
-            "type": "tms",
-            "description": "Detailed town plan of Strathaven 1858, courtesy of National Library of Scotland.",
-            "template": "http://geo.nls.uk/maps/towns/strathaven/{zoom}/{x}/{-y}.png",
-            "scaleExtent": [
-                13,
-                20
-            ],
-            "polygon": [
-                [
+                        -5.9339104,
+                        57.8892524
+                    ],
                     [
-                        -4.06914872,
-                        55.67242091
+                        -5.80643,
+                        57.8892524
                     ],
                     [
-                        -4.06954357,
-                        55.67989707
+                        -5.80643,
+                        57.9621767
                     ],
                     [
-                        -4.05917487,
-                        55.6800715
+                        -5.6141692,
+                        57.9621767
                     ],
                     [
-                        -4.05878199,
-                        55.67259529
-                    ]
-                ]
-            ],
-            "terms_url": "http://maps.nls.uk/townplans/strathaven.html",
-            "terms_text": "National Library of Scotland - Strathaven 1858"
-        },
-        {
-            "name": "OS Town Plans, Wick 1872 (NLS)",
-            "type": "tms",
-            "description": "Detailed town plan of Wick 1872, courtesy of National Library of Scotland.",
-            "template": "http://geo.nls.uk/maps/towns/wick/{zoom}/{x}/{-y}.png",
-            "scaleExtent": [
-                13,
-                20
-            ],
-            "polygon": [
-                [
-                    [
-                        -3.11470001,
-                        58.41344839
-                    ],
-                    [
-                        -3.11588837,
-                        58.45101446
+                        -5.6141692,
+                        58.0911236
                     ],
                     [
-                        -3.05949843,
-                        58.45149284
+                        -5.490819,
+                        58.0911236
                     ],
                     [
-                        -3.05837008,
-                        58.41392606
-                    ]
-                ]
-            ],
-            "terms_url": "http://maps.nls.uk/townplans/wick.html",
-            "terms_text": "National Library of Scotland - Wick 1872"
-        },
-        {
-            "name": "OS Town Plans, Wigtown 1848 (NLS)",
-            "type": "tms",
-            "description": "Detailed town plan of Wigtown 1848, courtesy of National Library of Scotland.",
-            "template": "http://geo.nls.uk/maps/towns/wigtown1848/{zoom}/{x}/{-y}.png",
-            "scaleExtent": [
-                13,
-                20
-            ],
-            "polygon": [
-                [
-                    [
-                        -4.45235587,
-                        54.8572296
+                        -5.490819,
+                        58.3733281
                     ],
                     [
-                        -4.45327284,
-                        54.87232603
+                        -5.3199118,
+                        58.3733281
                     ],
                     [
-                        -4.43254469,
-                        54.87274317
+                        -5.3199118,
+                        58.75015
                     ],
                     [
-                        -4.43163545,
-                        54.85764651
-                    ]
-                ]
-            ],
-            "terms_url": "http://maps.nls.uk/townplans/wigtown_1.html",
-            "terms_text": "National Library of Scotland - Wigtown 1848"
-        },
-        {
-            "name": "OS Town Plans, Wigtown 1894 (NLS)",
-            "type": "tms",
-            "description": "Detailed town plan of Wigtown 1894, courtesy of National Library of Scotland.",
-            "template": "http://geo.nls.uk/maps/towns/wigtown1894/{zoom}/{x}/{-y}.png",
-            "scaleExtent": [
-                13,
-                20
-            ],
-            "polygon": [
-                [
-                    [
-                        -4.45233361,
-                        54.85721131
+                        -3.5719977,
+                        58.75015
                     ],
                     [
-                        -4.45325423,
-                        54.87236807
+                        -3.5719977,
+                        59.2091788
                     ],
                     [
-                        -4.43257837,
-                        54.87278416
+                        -3.1944501,
+                        59.2091788
                     ],
                     [
-                        -4.43166549,
-                        54.85762716
-                    ]
-                ]
-            ],
-            "terms_url": "http://maps.nls.uk/townplans/wigtown_2.html",
-            "terms_text": "National Library of Scotland - Wigtown 1894"
-        },
-        {
-            "name": "OpenPT Map (overlay)",
-            "type": "tms",
-            "template": "http://openptmap.de/tiles/{zoom}/{x}/{y}.png",
-            "scaleExtent": [
-                5,
-                16
-            ],
-            "polygon": [
-                [
-                    [
-                        6.4901072,
-                        53.665658
+                        -3.1944501,
+                        59.4759216
                     ],
                     [
-                        8.5665347,
-                        53.9848257
+                        -2.243583,
+                        59.4759216
                     ],
                     [
-                        8.1339457,
-                        54.709715
+                        -2.243583,
+                        59.1388749
                     ],
                     [
-                        8.317796,
-                        55.0952362
+                        -2.4611012,
+                        59.1388749
                     ],
                     [
-                        10.1887438,
-                        54.7783834
+                        -2.4611012,
+                        58.8185938
                     ],
                     [
-                        10.6321475,
-                        54.4778841
+                        -2.7407675,
+                        58.8185938
                     ],
                     [
-                        11.2702164,
-                        54.6221504
+                        -2.7407675,
+                        58.5804743
                     ],
                     [
-                        11.681176,
-                        54.3709243
+                        -2.9116746,
+                        58.5804743
                     ],
                     [
-                        12.0272473,
-                        54.3898199
+                        -2.9116746,
+                        58.1157523
                     ],
                     [
-                        13.3250145,
-                        54.8531617
+                        -3.4865441,
+                        58.1157523
                     ],
                     [
-                        13.9198245,
-                        54.6972173
+                        -3.4865441,
+                        57.740386
                     ],
                     [
-                        14.2118221,
-                        54.1308273
+                        -1.7153245,
+                        57.740386
                     ],
                     [
-                        14.493005,
-                        53.2665063
+                        -1.7153245,
+                        57.2225558
                     ],
                     [
-                        14.1577485,
-                        52.8766495
+                        -1.9794538,
+                        57.2225558
                     ],
                     [
-                        14.7525584,
-                        52.5819369
+                        -1.9794538,
+                        56.8760742
                     ],
                     [
-                        15.0986297,
-                        51.0171541
+                        -2.1658979,
+                        56.8760742
                     ],
                     [
-                        14.9364088,
-                        50.8399279
+                        -2.1658979,
+                        56.6333186
                     ],
                     [
-                        14.730929,
-                        50.7920977
+                        -2.3601106,
+                        56.6333186
                     ],
                     [
-                        14.4389313,
-                        50.8808862
+                        -2.3601106,
+                        56.0477521
                     ],
                     [
-                        12.9573138,
-                        50.3939044
+                        -1.9794538,
+                        56.0477521
                     ],
                     [
-                        12.51391,
-                        50.3939044
+                        -1.9794538,
+                        55.8650949
                     ],
                     [
-                        12.3084302,
-                        50.1173237
+                        -1.4745008,
+                        55.8650949
                     ],
                     [
-                        12.6112425,
-                        49.9088337
+                        -1.4745008,
+                        55.2499926
                     ],
                     [
-                        12.394948,
-                        49.7344006
+                        -1.3221997,
+                        55.2499926
                     ],
                     [
-                        12.7734634,
-                        49.4047626
+                        -1.3221997,
+                        54.8221737
                     ],
                     [
-                        14.1469337,
-                        48.6031036
+                        -1.0550014,
+                        54.8221737
                     ],
                     [
-                        14.6768553,
-                        48.6531391
+                        -1.0550014,
+                        54.6746628
                     ],
                     [
-                        15.0661855,
-                        49.0445497
+                        -0.6618765,
+                        54.6746628
                     ],
                     [
-                        16.2666202,
-                        48.7459305
+                        -0.6618765,
+                        54.5527463
                     ],
                     [
-                        16.4937294,
-                        48.8741286
+                        -0.3247617,
+                        54.5527463
                     ],
                     [
-                        16.904689,
-                        48.7173975
+                        -0.3247617,
+                        54.2865195
                     ],
                     [
-                        16.9371332,
-                        48.5315383
+                        0.0092841,
+                        54.2865195
                     ],
                     [
-                        16.8384693,
-                        48.3823161
+                        0.0092841,
+                        53.7938518
                     ],
                     [
-                        17.2017097,
-                        48.010204
+                        0.2081962,
+                        53.7938518
                     ],
                     [
-                        17.1214145,
-                        47.6997605
+                        0.2081962,
+                        53.5217726
                     ],
                     [
-                        16.777292,
-                        47.6585709
+                        0.4163548,
+                        53.5217726
                     ],
                     [
-                        16.6090543,
-                        47.7460598
+                        0.4163548,
+                        53.0298851
                     ],
                     [
-                        16.410228,
-                        47.6637214
+                        1.4273388,
+                        53.0298851
                     ],
                     [
-                        16.7352326,
-                        47.6147714
+                        1.4273388,
+                        52.92021
                     ],
                     [
-                        16.5555242,
-                        47.3589738
+                        1.8333912,
+                        52.92021
                     ],
                     [
-                        16.4790525,
-                        46.9768539
+                        1.8333912,
+                        52.042488
                     ],
                     [
-                        16.0355168,
-                        46.8096295
+                        1.5235504,
+                        52.042488
                     ],
                     [
-                        16.0508112,
-                        46.6366332
+                        1.5235504,
+                        51.8261335
                     ],
                     [
-                        14.9572663,
-                        46.6313822
+                        1.2697049,
+                        51.8261335
                     ],
                     [
-                        14.574908,
-                        46.3892866
+                        1.2697049,
+                        51.6967453
                     ],
                     [
-                        12.3954655,
-                        46.6891149
+                        1.116651,
+                        51.6967453
                     ],
                     [
-                        12.1507562,
-                        47.0550608
+                        1.116651,
+                        51.440346
                     ],
                     [
-                        11.1183887,
-                        46.9142058
+                        1.5235504,
+                        51.440346
                     ],
                     [
-                        11.0342699,
-                        46.7729797
+                        1.5235504,
+                        51.3331831
                     ],
                     [
-                        10.4836739,
-                        46.8462544
+                        1.4507565,
+                        51.3331831
                     ],
                     [
-                        10.4607324,
-                        46.5472973
+                        1.4507565,
+                        51.0207553
                     ],
                     [
-                        10.1013156,
-                        46.5735879
+                        1.0699883,
+                        51.0207553
                     ],
                     [
-                        10.2007287,
-                        46.1831867
+                        1.0699883,
+                        50.9008416
                     ],
                     [
-                        9.8948421,
-                        46.3629068
+                        0.7788126,
+                        50.9008416
                     ],
                     [
-                        9.5966026,
-                        46.2889758
+                        0.7788126,
+                        50.729843
                     ],
                     [
-                        9.2983631,
-                        46.505206
+                        -0.7255952,
+                        50.729843
                     ],
                     [
-                        9.2830687,
-                        46.2572605
+                        -0.7255952,
+                        50.7038437
                     ],
                     [
-                        9.0536537,
-                        45.7953255
+                        -1.0074383,
+                        50.7038437
                     ],
                     [
-                        8.4265861,
-                        46.2466846
+                        -1.0074383,
+                        50.5736307
                     ],
                     [
-                        8.4418804,
-                        46.4736161
+                        -2.3625252,
+                        50.5736307
                     ],
                     [
-                        7.8759901,
-                        45.9284607
+                        -2.3625252,
+                        50.4846421
                     ],
                     [
-                        7.0959791,
-                        45.8645956
+                        -2.4987805,
+                        50.4846421
                     ],
                     [
-                        6.7747981,
-                        46.1620044
+                        -2.4987805,
+                        50.5736307
                     ],
                     [
-                        6.8206811,
-                        46.4051083
+                        -3.4096378,
+                        50.5736307
                     ],
                     [
-                        6.5453831,
-                        46.4578142
+                        -3.4096378,
+                        50.2057837
                     ],
                     [
-                        6.3312624,
-                        46.3840116
+                        -3.6922446,
+                        50.2057837
                     ],
                     [
-                        6.3847926,
-                        46.2466846
+                        -3.6922446,
+                        50.1347737
                     ],
                     [
-                        5.8953739,
-                        46.0878021
+                        -5.005468,
+                        50.1347737
                     ],
                     [
-                        6.1171418,
-                        46.3681838
+                        -5.005468,
+                        49.9474456
                     ],
                     [
-                        6.0942003,
-                        46.5998657
+                        -5.2839506,
+                        49.9474456
                     ],
                     [
-                        6.4383228,
-                        46.7782169
-                    ],
+                        -5.2839506,
+                        50.0229734
+                    ]
+                ],
+                [
                     [
-                        6.4306756,
-                        46.9298747
+                        -6.4580707,
+                        49.8673563
                     ],
                     [
-                        7.0806847,
-                        47.3460216
+                        -6.4580707,
+                        49.9499935
                     ],
                     [
-                        6.8436226,
-                        47.3719227
+                        -6.3978807,
+                        49.9499935
                     ],
                     [
-                        6.9965659,
-                        47.5012373
+                        -6.3978807,
+                        50.0053797
                     ],
                     [
-                        7.1800979,
-                        47.5064033
+                        -6.1799606,
+                        50.0053797
                     ],
                     [
-                        7.2336281,
-                        47.439206
+                        -6.1799606,
+                        49.9168614
                     ],
                     [
-                        7.4553959,
-                        47.4805683
+                        -6.2540201,
+                        49.9168614
                     ],
                     [
-                        7.7842241,
-                        48.645735
-                    ],
+                        -6.2540201,
+                        49.8673563
+                    ]
+                ],
+                [
                     [
-                        8.1971711,
-                        49.0282701
+                        -5.8343165,
+                        49.932156
                     ],
                     [
-                        7.6006921,
-                        49.0382974
+                        -5.8343165,
+                        49.9754641
                     ],
                     [
-                        7.4477487,
-                        49.1634679
+                        -5.7683254,
+                        49.9754641
                     ],
                     [
-                        7.2030394,
-                        49.1034255
-                    ],
+                        -5.7683254,
+                        49.932156
+                    ]
+                ],
+                [
                     [
-                        6.6677378,
-                        49.1634679
+                        -1.9483797,
+                        60.6885737
                     ],
                     [
-                        6.6371491,
-                        49.3331933
+                        -1.9483797,
+                        60.3058841
                     ],
                     [
-                        6.3542039,
-                        49.4576194
+                        -1.7543149,
+                        60.3058841
                     ],
                     [
-                        6.5453831,
-                        49.8043366
+                        -1.7543149,
+                        60.1284428
                     ],
                     [
-                        6.2471436,
-                        49.873384
+                        -1.5754914,
+                        60.1284428
                     ],
                     [
-                        6.0789059,
-                        50.1534883
+                        -1.5754914,
+                        59.797917
                     ],
                     [
-                        6.3618511,
-                        50.3685934
+                        -1.0316959,
+                        59.797917
                     ],
                     [
-                        6.0865531,
-                        50.7039632
+                        -1.0316959,
+                        60.0354518
                     ],
                     [
-                        5.8800796,
-                        51.0513752
+                        -0.6626918,
+                        60.0354518
                     ],
                     [
-                        6.1247889,
-                        51.1618085
+                        -0.6626918,
+                        60.9103862
                     ],
                     [
-                        6.1936134,
-                        51.491527
+                        -1.1034395,
+                        60.9103862
                     ],
                     [
-                        5.9641984,
-                        51.7526501
+                        -1.1034395,
+                        60.8040022
                     ],
                     [
-                        6.0253758,
-                        51.8897286
+                        -1.3506319,
+                        60.8040022
                     ],
                     [
-                        6.4536171,
-                        51.8661241
-                    ],
+                        -1.3506319,
+                        60.6885737
+                    ]
+                ],
+                [
                     [
-                        6.8436226,
-                        51.9557552
+                        -2.203381,
+                        60.1968568
                     ],
                     [
-                        6.6906793,
-                        52.0499105
+                        -2.203381,
+                        60.0929443
                     ],
                     [
-                        7.0042131,
-                        52.2282603
+                        -1.9864011,
+                        60.0929443
                     ],
                     [
-                        7.0195074,
-                        52.4525245
-                    ],
+                        -1.9864011,
+                        60.1968568
+                    ]
+                ],
+                [
                     [
-                        6.6983264,
-                        52.4665032
+                        -1.7543149,
+                        59.5698289
                     ],
                     [
-                        6.6906793,
-                        52.6524628
+                        -1.7543149,
+                        59.4639383
                     ],
                     [
-                        7.0348017,
-                        52.6385432
+                        -1.5373349,
+                        59.4639383
                     ],
                     [
-                        7.0730376,
-                        52.8330151
+                        -1.5373349,
+                        59.5698289
+                    ]
+                ],
+                [
+                    [
+                        -4.5585981,
+                        59.1370518
                     ],
                     [
-                        7.2183337,
-                        52.9852064
+                        -4.5585981,
+                        58.9569099
                     ],
                     [
-                        7.1953922,
-                        53.3428087
+                        -4.2867004,
+                        58.9569099
                     ],
                     [
-                        7.0042131,
-                        53.3291098
+                        -4.2867004,
+                        59.1370518
                     ]
-                ]
-            ],
-            "terms_url": "http://openstreetmap.org/",
-            "terms_text": "© OpenStreetMap contributors, CC-BY-SA"
-        },
-        {
-            "name": "OpenStreetMap (Mapnik)",
-            "type": "tms",
-            "description": "The default OpenStreetMap layer.",
-            "template": "http://tile.openstreetmap.org/{zoom}/{x}/{y}.png",
-            "scaleExtent": [
-                0,
-                19
-            ],
-            "terms_url": "http://openstreetmap.org/",
-            "terms_text": "© OpenStreetMap contributors, CC-BY-SA",
-            "id": "MAPNIK",
-            "default": true
-        },
-        {
-            "name": "OpenStreetMap GPS traces",
-            "type": "tms",
-            "description": "Public GPS traces uploaded to OpenStreetMap.",
-            "template": "http://{switch:a,b,c}.gps-tile.openstreetmap.org/lines/{zoom}/{x}/{y}.png",
-            "scaleExtent": [
-                0,
-                20
-            ],
-            "terms_url": "http://www.openstreetmap.org/copyright",
-            "terms_text": "© OpenStreetMap contributors",
-            "terms_html": "© <a href='http://www.openstreetmap.org/copyright'>OpenStreetMap contributors</a>. North: <span style='display: inline-block; width: 10px; height: 10px; background-color: #7fed11;'></span> South: <span style='display: inline-block; width: 10px; height: 10px; background-color: #7f11ed;'></span> East: <span style='display: inline-block; width: 10px; height: 10px; background-color: #ff3f3f;'></span> West: <span style='display: inline-block; width: 10px; height: 10px; background-color: #00bfbf;'></span>",
-            "overlay": true
-        },
-        {
-            "name": "Pangasinán/Bulacan (Phillipines HiRes)",
-            "type": "tms",
-            "template": "http://gravitystorm.dev.openstreetmap.org/imagery/philippines/{zoom}/{x}/{y}.png",
-            "scaleExtent": [
-                12,
-                19
-            ],
-            "polygon": [
+                ],
                 [
                     [
-                        120.336593,
-                        15.985768
+                        -6.2787732,
+                        59.2025744
                     ],
                     [
-                        120.445995,
-                        15.984
+                        -6.2787732,
+                        59.0227769
                     ],
                     [
-                        120.446134,
-                        15.974459
+                        -5.6650612,
+                        59.0227769
                     ],
                     [
-                        120.476464,
-                        15.974592
+                        -5.6650612,
+                        59.2025744
+                    ]
+                ],
+                [
+                    [
+                        -8.7163482,
+                        57.9440556
                     ],
                     [
-                        120.594247,
-                        15.946832
+                        -8.7163482,
+                        57.7305936
                     ],
                     [
-                        120.598064,
-                        16.090795
+                        -8.3592926,
+                        57.7305936
                     ],
                     [
-                        120.596537,
-                        16.197999
+                        -8.3592926,
+                        57.9440556
+                    ]
+                ],
+                [
+                    [
+                        -7.6077005,
+                        50.4021026
                     ],
                     [
-                        120.368537,
-                        16.218527
+                        -7.6077005,
+                        50.2688657
                     ],
                     [
-                        120.347576,
-                        16.042308
+                        -7.3907205,
+                        50.2688657
                     ],
                     [
-                        120.336593,
-                        15.985768
+                        -7.3907205,
+                        50.4021026
                     ]
                 ],
                 [
                     [
-                        120.8268,
-                        15.3658
+                        -7.7304303,
+                        58.3579902
                     ],
                     [
-                        121.2684,
-                        15.2602
+                        -7.7304303,
+                        58.248313
                     ],
                     [
-                        121.2699,
-                        14.7025
+                        -7.5134503,
+                        58.248313
                     ],
                     [
-                        120.695,
-                        14.8423
+                        -7.5134503,
+                        58.3579902
                     ]
                 ]
             ]
         },
         {
-            "name": "Slovakia EEA CORINE 2006",
+            "name": "OS Scottish Popular historic",
             "type": "tms",
-            "template": "http://www.freemap.sk/tms/clc/{zoom}/{x}/{y}.png",
+            "template": "http://ooc.openstreetmap.org/npescotland/tiles/{zoom}/{x}/{y}.jpg",
+            "scaleExtent": [
+                6,
+                15
+            ],
             "polygon": [
                 [
                     [
-                        19.83682,
-                        49.25529
-                    ],
-                    [
-                        19.80075,
-                        49.42385
-                    ],
-                    [
-                        19.60437,
-                        49.48058
-                    ],
-                    [
-                        19.49179,
-                        49.63961
-                    ],
-                    [
-                        19.21831,
-                        49.52604
-                    ],
-                    [
-                        19.16778,
-                        49.42521
-                    ],
-                    [
-                        19.00308,
-                        49.42236
-                    ],
-                    [
-                        18.97611,
-                        49.5308
-                    ],
-                    [
-                        18.54685,
-                        49.51425
-                    ],
-                    [
-                        18.31432,
-                        49.33818
-                    ],
-                    [
-                        18.15913,
-                        49.2961
-                    ],
-                    [
-                        18.05564,
-                        49.11134
-                    ],
-                    [
-                        17.56396,
-                        48.84938
-                    ],
-                    [
-                        17.17929,
-                        48.88816
+                        -7.8,
+                        54.5
                     ],
                     [
-                        17.058,
-                        48.81105
+                        -7.8,
+                        61.1
                     ],
                     [
-                        16.90426,
-                        48.61947
+                        -1.1,
+                        61.1
                     ],
                     [
-                        16.79685,
-                        48.38561
+                        -1.1,
+                        54.5
                     ],
                     [
-                        17.06762,
-                        48.01116
-                    ],
+                        -7.8,
+                        54.5
+                    ]
+                ]
+            ]
+        },
+        {
+            "name": "OS Town Plans, Aberdeen 1866-1867 (NLS)",
+            "type": "tms",
+            "description": "Detailed town plan of Aberdeen 1866-1867, courtesy of National Library of Scotland.",
+            "template": "http://geo.nls.uk/maps/towns/aberdeen/{zoom}/{x}/{-y}.png",
+            "scaleExtent": [
+                13,
+                20
+            ],
+            "polygon": [
+                [
                     [
-                        17.32787,
-                        47.97749
+                        -2.14039404,
+                        57.11218789
                     ],
                     [
-                        17.51699,
-                        47.82535
+                        -2.14064752,
+                        57.17894161
                     ],
                     [
-                        17.74776,
-                        47.73093
+                        -2.04501987,
+                        57.17901252
                     ],
                     [
-                        18.29515,
-                        47.72075
-                    ],
+                        -2.04493842,
+                        57.11225862
+                    ]
+                ]
+            ],
+            "terms_url": "http://maps.nls.uk/townplans/aberdeen.html",
+            "terms_text": "National Library of Scotland - Aberdeen 1866-1867"
+        },
+        {
+            "name": "OS Town Plans, Airdrie 1858 (NLS)",
+            "type": "tms",
+            "description": "Detailed town plan of Airdrie 1858, courtesy of National Library of Scotland.",
+            "template": "http://geo.nls.uk/maps/towns/airdrie/{zoom}/{x}/{-y}.png",
+            "scaleExtent": [
+                13,
+                20
+            ],
+            "polygon": [
+                [
                     [
-                        18.67959,
-                        47.75541
+                        -3.99291738,
+                        55.86408041
                     ],
                     [
-                        18.89755,
-                        47.81203
+                        -3.99338933,
+                        55.87329115
                     ],
                     [
-                        18.79463,
-                        47.88245
+                        -3.9691085,
+                        55.87368212
                     ],
                     [
-                        18.84318,
-                        48.04046
-                    ],
+                        -3.9686423,
+                        55.86447124
+                    ]
+                ]
+            ],
+            "terms_url": "http://maps.nls.uk/townplans/airdrie.html",
+            "terms_text": "National Library of Scotland - Airdrie 1858"
+        },
+        {
+            "name": "OS Town Plans, Alexandria 1859 (NLS)",
+            "type": "tms",
+            "description": "Detailed town plan of Alexandria 1859, courtesy of National Library of Scotland.",
+            "template": "http://geo.nls.uk/maps/towns/alexandria/{zoom}/{x}/{-y}.png",
+            "scaleExtent": [
+                13,
+                20
+            ],
+            "polygon": [
+                [
                     [
-                        19.46212,
-                        48.05333
+                        -4.58973571,
+                        55.97536707
                     ],
                     [
-                        19.62064,
-                        48.22938
+                        -4.59104461,
+                        55.99493153
                     ],
                     [
-                        19.89585,
-                        48.09387
+                        -4.55985072,
+                        55.99558348
                     ],
                     [
-                        20.33766,
-                        48.2643
-                    ],
+                        -4.55855754,
+                        55.97601855
+                    ]
+                ]
+            ],
+            "terms_url": "http://maps.nls.uk/townplans/alexandria.html",
+            "terms_text": "National Library of Scotland - Alexandria 1859"
+        },
+        {
+            "name": "OS Town Plans, Alloa 1861-1862 (NLS)",
+            "type": "tms",
+            "description": "Detailed town plan of Alloa 1861-1862, courtesy of National Library of Scotland.",
+            "template": "http://geo.nls.uk/maps/towns/alloa/{zoom}/{x}/{-y}.png",
+            "scaleExtent": [
+                13,
+                20
+            ],
+            "polygon": [
+                [
                     [
-                        20.55395,
-                        48.52358
+                        -3.81166061,
+                        56.09864363
                     ],
                     [
-                        20.82335,
-                        48.55714
+                        -3.81274448,
+                        56.12169929
                     ],
                     [
-                        21.10271,
-                        48.47096
+                        -3.7804609,
+                        56.12216898
                     ],
                     [
-                        21.45863,
-                        48.55513
-                    ],
+                        -3.77939631,
+                        56.09911292
+                    ]
+                ]
+            ],
+            "terms_url": "http://maps.nls.uk/townplans/alloa.html",
+            "terms_text": "National Library of Scotland - Alloa 1861-1862"
+        },
+        {
+            "name": "OS Town Plans, Annan 1859 (NLS)",
+            "type": "tms",
+            "description": "Detailed town plan of Annan 1859, courtesy of National Library of Scotland.",
+            "template": "http://geo.nls.uk/maps/towns/annan/{zoom}/{x}/{-y}.png",
+            "scaleExtent": [
+                13,
+                20
+            ],
+            "polygon": [
+                [
                     [
-                        21.74536,
-                        48.31435
+                        -3.27921439,
+                        54.98252155
                     ],
                     [
-                        22.15293,
-                        48.37179
+                        -3.27960062,
+                        54.9946601
                     ],
                     [
-                        22.61255,
-                        49.08914
+                        -3.24866331,
+                        54.99498165
                     ],
                     [
-                        22.09997,
-                        49.23814
-                    ],
+                        -3.24828642,
+                        54.98284297
+                    ]
+                ]
+            ],
+            "terms_url": "http://maps.nls.uk/townplans/annan.html",
+            "terms_text": "National Library of Scotland - Annan 1859"
+        },
+        {
+            "name": "OS Town Plans, Arbroath 1858 (NLS)",
+            "type": "tms",
+            "description": "Detailed town plan of Arbroath 1858, courtesy of National Library of Scotland.",
+            "template": "http://geo.nls.uk/maps/towns/arbroath/{zoom}/{x}/{-y}.png",
+            "scaleExtent": [
+                13,
+                20
+            ],
+            "polygon": [
+                [
                     [
-                        21.9686,
-                        49.36363
+                        -2.60716469,
+                        56.53995105
                     ],
                     [
-                        21.6244,
-                        49.46989
+                        -2.60764981,
+                        56.57022426
                     ],
                     [
-                        21.06873,
-                        49.46402
+                        -2.56498708,
+                        56.57042549
                     ],
                     [
-                        20.94336,
-                        49.31088
-                    ],
+                        -2.564536,
+                        56.54015206
+                    ]
+                ]
+            ],
+            "terms_url": "http://maps.nls.uk/townplans/arbroath.html",
+            "terms_text": "National Library of Scotland - Arbroath 1858"
+        },
+        {
+            "name": "OS Town Plans, Ayr 1855 (NLS)",
+            "type": "tms",
+            "description": "Detailed town plan of Ayr 1855, courtesy of National Library of Scotland.",
+            "template": "http://geo.nls.uk/maps/towns/ayr/{zoom}/{x}/{-y}.png",
+            "scaleExtent": [
+                13,
+                20
+            ],
+            "polygon": [
+                [
                     [
-                        20.73052,
-                        49.44006
+                        -4.66768105,
+                        55.43748864
                     ],
                     [
-                        20.22804,
-                        49.41714
+                        -4.67080057,
+                        55.48363961
                     ],
                     [
-                        20.05234,
-                        49.23052
+                        -4.60609844,
+                        55.48503484
                     ],
                     [
-                        19.83682,
-                        49.25529
+                        -4.60305426,
+                        55.43888149
                     ]
                 ]
             ],
-            "terms_url": "http://www.eea.europa.eu/data-and-maps/data/clc-2006-vector-data-version-1",
-            "terms_text": "EEA Corine 2006"
+            "terms_url": "http://maps.nls.uk/townplans/ayr.html",
+            "terms_text": "National Library of Scotland - Ayr 1855"
         },
         {
-            "name": "Slovakia EEA GMES Urban Atlas",
+            "name": "OS Town Plans, Berwick-upon-Tweed 1852 (NLS)",
             "type": "tms",
-            "template": "http://www.freemap.sk/tms/urbanatlas/{zoom}/{x}/{y}.png",
+            "description": "Detailed town plan of Berwick-upon-Tweed 1852, courtesy of National Library of Scotland.",
+            "template": "http://geo.nls.uk/maps/towns/berwick/{zoom}/{x}/{-y}.png",
+            "scaleExtent": [
+                13,
+                20
+            ],
             "polygon": [
                 [
                     [
-                        19.83682,
-                        49.25529
+                        -2.02117487,
+                        55.75577627
                     ],
                     [
-                        19.80075,
-                        49.42385
+                        -2.02118763,
+                        55.77904118
                     ],
                     [
-                        19.60437,
-                        49.48058
+                        -1.98976956,
+                        55.77904265
                     ],
                     [
-                        19.49179,
-                        49.63961
-                    ],
-                    [
-                        19.21831,
-                        49.52604
-                    ],
-                    [
-                        19.16778,
-                        49.42521
-                    ],
+                        -1.9897755,
+                        55.75577774
+                    ]
+                ]
+            ],
+            "terms_url": "http://maps.nls.uk/townplans/berwick.html",
+            "terms_text": "National Library of Scotland - Berwick-upon-Tweed 1852"
+        },
+        {
+            "name": "OS Town Plans, Brechin 1862 (NLS)",
+            "type": "tms",
+            "description": "Detailed town plan of Brechin 1862, courtesy of National Library of Scotland.",
+            "template": "http://geo.nls.uk/maps/towns/brechin/{zoom}/{x}/{-y}.png",
+            "scaleExtent": [
+                13,
+                20
+            ],
+            "polygon": [
+                [
                     [
-                        19.00308,
-                        49.42236
+                        -2.67480248,
+                        56.71456775
                     ],
                     [
-                        18.97611,
-                        49.5308
+                        -2.67521172,
+                        56.73739937
                     ],
                     [
-                        18.54685,
-                        49.51425
+                        -2.64319679,
+                        56.73756872
                     ],
                     [
-                        18.31432,
-                        49.33818
-                    ],
+                        -2.64280695,
+                        56.71473694
+                    ]
+                ]
+            ],
+            "terms_url": "http://maps.nls.uk/townplans/brechin.html",
+            "terms_text": "National Library of Scotland - Brechin 1862"
+        },
+        {
+            "name": "OS Town Plans, Burntisland 1894 (NLS)",
+            "type": "tms",
+            "description": "Detailed town plan of Burntisland 1894, courtesy of National Library of Scotland.",
+            "template": "http://geo.nls.uk/maps/towns/burntisland/{zoom}/{x}/{-y}.png",
+            "scaleExtent": [
+                13,
+                20
+            ],
+            "polygon": [
+                [
                     [
-                        18.15913,
-                        49.2961
+                        -3.24879624,
+                        56.04240046
                     ],
                     [
-                        18.05564,
-                        49.11134
+                        -3.2495182,
+                        56.06472996
                     ],
                     [
-                        17.56396,
-                        48.84938
+                        -3.21830572,
+                        56.06504207
                     ],
                     [
-                        17.17929,
-                        48.88816
-                    ],
+                        -3.21760179,
+                        56.0427123
+                    ]
+                ]
+            ],
+            "terms_url": "http://maps.nls.uk/townplans/burntisland.html",
+            "terms_text": "National Library of Scotland - Burntisland 1894"
+        },
+        {
+            "name": "OS Town Plans, Campbelton 1865 (NLS)",
+            "type": "tms",
+            "description": "Detailed town plan of Campbelton 1865, courtesy of National Library of Scotland.",
+            "template": "http://geo.nls.uk/maps/towns/campbeltown/{zoom}/{x}/{-y}.png",
+            "scaleExtent": [
+                13,
+                20
+            ],
+            "polygon": [
+                [
                     [
-                        17.058,
-                        48.81105
+                        -5.62345307,
+                        55.40255998
                     ],
                     [
-                        16.90426,
-                        48.61947
+                        -5.62631353,
+                        55.43375303
                     ],
                     [
-                        16.79685,
-                        48.38561
+                        -5.58276654,
+                        55.43503753
                     ],
                     [
-                        17.06762,
-                        48.01116
-                    ],
+                        -5.57994024,
+                        55.40384299
+                    ]
+                ]
+            ],
+            "terms_url": "http://maps.nls.uk/townplans/campbelton.html",
+            "terms_text": "National Library of Scotland - Campbelton 1865"
+        },
+        {
+            "name": "OS Town Plans, Coatbridge 1858 (NLS)",
+            "type": "tms",
+            "description": "Detailed town plan of Coatbridge 1858, courtesy of National Library of Scotland.",
+            "template": "http://geo.nls.uk/maps/towns/coatbridge/{zoom}/{x}/{-y}.png",
+            "scaleExtent": [
+                13,
+                20
+            ],
+            "polygon": [
+                [
                     [
-                        17.32787,
-                        47.97749
+                        -4.05035921,
+                        55.84648689
                     ],
                     [
-                        17.51699,
-                        47.82535
+                        -4.05157062,
+                        55.86947193
                     ],
                     [
-                        17.74776,
-                        47.73093
+                        -4.01953905,
+                        55.87000186
                     ],
                     [
-                        18.29515,
-                        47.72075
-                    ],
+                        -4.01834651,
+                        55.84701638
+                    ]
+                ]
+            ],
+            "terms_url": "http://maps.nls.uk/townplans/coatbridge.html",
+            "terms_text": "National Library of Scotland - Coatbridge 1858"
+        },
+        {
+            "name": "OS Town Plans, Cupar 1854 (NLS)",
+            "type": "tms",
+            "description": "Detailed town plan of Cupar 1854, courtesy of National Library of Scotland.",
+            "template": "http://geo.nls.uk/maps/towns/cupar1854/{zoom}/{x}/{-y}.png",
+            "scaleExtent": [
+                13,
+                20
+            ],
+            "polygon": [
+                [
                     [
-                        18.67959,
-                        47.75541
+                        -3.04765872,
+                        56.28653177
                     ],
                     [
-                        18.89755,
-                        47.81203
+                        -3.04890965,
+                        56.332192
                     ],
                     [
-                        18.79463,
-                        47.88245
+                        -2.98498515,
+                        56.33271677
                     ],
                     [
-                        18.84318,
-                        48.04046
-                    ],
+                        -2.98381041,
+                        56.28705563
+                    ]
+                ]
+            ],
+            "terms_url": "http://maps.nls.uk/townplans/cupar_1.html",
+            "terms_text": "National Library of Scotland - Cupar 1854"
+        },
+        {
+            "name": "OS Town Plans, Cupar 1893-1894 (NLS)",
+            "type": "tms",
+            "description": "Detailed town plan of Cupar 1893-1894, courtesy of National Library of Scotland.",
+            "template": "http://geo.nls.uk/maps/towns/cupar1893/{zoom}/{x}/{-y}.png",
+            "scaleExtent": [
+                13,
+                20
+            ],
+            "polygon": [
+                [
                     [
-                        19.46212,
-                        48.05333
+                        -3.0327697,
+                        56.30243657
                     ],
                     [
-                        19.62064,
-                        48.22938
+                        -3.03338443,
+                        56.32520139
                     ],
                     [
-                        19.89585,
-                        48.09387
+                        -3.00146629,
+                        56.32546356
                     ],
                     [
-                        20.33766,
-                        48.2643
-                    ],
+                        -3.00087054,
+                        56.30269852
+                    ]
+                ]
+            ],
+            "terms_url": "http://maps.nls.uk/townplans/cupar_2.html",
+            "terms_text": "National Library of Scotland - Cupar 1893-1894"
+        },
+        {
+            "name": "OS Town Plans, Dalkeith 1852 (NLS)",
+            "type": "tms",
+            "description": "Detailed town plan of Dalkeith 1852, courtesy of National Library of Scotland.",
+            "template": "http://geo.nls.uk/maps/towns/dalkeith1852/{zoom}/{x}/{-y}.png",
+            "scaleExtent": [
+                13,
+                20
+            ],
+            "polygon": [
+                [
                     [
-                        20.55395,
-                        48.52358
+                        -3.07862465,
+                        55.88900264
                     ],
                     [
-                        20.82335,
-                        48.55714
+                        -3.0790381,
+                        55.90389729
                     ],
                     [
-                        21.10271,
-                        48.47096
+                        -3.05835611,
+                        55.90407681
                     ],
                     [
-                        21.45863,
-                        48.55513
-                    ],
+                        -3.05795059,
+                        55.88918206
+                    ]
+                ]
+            ],
+            "terms_url": "http://maps.nls.uk/townplans/dalkeith_1.html",
+            "terms_text": "National Library of Scotland - Dalkeith 1852"
+        },
+        {
+            "name": "OS Town Plans, Dalkeith 1893 (NLS)",
+            "type": "tms",
+            "description": "Detailed town plan of Dalkeith 1893, courtesy of National Library of Scotland.",
+            "template": "http://geo.nls.uk/maps/towns/dalkeith1893/{zoom}/{x}/{-y}.png",
+            "scaleExtent": [
+                13,
+                20
+            ],
+            "polygon": [
+                [
                     [
-                        21.74536,
-                        48.31435
+                        -3.08600192,
+                        55.87936087
                     ],
                     [
-                        22.15293,
-                        48.37179
+                        -3.08658588,
+                        55.90025926
                     ],
                     [
-                        22.61255,
-                        49.08914
+                        -3.0436473,
+                        55.90063074
                     ],
                     [
-                        22.09997,
-                        49.23814
-                    ],
+                        -3.04308639,
+                        55.87973206
+                    ]
+                ]
+            ],
+            "terms_url": "http://maps.nls.uk/townplans/dalkeith_2.html",
+            "terms_text": "National Library of Scotland - Dalkeith 1893"
+        },
+        {
+            "name": "OS Town Plans, Dumbarton 1859 (NLS)",
+            "type": "tms",
+            "description": "Detailed town plan of Dumbarton 1859, courtesy of National Library of Scotland.",
+            "template": "http://geo.nls.uk/maps/towns/dumbarton/{zoom}/{x}/{-y}.png",
+            "scaleExtent": [
+                13,
+                20
+            ],
+            "polygon": [
+                [
                     [
-                        21.9686,
-                        49.36363
+                        -4.58559982,
+                        55.92742578
                     ],
                     [
-                        21.6244,
-                        49.46989
+                        -4.58714245,
+                        55.95056014
                     ],
                     [
-                        21.06873,
-                        49.46402
+                        -4.55463269,
+                        55.95123882
                     ],
                     [
-                        20.94336,
-                        49.31088
-                    ],
+                        -4.55310939,
+                        55.92810387
+                    ]
+                ]
+            ],
+            "terms_url": "http://maps.nls.uk/townplans/dumbarton.html",
+            "terms_text": "National Library of Scotland - Dumbarton 1859"
+        },
+        {
+            "name": "OS Town Plans, Dumfries 1850 (NLS)",
+            "type": "tms",
+            "description": "Detailed town plan of Dumfries 1850, courtesy of National Library of Scotland.",
+            "template": "http://geo.nls.uk/maps/towns/dumfries1850/{zoom}/{x}/{-y}.png",
+            "scaleExtent": [
+                13,
+                20
+            ],
+            "polygon": [
+                [
                     [
-                        20.73052,
-                        49.44006
+                        -3.63928076,
+                        55.03715991
                     ],
                     [
-                        20.22804,
-                        49.41714
+                        -3.64116352,
+                        55.08319002
                     ],
                     [
-                        20.05234,
-                        49.23052
+                        -3.57823183,
+                        55.08402202
                     ],
                     [
-                        19.83682,
-                        49.25529
+                        -3.57642118,
+                        55.0379905
                     ]
                 ]
             ],
-            "terms_url": "http://www.eea.europa.eu/data-and-maps/data/urban-atlas",
-            "terms_text": "EEA GMES Urban Atlas"
+            "terms_url": "http://maps.nls.uk/townplans/dumfries_1.html",
+            "terms_text": "National Library of Scotland - Dumfries 1850"
         },
         {
-            "name": "Slovakia Historic Maps",
+            "name": "OS Town Plans, Dumfries 1893 (NLS)",
             "type": "tms",
-            "template": "http://tms.freemap.sk/historicke/{zoom}/{x}/{y}.png",
+            "description": "Detailed town plan of Dumfries 1893, courtesy of National Library of Scotland.",
+            "template": "http://geo.nls.uk/maps/towns/dumfries1893/{zoom}/{x}/{-y}.png",
             "scaleExtent": [
-                0,
-                12
+                13,
+                20
             ],
             "polygon": [
                 [
                     [
-                        16.8196949,
-                        47.4927236
-                    ],
-                    [
-                        16.8196949,
-                        49.5030322
+                        -3.63179081,
+                        55.04150111
                     ],
                     [
-                        22.8388318,
-                        49.5030322
+                        -3.63330662,
+                        55.07873429
                     ],
                     [
-                        22.8388318,
-                        47.4927236
+                        -3.58259012,
+                        55.07940411
                     ],
                     [
-                        16.8196949,
-                        47.4927236
+                        -3.58112132,
+                        55.04217001
                     ]
                 ]
-            ]
+            ],
+            "terms_url": "http://maps.nls.uk/townplans/dumfries_2.html",
+            "terms_text": "National Library of Scotland - Dumfries 1893"
         },
         {
-            "name": "South Africa CD:NGI Aerial",
+            "name": "OS Town Plans, Dundee 1857-1858 (NLS)",
             "type": "tms",
-            "template": "http://{switch:a,b,c}.aerial.openstreetmap.org.za/ngi-aerial/{zoom}/{x}/{y}.jpg",
+            "description": "Detailed town plan of Dundee 1857-1858, courtesy of National Library of Scotland.",
+            "template": "http://geo.nls.uk/maps/towns/dundee1857/{zoom}/{x}/{-y}.png",
             "scaleExtent": [
-                1,
-                22
+                13,
+                20
             ],
             "polygon": [
                 [
                     [
-                        17.8396817,
-                        -32.7983384
+                        -3.02584468,
+                        56.44879161
                     ],
                     [
-                        17.8893509,
-                        -32.6972835
+                        -3.02656969,
+                        56.47566815
                     ],
                     [
-                        18.00364,
-                        -32.6982187
+                        -2.94710317,
+                        56.47629984
                     ],
                     [
-                        18.0991679,
-                        -32.7485251
-                    ],
+                        -2.94643424,
+                        56.44942266
+                    ]
+                ]
+            ],
+            "terms_url": "http://maps.nls.uk/townplans/dundee_1.html",
+            "terms_text": "National Library of Scotland - Dundee 1857-1858"
+        },
+        {
+            "name": "OS Town Plans, Dundee 1870-1872 (NLS)",
+            "type": "tms",
+            "description": "Detailed town plan of Dundee 1870-1872, courtesy of National Library of Scotland.",
+            "template": "http://geo.nls.uk/maps/towns/dundee1870/{zoom}/{x}/{-y}.png",
+            "scaleExtent": [
+                13,
+                20
+            ],
+            "polygon": [
+                [
                     [
-                        18.2898747,
-                        -32.5526645
+                        -3.03399945,
+                        56.448497
                     ],
                     [
-                        18.2930182,
-                        -32.0487089
+                        -3.03497463,
+                        56.48435238
                     ],
                     [
-                        18.105455,
-                        -31.6454966
+                        -2.92352705,
+                        56.48523137
                     ],
                     [
-                        17.8529257,
-                        -31.3443951
-                    ],
+                        -2.92265681,
+                        56.4493748
+                    ]
+                ]
+            ],
+            "terms_url": "http://maps.nls.uk/townplans/dundee_2.html",
+            "terms_text": "National Library of Scotland - Dundee 1870-1872"
+        },
+        {
+            "name": "OS Town Plans, Dunfermline 1854 (NLS)",
+            "type": "tms",
+            "description": "Detailed town plan of Dunfermline 1854, courtesy of National Library of Scotland.",
+            "template": "http://geo.nls.uk/maps/towns/dunfermline1854/{zoom}/{x}/{-y}.png",
+            "scaleExtent": [
+                13,
+                20
+            ],
+            "polygon": [
+                [
                     [
-                        17.5480046,
-                        -30.902171
+                        -3.49045481,
+                        56.0605979
                     ],
                     [
-                        17.4044506,
-                        -30.6374731
+                        -3.49116489,
+                        56.07898822
                     ],
                     [
-                        17.2493704,
-                        -30.3991663
+                        -3.44374075,
+                        56.07955208
                     ],
                     [
-                        16.9936977,
-                        -29.6543552
-                    ],
+                        -3.44305323,
+                        56.06116138
+                    ]
+                ]
+            ],
+            "terms_url": "http://maps.nls.uk/townplans/dunfermline_1.html",
+            "terms_text": "National Library of Scotland - Dunfermline 1854"
+        },
+        {
+            "name": "OS Town Plans, Dunfermline 1894 (NLS)",
+            "type": "tms",
+            "description": "Detailed town plan of Dunfermline 1894, courtesy of National Library of Scotland.",
+            "template": "http://geo.nls.uk/maps/towns/dunfermline1893/{zoom}/{x}/{-y}.png",
+            "scaleExtent": [
+                13,
+                20
+            ],
+            "polygon": [
+                [
                     [
-                        16.7987996,
-                        -29.19437
+                        -3.48284159,
+                        56.05198219
                     ],
                     [
-                        16.5494139,
-                        -28.8415949
+                        -3.48399434,
+                        56.08198924
                     ],
                     [
-                        16.4498691,
-                        -28.691876
+                        -3.44209721,
+                        56.08248587
                     ],
                     [
-                        16.4491046,
-                        -28.5515766
-                    ],
-                    [
-                        16.6002551,
-                        -28.4825663
-                    ],
+                        -3.44097697,
+                        56.05247826
+                    ]
+                ]
+            ],
+            "terms_url": "http://maps.nls.uk/townplans/dunfermline_2.html",
+            "terms_text": "National Library of Scotland - Dunfermline 1894"
+        },
+        {
+            "name": "OS Town Plans, Edinburgh 1849-1851 (NLS)",
+            "type": "tms",
+            "description": "Detailed town plan of Edinburgh 1849-1851, courtesy of National Library of Scotland.",
+            "template": "http://geo.nls.uk/maps/towns/edinburgh1849/{zoom}/{x}/{-y}.png",
+            "scaleExtent": [
+                13,
+                20
+            ],
+            "polygon": [
+                [
                     [
-                        16.7514057,
-                        -28.4486958
+                        -3.2361048,
+                        55.921366
                     ],
                     [
-                        16.7462192,
-                        -28.2458973
+                        -3.23836397,
+                        55.99217223
                     ],
                     [
-                        16.8855148,
-                        -28.04729
+                        -3.14197035,
+                        55.99310288
                     ],
                     [
-                        16.9929502,
-                        -28.0244005
-                    ],
+                        -3.13988689,
+                        55.92229419
+                    ]
+                ]
+            ],
+            "terms_url": "http://maps.nls.uk/townplans/edinburgh1056_1.html",
+            "terms_text": "National Library of Scotland - Edinburgh 1849-1851"
+        },
+        {
+            "name": "OS Town Plans, Edinburgh 1876-1877 (NLS)",
+            "type": "tms",
+            "description": "Detailed town plan of Edinburgh 1876-1877, courtesy of National Library of Scotland.",
+            "template": "http://geo.nls.uk/maps/towns/edinburgh1876/{zoom}/{x}/{-y}.png",
+            "scaleExtent": [
+                13,
+                20
+            ],
+            "polygon": [
+                [
                     [
-                        17.0529659,
-                        -28.0257086
+                        -3.24740498,
+                        55.92116518
                     ],
                     [
-                        17.1007562,
-                        -28.0338839
+                        -3.24989581,
+                        55.99850896
                     ],
                     [
-                        17.2011527,
-                        -28.0930546
+                        -3.13061127,
+                        55.99966059
                     ],
                     [
-                        17.2026346,
-                        -28.2328424
-                    ],
+                        -3.12835798,
+                        55.92231348
+                    ]
+                ]
+            ],
+            "terms_url": "http://maps.nls.uk/townplans/edinburgh1056_2.html",
+            "terms_text": "National Library of Scotland - Edinburgh 1876-1877"
+        },
+        {
+            "name": "OS Town Plans, Edinburgh 1893-1894 (NLS)",
+            "type": "tms",
+            "description": "Detailed town plan of Edinburgh 1893-1894, courtesy of National Library of Scotland.",
+            "template": "http://geo.nls.uk/maps/towns/edinburgh1893/{zoom}/{x}/{-y}.png",
+            "scaleExtent": [
+                13,
+                20
+            ],
+            "polygon": [
+                [
                     [
-                        17.2474611,
-                        -28.2338215
+                        -3.26111081,
+                        55.89555387
                     ],
                     [
-                        17.2507953,
-                        -28.198892
+                        -3.26450423,
+                        55.9997912
                     ],
                     [
-                        17.3511919,
-                        -28.1975861
+                        -3.11970824,
+                        56.00119128
                     ],
                     [
-                        17.3515624,
-                        -28.2442655
-                    ],
+                        -3.1167031,
+                        55.89694851
+                    ]
+                ]
+            ],
+            "terms_url": "http://maps.nls.uk/townplans/edinburgh500.html",
+            "terms_text": "National Library of Scotland - Edinburgh 1893-1894"
+        },
+        {
+            "name": "OS Town Plans, Elgin 1868 (NLS)",
+            "type": "tms",
+            "description": "Detailed town plan of Elgin 1868, courtesy of National Library of Scotland.",
+            "template": "http://geo.nls.uk/maps/towns/elgin/{zoom}/{x}/{-y}.png",
+            "scaleExtent": [
+                13,
+                20
+            ],
+            "polygon": [
+                [
                     [
-                        17.4015754,
-                        -28.2452446
+                        -3.33665196,
+                        57.62879017
                     ],
                     [
-                        17.4149122,
-                        -28.3489751
+                        -3.33776583,
+                        57.65907381
                     ],
                     [
-                        17.4008345,
-                        -28.547997
+                        -3.29380859,
+                        57.65953111
                     ],
                     [
-                        17.4526999,
-                        -28.5489733
-                    ],
+                        -3.29273129,
+                        57.62924695
+                    ]
+                ]
+            ],
+            "terms_url": "http://maps.nls.uk/townplans/elgin.html",
+            "terms_text": "National Library of Scotland - Elgin 1868"
+        },
+        {
+            "name": "OS Town Plans, Falkirk 1858-1859 (NLS)",
+            "type": "tms",
+            "description": "Detailed town plan of Falkirk 1858-1859, courtesy of National Library of Scotland.",
+            "template": "http://geo.nls.uk/maps/towns/falkirk/{zoom}/{x}/{-y}.png",
+            "scaleExtent": [
+                13,
+                20
+            ],
+            "polygon": [
+                [
                     [
-                        17.4512071,
-                        -28.6495106
+                        -3.79587441,
+                        55.99343101
                     ],
                     [
-                        17.4983599,
-                        -28.6872054
+                        -3.79697783,
+                        56.01720281
                     ],
                     [
-                        17.6028204,
-                        -28.6830048
+                        -3.76648151,
+                        56.01764348
                     ],
                     [
-                        17.6499732,
-                        -28.6967928
-                    ],
+                        -3.76539679,
+                        55.99387129
+                    ]
+                ]
+            ],
+            "terms_url": "http://maps.nls.uk/townplans/falkirk.html",
+            "terms_text": "National Library of Scotland - Falkirk 1858-1859"
+        },
+        {
+            "name": "OS Town Plans, Forfar 1860-1861 (NLS)",
+            "type": "tms",
+            "description": "Detailed town plan of Forfar 1860-1861, courtesy of National Library of Scotland.",
+            "template": "http://geo.nls.uk/maps/towns/forfar/{zoom}/{x}/{-y}.png",
+            "scaleExtent": [
+                13,
+                20
+            ],
+            "polygon": [
+                [
                     [
-                        17.6525928,
-                        -28.7381457
+                        -2.90326183,
+                        56.6289471
                     ],
                     [
-                        17.801386,
-                        -28.7381457
+                        -2.90378797,
+                        56.65095013
                     ],
                     [
-                        17.9994276,
-                        -28.7560602
+                        -2.87228457,
+                        56.65117489
                     ],
                     [
-                        18.0002748,
-                        -28.7956172
-                    ],
+                        -2.87177676,
+                        56.62917168
+                    ]
+                ]
+            ],
+            "terms_url": "http://maps.nls.uk/townplans/forfar.html",
+            "terms_text": "National Library of Scotland - Forfar 1860-1861"
+        },
+        {
+            "name": "OS Town Plans, Forres 1868 (NLS)",
+            "type": "tms",
+            "description": "Detailed town plan of Forres 1868, courtesy of National Library of Scotland.",
+            "template": "http://geo.nls.uk/maps/towns/forres/{zoom}/{x}/{-y}.png",
+            "scaleExtent": [
+                13,
+                20
+            ],
+            "polygon": [
+                [
                     [
-                        18.1574507,
-                        -28.8718055
+                        -3.63516795,
+                        57.58887872
                     ],
                     [
-                        18.5063811,
-                        -28.8718055
+                        -3.63647637,
+                        57.618002
                     ],
                     [
-                        18.6153564,
-                        -28.8295875
+                        -3.57751453,
+                        57.61875171
                     ],
                     [
-                        18.9087513,
-                        -28.8277516
-                    ],
+                        -3.5762532,
+                        57.58962759
+                    ]
+                ]
+            ],
+            "terms_url": "http://maps.nls.uk/townplans/forres.html",
+            "terms_text": "National Library of Scotland - Forres 1868"
+        },
+        {
+            "name": "OS Town Plans, Galashiels 1858 (NLS)",
+            "type": "tms",
+            "description": "Detailed town plan of Galashiels 1858, courtesy of National Library of Scotland.",
+            "template": "http://geo.nls.uk/maps/towns/galashiels/{zoom}/{x}/{-y}.png",
+            "scaleExtent": [
+                13,
+                20
+            ],
+            "polygon": [
+                [
                     [
-                        19.1046973,
-                        -28.9488548
+                        -2.82918609,
+                        55.59586303
                     ],
                     [
-                        19.1969071,
-                        -28.9378513
+                        -2.82981273,
+                        55.62554026
                     ],
                     [
-                        19.243012,
-                        -28.8516164
+                        -2.78895254,
+                        55.62580992
                     ],
                     [
-                        19.2314858,
-                        -28.802963
-                    ],
+                        -2.78835674,
+                        55.59613239
+                    ]
+                ]
+            ],
+            "terms_url": "http://maps.nls.uk/townplans/galashiels.html",
+            "terms_text": "National Library of Scotland - Galashiels 1858"
+        },
+        {
+            "name": "OS Town Plans, Girvan 1857 (NLS)",
+            "type": "tms",
+            "description": "Detailed town plan of Girvan 1857, courtesy of National Library of Scotland.",
+            "template": "http://geo.nls.uk/maps/towns/girvan/{zoom}/{x}/{-y}.png",
+            "scaleExtent": [
+                13,
+                20
+            ],
+            "polygon": [
+                [
                     [
-                        19.2587296,
-                        -28.7009928
+                        -4.87424251,
+                        55.22679729
                     ],
                     [
-                        19.4431493,
-                        -28.6973163
+                        -4.87587895,
+                        55.24945946
                     ],
                     [
-                        19.5500289,
-                        -28.4958332
+                        -4.84447382,
+                        55.25019598
                     ],
                     [
-                        19.6967264,
-                        -28.4939914
-                    ],
+                        -4.84285519,
+                        55.22753318
+                    ]
+                ]
+            ],
+            "terms_url": "http://maps.nls.uk/townplans/girvan.html",
+            "terms_text": "National Library of Scotland - Girvan 1857"
+        },
+        {
+            "name": "OS Town Plans, Glasgow 1857-1858 (NLS)",
+            "type": "tms",
+            "description": "Detailed town plan of Glasgow 1857-1858, courtesy of National Library of Scotland.",
+            "template": "http://geo.nls.uk/maps/towns/glasgow1857/{zoom}/{x}/{-y}.png",
+            "scaleExtent": [
+                13,
+                20
+            ],
+            "polygon": [
+                [
                     [
-                        19.698822,
-                        -28.4479358
+                        -4.31575491,
+                        55.82072009
                     ],
                     [
-                        19.8507587,
-                        -28.4433291
+                        -4.319683,
+                        55.88667625
                     ],
                     [
-                        19.8497109,
-                        -28.4027818
+                        -4.1771319,
+                        55.88928081
                     ],
                     [
-                        19.9953605,
-                        -28.399095
-                    ],
+                        -4.1734447,
+                        55.82331825
+                    ]
+                ]
+            ],
+            "terms_url": "http://maps.nls.uk/townplans/glasgow_1.html",
+            "terms_text": "National Library of Scotland - Glasgow 1857-1858"
+        },
+        {
+            "name": "OS Town Plans, Glasgow 1892-1894 (NLS)",
+            "type": "tms",
+            "description": "Detailed town plan of Glasgow 1892-1894, courtesy of National Library of Scotland.",
+            "template": "http://geo.nls.uk/maps/towns/glasgow1894/{zoom}/{x}/{-y}.png",
+            "scaleExtent": [
+                13,
+                20
+            ],
+            "polygon": [
+                [
                     [
-                        19.9893671,
-                        -24.7497859
+                        -4.3465357,
+                        55.81456228
                     ],
                     [
-                        20.2916682,
-                        -24.9192346
+                        -4.35157646,
+                        55.89806268
                     ],
                     [
-                        20.4724562,
-                        -25.1501701
+                        -4.17788765,
+                        55.9012587
                     ],
                     [
-                        20.6532441,
-                        -25.4529449
-                    ],
+                        -4.17321842,
+                        55.81774834
+                    ]
+                ]
+            ],
+            "terms_url": "http://maps.nls.uk/townplans/glasgow_2.html",
+            "terms_text": "National Library of Scotland - Glasgow 1892-1894"
+        },
+        {
+            "name": "OS Town Plans, Greenock 1857 (NLS)",
+            "type": "tms",
+            "description": "Detailed town plan of Greenock 1857, courtesy of National Library of Scotland.",
+            "template": "http://geo.nls.uk/maps/towns/greenock/{zoom}/{x}/{-y}.png",
+            "scaleExtent": [
+                13,
+                20
+            ],
+            "polygon": [
+                [
                     [
-                        20.733265,
-                        -25.6801957
+                        -4.78108857,
+                        55.92617865
                     ],
                     [
-                        20.8281046,
-                        -25.8963498
+                        -4.78382957,
+                        55.96437481
                     ],
                     [
-                        20.8429232,
-                        -26.215851
+                        -4.7302257,
+                        55.96557475
                     ],
                     [
-                        20.6502804,
-                        -26.4840868
-                    ],
+                        -4.72753731,
+                        55.92737687
+                    ]
+                ]
+            ],
+            "terms_url": "http://maps.nls.uk/townplans/greenock.html",
+            "terms_text": "National Library of Scotland - Greenock 1857"
+        },
+        {
+            "name": "OS Town Plans, Haddington 1853 (NLS)",
+            "type": "tms",
+            "description": "Detailed town plan of Haddington 1853, courtesy of National Library of Scotland.",
+            "template": "http://geo.nls.uk/maps/towns/haddington1853/{zoom}/{x}/{-y}.png",
+            "scaleExtent": [
+                13,
+                20
+            ],
+            "polygon": [
+                [
                     [
-                        20.6532441,
-                        -26.8204869
+                        -2.78855542,
+                        55.9451862
                     ],
                     [
-                        21.0889134,
-                        -26.846933
+                        -2.78888196,
+                        55.96124194
                     ],
                     [
-                        21.6727695,
-                        -26.8389998
+                        -2.76674325,
+                        55.9613817
                     ],
                     [
-                        21.7765003,
-                        -26.6696268
-                    ],
+                        -2.76642588,
+                        55.94532587
+                    ]
+                ]
+            ],
+            "terms_url": "http://maps.nls.uk/townplans/haddington_1.html",
+            "terms_text": "National Library of Scotland - Haddington 1853"
+        },
+        {
+            "name": "OS Town Plans, Haddington 1893 (NLS)",
+            "type": "tms",
+            "description": "Detailed town plan of Haddington 1893, courtesy of National Library of Scotland.",
+            "template": "http://geo.nls.uk/maps/towns/haddington1893/{zoom}/{x}/{-y}.png",
+            "scaleExtent": [
+                13,
+                20
+            ],
+            "polygon": [
+                [
                     [
-                        21.9721069,
-                        -26.6431395
+                        -2.80152293,
+                        55.93428734
                     ],
                     [
-                        22.2803355,
-                        -26.3274702
+                        -2.80214693,
+                        55.96447189
                     ],
                     [
-                        22.5707817,
-                        -26.1333967
+                        -2.76038069,
+                        55.9647367
                     ],
                     [
-                        22.7752795,
-                        -25.6775246
-                    ],
+                        -2.75978916,
+                        55.93455185
+                    ]
+                ]
+            ],
+            "terms_url": "http://maps.nls.uk/townplans/haddington_2.html",
+            "terms_text": "National Library of Scotland - Haddington 1893"
+        },
+        {
+            "name": "OS Town Plans, Hamilton 1858 (NLS)",
+            "type": "tms",
+            "description": "Detailed town plan of Hamilton 1858, courtesy of National Library of Scotland.",
+            "template": "http://geo.nls.uk/maps/towns/hamilton/{zoom}/{x}/{-y}.png",
+            "scaleExtent": [
+                13,
+                20
+            ],
+            "polygon": [
+                [
                     [
-                        23.0005235,
-                        -25.2761948
+                        -4.06721642,
+                        55.74877265
                     ],
                     [
-                        23.4658301,
-                        -25.2735148
+                        -4.06924047,
+                        55.78698508
                     ],
                     [
-                        23.883717,
-                        -25.597366
+                        -4.01679233,
+                        55.78785698
                     ],
                     [
-                        24.2364017,
-                        -25.613402
-                    ],
+                        -4.01481949,
+                        55.74964331
+                    ]
+                ]
+            ],
+            "terms_url": "http://maps.nls.uk/townplans/hamilton.html",
+            "terms_text": "National Library of Scotland - Hamilton 1858"
+        },
+        {
+            "name": "OS Town Plans, Hawick 1857-1858 (NLS)",
+            "type": "tms",
+            "description": "Detailed town plan of Hawick 1857-1858, courtesy of National Library of Scotland.",
+            "template": "http://geo.nls.uk/maps/towns/hawick/{zoom}/{x}/{-y}.png",
+            "scaleExtent": [
+                13,
+                20
+            ],
+            "polygon": [
+                [
                     [
-                        24.603905,
-                        -25.7896563
+                        -2.80130149,
+                        55.4102516
                     ],
                     [
-                        25.110704,
-                        -25.7389432
+                        -2.80176329,
+                        55.43304638
                     ],
                     [
-                        25.5078447,
-                        -25.6855376
+                        -2.7708832,
+                        55.43324489
                     ],
                     [
-                        25.6441766,
-                        -25.4823781
-                    ],
+                        -2.77043917,
+                        55.41044995
+                    ]
+                ]
+            ],
+            "terms_url": "http://maps.nls.uk/townplans/hawick.html",
+            "terms_text": "National Library of Scotland - Hawick 1857-1858"
+        },
+        {
+            "name": "OS Town Plans, Inverness 1867-1868 (NLS)",
+            "type": "tms",
+            "description": "Detailed town plan of Inverness 1867-1868, courtesy of National Library of Scotland.",
+            "template": "http://geo.nls.uk/maps/towns/inverness/{zoom}/{x}/{-y}.png",
+            "scaleExtent": [
+                13,
+                20
+            ],
+            "polygon": [
+                [
                     [
-                        25.8419267,
-                        -24.7805437
+                        -4.25481758,
+                        57.45916363
                     ],
                     [
-                        25.846641,
-                        -24.7538456
+                        -4.25752308,
+                        57.50302387
                     ],
                     [
-                        26.3928487,
-                        -24.6332894
+                        -4.19713638,
+                        57.50409032
                     ],
                     [
-                        26.4739066,
-                        -24.5653312
-                    ],
+                        -4.1945031,
+                        57.46022829
+                    ]
+                ]
+            ],
+            "terms_url": "http://maps.nls.uk/townplans/inverness.html",
+            "terms_text": "National Library of Scotland - Inverness 1867-1868"
+        },
+        {
+            "name": "OS Town Plans, Irvine 1859 (NLS)",
+            "type": "tms",
+            "description": "Detailed town plan of Irvine 1859, courtesy of National Library of Scotland.",
+            "template": "http://geo.nls.uk/maps/towns/irvine/{zoom}/{x}/{-y}.png",
+            "scaleExtent": [
+                13,
+                20
+            ],
+            "polygon": [
+                [
                     [
-                        26.5089966,
-                        -24.4842437
+                        -4.67540402,
+                        55.60649957
                     ],
                     [
-                        26.5861946,
-                        -24.4075775
+                        -4.67643252,
+                        55.62159024
                     ],
                     [
-                        26.7300635,
-                        -24.3014458
+                        -4.65537888,
+                        55.62204812
                     ],
                     [
-                        26.8567384,
-                        -24.2499463
-                    ],
+                        -4.65435844,
+                        55.60695719
+                    ]
+                ]
+            ],
+            "terms_url": "http://maps.nls.uk/townplans/irvine.html",
+            "terms_text": "National Library of Scotland - Irvine 1859"
+        },
+        {
+            "name": "OS Town Plans, Jedburgh 1858 (NLS)",
+            "type": "tms",
+            "description": "Detailed town plan of Jedburgh 1858, courtesy of National Library of Scotland.",
+            "template": "http://geo.nls.uk/maps/towns/jedburgh/{zoom}/{x}/{-y}.png",
+            "scaleExtent": [
+                13,
+                20
+            ],
+            "polygon": [
+                [
                     [
-                        26.8574402,
-                        -24.1026901
+                        -2.56332521,
+                        55.47105448
                     ],
                     [
-                        26.9215471,
-                        -23.8990957
+                        -2.56355503,
+                        55.48715562
                     ],
                     [
-                        26.931831,
-                        -23.8461891
+                        -2.54168193,
+                        55.48725438
                     ],
                     [
-                        26.9714827,
-                        -23.6994344
-                    ],
+                        -2.54146103,
+                        55.47115318
+                    ]
+                ]
+            ],
+            "terms_url": "http://maps.nls.uk/townplans/jedburgh.html",
+            "terms_text": "National Library of Scotland - Jedburgh 1858"
+        },
+        {
+            "name": "OS Town Plans, Kelso 1857 (NLS)",
+            "type": "tms",
+            "description": "Detailed town plan of Kelso 1857, courtesy of National Library of Scotland.",
+            "template": "http://geo.nls.uk/maps/towns/kelso/{zoom}/{x}/{-y}.png",
+            "scaleExtent": [
+                13,
+                20
+            ],
+            "polygon": [
+                [
                     [
-                        27.0006074,
-                        -23.6367644
+                        -2.44924544,
+                        55.58390848
                     ],
                     [
-                        27.0578041,
-                        -23.6052574
+                        -2.44949757,
+                        55.6059582
                     ],
                     [
-                        27.1360547,
-                        -23.5203437
+                        -2.41902085,
+                        55.60606617
                     ],
                     [
-                        27.3339623,
-                        -23.3973792
-                    ],
+                        -2.41878581,
+                        55.58401636
+                    ]
+                ]
+            ],
+            "terms_url": "http://maps.nls.uk/townplans/kelso.html",
+            "terms_text": "National Library of Scotland - Kelso 1857"
+        },
+        {
+            "name": "OS Town Plans, Kilmarnock 1857-1859 (NLS)",
+            "type": "tms",
+            "description": "Detailed town plan of Kilmarnock 1857-1859, courtesy of National Library of Scotland.",
+            "template": "http://geo.nls.uk/maps/towns/kilmarnock/{zoom}/{x}/{-y}.png",
+            "scaleExtent": [
+                13,
+                20
+            ],
+            "polygon": [
+                [
                     [
-                        27.5144057,
-                        -23.3593929
+                        -4.51746876,
+                        55.58950933
                     ],
                     [
-                        27.5958145,
-                        -23.2085465
+                        -4.5194347,
+                        55.62017114
                     ],
                     [
-                        27.8098634,
-                        -23.0994957
+                        -4.47675652,
+                        55.62104083
                     ],
                     [
-                        27.8828506,
-                        -23.0620496
-                    ],
+                        -4.4748238,
+                        55.59037802
+                    ]
+                ]
+            ],
+            "terms_url": "http://maps.nls.uk/townplans/kilmarnock.html",
+            "terms_text": "National Library of Scotland - Kilmarnock 1857-1859"
+        },
+        {
+            "name": "OS Town Plans, Kirkcaldy 1855 (NLS)",
+            "type": "tms",
+            "description": "Detailed town plan of Kirkcaldy 1855, courtesy of National Library of Scotland.",
+            "template": "http://geo.nls.uk/maps/towns/kirkcaldy1855/{zoom}/{x}/{-y}.png",
+            "scaleExtent": [
+                13,
+                20
+            ],
+            "polygon": [
+                [
                     [
-                        27.9382928,
-                        -22.9496487
+                        -3.17455285,
+                        56.09518942
                     ],
                     [
-                        28.0407556,
-                        -22.8255118
+                        -3.17554995,
+                        56.12790251
                     ],
                     [
-                        28.2056786,
-                        -22.6552861
+                        -3.12991402,
+                        56.12832843
                     ],
                     [
-                        28.3397223,
-                        -22.5639374
-                    ],
+                        -3.12895559,
+                        56.09561481
+                    ]
+                ]
+            ],
+            "terms_url": "http://maps.nls.uk/townplans/kirkcaldy_1.html",
+            "terms_text": "National Library of Scotland - Kirkcaldy 1855"
+        },
+        {
+            "name": "OS Town Plans, Kirkcaldy 1894 (NLS)",
+            "type": "tms",
+            "description": "Detailed town plan of Kirkcaldy 1894, courtesy of National Library of Scotland.",
+            "template": "http://geo.nls.uk/maps/towns/kirkcaldy1894/{zoom}/{x}/{-y}.png",
+            "scaleExtent": [
+                13,
+                20
+            ],
+            "polygon": [
+                [
                     [
-                        28.4906093,
-                        -22.560697
+                        -3.17460426,
+                        56.09513375
                     ],
                     [
-                        28.6108769,
-                        -22.5400248
+                        -3.17560428,
+                        56.12794116
                     ],
                     [
-                        28.828175,
-                        -22.4550173
+                        -3.12989512,
+                        56.12836777
                     ],
                     [
-                        28.9285324,
-                        -22.4232328
-                    ],
+                        -3.12893395,
+                        56.09555983
+                    ]
+                ]
+            ],
+            "terms_url": "http://maps.nls.uk/townplans/kirkcaldy_2.html",
+            "terms_text": "National Library of Scotland - Kirkcaldy 1894"
+        },
+        {
+            "name": "OS Town Plans, Kirkcudbright 1850 (NLS)",
+            "type": "tms",
+            "description": "Detailed town plan of Kirkcudbright 1850, courtesy of National Library of Scotland.",
+            "template": "http://geo.nls.uk/maps/towns/kirkcudbright1850/{zoom}/{x}/{-y}.png",
+            "scaleExtent": [
+                13,
+                20
+            ],
+            "polygon": [
+                [
                     [
-                        28.9594116,
-                        -22.3090081
+                        -4.06154334,
+                        54.82586314
                     ],
                     [
-                        29.0162574,
-                        -22.208335
+                        -4.0623081,
+                        54.84086061
                     ],
                     [
-                        29.2324117,
-                        -22.1693453
+                        -4.0420219,
+                        54.84120364
                     ],
                     [
-                        29.3531213,
-                        -22.1842926
-                    ],
+                        -4.04126464,
+                        54.82620598
+                    ]
+                ]
+            ],
+            "terms_url": "http://maps.nls.uk/townplans/kirkcudbright_1.html",
+            "terms_text": "National Library of Scotland - Kirkcudbright 1850"
+        },
+        {
+            "name": "OS Town Plans, Kirkcudbright 1893 (NLS)",
+            "type": "tms",
+            "description": "Detailed town plan of Kirkcudbright 1893, courtesy of National Library of Scotland.",
+            "template": "http://geo.nls.uk/maps/towns/kirkcudbright1893/{zoom}/{x}/{-y}.png",
+            "scaleExtent": [
+                13,
+                20
+            ],
+            "polygon": [
+                [
                     [
-                        29.6548952,
-                        -22.1186426
+                        -4.06001868,
+                        54.82720122
                     ],
                     [
-                        29.7777102,
-                        -22.1361956
+                        -4.06079036,
+                        54.84234455
                     ],
                     [
-                        29.9292989,
-                        -22.1849425
+                        -4.04025067,
+                        54.84269158
                     ],
                     [
-                        30.1166795,
-                        -22.2830348
-                    ],
+                        -4.03948667,
+                        54.82754805
+                    ]
+                ]
+            ],
+            "terms_url": "http://maps.nls.uk/townplans/kirkcudbright_2.html",
+            "terms_text": "National Library of Scotland - Kirkcudbright 1893"
+        },
+        {
+            "name": "OS Town Plans, Kirkintilloch 1859 (NLS)",
+            "type": "tms",
+            "description": "Detailed town plan of Kirkintilloch 1859, courtesy of National Library of Scotland.",
+            "template": "http://geo.nls.uk/maps/towns/kirkintilloch/{zoom}/{x}/{-y}.png",
+            "scaleExtent": [
+                13,
+                20
+            ],
+            "polygon": [
+                [
                     [
-                        30.2563377,
-                        -22.2914767
+                        -4.16664222,
+                        55.93124287
                     ],
                     [
-                        30.3033582,
-                        -22.3395204
+                        -4.16748402,
+                        55.94631265
                     ],
                     [
-                        30.5061784,
-                        -22.3057617
+                        -4.14637318,
+                        55.94668235
                     ],
                     [
-                        30.8374279,
-                        -22.284983
-                    ],
+                        -4.14553956,
+                        55.93161237
+                    ]
+                ]
+            ],
+            "terms_url": "http://maps.nls.uk/townplans/kirkintilloch.html",
+            "terms_text": "National Library of Scotland - Kirkintilloch 1859"
+        },
+        {
+            "name": "OS Town Plans, Kirriemuir 1861 (NLS)",
+            "type": "tms",
+            "description": "Detailed town plan of Kirriemuir 1861, courtesy of National Library of Scotland.",
+            "template": "http://geo.nls.uk/maps/towns/kirriemuir/{zoom}/{x}/{-y}.png",
+            "scaleExtent": [
+                13,
+                20
+            ],
+            "polygon": [
+                [
                     [
-                        31.0058599,
-                        -22.3077095
+                        -3.01255744,
+                        56.65896044
                     ],
                     [
-                        31.1834152,
-                        -22.3232913
+                        -3.01302683,
+                        56.67645382
                     ],
                     [
-                        31.2930586,
-                        -22.3674647
+                        -2.98815879,
+                        56.67665366
                     ],
                     [
-                        31.5680579,
-                        -23.1903385
-                    ],
+                        -2.98770092,
+                        56.65916014
+                    ]
+                ]
+            ],
+            "terms_url": "http://maps.nls.uk/townplans/kirriemuir.html",
+            "terms_text": "National Library of Scotland - Kirriemuir 1861"
+        },
+        {
+            "name": "OS Town Plans, Lanark 1858 (NLS)",
+            "type": "tms",
+            "description": "Detailed town plan of Lanark 1858, courtesy of National Library of Scotland.",
+            "template": "http://geo.nls.uk/maps/towns/lanark/{zoom}/{x}/{-y}.png",
+            "scaleExtent": [
+                13,
+                20
+            ],
+            "polygon": [
+                [
                     [
-                        31.5568311,
-                        -23.4430809
+                        -3.78642584,
+                        55.66308804
                     ],
                     [
-                        31.6931122,
-                        -23.6175209
+                        -3.78710605,
+                        55.67800854
                     ],
                     [
-                        31.7119696,
-                        -23.741136
+                        -3.76632876,
+                        55.67830935
                     ],
                     [
-                        31.7774743,
-                        -23.8800628
-                    ],
+                        -3.76565645,
+                        55.66338868
+                    ]
+                ]
+            ],
+            "terms_url": "http://maps.nls.uk/townplans/lanark.html",
+            "terms_text": "National Library of Scotland - Lanark 1858"
+        },
+        {
+            "name": "OS Town Plans, Linlithgow 1856 (NLS)",
+            "type": "tms",
+            "description": "Detailed town plan of Linlithgow 1856, courtesy of National Library of Scotland.",
+            "template": "http://geo.nls.uk/maps/towns/linlithgow/{zoom}/{x}/{-y}.png",
+            "scaleExtent": [
+                13,
+                20
+            ],
+            "polygon": [
+                [
                     [
-                        31.8886337,
-                        -23.9481098
+                        -3.61908334,
+                        55.95549561
                     ],
                     [
-                        31.9144386,
-                        -24.1746736
+                        -3.62033259,
+                        55.98538615
                     ],
                     [
-                        31.9948307,
-                        -24.3040878
+                        -3.57838447,
+                        55.98593047
                     ],
                     [
-                        32.0166656,
-                        -24.4405988
-                    ],
+                        -3.57716753,
+                        55.95603932
+                    ]
+                ]
+            ],
+            "terms_url": "http://maps.nls.uk/townplans/linlithgow.html",
+            "terms_text": "National Library of Scotland - Linlithgow 1856"
+        },
+        {
+            "name": "OS Town Plans, Mayole 1856-1857 (NLS)",
+            "type": "tms",
+            "description": "Detailed town plan of Mayole 1856-1857, courtesy of National Library of Scotland.",
+            "template": "http://geo.nls.uk/maps/towns/maybole/{zoom}/{x}/{-y}.png",
+            "scaleExtent": [
+                13,
+                20
+            ],
+            "polygon": [
+                [
                     [
-                        32.0077331,
-                        -24.6536578
+                        -4.69086378,
+                        55.34340178
                     ],
                     [
-                        32.019643,
-                        -24.9140701
+                        -4.6918884,
+                        55.35849731
                     ],
                     [
-                        32.035523,
-                        -25.0849767
+                        -4.67089656,
+                        55.35895813
                     ],
                     [
-                        32.019643,
-                        -25.3821442
-                    ],
-                    [
-                        31.9928457,
-                        -25.4493771
-                    ],
+                        -4.6698799,
+                        55.34386234
+                    ]
+                ]
+            ],
+            "terms_url": "http://maps.nls.uk/townplans/maybole.html",
+            "terms_text": "National Library of Scotland - Mayole 1856-1857"
+        },
+        {
+            "name": "OS Town Plans, Montrose 1861-1862 (NLS)",
+            "type": "tms",
+            "description": "Detailed town plan of Montrose 1861-1862, courtesy of National Library of Scotland.",
+            "template": "http://geo.nls.uk/maps/towns/montrose/{zoom}/{x}/{-y}.png",
+            "scaleExtent": [
+                13,
+                20
+            ],
+            "polygon": [
+                [
                     [
-                        31.9997931,
-                        -25.5165725
+                        -2.4859324,
+                        56.69645192
                     ],
                     [
-                        32.0057481,
-                        -25.6078978
+                        -2.4862257,
+                        56.71918799
                     ],
                     [
-                        32.0057481,
-                        -25.6624806
+                        -2.45405417,
+                        56.71930941
                     ],
                     [
-                        31.9362735,
-                        -25.8403721
-                    ],
+                        -2.45378027,
+                        56.69657324
+                    ]
+                ]
+            ],
+            "terms_url": "http://maps.nls.uk/townplans/montrose.html",
+            "terms_text": "National Library of Scotland - Montrose 1861-1862"
+        },
+        {
+            "name": "OS Town Plans, Musselburgh 1853 (NLS)",
+            "type": "tms",
+            "description": "Detailed town plan of Musselburgh 1853, courtesy of National Library of Scotland.",
+            "template": "http://geo.nls.uk/maps/towns/musselburgh1853/{zoom}/{x}/{-y}.png",
+            "scaleExtent": [
+                13,
+                20
+            ],
+            "polygon": [
+                [
                     [
-                        31.9809357,
-                        -25.9546537
+                        -3.07888558,
+                        55.93371953
                     ],
                     [
-                        31.8687838,
-                        -26.0037251
+                        -3.07954151,
+                        55.95729781
                     ],
                     [
-                        31.4162062,
-                        -25.7277683
+                        -3.03240684,
+                        55.95770177
                     ],
                     [
-                        31.3229117,
-                        -25.7438611
-                    ],
+                        -3.03177952,
+                        55.93412313
+                    ]
+                ]
+            ],
+            "terms_url": "http://maps.nls.uk/townplans/musselburgh_1.html",
+            "terms_text": "National Library of Scotland - Musselburgh 1853"
+        },
+        {
+            "name": "OS Town Plans, Musselburgh 1893 (NLS)",
+            "type": "tms",
+            "description": "Detailed town plan of Musselburgh 1893, courtesy of National Library of Scotland.",
+            "template": "http://geo.nls.uk/maps/towns/musselburgh1893/{zoom}/{x}/{-y}.png",
+            "scaleExtent": [
+                13,
+                20
+            ],
+            "polygon": [
+                [
                     [
-                        31.2504595,
-                        -25.8296526
+                        -3.07017621,
+                        55.92694102
                     ],
                     [
-                        31.1393001,
-                        -25.9162746
+                        -3.07078961,
+                        55.94917624
                     ],
                     [
-                        31.1164727,
-                        -25.9912361
+                        -3.03988228,
+                        55.94944099
                     ],
                     [
-                        30.9656135,
-                        -26.2665756
-                    ],
+                        -3.03928658,
+                        55.92720556
+                    ]
+                ]
+            ],
+            "terms_url": "http://maps.nls.uk/townplans/musselburgh_2.html",
+            "terms_text": "National Library of Scotland - Musselburgh 1893"
+        },
+        {
+            "name": "OS Town Plans, Nairn 1867-1868 (NLS)",
+            "type": "tms",
+            "description": "Detailed town plan of Nairn 1867-1868, courtesy of National Library of Scotland.",
+            "template": "http://geo.nls.uk/maps/towns/nairn/{zoom}/{x}/{-y}.png",
+            "scaleExtent": [
+                13,
+                20
+            ],
+            "polygon": [
+                [
                     [
-                        30.8921689,
-                        -26.3279703
+                        -3.88433907,
+                        57.57899149
                     ],
                     [
-                        30.8534616,
-                        -26.4035568
+                        -3.88509905,
+                        57.5936822
                     ],
                     [
-                        30.8226943,
-                        -26.4488849
+                        -3.85931017,
+                        57.59406441
                     ],
                     [
-                        30.8022583,
-                        -26.5240694
-                    ],
+                        -3.85856057,
+                        57.57937348
+                    ]
+                ]
+            ],
+            "terms_url": "http://maps.nls.uk/townplans/nairn.html",
+            "terms_text": "National Library of Scotland - Nairn 1867-1868"
+        },
+        {
+            "name": "OS Town Plans, Oban 1867-1868 (NLS)",
+            "type": "tms",
+            "description": "Detailed town plan of Oban 1867-1868, courtesy of National Library of Scotland.",
+            "template": "http://geo.nls.uk/maps/towns/oban/{zoom}/{x}/{-y}.png",
+            "scaleExtent": [
+                13,
+                20
+            ],
+            "polygon": [
+                [
                     [
-                        30.8038369,
-                        -26.8082089
+                        -5.49548449,
+                        56.39080407
                     ],
                     [
-                        30.9020939,
-                        -26.7807451
+                        -5.49836627,
+                        56.42219039
                     ],
                     [
-                        30.9100338,
-                        -26.8489495
+                        -5.45383984,
+                        56.42343933
                     ],
                     [
-                        30.9824859,
-                        -26.9082627
-                    ],
+                        -5.45099456,
+                        56.39205153
+                    ]
+                ]
+            ],
+            "terms_url": "http://maps.nls.uk/townplans/oban.html",
+            "terms_text": "National Library of Scotland - Oban 1867-1868"
+        },
+        {
+            "name": "OS Town Plans, Peebles 1856 (NLS)",
+            "type": "tms",
+            "description": "Detailed town plan of Peebles 1856, courtesy of National Library of Scotland.",
+            "template": "http://geo.nls.uk/maps/towns/peebles/{zoom}/{x}/{-y}.png",
+            "scaleExtent": [
+                13,
+                20
+            ],
+            "polygon": [
+                [
                     [
-                        30.976531,
-                        -27.0029222
+                        -3.20921287,
+                        55.63635834
                     ],
                     [
-                        31.0034434,
-                        -27.0441587
+                        -3.20990288,
+                        55.65873817
                     ],
                     [
-                        31.1543322,
-                        -27.1980416
+                        -3.17896372,
+                        55.65903935
                     ],
                     [
-                        31.5015607,
-                        -27.311117
-                    ],
+                        -3.17829135,
+                        55.63665927
+                    ]
+                ]
+            ],
+            "terms_url": "http://maps.nls.uk/townplans/peebles.html",
+            "terms_text": "National Library of Scotland - Peebles 1856"
+        },
+        {
+            "name": "OS Town Plans, Perth 1860 (NLS)",
+            "type": "tms",
+            "description": "Detailed town plan of Perth 1860, courtesy of National Library of Scotland.",
+            "template": "http://geo.nls.uk/maps/towns/perth/{zoom}/{x}/{-y}.png",
+            "scaleExtent": [
+                13,
+                20
+            ],
+            "polygon": [
+                [
                     [
-                        31.9700183,
-                        -27.311117
+                        -3.45302495,
+                        56.37794226
                     ],
                     [
-                        31.9700183,
-                        -27.120472
+                        -3.45416664,
+                        56.40789908
                     ],
                     [
-                        31.9769658,
-                        -27.050664
+                        -3.41187528,
+                        56.40838777
                     ],
                     [
-                        32.0002464,
-                        -26.7983892
-                    ],
+                        -3.41076676,
+                        56.3784304
+                    ]
+                ]
+            ],
+            "terms_url": "http://maps.nls.uk/townplans/perth.html",
+            "terms_text": "National Library of Scotland - Perth 1860"
+        },
+        {
+            "name": "OS Town Plans, Peterhead 1868 (NLS)",
+            "type": "tms",
+            "description": "Detailed town plan of Peterhead 1868, courtesy of National Library of Scotland.",
+            "template": "http://geo.nls.uk/maps/towns/peterhead/{zoom}/{x}/{-y}.png",
+            "scaleExtent": [
+                13,
+                20
+            ],
+            "polygon": [
+                [
                     [
-                        32.1069826,
-                        -26.7984645
+                        -1.80513747,
+                        57.48046916
                     ],
                     [
-                        32.3114546,
-                        -26.8479493
+                        -1.80494005,
+                        57.51755411
                     ],
                     [
-                        32.899986,
-                        -26.8516059
+                        -1.75135366,
+                        57.51746003
                     ],
                     [
-                        32.886091,
-                        -26.9816971
-                    ],
+                        -1.75160539,
+                        57.48037522
+                    ]
+                ]
+            ],
+            "terms_url": "http://maps.nls.uk/townplans/peterhead",
+            "terms_text": "National Library of Scotland - Peterhead 1868"
+        },
+        {
+            "name": "OS Town Plans, Port Glasgow 1856-1857 (NLS)",
+            "type": "tms",
+            "description": "Detailed town plan of Port Glasgow 1856-1857, courtesy of National Library of Scotland.",
+            "template": "http://geo.nls.uk/maps/towns/portglasgow/{zoom}/{x}/{-y}.png",
+            "scaleExtent": [
+                13,
+                20
+            ],
+            "polygon": [
+                [
                     [
-                        32.709427,
-                        -27.4785436
+                        -4.70063209,
+                        55.91995983
                     ],
                     [
-                        32.6240724,
-                        -27.7775144
+                        -4.70222026,
+                        55.9427679
                     ],
                     [
-                        32.5813951,
-                        -28.07479
+                        -4.67084958,
+                        55.94345237
                     ],
                     [
-                        32.5387178,
-                        -28.2288046
-                    ],
+                        -4.6692798,
+                        55.92064372
+                    ]
+                ]
+            ],
+            "terms_url": "http://maps.nls.uk/townplans/port-glasgow.html",
+            "terms_text": "National Library of Scotland - Port Glasgow 1856-1857"
+        },
+        {
+            "name": "OS Town Plans, Portobello 1893-1894 (NLS)",
+            "type": "tms",
+            "description": "Detailed town plan of Portobello 1893-1894, courtesy of National Library of Scotland.",
+            "template": "http://geo.nls.uk/maps/towns/portobello/{zoom}/{x}/{-y}.png",
+            "scaleExtent": [
+                13,
+                20
+            ],
+            "polygon": [
+                [
                     [
-                        32.4275584,
-                        -28.5021568
+                        -3.12437919,
+                        55.93846889
                     ],
                     [
-                        32.3640388,
-                        -28.5945699
+                        -3.1250234,
+                        55.96068605
                     ],
                     [
-                        32.0702603,
-                        -28.8469827
+                        -3.09394827,
+                        55.96096586
                     ],
                     [
-                        31.9878832,
-                        -28.9069497
-                    ],
+                        -3.09332184,
+                        55.93874847
+                    ]
+                ]
+            ],
+            "terms_url": "http://maps.nls.uk/townplans/portobello.html",
+            "terms_text": "National Library of Scotland - Portobello 1893-1894"
+        },
+        {
+            "name": "OS Town Plans, Rothesay 1862-1863 (NLS)",
+            "type": "tms",
+            "description": "Detailed town plan of Rothesay 1862-1863, courtesy of National Library of Scotland.",
+            "template": "http://geo.nls.uk/maps/towns/rothesay/{zoom}/{x}/{-y}.png",
+            "scaleExtent": [
+                13,
+                20
+            ],
+            "polygon": [
+                [
                     [
-                        31.7764818,
-                        -28.969487
+                        -5.06449893,
+                        55.82864114
                     ],
                     [
-                        31.4638459,
-                        -29.2859343
+                        -5.06569719,
+                        55.84385927
                     ],
                     [
-                        31.359634,
-                        -29.3854348
+                        -5.04413114,
+                        55.84439519
                     ],
                     [
-                        31.1680825,
-                        -29.6307408
-                    ],
+                        -5.04294127,
+                        55.82917676
+                    ]
+                ]
+            ],
+            "terms_url": "http://maps.nls.uk/townplans/rothesay.html",
+            "terms_text": "National Library of Scotland - Rothesay 1862-1863"
+        },
+        {
+            "name": "OS Town Plans, Selkirk 1865 (NLS)",
+            "type": "tms",
+            "description": "Detailed town plan of Selkirk 1865, courtesy of National Library of Scotland.",
+            "template": "http://geo.nls.uk/maps/towns/selkirk/{zoom}/{x}/{-y}.png",
+            "scaleExtent": [
+                13,
+                20
+            ],
+            "polygon": [
+                [
                     [
-                        31.064863,
-                        -29.7893535
+                        -2.85998582,
+                        55.53499576
                     ],
                     [
-                        31.0534493,
-                        -29.8470469
+                        -2.86063259,
+                        55.56459732
                     ],
                     [
-                        31.0669933,
-                        -29.8640319
+                        -2.82003242,
+                        55.56487574
                     ],
                     [
-                        31.0455459,
-                        -29.9502017
-                    ],
+                        -2.81941615,
+                        55.53527387
+                    ]
+                ]
+            ],
+            "terms_url": "http://maps.nls.uk/townplans/selkirk.html",
+            "terms_text": "National Library of Scotland - Selkirk 1865"
+        },
+        {
+            "name": "OS Town Plans, St Andrews 1854 (NLS)",
+            "type": "tms",
+            "description": "Detailed town plan of St Andrews 1854, courtesy of National Library of Scotland.",
+            "template": "http://geo.nls.uk/maps/towns/standrews1854/{zoom}/{x}/{-y}.png",
+            "scaleExtent": [
+                13,
+                20
+            ],
+            "polygon": [
+                [
                     [
-                        30.9518556,
-                        -30.0033946
+                        -2.81342686,
+                        56.32097352
                     ],
                     [
-                        30.8651833,
-                        -30.1024093
+                        -2.81405804,
+                        56.3506222
                     ],
                     [
-                        30.7244725,
-                        -30.392502
+                        -2.77243712,
+                        56.35088865
                     ],
                     [
-                        30.3556256,
-                        -30.9308873
-                    ],
+                        -2.77183819,
+                        56.32123967
+                    ]
+                ]
+            ],
+            "terms_url": "http://maps.nls.uk/townplans/st-andrews_1.html",
+            "terms_text": "National Library of Scotland - St Andrews 1854"
+        },
+        {
+            "name": "OS Town Plans, St Andrews 1893 (NLS)",
+            "type": "tms",
+            "description": "Detailed town plan of St Andrews 1893, courtesy of National Library of Scotland.",
+            "template": "http://geo.nls.uk/maps/towns/standrews1893/{zoom}/{x}/{-y}.png",
+            "scaleExtent": [
+                13,
+                20
+            ],
+            "polygon": [
+                [
                     [
-                        30.0972364,
-                        -31.2458274
+                        -2.81545583,
+                        56.31861733
                     ],
                     [
-                        29.8673136,
-                        -31.4304296
+                        -2.81609919,
+                        56.3487653
                     ],
                     [
-                        29.7409393,
-                        -31.5014699
+                        -2.77387785,
+                        56.34903619
                     ],
                     [
-                        29.481312,
-                        -31.6978686
-                    ],
+                        -2.77326775,
+                        56.31888792
+                    ]
+                ]
+            ],
+            "terms_url": "http://maps.nls.uk/townplans/st-andrews_2.html",
+            "terms_text": "National Library of Scotland - St Andrews 1893"
+        },
+        {
+            "name": "OS Town Plans, Stirling 1858 (NLS)",
+            "type": "tms",
+            "description": "Detailed town plan of Stirling 1858, courtesy of National Library of Scotland.",
+            "template": "http://geo.nls.uk/maps/towns/stirling/{zoom}/{x}/{-y}.png",
+            "scaleExtent": [
+                13,
+                20
+            ],
+            "polygon": [
+                [
                     [
-                        28.8943171,
-                        -32.2898903
+                        -3.95768489,
+                        56.10754239
                     ],
                     [
-                        28.5497137,
-                        -32.5894641
+                        -3.95882978,
+                        56.13007142
                     ],
                     [
-                        28.1436499,
-                        -32.8320732
+                        -3.92711024,
+                        56.13057046
                     ],
                     [
-                        28.0748735,
-                        -32.941689
-                    ],
+                        -3.92598386,
+                        56.10804101
+                    ]
+                ]
+            ],
+            "terms_url": "http://maps.nls.uk/townplans/stirling.html",
+            "terms_text": "National Library of Scotland - Stirling 1858"
+        },
+        {
+            "name": "OS Town Plans, Stonehaven 1864 (NLS)",
+            "type": "tms",
+            "description": "Detailed town plan of Stonehaven 1864, courtesy of National Library of Scotland.",
+            "template": "http://geo.nls.uk/maps/towns/stonehaven/{zoom}/{x}/{-y}.png",
+            "scaleExtent": [
+                13,
+                20
+            ],
+            "polygon": [
+                [
                     [
-                        27.8450942,
-                        -33.082869
+                        -2.220167,
+                        56.9565098
                     ],
                     [
-                        27.3757956,
-                        -33.3860685
+                        -2.2202543,
+                        56.97129283
                     ],
                     [
-                        26.8805407,
-                        -33.6458951
+                        -2.19924399,
+                        56.9713281
                     ],
                     [
-                        26.5916871,
-                        -33.7480756
-                    ],
+                        -2.19916501,
+                        56.95654504
+                    ]
+                ]
+            ],
+            "terms_url": "http://maps.nls.uk/townplans/stonehaven.html",
+            "terms_text": "National Library of Scotland - Stonehaven 1864"
+        },
+        {
+            "name": "OS Town Plans, Stranraer 1847 (NLS)",
+            "type": "tms",
+            "description": "Detailed town plan of Stranraer 1847, courtesy of National Library of Scotland.",
+            "template": "http://geo.nls.uk/maps/towns/stranraer1847/{zoom}/{x}/{-y}.png",
+            "scaleExtent": [
+                13,
+                20
+            ],
+            "polygon": [
+                [
                     [
-                        26.4527308,
-                        -33.7935795
+                        -5.04859743,
+                        54.8822997
                     ],
                     [
-                        26.206754,
-                        -33.7548943
+                        -5.0508954,
+                        54.91268061
                     ],
                     [
-                        26.0077897,
-                        -33.7223961
+                        -5.0095373,
+                        54.91371278
                     ],
                     [
-                        25.8055494,
-                        -33.7524272
-                    ],
+                        -5.00727037,
+                        54.88333071
+                    ]
+                ]
+            ],
+            "terms_url": "http://maps.nls.uk/townplans/stranraer_1.html",
+            "terms_text": "National Library of Scotland - Stranraer 1847"
+        },
+        {
+            "name": "OS Town Plans, Stranraer 1863-1877 (NLS)",
+            "type": "tms",
+            "description": "Detailed town plan of Stranraer 1863-1877, courtesy of National Library of Scotland.",
+            "template": "http://geo.nls.uk/maps/towns/stranraer1867/{zoom}/{x}/{-y}.png",
+            "scaleExtent": [
+                13,
+                20
+            ],
+            "polygon": [
+                [
                     [
-                        25.7511073,
-                        -33.8006512
+                        -5.04877289,
+                        54.88228699
                     ],
                     [
-                        25.6529079,
-                        -33.8543597
+                        -5.05107324,
+                        54.9126976
                     ],
                     [
-                        25.6529079,
-                        -33.9469768
+                        -5.00947337,
+                        54.91373582
                     ],
                     [
-                        25.7195789,
-                        -34.0040115
-                    ],
+                        -5.00720427,
+                        54.88332405
+                    ]
+                ]
+            ],
+            "terms_url": "http://maps.nls.uk/townplans/stranraer_1a.html",
+            "terms_text": "National Library of Scotland - Stranraer 1863-1877"
+        },
+        {
+            "name": "OS Town Plans, Stranraer 1893 (NLS)",
+            "type": "tms",
+            "description": "Detailed town plan of Stranraer 1893, courtesy of National Library of Scotland.",
+            "template": "http://geo.nls.uk/maps/towns/stranraer1893/{zoom}/{x}/{-y}.png",
+            "scaleExtent": [
+                13,
+                20
+            ],
+            "polygon": [
+                [
                     [
-                        25.7202807,
-                        -34.0511235
+                        -5.04418424,
+                        54.89773858
                     ],
                     [
-                        25.5508915,
-                        -34.063151
+                        -5.04511026,
+                        54.90999885
                     ],
                     [
-                        25.3504571,
-                        -34.0502627
+                        -5.0140499,
+                        54.91077389
                     ],
                     [
-                        25.2810609,
-                        -34.0020322
-                    ],
+                        -5.0131333,
+                        54.89851327
+                    ]
+                ]
+            ],
+            "terms_url": "http://maps.nls.uk/townplans/stranraer_2.html",
+            "terms_text": "National Library of Scotland - Stranraer 1893"
+        },
+        {
+            "name": "OS Town Plans, Strathaven 1858 (NLS)",
+            "type": "tms",
+            "description": "Detailed town plan of Strathaven 1858, courtesy of National Library of Scotland.",
+            "template": "http://geo.nls.uk/maps/towns/strathaven/{zoom}/{x}/{-y}.png",
+            "scaleExtent": [
+                13,
+                20
+            ],
+            "polygon": [
+                [
                     [
-                        25.0476316,
-                        -33.9994588
+                        -4.06914872,
+                        55.67242091
                     ],
                     [
-                        24.954724,
-                        -34.0043594
+                        -4.06954357,
+                        55.67989707
                     ],
                     [
-                        24.9496586,
-                        -34.1010363
+                        -4.05917487,
+                        55.6800715
                     ],
                     [
-                        24.8770358,
-                        -34.1506456
-                    ],
+                        -4.05878199,
+                        55.67259529
+                    ]
+                ]
+            ],
+            "terms_url": "http://maps.nls.uk/townplans/strathaven.html",
+            "terms_text": "National Library of Scotland - Strathaven 1858"
+        },
+        {
+            "name": "OS Town Plans, Wick 1872 (NLS)",
+            "type": "tms",
+            "description": "Detailed town plan of Wick 1872, courtesy of National Library of Scotland.",
+            "template": "http://geo.nls.uk/maps/towns/wick/{zoom}/{x}/{-y}.png",
+            "scaleExtent": [
+                13,
+                20
+            ],
+            "polygon": [
+                [
                     [
-                        24.8762914,
-                        -34.2005281
+                        -3.11470001,
+                        58.41344839
                     ],
                     [
-                        24.8532574,
-                        -34.2189562
+                        -3.11588837,
+                        58.45101446
                     ],
                     [
-                        24.7645287,
-                        -34.2017946
+                        -3.05949843,
+                        58.45149284
                     ],
                     [
-                        24.5001356,
-                        -34.2003254
-                    ],
+                        -3.05837008,
+                        58.41392606
+                    ]
+                ]
+            ],
+            "terms_url": "http://maps.nls.uk/townplans/wick.html",
+            "terms_text": "National Library of Scotland - Wick 1872"
+        },
+        {
+            "name": "OS Town Plans, Wigtown 1848 (NLS)",
+            "type": "tms",
+            "description": "Detailed town plan of Wigtown 1848, courtesy of National Library of Scotland.",
+            "template": "http://geo.nls.uk/maps/towns/wigtown1848/{zoom}/{x}/{-y}.png",
+            "scaleExtent": [
+                13,
+                20
+            ],
+            "polygon": [
+                [
                     [
-                        24.3486733,
-                        -34.1163824
+                        -4.45235587,
+                        54.8572296
                     ],
                     [
-                        24.1988819,
-                        -34.1019039
+                        -4.45327284,
+                        54.87232603
                     ],
                     [
-                        23.9963377,
-                        -34.0514443
+                        -4.43254469,
+                        54.87274317
                     ],
                     [
-                        23.8017509,
-                        -34.0524332
-                    ],
+                        -4.43163545,
+                        54.85764651
+                    ]
+                ]
+            ],
+            "terms_url": "http://maps.nls.uk/townplans/wigtown_1.html",
+            "terms_text": "National Library of Scotland - Wigtown 1848"
+        },
+        {
+            "name": "OS Town Plans, Wigtown 1894 (NLS)",
+            "type": "tms",
+            "description": "Detailed town plan of Wigtown 1894, courtesy of National Library of Scotland.",
+            "template": "http://geo.nls.uk/maps/towns/wigtown1894/{zoom}/{x}/{-y}.png",
+            "scaleExtent": [
+                13,
+                20
+            ],
+            "polygon": [
+                [
                     [
-                        23.7493589,
-                        -34.0111855
+                        -4.45233361,
+                        54.85721131
                     ],
                     [
-                        23.4973536,
-                        -34.009014
+                        -4.45325423,
+                        54.87236807
                     ],
                     [
-                        23.4155191,
-                        -34.0434586
+                        -4.43257837,
+                        54.87278416
                     ],
                     [
-                        23.4154284,
-                        -34.1140433
+                        -4.43166549,
+                        54.85762716
+                    ]
+                ]
+            ],
+            "terms_url": "http://maps.nls.uk/townplans/wigtown_2.html",
+            "terms_text": "National Library of Scotland - Wigtown 1894"
+        },
+        {
+            "name": "OpenPT Map (overlay)",
+            "type": "tms",
+            "template": "http://openptmap.de/tiles/{zoom}/{x}/{y}.png",
+            "scaleExtent": [
+                5,
+                16
+            ],
+            "polygon": [
+                [
+                    [
+                        6.4901072,
+                        53.665658
                     ],
                     [
-                        22.9000853,
-                        -34.0993009
+                        8.5665347,
+                        53.9848257
                     ],
                     [
-                        22.8412418,
-                        -34.0547911
+                        8.1339457,
+                        54.709715
                     ],
                     [
-                        22.6470321,
-                        -34.0502627
+                        8.317796,
+                        55.0952362
                     ],
                     [
-                        22.6459843,
-                        -34.0072768
+                        10.1887438,
+                        54.7783834
                     ],
                     [
-                        22.570016,
-                        -34.0064081
+                        10.6321475,
+                        54.4778841
                     ],
                     [
-                        22.5050499,
-                        -34.0645866
+                        11.2702164,
+                        54.6221504
                     ],
                     [
-                        22.2519968,
-                        -34.0645866
+                        11.681176,
+                        54.3709243
                     ],
                     [
-                        22.2221334,
-                        -34.1014701
+                        12.0272473,
+                        54.3898199
                     ],
                     [
-                        22.1621197,
-                        -34.1057019
+                        13.3250145,
+                        54.8531617
                     ],
                     [
-                        22.1712431,
-                        -34.1521766
+                        13.9198245,
+                        54.6972173
                     ],
                     [
-                        22.1576913,
-                        -34.2180897
+                        14.2118221,
+                        54.1308273
                     ],
                     [
-                        22.0015632,
-                        -34.2172232
+                        14.493005,
+                        53.2665063
                     ],
                     [
-                        21.9496952,
-                        -34.3220009
+                        14.1577485,
+                        52.8766495
                     ],
                     [
-                        21.8611528,
-                        -34.4007145
+                        14.7525584,
+                        52.5819369
                     ],
                     [
-                        21.5614708,
-                        -34.4020114
+                        15.0986297,
+                        51.0171541
                     ],
                     [
-                        21.5468011,
-                        -34.3661242
+                        14.9364088,
+                        50.8399279
                     ],
                     [
-                        21.501744,
-                        -34.3669892
+                        14.730929,
+                        50.7920977
                     ],
                     [
-                        21.5006961,
-                        -34.4020114
+                        14.4389313,
+                        50.8808862
                     ],
                     [
-                        21.4194886,
-                        -34.4465247
+                        12.9573138,
+                        50.3939044
                     ],
                     [
-                        21.1978706,
-                        -34.4478208
+                        12.51391,
+                        50.3939044
                     ],
                     [
-                        21.0988193,
-                        -34.3991325
+                        12.3084302,
+                        50.1173237
                     ],
                     [
-                        21.0033746,
-                        -34.3753872
+                        12.6112425,
+                        49.9088337
                     ],
                     [
-                        20.893192,
-                        -34.3997115
+                        12.394948,
+                        49.7344006
                     ],
                     [
-                        20.8976647,
-                        -34.4854003
+                        12.7734634,
+                        49.4047626
                     ],
                     [
-                        20.7446802,
-                        -34.4828092
+                        14.1469337,
+                        48.6031036
                     ],
                     [
-                        20.5042011,
-                        -34.486264
+                        14.6768553,
+                        48.6531391
                     ],
                     [
-                        20.2527197,
-                        -34.701477
+                        15.0661855,
+                        49.0445497
                     ],
                     [
-                        20.0803502,
-                        -34.8361855
+                        16.2666202,
+                        48.7459305
                     ],
                     [
-                        19.9923317,
-                        -34.8379056
+                        16.4937294,
+                        48.8741286
                     ],
                     [
-                        19.899074,
-                        -34.8275845
+                        16.904689,
+                        48.7173975
                     ],
                     [
-                        19.8938348,
-                        -34.7936018
+                        16.9371332,
+                        48.5315383
                     ],
                     [
-                        19.5972963,
-                        -34.7961833
+                        16.8384693,
+                        48.3823161
                     ],
                     [
-                        19.3929677,
-                        -34.642015
+                        17.2017097,
+                        48.010204
                     ],
                     [
-                        19.2877095,
-                        -34.6404784
+                        17.1214145,
+                        47.6997605
                     ],
                     [
-                        19.2861377,
-                        -34.5986563
+                        16.777292,
+                        47.6585709
                     ],
                     [
-                        19.3474363,
-                        -34.5244458
+                        16.6090543,
+                        47.7460598
                     ],
                     [
-                        19.3285256,
-                        -34.4534372
+                        16.410228,
+                        47.6637214
                     ],
                     [
-                        19.098001,
-                        -34.449981
+                        16.7352326,
+                        47.6147714
                     ],
                     [
-                        19.0725583,
-                        -34.3802371
+                        16.5555242,
+                        47.3589738
                     ],
                     [
-                        19.0023531,
-                        -34.3525593
+                        16.4790525,
+                        46.9768539
                     ],
                     [
-                        18.9520568,
-                        -34.3949373
+                        16.0355168,
+                        46.8096295
                     ],
                     [
-                        18.7975006,
-                        -34.3936403
+                        16.0508112,
+                        46.6366332
                     ],
                     [
-                        18.7984174,
-                        -34.1016376
+                        14.9572663,
+                        46.6313822
                     ],
                     [
-                        18.501748,
-                        -34.1015292
+                        14.574908,
+                        46.3892866
                     ],
                     [
-                        18.4999545,
-                        -34.3616945
+                        12.3954655,
+                        46.6891149
                     ],
                     [
-                        18.4477325,
-                        -34.3620007
+                        12.1507562,
+                        47.0550608
                     ],
                     [
-                        18.4479944,
-                        -34.3522691
+                        11.1183887,
+                        46.9142058
                     ],
                     [
-                        18.3974362,
-                        -34.3514041
+                        11.0342699,
+                        46.7729797
                     ],
                     [
-                        18.3971742,
-                        -34.3022959
+                        10.4836739,
+                        46.8462544
                     ],
                     [
-                        18.3565705,
-                        -34.3005647
+                        10.4607324,
+                        46.5472973
                     ],
                     [
-                        18.3479258,
-                        -34.2020436
+                        10.1013156,
+                        46.5735879
                     ],
                     [
-                        18.2972095,
-                        -34.1950274
+                        10.2007287,
+                        46.1831867
                     ],
                     [
-                        18.2951139,
-                        -33.9937138
+                        9.8948421,
+                        46.3629068
                     ],
                     [
-                        18.3374474,
-                        -33.9914079
+                        9.5966026,
+                        46.2889758
                     ],
                     [
-                        18.3476638,
-                        -33.8492427
+                        9.2983631,
+                        46.505206
                     ],
                     [
-                        18.3479258,
-                        -33.781555
+                        9.2830687,
+                        46.2572605
                     ],
                     [
-                        18.4124718,
-                        -33.7448849
+                        9.0536537,
+                        45.7953255
                     ],
                     [
-                        18.3615477,
-                        -33.6501624
+                        8.4265861,
+                        46.2466846
                     ],
                     [
-                        18.2992013,
-                        -33.585591
+                        8.4418804,
+                        46.4736161
                     ],
                     [
-                        18.2166839,
-                        -33.448872
+                        7.8759901,
+                        45.9284607
                     ],
                     [
-                        18.1389858,
-                        -33.3974083
+                        7.0959791,
+                        45.8645956
                     ],
                     [
-                        17.9473472,
-                        -33.1602647
+                        6.7747981,
+                        46.1620044
                     ],
                     [
-                        17.8855247,
-                        -33.0575732
+                        6.8206811,
+                        46.4051083
                     ],
                     [
-                        17.8485884,
-                        -32.9668505
+                        6.5453831,
+                        46.4578142
                     ],
                     [
-                        17.8396817,
-                        -32.8507302
-                    ]
-                ]
-            ]
-        },
-        {
-            "name": "South Tyrol Orthofoto 2011",
-            "type": "tms",
-            "template": "http://sdi.provincia.bz.it/geoserver/gwc/service/tms/1.0.0/WMTS_OF2011_APB-PAB@GoogleMapsCompatible@png8/{z}/{x}/{-y}.png",
-            "polygon": [
-                [
-                    [
-                        10.373383,
-                        46.213553
+                        6.3312624,
+                        46.3840116
                     ],
                     [
-                        10.373383,
-                        47.098175
+                        6.3847926,
+                        46.2466846
                     ],
                     [
-                        12.482758,
-                        47.098175
+                        5.8953739,
+                        46.0878021
                     ],
                     [
-                        12.482758,
-                        46.213553
+                        6.1171418,
+                        46.3681838
                     ],
                     [
-                        10.373383,
-                        46.213553
-                    ]
-                ]
-            ],
-            "id": "sdi.provinz.bz.it-WMTS_OF2011_APB-PAB"
-        },
-        {
-            "name": "South Tyrol Topomap",
-            "type": "tms",
-            "template": "http://sdi.provincia.bz.it/geoserver/gwc/service/tms/1.0.0/WMTS_TOPOMAP_APB-PAB@GoogleMapsCompatible@png8/{z}/{x}/{-y}.png",
-            "polygon": [
-                [
-                    [
-                        10.373383,
-                        46.213553
+                        6.0942003,
+                        46.5998657
                     ],
                     [
-                        10.373383,
-                        47.098175
+                        6.4383228,
+                        46.7782169
                     ],
                     [
-                        12.482758,
-                        47.098175
+                        6.4306756,
+                        46.9298747
                     ],
                     [
-                        12.482758,
-                        46.213553
+                        7.0806847,
+                        47.3460216
                     ],
                     [
-                        10.373383,
-                        46.213553
-                    ]
-                ]
-            ],
-            "id": "sdi.provinz.bz.it-WMTS_TOPOMAP_APB-PAB"
-        },
-        {
-            "name": "Stadt Uster Orthophoto 2008 10cm",
-            "type": "tms",
-            "template": "http://mapproxy.sosm.ch:8080/tiles/uster/EPSG900913/{zoom}/{x}/{y}.png?origin=nw",
-            "polygon": [
-                [
-                    [
-                        8.6,
-                        47.31
+                        6.8436226,
+                        47.3719227
                     ],
                     [
-                        8.6,
-                        47.39
+                        6.9965659,
+                        47.5012373
                     ],
                     [
-                        8.77,
-                        47.39
+                        7.1800979,
+                        47.5064033
                     ],
                     [
-                        8.77,
-                        47.31
+                        7.2336281,
+                        47.439206
                     ],
                     [
-                        8.6,
-                        47.31
-                    ]
-                ]
-            ],
-            "terms_text": "Stadt Uster Vermessung Orthophoto 2008"
-        },
-        {
-            "name": "Stevns (Denmark)",
-            "type": "tms",
-            "template": "http://{switch:a,b,c}.tile.openstreetmap.dk/stevns/2009/{zoom}/{x}/{y}.png",
-            "scaleExtent": [
-                0,
-                20
-            ],
-            "polygon": [
-                [
+                        7.4553959,
+                        47.4805683
+                    ],
                     [
-                        12.0913942,
-                        55.3491574
+                        7.7842241,
+                        48.645735
                     ],
                     [
-                        12.0943104,
-                        55.3842256
+                        8.1971711,
+                        49.0282701
                     ],
                     [
-                        12.1573875,
-                        55.3833103
+                        7.6006921,
+                        49.0382974
                     ],
                     [
-                        12.1587287,
-                        55.4013326
+                        7.4477487,
+                        49.1634679
                     ],
                     [
-                        12.1903468,
-                        55.400558
+                        7.2030394,
+                        49.1034255
                     ],
                     [
-                        12.1931411,
-                        55.4364665
+                        6.6677378,
+                        49.1634679
                     ],
                     [
-                        12.2564251,
-                        55.4347995
+                        6.6371491,
+                        49.3331933
                     ],
                     [
-                        12.2547073,
-                        55.4168882
+                        6.3542039,
+                        49.4576194
                     ],
                     [
-                        12.3822489,
-                        55.4134349
+                        6.5453831,
+                        49.8043366
                     ],
                     [
-                        12.3795942,
-                        55.3954143
+                        6.2471436,
+                        49.873384
                     ],
                     [
-                        12.4109213,
-                        55.3946958
+                        6.0789059,
+                        50.1534883
                     ],
                     [
-                        12.409403,
-                        55.3766417
+                        6.3618511,
+                        50.3685934
                     ],
                     [
-                        12.4407807,
-                        55.375779
+                        6.0865531,
+                        50.7039632
                     ],
                     [
-                        12.4394142,
-                        55.3578314
+                        5.8800796,
+                        51.0513752
                     ],
                     [
-                        12.4707413,
-                        55.3569971
+                        6.1247889,
+                        51.1618085
                     ],
                     [
-                        12.4629475,
-                        55.2672214
+                        6.1936134,
+                        51.491527
                     ],
                     [
-                        12.4315633,
-                        55.2681491
+                        5.9641984,
+                        51.7526501
                     ],
                     [
-                        12.430045,
-                        55.2502103
+                        6.0253758,
+                        51.8897286
                     ],
                     [
-                        12.3672011,
-                        55.2519673
+                        6.4536171,
+                        51.8661241
                     ],
                     [
-                        12.3656858,
-                        55.2340267
+                        6.8436226,
+                        51.9557552
                     ],
                     [
-                        12.2714604,
-                        55.2366031
+                        6.6906793,
+                        52.0499105
                     ],
                     [
-                        12.2744467,
-                        55.272476
+                        7.0042131,
+                        52.2282603
                     ],
                     [
-                        12.2115654,
-                        55.2741475
+                        7.0195074,
+                        52.4525245
                     ],
                     [
-                        12.2130078,
-                        55.2920322
+                        6.6983264,
+                        52.4665032
                     ],
                     [
-                        12.1815665,
-                        55.2928638
+                        6.6906793,
+                        52.6524628
                     ],
                     [
-                        12.183141,
-                        55.3107091
+                        7.0348017,
+                        52.6385432
                     ],
                     [
-                        12.2144897,
-                        55.3100981
+                        7.0730376,
+                        52.8330151
                     ],
                     [
-                        12.2159927,
-                        55.3279764
+                        7.2183337,
+                        52.9852064
                     ],
                     [
-                        12.1214458,
-                        55.3303379
+                        7.1953922,
+                        53.3428087
                     ],
                     [
-                        12.1229489,
-                        55.3483291
+                        7.0042131,
+                        53.3291098
                     ]
                 ]
             ],
-            "terms_text": "Stevns Kommune"
+            "terms_url": "http://openstreetmap.org/",
+            "terms_text": "© OpenStreetMap contributors, CC-BY-SA"
         },
         {
-            "name": "Surrey Air Survey",
+            "name": "OpenStreetMap (Mapnik)",
             "type": "tms",
-            "template": "http://gravitystorm.dev.openstreetmap.org/surrey/{zoom}/{x}/{y}.png",
+            "description": "The default OpenStreetMap layer.",
+            "template": "http://{switch:a,b,c}.tile.openstreetmap.org/{zoom}/{x}/{y}.png",
             "scaleExtent": [
-                8,
+                0,
+                19
+            ],
+            "terms_url": "http://openstreetmap.org/",
+            "terms_text": "© OpenStreetMap contributors, CC-BY-SA",
+            "id": "MAPNIK",
+            "default": true
+        },
+        {
+            "name": "OpenStreetMap GPS traces",
+            "type": "tms",
+            "description": "Public GPS traces uploaded to OpenStreetMap.",
+            "template": "http://{switch:a,b,c}.gps-tile.openstreetmap.org/lines/{zoom}/{x}/{y}.png",
+            "scaleExtent": [
+                0,
+                20
+            ],
+            "terms_url": "http://www.openstreetmap.org/copyright",
+            "terms_text": "© OpenStreetMap contributors",
+            "terms_html": "© <a href='http://www.openstreetmap.org/copyright'>OpenStreetMap contributors</a>. North: <span style='display: inline-block; width: 10px; height: 10px; background-color: #7fed11;'></span> South: <span style='display: inline-block; width: 10px; height: 10px; background-color: #7f11ed;'></span> East: <span style='display: inline-block; width: 10px; height: 10px; background-color: #ff3f3f;'></span> West: <span style='display: inline-block; width: 10px; height: 10px; background-color: #00bfbf;'></span>",
+            "overlay": true
+        },
+        {
+            "name": "Pangasinán/Bulacan (Phillipines HiRes)",
+            "type": "tms",
+            "template": "http://gravitystorm.dev.openstreetmap.org/imagery/philippines/{zoom}/{x}/{y}.png",
+            "scaleExtent": [
+                12,
                 19
             ],
             "polygon": [
                 [
                     [
-                        -0.752478,
-                        51.0821941
+                        120.336593,
+                        15.985768
                     ],
                     [
-                        -0.7595183,
-                        51.0856254
+                        120.445995,
+                        15.984
                     ],
                     [
-                        -0.8014342,
-                        51.1457917
+                        120.446134,
+                        15.974459
                     ],
                     [
-                        -0.8398864,
-                        51.1440686
+                        120.476464,
+                        15.974592
                     ],
                     [
-                        -0.8357665,
-                        51.1802397
+                        120.594247,
+                        15.946832
                     ],
                     [
-                        -0.8529549,
-                        51.2011266
+                        120.598064,
+                        16.090795
                     ],
                     [
-                        -0.8522683,
-                        51.2096231
+                        120.596537,
+                        16.197999
                     ],
                     [
-                        -0.8495217,
-                        51.217903
+                        120.368537,
+                        16.218527
                     ],
                     [
-                        -0.8266907,
-                        51.2403696
+                        120.347576,
+                        16.042308
                     ],
                     [
-                        -0.8120995,
-                        51.2469248
-                    ],
+                        120.336593,
+                        15.985768
+                    ]
+                ],
+                [
                     [
-                        -0.7736474,
-                        51.2459577
+                        120.8268,
+                        15.3658
                     ],
                     [
-                        -0.7544213,
-                        51.2381127
+                        121.2684,
+                        15.2602
                     ],
                     [
-                        -0.754078,
-                        51.233921
+                        121.2699,
+                        14.7025
                     ],
                     [
-                        -0.7446366,
-                        51.2333836
-                    ],
+                        120.695,
+                        14.8423
+                    ]
+                ]
+            ]
+        },
+        {
+            "name": "Slovakia EEA CORINE 2006",
+            "type": "tms",
+            "template": "http://www.freemap.sk/tms/clc/{zoom}/{x}/{y}.png",
+            "polygon": [
+                [
                     [
-                        -0.7430693,
-                        51.2847178
+                        19.83682,
+                        49.25529
                     ],
                     [
-                        -0.751503,
-                        51.3069524
+                        19.80075,
+                        49.42385
                     ],
                     [
-                        -0.7664376,
-                        51.3121032
+                        19.60437,
+                        49.48058
                     ],
                     [
-                        -0.7820588,
-                        51.3270157
+                        19.49179,
+                        49.63961
                     ],
                     [
-                        -0.7815438,
-                        51.3388135
+                        19.21831,
+                        49.52604
                     ],
                     [
-                        -0.7374268,
-                        51.3720456
+                        19.16778,
+                        49.42521
                     ],
                     [
-                        -0.7192307,
-                        51.3769748
+                        19.00308,
+                        49.42236
                     ],
                     [
-                        -0.6795769,
-                        51.3847961
+                        18.97611,
+                        49.5308
                     ],
                     [
-                        -0.6807786,
-                        51.3901523
+                        18.54685,
+                        49.51425
                     ],
                     [
-                        -0.6531411,
-                        51.3917591
+                        18.31432,
+                        49.33818
                     ],
                     [
-                        -0.6301385,
-                        51.3905808
+                        18.15913,
+                        49.2961
                     ],
                     [
-                        -0.6291085,
-                        51.3970074
+                        18.05564,
+                        49.11134
                     ],
                     [
-                        -0.6234437,
-                        51.3977572
+                        17.56396,
+                        48.84938
                     ],
                     [
-                        -0.613144,
-                        51.4295552
+                        17.17929,
+                        48.88816
                     ],
                     [
-                        -0.6002471,
-                        51.4459121
+                        17.058,
+                        48.81105
                     ],
                     [
-                        -0.5867081,
-                        51.4445365
+                        16.90426,
+                        48.61947
                     ],
                     [
-                        -0.5762368,
-                        51.453202
+                        16.79685,
+                        48.38561
                     ],
                     [
-                        -0.5626755,
-                        51.4523462
+                        17.06762,
+                        48.01116
                     ],
                     [
-                        -0.547741,
-                        51.4469972
+                        17.32787,
+                        47.97749
                     ],
                     [
-                        -0.5372697,
-                        51.4448575
+                        17.51699,
+                        47.82535
                     ],
                     [
-                        -0.537098,
-                        51.4526671
+                        17.74776,
+                        47.73093
                     ],
                     [
-                        -0.5439644,
-                        51.4545926
+                        18.29515,
+                        47.72075
                     ],
                     [
-                        -0.5405312,
-                        51.4698865
+                        18.67959,
+                        47.75541
                     ],
                     [
-                        -0.5309182,
-                        51.4760881
+                        18.89755,
+                        47.81203
                     ],
                     [
-                        -0.5091172,
-                        51.4744843
+                        18.79463,
+                        47.88245
                     ],
                     [
-                        -0.5086022,
-                        51.4695657
+                        18.84318,
+                        48.04046
                     ],
                     [
-                        -0.4900628,
-                        51.4682825
+                        19.46212,
+                        48.05333
                     ],
                     [
-                        -0.4526406,
-                        51.4606894
+                        19.62064,
+                        48.22938
                     ],
                     [
-                        -0.4486924,
-                        51.4429316
+                        19.89585,
+                        48.09387
                     ],
                     [
-                        -0.4414826,
-                        51.4418616
+                        20.33766,
+                        48.2643
                     ],
                     [
-                        -0.4418259,
-                        51.4369394
+                        20.55395,
+                        48.52358
                     ],
                     [
-                        -0.4112702,
-                        51.4380095
+                        20.82335,
+                        48.55714
                     ],
                     [
-                        -0.4014855,
-                        51.4279498
+                        21.10271,
+                        48.47096
                     ],
                     [
-                        -0.3807145,
-                        51.4262372
+                        21.45863,
+                        48.55513
                     ],
                     [
-                        -0.3805428,
-                        51.4161749
-                    ],
-                    [
-                        -0.3491288,
-                        51.4138195
-                    ],
-                    [
-                        -0.3274994,
-                        51.4037544
-                    ],
-                    [
-                        -0.3039818,
-                        51.3990424
-                    ],
-                    [
-                        -0.3019219,
-                        51.3754747
-                    ],
-                    [
-                        -0.309475,
-                        51.369688
-                    ],
-                    [
-                        -0.3111916,
-                        51.3529669
-                    ],
-                    [
-                        -0.2955704,
-                        51.3541462
+                        21.74536,
+                        48.31435
                     ],
                     [
-                        -0.2923089,
-                        51.3673303
+                        22.15293,
+                        48.37179
                     ],
                     [
-                        -0.2850991,
-                        51.3680805
+                        22.61255,
+                        49.08914
                     ],
                     [
-                        -0.2787476,
-                        51.3771891
+                        22.09997,
+                        49.23814
                     ],
                     [
-                        -0.2655297,
-                        51.3837247
+                        21.9686,
+                        49.36363
                     ],
                     [
-                        -0.2411538,
-                        51.3847961
+                        21.6244,
+                        49.46989
                     ],
                     [
-                        -0.2123147,
-                        51.3628288
+                        21.06873,
+                        49.46402
                     ],
                     [
-                        -0.2107697,
-                        51.3498578
+                        20.94336,
+                        49.31088
                     ],
                     [
-                        -0.190857,
-                        51.3502867
+                        20.73052,
+                        49.44006
                     ],
                     [
-                        -0.1542931,
-                        51.3338802
+                        20.22804,
+                        49.41714
                     ],
                     [
-                        -0.1496583,
-                        51.3057719
+                        20.05234,
+                        49.23052
                     ],
                     [
-                        -0.1074296,
-                        51.2966491
-                    ],
+                        19.83682,
+                        49.25529
+                    ]
+                ]
+            ],
+            "terms_url": "http://www.eea.europa.eu/data-and-maps/data/clc-2006-vector-data-version-1",
+            "terms_text": "EEA Corine 2006"
+        },
+        {
+            "name": "Slovakia EEA GMES Urban Atlas",
+            "type": "tms",
+            "template": "http://www.freemap.sk/tms/urbanatlas/{zoom}/{x}/{y}.png",
+            "polygon": [
+                [
                     [
-                        -0.0887185,
-                        51.3099571
+                        19.83682,
+                        49.25529
                     ],
                     [
-                        -0.0878602,
-                        51.3220811
+                        19.80075,
+                        49.42385
                     ],
                     [
-                        -0.0652009,
-                        51.3215448
+                        19.60437,
+                        49.48058
                     ],
                     [
-                        -0.0641709,
-                        51.3264793
+                        19.49179,
+                        49.63961
                     ],
                     [
-                        -0.0519829,
-                        51.3263721
+                        19.21831,
+                        49.52604
                     ],
                     [
-                        -0.0528412,
-                        51.334631
+                        19.16778,
+                        49.42521
                     ],
                     [
-                        -0.0330779,
-                        51.3430876
+                        19.00308,
+                        49.42236
                     ],
                     [
-                        0.0019187,
-                        51.3376339
+                        18.97611,
+                        49.5308
                     ],
                     [
-                        0.0118751,
-                        51.3281956
+                        18.54685,
+                        49.51425
                     ],
                     [
-                        0.013935,
-                        51.2994398
+                        18.31432,
+                        49.33818
                     ],
                     [
-                        0.0202865,
-                        51.2994398
+                        18.15913,
+                        49.2961
                     ],
                     [
-                        0.0240631,
-                        51.3072743
+                        18.05564,
+                        49.11134
                     ],
                     [
-                        0.0331611,
-                        51.3086694
+                        17.56396,
+                        48.84938
                     ],
                     [
-                        0.0455207,
-                        51.30545
+                        17.17929,
+                        48.88816
                     ],
                     [
-                        0.0523872,
-                        51.2877392
+                        17.058,
+                        48.81105
                     ],
                     [
-                        0.0616569,
-                        51.2577764
+                        16.90426,
+                        48.61947
                     ],
                     [
-                        0.0640602,
-                        51.2415518
+                        16.79685,
+                        48.38561
                     ],
                     [
-                        0.0462074,
-                        51.2126342
+                        17.06762,
+                        48.01116
                     ],
                     [
-                        0.0407142,
-                        51.2109136
+                        17.32787,
+                        47.97749
                     ],
                     [
-                        0.0448341,
-                        51.1989753
+                        17.51699,
+                        47.82535
                     ],
                     [
-                        0.0494689,
-                        51.1997283
+                        17.74776,
+                        47.73093
                     ],
                     [
-                        0.0558204,
-                        51.1944573
+                        18.29515,
+                        47.72075
                     ],
                     [
-                        0.0611419,
-                        51.1790713
+                        18.67959,
+                        47.75541
                     ],
                     [
-                        0.0623435,
-                        51.1542061
+                        18.89755,
+                        47.81203
                     ],
                     [
-                        0.0577087,
-                        51.1417146
+                        18.79463,
+                        47.88245
                     ],
                     [
-                        0.0204582,
-                        51.1365447
+                        18.84318,
+                        48.04046
                     ],
                     [
-                        -0.0446015,
-                        51.1336364
+                        19.46212,
+                        48.05333
                     ],
                     [
-                        -0.1566964,
-                        51.1352522
+                        19.62064,
+                        48.22938
                     ],
                     [
-                        -0.1572114,
-                        51.1290043
+                        19.89585,
+                        48.09387
                     ],
                     [
-                        -0.2287942,
-                        51.1183379
+                        20.33766,
+                        48.2643
                     ],
                     [
-                        -0.2473336,
-                        51.1183379
+                        20.55395,
+                        48.52358
                     ],
                     [
-                        -0.2500802,
-                        51.1211394
+                        20.82335,
+                        48.55714
                     ],
                     [
-                        -0.299347,
-                        51.1137042
+                        21.10271,
+                        48.47096
                     ],
                     [
-                        -0.3221779,
-                        51.1119799
+                        21.45863,
+                        48.55513
                     ],
                     [
-                        -0.3223496,
-                        51.1058367
+                        21.74536,
+                        48.31435
                     ],
                     [
-                        -0.3596001,
-                        51.1019563
+                        22.15293,
+                        48.37179
                     ],
                     [
-                        -0.3589135,
-                        51.1113333
+                        22.61255,
+                        49.08914
                     ],
                     [
-                        -0.3863793,
-                        51.1117644
+                        22.09997,
+                        49.23814
                     ],
                     [
-                        -0.3869014,
-                        51.1062516
+                        21.9686,
+                        49.36363
                     ],
                     [
-                        -0.4281001,
-                        51.0947174
+                        21.6244,
+                        49.46989
                     ],
                     [
-                        -0.4856784,
-                        51.0951554
+                        21.06873,
+                        49.46402
                     ],
                     [
-                        -0.487135,
-                        51.0872266
+                        20.94336,
+                        49.31088
                     ],
                     [
-                        -0.5297404,
-                        51.0865404
+                        20.73052,
+                        49.44006
                     ],
                     [
-                        -0.5302259,
-                        51.0789914
+                        20.22804,
+                        49.41714
                     ],
                     [
-                        -0.61046,
-                        51.076551
+                        20.05234,
+                        49.23052
                     ],
                     [
-                        -0.6099745,
-                        51.080669
-                    ],
+                        19.83682,
+                        49.25529
+                    ]
+                ]
+            ],
+            "terms_url": "http://www.eea.europa.eu/data-and-maps/data/urban-atlas",
+            "terms_text": "EEA GMES Urban Atlas"
+        },
+        {
+            "name": "Slovakia Historic Maps",
+            "type": "tms",
+            "template": "http://tms.freemap.sk/historicke/{zoom}/{x}/{y}.png",
+            "scaleExtent": [
+                0,
+                12
+            ],
+            "polygon": [
+                [
                     [
-                        -0.6577994,
-                        51.0792202
+                        16.8196949,
+                        47.4927236
                     ],
                     [
-                        -0.6582849,
-                        51.0743394
+                        16.8196949,
+                        49.5030322
                     ],
                     [
-                        -0.6836539,
-                        51.0707547
+                        22.8388318,
+                        49.5030322
                     ],
                     [
-                        -0.6997979,
-                        51.070831
+                        22.8388318,
+                        47.4927236
                     ],
                     [
-                        -0.7296581,
-                        51.0744919
+                        16.8196949,
+                        47.4927236
                     ]
                 ]
             ]
         },
         {
-            "name": "Toulouse - Orthophotoplan 2007",
+            "name": "South Africa CD:NGI Aerial",
             "type": "tms",
-            "template": "http://wms.openstreetmap.fr/tms/1.0.0/toulouse_ortho2007/{zoom}/{x}/{y}",
+            "template": "http://{switch:a,b,c}.aerial.openstreetmap.org.za/ngi-aerial/{zoom}/{x}/{y}.jpg",
             "scaleExtent": [
-                0,
+                1,
                 22
             ],
             "polygon": [
                 [
                     [
-                        1.1919978,
-                        43.6328791
+                        17.8396817,
+                        -32.7983384
                     ],
                     [
-                        1.2015377,
-                        43.6329729
+                        17.8893509,
+                        -32.6972835
                     ],
                     [
-                        1.2011107,
-                        43.6554932
+                        18.00364,
+                        -32.6982187
                     ],
                     [
-                        1.2227985,
-                        43.6557029
+                        18.0991679,
+                        -32.7485251
                     ],
                     [
-                        1.2226231,
-                        43.6653353
+                        18.2898747,
+                        -32.5526645
                     ],
                     [
-                        1.2275341,
-                        43.6653849
+                        18.2930182,
+                        -32.0487089
                     ],
                     [
-                        1.2275417,
-                        43.6656387
+                        18.105455,
+                        -31.6454966
                     ],
                     [
-                        1.2337568,
-                        43.6656883
+                        17.8529257,
+                        -31.3443951
                     ],
                     [
-                        1.2337644,
-                        43.6650153
+                        17.5480046,
+                        -30.902171
                     ],
                     [
-                        1.2351218,
-                        43.6650319
+                        17.4044506,
+                        -30.6374731
                     ],
                     [
-                        1.2350913,
-                        43.6670729
+                        17.2493704,
+                        -30.3991663
                     ],
                     [
-                        1.2443566,
-                        43.6671556
+                        16.9936977,
+                        -29.6543552
                     ],
                     [
-                        1.2441584,
-                        43.6743925
+                        16.7987996,
+                        -29.19437
                     ],
                     [
-                        1.2493973,
-                        43.6744256
+                        16.5494139,
+                        -28.8415949
                     ],
                     [
-                        1.2493973,
-                        43.6746628
+                        16.4498691,
+                        -28.691876
                     ],
                     [
-                        1.2555666,
-                        43.6747234
+                        16.4491046,
+                        -28.5515766
                     ],
                     [
-                        1.2555742,
-                        43.6744532
+                        16.6002551,
+                        -28.4825663
                     ],
                     [
-                        1.2569545,
-                        43.6744697
+                        16.7514057,
+                        -28.4486958
                     ],
                     [
-                        1.2568782,
-                        43.678529
+                        16.7462192,
+                        -28.2458973
                     ],
                     [
-                        1.2874873,
-                        43.6788257
+                        16.8855148,
+                        -28.04729
                     ],
                     [
-                        1.2870803,
-                        43.7013229
+                        16.9929502,
+                        -28.0244005
                     ],
                     [
-                        1.3088219,
-                        43.7014632
+                        17.0529659,
+                        -28.0257086
                     ],
                     [
-                        1.3086493,
-                        43.7127673
+                        17.1007562,
+                        -28.0338839
                     ],
                     [
-                        1.3303262,
-                        43.7129544
+                        17.2011527,
+                        -28.0930546
                     ],
                     [
-                        1.3300242,
-                        43.7305221
+                        17.2026346,
+                        -28.2328424
                     ],
                     [
-                        1.3367106,
-                        43.7305845
+                        17.2474611,
+                        -28.2338215
                     ],
                     [
-                        1.3367322,
-                        43.7312235
+                        17.2507953,
+                        -28.198892
                     ],
                     [
-                        1.3734338,
-                        43.7310456
+                        17.3511919,
+                        -28.1975861
                     ],
                     [
-                        1.3735848,
-                        43.7245772
+                        17.3515624,
+                        -28.2442655
                     ],
                     [
-                        1.4604504,
-                        43.7252947
+                        17.4015754,
+                        -28.2452446
                     ],
                     [
-                        1.4607783,
-                        43.7028034
+                        17.4149122,
+                        -28.3489751
                     ],
                     [
-                        1.4824875,
-                        43.7029516
+                        17.4008345,
+                        -28.547997
                     ],
                     [
-                        1.4829828,
-                        43.6692071
+                        17.4526999,
+                        -28.5489733
                     ],
                     [
-                        1.5046832,
-                        43.6693616
+                        17.4512071,
+                        -28.6495106
                     ],
                     [
-                        1.5048383,
-                        43.6581174
+                        17.4983599,
+                        -28.6872054
                     ],
                     [
-                        1.5265475,
-                        43.6582656
+                        17.6028204,
+                        -28.6830048
                     ],
                     [
-                        1.5266945,
-                        43.6470298
+                        17.6499732,
+                        -28.6967928
                     ],
                     [
-                        1.548368,
-                        43.6471633
+                        17.6525928,
+                        -28.7381457
                     ],
                     [
-                        1.5485357,
-                        43.6359385
+                        17.801386,
+                        -28.7381457
                     ],
                     [
-                        1.5702172,
-                        43.636082
+                        17.9994276,
+                        -28.7560602
                     ],
                     [
-                        1.5705123,
-                        43.6135777
+                        18.0002748,
+                        -28.7956172
                     ],
                     [
-                        1.5488166,
-                        43.6134276
+                        18.1574507,
+                        -28.8718055
                     ],
                     [
-                        1.549097,
-                        43.5909479
+                        18.5063811,
+                        -28.8718055
                     ],
                     [
-                        1.5707695,
-                        43.5910694
+                        18.6153564,
+                        -28.8295875
                     ],
                     [
-                        1.5709373,
-                        43.5798341
+                        18.9087513,
+                        -28.8277516
                     ],
                     [
-                        1.5793714,
-                        43.5798894
+                        19.1046973,
+                        -28.9488548
                     ],
                     [
-                        1.5794782,
-                        43.5737682
+                        19.1969071,
+                        -28.9378513
                     ],
                     [
-                        1.5809119,
-                        43.5737792
+                        19.243012,
+                        -28.8516164
                     ],
                     [
-                        1.5810859,
-                        43.5573794
+                        19.2314858,
+                        -28.802963
                     ],
                     [
-                        1.5712334,
-                        43.5573131
+                        19.2587296,
+                        -28.7009928
                     ],
                     [
-                        1.5716504,
-                        43.5235497
+                        19.4431493,
+                        -28.6973163
                     ],
                     [
-                        1.3984804,
-                        43.5222618
+                        19.5500289,
+                        -28.4958332
                     ],
                     [
-                        1.3986509,
-                        43.5110113
+                        19.6967264,
+                        -28.4939914
                     ],
                     [
-                        1.3120959,
-                        43.5102543
+                        19.698822,
+                        -28.4479358
                     ],
                     [
-                        1.3118968,
-                        43.5215192
+                        19.8507587,
+                        -28.4433291
                     ],
                     [
-                        1.2902569,
-                        43.5213126
+                        19.8497109,
+                        -28.4027818
                     ],
                     [
-                        1.2898637,
-                        43.5438168
+                        19.9953605,
+                        -28.399095
                     ],
                     [
-                        1.311517,
-                        43.5440133
+                        19.9893671,
+                        -24.7497859
                     ],
                     [
-                        1.3113271,
-                        43.5552596
+                        20.2916682,
+                        -24.9192346
                     ],
                     [
-                        1.3036924,
-                        43.5551924
+                        20.4724562,
+                        -25.1501701
                     ],
                     [
-                        1.3036117,
-                        43.5595099
+                        20.6532441,
+                        -25.4529449
                     ],
                     [
-                        1.2955449,
-                        43.5594317
+                        20.733265,
+                        -25.6801957
                     ],
                     [
-                        1.2955449,
-                        43.5595489
+                        20.8281046,
+                        -25.8963498
                     ],
                     [
-                        1.2895595,
-                        43.5594473
+                        20.8429232,
+                        -26.215851
                     ],
                     [
-                        1.2892899,
-                        43.5775366
+                        20.6502804,
+                        -26.4840868
                     ],
                     [
-                        1.2675698,
-                        43.5773647
+                        20.6532441,
+                        -26.8204869
                     ],
                     [
-                        1.2673973,
-                        43.5886141
+                        21.0889134,
+                        -26.846933
                     ],
                     [
-                        1.25355,
-                        43.5885047
+                        21.6727695,
+                        -26.8389998
                     ],
                     [
-                        1.2533774,
-                        43.5956282
+                        21.7765003,
+                        -26.6696268
                     ],
                     [
-                        1.2518029,
-                        43.5956282
+                        21.9721069,
+                        -26.6431395
                     ],
                     [
-                        1.2518029,
-                        43.5949409
+                        22.2803355,
+                        -26.3274702
                     ],
                     [
-                        1.2350437,
-                        43.5947847
+                        22.5707817,
+                        -26.1333967
                     ],
                     [
-                        1.2350437,
-                        43.5945972
+                        22.7752795,
+                        -25.6775246
                     ],
                     [
-                        1.2239572,
-                        43.5945972
+                        23.0005235,
+                        -25.2761948
                     ],
                     [
-                        1.2239357,
-                        43.5994708
+                        23.4658301,
+                        -25.2735148
                     ],
                     [
-                        1.2139708,
-                        43.599299
+                        23.883717,
+                        -25.597366
                     ],
                     [
-                        1.2138845,
-                        43.6046408
+                        24.2364017,
+                        -25.613402
                     ],
                     [
-                        1.2020647,
-                        43.6044846
+                        24.603905,
+                        -25.7896563
                     ],
                     [
-                        1.2019464,
-                        43.61048
+                        25.110704,
+                        -25.7389432
                     ],
                     [
-                        1.1924294,
-                        43.6103695
-                    ]
-                ]
-            ],
-            "terms_url": "https://wiki.openstreetmap.org/wiki/Toulouse/ToulouseMetropoleData",
-            "terms_text": "ToulouseMetropole"
-        },
-        {
-            "name": "Toulouse - Orthophotoplan 2011",
-            "type": "tms",
-            "template": "http://wms.openstreetmap.fr/tms/1.0.0/toulouse_ortho2011/{zoom}/{x}/{y}",
-            "scaleExtent": [
-                0,
-                22
-            ],
-            "polygon": [
-                [
-                    [
-                        1.1135067,
-                        43.6867566
+                        25.5078447,
+                        -25.6855376
                     ],
                     [
-                        1.1351836,
-                        43.6870842
+                        25.6441766,
+                        -25.4823781
                     ],
                     [
-                        1.1348907,
-                        43.6983471
+                        25.8419267,
+                        -24.7805437
                     ],
                     [
-                        1.1782867,
-                        43.6990338
+                        25.846641,
+                        -24.7538456
                     ],
                     [
-                        1.1779903,
-                        43.7102786
+                        26.3928487,
+                        -24.6332894
                     ],
                     [
-                        1.1996591,
-                        43.7106144
+                        26.4739066,
+                        -24.5653312
                     ],
                     [
-                        1.1993387,
-                        43.7218722
+                        26.5089966,
+                        -24.4842437
                     ],
                     [
-                        1.2427356,
-                        43.7225269
+                        26.5861946,
+                        -24.4075775
                     ],
                     [
-                        1.2424336,
-                        43.7337491
+                        26.7300635,
+                        -24.3014458
                     ],
                     [
-                        1.2641536,
-                        43.734092
+                        26.8567384,
+                        -24.2499463
                     ],
                     [
-                        1.2638301,
-                        43.7453588
+                        26.8574402,
+                        -24.1026901
                     ],
                     [
-                        1.2855285,
-                        43.7456548
+                        26.9215471,
+                        -23.8990957
                     ],
                     [
-                        1.2852481,
-                        43.756935
+                        26.931831,
+                        -23.8461891
                     ],
                     [
-                        1.306925,
-                        43.757231
+                        26.9714827,
+                        -23.6994344
                     ],
                     [
-                        1.3066446,
-                        43.7684779
+                        27.0006074,
+                        -23.6367644
                     ],
                     [
-                        1.3283431,
-                        43.7687894
+                        27.0578041,
+                        -23.6052574
                     ],
                     [
-                        1.3280842,
-                        43.780034
+                        27.1360547,
+                        -23.5203437
                     ],
                     [
-                        1.4367275,
-                        43.7815757
+                        27.3339623,
+                        -23.3973792
                     ],
                     [
-                        1.4373098,
-                        43.7591004
+                        27.5144057,
+                        -23.3593929
                     ],
                     [
-                        1.4590083,
-                        43.7593653
+                        27.5958145,
+                        -23.2085465
                     ],
                     [
-                        1.4593318,
-                        43.7481479
+                        27.8098634,
+                        -23.0994957
                     ],
                     [
-                        1.4810303,
-                        43.7483972
+                        27.8828506,
+                        -23.0620496
                     ],
                     [
-                        1.4813322,
-                        43.7371777
+                        27.9382928,
+                        -22.9496487
                     ],
                     [
-                        1.5030307,
-                        43.7374115
+                        28.0407556,
+                        -22.8255118
                     ],
                     [
-                        1.5035915,
-                        43.7149664
+                        28.2056786,
+                        -22.6552861
                     ],
                     [
-                        1.5253115,
-                        43.7151846
+                        28.3397223,
+                        -22.5639374
                     ],
                     [
-                        1.5256135,
-                        43.7040057
+                        28.4906093,
+                        -22.560697
                     ],
                     [
-                        1.5472688,
-                        43.7042552
+                        28.6108769,
+                        -22.5400248
                     ],
                     [
-                        1.5475708,
-                        43.6930431
+                        28.828175,
+                        -22.4550173
                     ],
                     [
-                        1.5692045,
-                        43.6932926
+                        28.9285324,
+                        -22.4232328
                     ],
                     [
-                        1.5695712,
-                        43.6820316
+                        28.9594116,
+                        -22.3090081
                     ],
                     [
-                        1.5912049,
-                        43.6822656
+                        29.0162574,
+                        -22.208335
                     ],
                     [
-                        1.5917441,
-                        43.6597998
+                        29.2324117,
+                        -22.1693453
                     ],
                     [
-                        1.613421,
-                        43.6600339
+                        29.3531213,
+                        -22.1842926
                     ],
                     [
-                        1.613723,
-                        43.6488291
+                        29.6548952,
+                        -22.1186426
                     ],
                     [
-                        1.6353783,
-                        43.6490788
+                        29.7777102,
+                        -22.1361956
                     ],
                     [
-                        1.6384146,
-                        43.5140731
+                        29.9292989,
+                        -22.1849425
                     ],
                     [
-                        1.2921649,
-                        43.5094658
+                        30.1166795,
+                        -22.2830348
                     ],
                     [
-                        1.2918629,
-                        43.5206966
+                        30.2563377,
+                        -22.2914767
                     ],
                     [
-                        1.2702076,
-                        43.5203994
+                        30.3033582,
+                        -22.3395204
                     ],
                     [
-                        1.2698841,
-                        43.5316437
+                        30.5061784,
+                        -22.3057617
                     ],
                     [
-                        1.2482288,
-                        43.531331
+                        30.8374279,
+                        -22.284983
                     ],
                     [
-                        1.2476048,
-                        43.5537788
+                        31.0058599,
+                        -22.3077095
                     ],
                     [
-                        1.2259628,
-                        43.5534914
+                        31.1834152,
+                        -22.3232913
                     ],
                     [
-                        1.2256819,
-                        43.564716
+                        31.2930586,
+                        -22.3674647
                     ],
                     [
-                        1.2039835,
-                        43.564419
+                        31.5680579,
+                        -23.1903385
                     ],
                     [
-                        1.2033148,
-                        43.5869049
+                        31.5568311,
+                        -23.4430809
                     ],
                     [
-                        1.1816164,
-                        43.5865611
+                        31.6931122,
+                        -23.6175209
                     ],
                     [
-                        1.1810237,
-                        43.6090368
+                        31.7119696,
+                        -23.741136
                     ],
                     [
-                        1.1592821,
-                        43.6086932
+                        31.7774743,
+                        -23.8800628
                     ],
                     [
-                        1.1589585,
-                        43.6199523
+                        31.8886337,
+                        -23.9481098
                     ],
                     [
-                        1.1372601,
-                        43.6196244
+                        31.9144386,
+                        -24.1746736
                     ],
                     [
-                        1.1365933,
-                        43.642094
+                        31.9948307,
+                        -24.3040878
                     ],
                     [
-                        1.1149055,
-                        43.6417629
-                    ]
-                ]
-            ],
-            "terms_url": "https://wiki.openstreetmap.org/wiki/Toulouse/ToulouseMetropoleData",
-            "terms_text": "ToulouseMetropole"
-        },
-        {
-            "name": "Tours - Orthophotos 2008",
-            "type": "tms",
-            "template": "http://tms.mapspot.ge/tms/2/nonstandard/{zoom}/{x}/{y}.jpeg",
-            "polygon": [
-                [
+                        32.0166656,
+                        -24.4405988
+                    ],
                     [
-                        0.5457462,
-                        47.465264
+                        32.0077331,
+                        -24.6536578
                     ],
                     [
-                        0.54585,
-                        47.4608163
+                        32.019643,
+                        -24.9140701
                     ],
                     [
-                        0.5392188,
-                        47.4606983
+                        32.035523,
+                        -25.0849767
                     ],
                     [
-                        0.5393484,
-                        47.456243
+                        32.019643,
+                        -25.3821442
                     ],
                     [
-                        0.5327959,
-                        47.4561003
+                        31.9928457,
+                        -25.4493771
                     ],
                     [
-                        0.5329011,
-                        47.451565
+                        31.9997931,
+                        -25.5165725
                     ],
                     [
-                        0.52619,
-                        47.4514013
+                        32.0057481,
+                        -25.6078978
                     ],
                     [
-                        0.5265854,
-                        47.4424884
+                        32.0057481,
+                        -25.6624806
                     ],
                     [
-                        0.5000941,
-                        47.4420739
+                        31.9362735,
+                        -25.8403721
                     ],
                     [
-                        0.5002357,
-                        47.4375835
+                        31.9809357,
+                        -25.9546537
                     ],
                     [
-                        0.4936014,
-                        47.4374324
+                        31.8687838,
+                        -26.0037251
                     ],
                     [
-                        0.4937,
-                        47.4329285
+                        31.4162062,
+                        -25.7277683
                     ],
                     [
-                        0.4606141,
-                        47.4324593
+                        31.3229117,
+                        -25.7438611
                     ],
                     [
-                        0.4607248,
-                        47.4279827
+                        31.2504595,
+                        -25.8296526
                     ],
                     [
-                        0.4541016,
-                        47.4278125
+                        31.1393001,
+                        -25.9162746
                     ],
                     [
-                        0.454932,
-                        47.4053921
+                        31.1164727,
+                        -25.9912361
                     ],
                     [
-                        0.4615431,
-                        47.4054476
+                        30.9656135,
+                        -26.2665756
                     ],
                     [
-                        0.4619097,
-                        47.3964924
+                        30.8921689,
+                        -26.3279703
                     ],
                     [
-                        0.4684346,
-                        47.3966005
+                        30.8534616,
+                        -26.4035568
                     ],
                     [
-                        0.4691319,
-                        47.3786415
+                        30.8226943,
+                        -26.4488849
                     ],
                     [
-                        0.4757125,
-                        47.3787609
+                        30.8022583,
+                        -26.5240694
                     ],
                     [
-                        0.4762116,
-                        47.3652018
+                        30.8038369,
+                        -26.8082089
                     ],
                     [
-                        0.4828297,
-                        47.3653499
+                        30.9020939,
+                        -26.7807451
                     ],
                     [
-                        0.4832223,
-                        47.3518574
+                        30.9100338,
+                        -26.8489495
                     ],
                     [
-                        0.5097927,
-                        47.3522592
+                        30.9824859,
+                        -26.9082627
                     ],
                     [
-                        0.5095688,
-                        47.3567713
+                        30.976531,
+                        -27.0029222
                     ],
                     [
-                        0.5227698,
-                        47.3569785
+                        31.0034434,
+                        -27.0441587
                     ],
                     [
-                        0.5226429,
-                        47.3614867
+                        31.1543322,
+                        -27.1980416
                     ],
                     [
-                        0.5490721,
-                        47.3618878
+                        31.5015607,
+                        -27.311117
                     ],
                     [
-                        0.5489087,
-                        47.3663307
+                        31.9700183,
+                        -27.311117
                     ],
                     [
-                        0.5555159,
-                        47.3664985
+                        31.9700183,
+                        -27.120472
                     ],
                     [
-                        0.5559105,
-                        47.3575522
+                        31.9769658,
+                        -27.050664
                     ],
                     [
-                        0.6152789,
-                        47.358407
+                        32.0002464,
+                        -26.7983892
                     ],
                     [
-                        0.6152963,
-                        47.362893
+                        32.1069826,
+                        -26.7984645
                     ],
                     [
-                        0.6285093,
-                        47.3630936
+                        32.3114546,
+                        -26.8479493
                     ],
                     [
-                        0.6288256,
-                        47.353987
+                        32.899986,
+                        -26.8516059
                     ],
                     [
-                        0.6155012,
-                        47.3538823
+                        32.886091,
+                        -26.9816971
                     ],
                     [
-                        0.6157682,
-                        47.3493424
+                        32.709427,
+                        -27.4785436
                     ],
                     [
-                        0.6090956,
-                        47.3492991
+                        32.6240724,
+                        -27.7775144
                     ],
                     [
-                        0.6094735,
-                        47.3402962
+                        32.5813951,
+                        -28.07479
                     ],
                     [
-                        0.6160477,
-                        47.3404448
+                        32.5387178,
+                        -28.2288046
                     ],
                     [
-                        0.616083,
-                        47.3369074
+                        32.4275584,
+                        -28.5021568
                     ],
                     [
-                        0.77497,
-                        47.3388218
+                        32.3640388,
+                        -28.5945699
                     ],
                     [
-                        0.7745786,
-                        47.351628
+                        32.0702603,
+                        -28.8469827
                     ],
                     [
-                        0.7680363,
-                        47.3515901
+                        31.9878832,
+                        -28.9069497
                     ],
                     [
-                        0.767589,
-                        47.3605298
+                        31.7764818,
+                        -28.969487
                     ],
                     [
-                        0.7742443,
-                        47.3606238
+                        31.4638459,
+                        -29.2859343
                     ],
                     [
-                        0.7733465,
-                        47.3921266
+                        31.359634,
+                        -29.3854348
                     ],
                     [
-                        0.7667434,
-                        47.3920195
+                        31.1680825,
+                        -29.6307408
                     ],
                     [
-                        0.7664411,
-                        47.4010837
+                        31.064863,
+                        -29.7893535
                     ],
                     [
-                        0.7730647,
-                        47.4011115
+                        31.0534493,
+                        -29.8470469
                     ],
                     [
-                        0.7728868,
-                        47.4101297
+                        31.0669933,
+                        -29.8640319
                     ],
                     [
-                        0.7661849,
-                        47.4100226
+                        31.0455459,
+                        -29.9502017
                     ],
                     [
-                        0.7660267,
-                        47.4145044
+                        30.9518556,
+                        -30.0033946
                     ],
                     [
-                        0.7527613,
-                        47.4143038
+                        30.8651833,
+                        -30.1024093
                     ],
                     [
-                        0.7529788,
-                        47.4098086
+                        30.7244725,
+                        -30.392502
                     ],
                     [
-                        0.7462373,
-                        47.4097016
+                        30.3556256,
+                        -30.9308873
                     ],
                     [
-                        0.7459424,
-                        47.4232208
+                        30.0972364,
+                        -31.2458274
                     ],
                     [
-                        0.7392324,
-                        47.4231451
+                        29.8673136,
+                        -31.4304296
                     ],
                     [
-                        0.738869,
-                        47.4366116
+                        29.7409393,
+                        -31.5014699
                     ],
                     [
-                        0.7323267,
-                        47.4365171
+                        29.481312,
+                        -31.6978686
                     ],
                     [
-                        0.7321869,
-                        47.4410556
+                        28.8943171,
+                        -32.2898903
                     ],
                     [
-                        0.7255048,
-                        47.44098
+                        28.5497137,
+                        -32.5894641
                     ],
                     [
-                        0.7254209,
-                        47.4453479
+                        28.1436499,
+                        -32.8320732
                     ],
                     [
-                        0.7318793,
-                        47.4454803
+                        28.0748735,
+                        -32.941689
                     ],
                     [
-                        0.7318514,
-                        47.4501126
+                        27.8450942,
+                        -33.082869
                     ],
                     [
-                        0.7384496,
-                        47.450226
+                        27.3757956,
+                        -33.3860685
                     ],
                     [
-                        0.7383098,
-                        47.454631
+                        26.8805407,
+                        -33.6458951
                     ],
                     [
-                        0.7449359,
-                        47.4547444
+                        26.5916871,
+                        -33.7480756
                     ],
                     [
-                        0.7443209,
-                        47.4771985
+                        26.4527308,
+                        -33.7935795
                     ],
                     [
-                        0.7310685,
-                        47.4769717
+                        26.206754,
+                        -33.7548943
                     ],
                     [
-                        0.7309008,
-                        47.4815445
+                        26.0077897,
+                        -33.7223961
                     ],
                     [
-                        0.7176205,
-                        47.4812611
+                        25.8055494,
+                        -33.7524272
                     ],
                     [
-                        0.7177883,
-                        47.4768394
+                        25.7511073,
+                        -33.8006512
                     ],
                     [
-                        0.69777,
-                        47.4764993
+                        25.6529079,
+                        -33.8543597
                     ],
                     [
-                        0.6980496,
-                        47.4719827
+                        25.6529079,
+                        -33.9469768
                     ],
                     [
-                        0.6914514,
-                        47.4718882
+                        25.7195789,
+                        -34.0040115
                     ],
                     [
-                        0.6917309,
-                        47.4630241
+                        25.7202807,
+                        -34.0511235
                     ],
                     [
-                        0.6851048,
-                        47.4629295
+                        25.5508915,
+                        -34.063151
                     ],
                     [
-                        0.684937,
-                        47.4673524
+                        25.3504571,
+                        -34.0502627
                     ],
                     [
-                        0.678255,
-                        47.4673335
+                        25.2810609,
+                        -34.0020322
                     ],
                     [
-                        0.6779754,
-                        47.4762158
+                        25.0476316,
+                        -33.9994588
                     ],
                     [
-                        0.6714051,
-                        47.4761592
+                        24.954724,
+                        -34.0043594
                     ],
                     [
-                        0.6710417,
-                        47.4881952
+                        24.9496586,
+                        -34.1010363
                     ],
                     [
-                        0.6577334,
-                        47.4879685
+                        24.8770358,
+                        -34.1506456
                     ],
                     [
-                        0.6578173,
-                        47.48504
+                        24.8762914,
+                        -34.2005281
                     ],
                     [
-                        0.6511911,
-                        47.4848322
+                        24.8532574,
+                        -34.2189562
                     ],
                     [
-                        0.6514707,
-                        47.4758568
+                        24.7645287,
+                        -34.2017946
                     ],
                     [
-                        0.6448166,
-                        47.4757245
+                        24.5001356,
+                        -34.2003254
                     ],
                     [
-                        0.6449284,
-                        47.4712646
+                        24.3486733,
+                        -34.1163824
                     ],
                     [
-                        0.6117976,
-                        47.4707543
+                        24.1988819,
+                        -34.1019039
                     ],
                     [
-                        0.6118815,
-                        47.4663129
+                        23.9963377,
+                        -34.0514443
                     ],
                     [
-                        0.6052833,
-                        47.4661239
+                        23.8017509,
+                        -34.0524332
                     ],
                     [
-                        0.6054231,
-                        47.4616631
+                        23.7493589,
+                        -34.0111855
                     ],
                     [
-                        0.5988808,
-                        47.4615497
+                        23.4973536,
+                        -34.009014
                     ],
                     [
-                        0.5990206,
-                        47.4570886
+                        23.4155191,
+                        -34.0434586
                     ],
                     [
-                        0.572488,
-                        47.4566916
+                        23.4154284,
+                        -34.1140433
                     ],
                     [
-                        0.5721805,
-                        47.4656513
-                    ]
-                ]
-            ],
-            "terms_url": "http://wiki.openstreetmap.org/wiki/Tours/Orthophoto",
-            "terms_text": "Orthophoto Tour(s) Plus 2008"
-        },
-        {
-            "name": "Tours - Orthophotos 2008-2010",
-            "type": "tms",
-            "template": "http://wms.openstreetmap.fr/tms/1.0.0/tours/{zoom}/{x}/{y}",
-            "scaleExtent": [
-                0,
-                20
-            ],
-            "polygon": [
-                [
+                        22.9000853,
+                        -34.0993009
+                    ],
                     [
-                        0.5457462,
-                        47.465264
+                        22.8412418,
+                        -34.0547911
                     ],
                     [
-                        0.54585,
-                        47.4608163
+                        22.6470321,
+                        -34.0502627
                     ],
                     [
-                        0.5392188,
-                        47.4606983
+                        22.6459843,
+                        -34.0072768
                     ],
                     [
-                        0.5393484,
-                        47.456243
+                        22.570016,
+                        -34.0064081
                     ],
                     [
-                        0.5327959,
-                        47.4561003
+                        22.5050499,
+                        -34.0645866
                     ],
                     [
-                        0.5329011,
-                        47.451565
+                        22.2519968,
+                        -34.0645866
                     ],
                     [
-                        0.52619,
-                        47.4514013
+                        22.2221334,
+                        -34.1014701
                     ],
                     [
-                        0.5265854,
-                        47.4424884
+                        22.1621197,
+                        -34.1057019
                     ],
                     [
-                        0.5000941,
-                        47.4420739
+                        22.1712431,
+                        -34.1521766
                     ],
                     [
-                        0.5002357,
-                        47.4375835
+                        22.1576913,
+                        -34.2180897
                     ],
                     [
-                        0.4936014,
-                        47.4374324
+                        22.0015632,
+                        -34.2172232
                     ],
                     [
-                        0.4937,
-                        47.4329285
+                        21.9496952,
+                        -34.3220009
                     ],
                     [
-                        0.4606141,
-                        47.4324593
+                        21.8611528,
+                        -34.4007145
                     ],
                     [
-                        0.4607248,
-                        47.4279827
+                        21.5614708,
+                        -34.4020114
                     ],
                     [
-                        0.4541016,
-                        47.4278125
+                        21.5468011,
+                        -34.3661242
                     ],
                     [
-                        0.454932,
-                        47.4053921
+                        21.501744,
+                        -34.3669892
                     ],
                     [
-                        0.4615431,
-                        47.4054476
+                        21.5006961,
+                        -34.4020114
                     ],
                     [
-                        0.4619097,
-                        47.3964924
+                        21.4194886,
+                        -34.4465247
                     ],
                     [
-                        0.4684346,
-                        47.3966005
+                        21.1978706,
+                        -34.4478208
                     ],
                     [
-                        0.4691319,
-                        47.3786415
+                        21.0988193,
+                        -34.3991325
                     ],
                     [
-                        0.4757125,
-                        47.3787609
+                        21.0033746,
+                        -34.3753872
                     ],
                     [
-                        0.4762116,
-                        47.3652018
+                        20.893192,
+                        -34.3997115
                     ],
                     [
-                        0.4828297,
-                        47.3653499
+                        20.8976647,
+                        -34.4854003
                     ],
                     [
-                        0.4829611,
-                        47.3608321
+                        20.7446802,
+                        -34.4828092
                     ],
                     [
-                        0.4763543,
-                        47.360743
+                        20.5042011,
+                        -34.486264
                     ],
                     [
-                        0.476654,
-                        47.3517263
+                        20.2527197,
+                        -34.701477
                     ],
                     [
-                        0.4700497,
-                        47.3516186
+                        20.0803502,
+                        -34.8361855
                     ],
                     [
-                        0.4701971,
-                        47.3471313
+                        19.9923317,
+                        -34.8379056
                     ],
                     [
-                        0.4637503,
-                        47.3470104
+                        19.899074,
+                        -34.8275845
                     ],
                     [
-                        0.4571425,
-                        47.3424146
+                        19.8938348,
+                        -34.7936018
                     ],
                     [
-                        0.4572922,
-                        47.3379061
+                        19.5972963,
+                        -34.7961833
                     ],
                     [
-                        0.4506741,
-                        47.3378081
+                        19.3929677,
+                        -34.642015
                     ],
                     [
-                        0.4508379,
-                        47.3333051
+                        19.2877095,
+                        -34.6404784
                     ],
                     [
-                        0.4442212,
-                        47.3332032
+                        19.2861377,
+                        -34.5986563
                     ],
                     [
-                        0.4443809,
-                        47.328711
+                        19.3474363,
+                        -34.5244458
                     ],
                     [
-                        0.4311392,
-                        47.3284977
+                        19.3285256,
+                        -34.4534372
                     ],
                     [
-                        0.4316262,
-                        47.3150004
+                        19.098001,
+                        -34.449981
                     ],
                     [
-                        0.4382432,
-                        47.3151136
+                        19.0725583,
+                        -34.3802371
                     ],
                     [
-                        0.4383815,
-                        47.3106174
+                        19.0023531,
+                        -34.3525593
                     ],
                     [
-                        0.4714487,
-                        47.3111374
+                        18.9520568,
+                        -34.3949373
                     ],
                     [
-                        0.4713096,
-                        47.3156565
+                        18.7975006,
+                        -34.3936403
                     ],
                     [
-                        0.477888,
-                        47.3157542
+                        18.7984174,
+                        -34.1016376
                     ],
                     [
-                        0.4780733,
-                        47.3112802
+                        18.501748,
+                        -34.1015292
                     ],
                     [
-                        0.4846826,
-                        47.3113639
+                        18.4999545,
+                        -34.3616945
                     ],
                     [
-                        0.4848576,
-                        47.3068686
+                        18.4477325,
+                        -34.3620007
                     ],
                     [
-                        0.4914359,
-                        47.3069803
+                        18.4479944,
+                        -34.3522691
                     ],
                     [
-                        0.491745,
-                        47.2979733
+                        18.3974362,
+                        -34.3514041
                     ],
                     [
-                        0.4851578,
-                        47.2978722
+                        18.3971742,
+                        -34.3022959
                     ],
                     [
-                        0.4854269,
-                        47.2888744
+                        18.3565705,
+                        -34.3005647
                     ],
                     [
-                        0.4788485,
-                        47.2887697
+                        18.3479258,
+                        -34.2020436
                     ],
                     [
-                        0.4791574,
-                        47.2797818
+                        18.2972095,
+                        -34.1950274
                     ],
                     [
-                        0.4857769,
-                        47.2799005
+                        18.2951139,
+                        -33.9937138
                     ],
                     [
-                        0.4859107,
-                        47.2753885
+                        18.3374474,
+                        -33.9914079
                     ],
                     [
-                        0.492539,
-                        47.2755029
+                        18.3476638,
+                        -33.8492427
                     ],
                     [
-                        0.4926669,
-                        47.2710127
+                        18.3479258,
+                        -33.781555
                     ],
                     [
-                        0.4992986,
-                        47.2711066
+                        18.4124718,
+                        -33.7448849
                     ],
                     [
-                        0.4994296,
-                        47.2666116
+                        18.3615477,
+                        -33.6501624
                     ],
                     [
-                        0.5192658,
-                        47.2669245
+                        18.2992013,
+                        -33.585591
                     ],
                     [
-                        0.5194225,
-                        47.2624231
+                        18.2166839,
+                        -33.448872
                     ],
                     [
-                        0.5260186,
-                        47.2625205
+                        18.1389858,
+                        -33.3974083
                     ],
                     [
-                        0.5258735,
-                        47.2670183
+                        17.9473472,
+                        -33.1602647
                     ],
                     [
-                        0.5456972,
-                        47.2673383
+                        17.8855247,
+                        -33.0575732
                     ],
                     [
-                        0.5455537,
-                        47.2718283
+                        17.8485884,
+                        -32.9668505
                     ],
                     [
-                        0.5587737,
-                        47.2720366
-                    ],
+                        17.8396817,
+                        -32.8507302
+                    ]
+                ]
+            ]
+        },
+        {
+            "name": "South Tyrol Orthofoto 2011",
+            "type": "tms",
+            "template": "http://sdi.provincia.bz.it/geoserver/gwc/service/tms/1.0.0/WMTS_OF2011_APB-PAB@GoogleMapsCompatible@png8/{z}/{x}/{-y}.png",
+            "polygon": [
+                [
                     [
-                        0.5586259,
-                        47.2765185
+                        10.373383,
+                        46.213553
                     ],
                     [
-                        0.5652252,
-                        47.2766278
+                        10.373383,
+                        47.098175
                     ],
                     [
-                        0.5650848,
-                        47.2811206
+                        12.482758,
+                        47.098175
                     ],
                     [
-                        0.5716753,
-                        47.2812285
+                        12.482758,
+                        46.213553
                     ],
                     [
-                        0.5715223,
-                        47.2857217
-                    ],
+                        10.373383,
+                        46.213553
+                    ]
+                ]
+            ],
+            "id": "sdi.provinz.bz.it-WMTS_OF2011_APB-PAB"
+        },
+        {
+            "name": "South Tyrol Topomap",
+            "type": "tms",
+            "template": "http://sdi.provincia.bz.it/geoserver/gwc/service/tms/1.0.0/WMTS_TOPOMAP_APB-PAB@GoogleMapsCompatible@png8/{z}/{x}/{-y}.png",
+            "polygon": [
+                [
                     [
-                        0.5781436,
-                        47.2858299
+                        10.373383,
+                        46.213553
                     ],
                     [
-                        0.5779914,
-                        47.2903294
+                        10.373383,
+                        47.098175
                     ],
                     [
-                        0.5846023,
-                        47.2904263
+                        12.482758,
+                        47.098175
                     ],
                     [
-                        0.5843076,
-                        47.2994231
+                        12.482758,
+                        46.213553
                     ],
                     [
-                        0.597499,
-                        47.2996094
-                    ],
+                        10.373383,
+                        46.213553
+                    ]
+                ]
+            ],
+            "id": "sdi.provinz.bz.it-WMTS_TOPOMAP_APB-PAB"
+        },
+        {
+            "name": "Stadt Uster Orthophoto 2008 10cm",
+            "type": "tms",
+            "template": "http://mapproxy.sosm.ch:8080/tiles/uster/EPSG900913/{zoom}/{x}/{y}.png?origin=nw",
+            "polygon": [
+                [
                     [
-                        0.5976637,
-                        47.2951375
+                        8.6,
+                        47.31
                     ],
                     [
-                        0.6571596,
-                        47.2960036
+                        8.6,
+                        47.39
                     ],
                     [
-                        0.6572988,
-                        47.2915091
+                        8.77,
+                        47.39
                     ],
                     [
-                        0.6705019,
-                        47.2917186
+                        8.77,
+                        47.31
                     ],
                     [
-                        0.6703475,
-                        47.2962082
-                    ],
+                        8.6,
+                        47.31
+                    ]
+                ]
+            ],
+            "terms_text": "Stadt Uster Vermessung Orthophoto 2008"
+        },
+        {
+            "name": "Stadt Zürich Luftbild 2011",
+            "type": "tms",
+            "template": "http://mapproxy.sosm.ch:8080/tiles/zh_luftbild2011/EPSG900913/{z}/{x}/{y}.png?origin=nw",
+            "polygon": [
+                [
                     [
-                        0.6836175,
-                        47.2963688
+                        8.4441,
+                        47.3141
                     ],
                     [
-                        0.6834322,
-                        47.3008929
+                        8.4441,
+                        47.4411
                     ],
                     [
-                        0.690062,
-                        47.3009558
+                        8.6284,
+                        47.4411
                     ],
                     [
-                        0.6899241,
-                        47.3054703
+                        8.6284,
+                        47.3141
                     ],
                     [
-                        0.7362019,
-                        47.3061157
-                    ],
+                        8.4441,
+                        47.3141
+                    ]
+                ]
+            ],
+            "terms_text": "Stadt Zürich Luftbild 2011"
+        },
+        {
+            "name": "Stevns (Denmark)",
+            "type": "tms",
+            "template": "http://{switch:a,b,c}.tile.openstreetmap.dk/stevns/2009/{zoom}/{x}/{y}.png",
+            "scaleExtent": [
+                0,
+                20
+            ],
+            "polygon": [
+                [
                     [
-                        0.7360848,
-                        47.3106063
+                        12.0913942,
+                        55.3491574
                     ],
                     [
-                        0.7559022,
-                        47.3108935
+                        12.0943104,
+                        55.3842256
                     ],
                     [
-                        0.7557718,
-                        47.315392
+                        12.1573875,
+                        55.3833103
                     ],
                     [
-                        0.7623755,
-                        47.3154716
+                        12.1587287,
+                        55.4013326
                     ],
                     [
-                        0.7622314,
-                        47.3199941
+                        12.1903468,
+                        55.400558
                     ],
                     [
-                        0.7754911,
-                        47.3201546
+                        12.1931411,
+                        55.4364665
                     ],
                     [
-                        0.77497,
-                        47.3388218
+                        12.2564251,
+                        55.4347995
                     ],
                     [
-                        0.7745786,
-                        47.351628
+                        12.2547073,
+                        55.4168882
                     ],
                     [
-                        0.7680363,
-                        47.3515901
+                        12.3822489,
+                        55.4134349
                     ],
                     [
-                        0.767589,
-                        47.3605298
+                        12.3795942,
+                        55.3954143
                     ],
                     [
-                        0.7742443,
-                        47.3606238
+                        12.4109213,
+                        55.3946958
                     ],
                     [
-                        0.7733465,
-                        47.3921266
+                        12.409403,
+                        55.3766417
                     ],
                     [
-                        0.7667434,
-                        47.3920195
+                        12.4407807,
+                        55.375779
                     ],
                     [
-                        0.7664411,
-                        47.4010837
+                        12.4394142,
+                        55.3578314
                     ],
                     [
-                        0.7730647,
-                        47.4011115
+                        12.4707413,
+                        55.3569971
                     ],
                     [
-                        0.7728868,
-                        47.4101297
+                        12.4629475,
+                        55.2672214
                     ],
                     [
-                        0.7661849,
-                        47.4100226
+                        12.4315633,
+                        55.2681491
                     ],
                     [
-                        0.7660267,
-                        47.4145044
+                        12.430045,
+                        55.2502103
                     ],
                     [
-                        0.7527613,
-                        47.4143038
+                        12.3672011,
+                        55.2519673
                     ],
                     [
-                        0.7529788,
-                        47.4098086
+                        12.3656858,
+                        55.2340267
                     ],
                     [
-                        0.7462373,
-                        47.4097016
+                        12.2714604,
+                        55.2366031
                     ],
                     [
-                        0.7459424,
-                        47.4232208
+                        12.2744467,
+                        55.272476
                     ],
                     [
-                        0.7392324,
-                        47.4231451
+                        12.2115654,
+                        55.2741475
                     ],
                     [
-                        0.738869,
-                        47.4366116
+                        12.2130078,
+                        55.2920322
                     ],
                     [
-                        0.7323267,
-                        47.4365171
+                        12.1815665,
+                        55.2928638
                     ],
                     [
-                        0.7321869,
-                        47.4410556
+                        12.183141,
+                        55.3107091
                     ],
                     [
-                        0.7255048,
-                        47.44098
+                        12.2144897,
+                        55.3100981
                     ],
                     [
-                        0.7254209,
-                        47.4453479
+                        12.2159927,
+                        55.3279764
                     ],
                     [
-                        0.7318793,
-                        47.4454803
+                        12.1214458,
+                        55.3303379
                     ],
                     [
-                        0.7318514,
-                        47.4501126
-                    ],
+                        12.1229489,
+                        55.3483291
+                    ]
+                ]
+            ],
+            "terms_text": "Stevns Kommune"
+        },
+        {
+            "name": "Surrey Air Survey",
+            "type": "tms",
+            "template": "http://gravitystorm.dev.openstreetmap.org/surrey/{zoom}/{x}/{y}.png",
+            "scaleExtent": [
+                8,
+                19
+            ],
+            "polygon": [
+                [
                     [
-                        0.7384496,
-                        47.450226
+                        -0.752478,
+                        51.0821941
                     ],
                     [
-                        0.7383098,
-                        47.454631
+                        -0.7595183,
+                        51.0856254
                     ],
                     [
-                        0.7449359,
-                        47.4547444
+                        -0.8014342,
+                        51.1457917
                     ],
                     [
-                        0.7443209,
-                        47.4771985
+                        -0.8398864,
+                        51.1440686
                     ],
                     [
-                        0.7310685,
-                        47.4769717
+                        -0.8357665,
+                        51.1802397
                     ],
                     [
-                        0.7309008,
-                        47.4815445
+                        -0.8529549,
+                        51.2011266
                     ],
                     [
-                        0.7176205,
-                        47.4812611
+                        -0.8522683,
+                        51.2096231
                     ],
                     [
-                        0.7177883,
-                        47.4768394
+                        -0.8495217,
+                        51.217903
                     ],
                     [
-                        0.69777,
-                        47.4764993
+                        -0.8266907,
+                        51.2403696
                     ],
                     [
-                        0.6980496,
-                        47.4719827
+                        -0.8120995,
+                        51.2469248
                     ],
                     [
-                        0.6914514,
-                        47.4718882
+                        -0.7736474,
+                        51.2459577
                     ],
                     [
-                        0.6917309,
-                        47.4630241
+                        -0.7544213,
+                        51.2381127
                     ],
                     [
-                        0.6851048,
-                        47.4629295
+                        -0.754078,
+                        51.233921
                     ],
                     [
-                        0.684937,
-                        47.4673524
+                        -0.7446366,
+                        51.2333836
                     ],
                     [
-                        0.678255,
-                        47.4673335
+                        -0.7430693,
+                        51.2847178
                     ],
                     [
-                        0.6779754,
-                        47.4762158
+                        -0.751503,
+                        51.3069524
                     ],
                     [
-                        0.6714051,
-                        47.4761592
+                        -0.7664376,
+                        51.3121032
                     ],
                     [
-                        0.6710417,
-                        47.4881952
+                        -0.7820588,
+                        51.3270157
                     ],
                     [
-                        0.6577334,
-                        47.4879685
+                        -0.7815438,
+                        51.3388135
                     ],
                     [
-                        0.6578173,
-                        47.48504
+                        -0.7374268,
+                        51.3720456
                     ],
                     [
-                        0.6511911,
-                        47.4848322
+                        -0.7192307,
+                        51.3769748
                     ],
                     [
-                        0.6514707,
-                        47.4758568
+                        -0.6795769,
+                        51.3847961
                     ],
                     [
-                        0.6448166,
-                        47.4757245
+                        -0.6807786,
+                        51.3901523
                     ],
                     [
-                        0.6449284,
-                        47.4712646
+                        -0.6531411,
+                        51.3917591
                     ],
                     [
-                        0.6117976,
-                        47.4707543
+                        -0.6301385,
+                        51.3905808
                     ],
                     [
-                        0.6118815,
-                        47.4663129
+                        -0.6291085,
+                        51.3970074
                     ],
                     [
-                        0.6052833,
-                        47.4661239
+                        -0.6234437,
+                        51.3977572
                     ],
                     [
-                        0.6054231,
-                        47.4616631
+                        -0.613144,
+                        51.4295552
                     ],
                     [
-                        0.5988808,
-                        47.4615497
+                        -0.6002471,
+                        51.4459121
                     ],
                     [
-                        0.5990206,
-                        47.4570886
+                        -0.5867081,
+                        51.4445365
                     ],
                     [
-                        0.572488,
-                        47.4566916
+                        -0.5762368,
+                        51.453202
                     ],
                     [
-                        0.5721805,
-                        47.4656513
-                    ]
-                ]
-            ],
-            "terms_url": "http://wiki.openstreetmap.org/wiki/Tours/Orthophoto",
-            "terms_text": "Orthophoto Tour(s) Plus 2008"
-        },
-        {
-            "name": "USGS Large Scale Imagery",
-            "type": "tms",
-            "template": "http://{switch:a,b,c}.tile.openstreetmap.us/usgs_large_scale/{zoom}/{x}/{y}.jpg",
-            "scaleExtent": [
-                12,
-                20
-            ],
-            "polygon": [
-                [
+                        -0.5626755,
+                        51.4523462
+                    ],
                     [
-                        -123.2549305,
-                        48.7529029
+                        -0.547741,
+                        51.4469972
                     ],
                     [
-                        -123.2549305,
-                        48.5592263
+                        -0.5372697,
+                        51.4448575
                     ],
                     [
-                        -123.192224,
-                        48.5592263
+                        -0.537098,
+                        51.4526671
                     ],
                     [
-                        -123.192224,
-                        48.4348366
+                        -0.5439644,
+                        51.4545926
                     ],
                     [
-                        -122.9419646,
-                        48.4348366
+                        -0.5405312,
+                        51.4698865
                     ],
                     [
-                        -122.9419646,
-                        48.3720812
+                        -0.5309182,
+                        51.4760881
                     ],
                     [
-                        -122.8806229,
-                        48.3720812
+                        -0.5091172,
+                        51.4744843
                     ],
                     [
-                        -122.8806229,
-                        48.3094763
+                        -0.5086022,
+                        51.4695657
                     ],
                     [
-                        -122.8167566,
-                        48.3094763
+                        -0.4900628,
+                        51.4682825
                     ],
                     [
-                        -122.8167566,
-                        48.1904587
+                        -0.4526406,
+                        51.4606894
                     ],
                     [
-                        -123.0041133,
-                        48.1904587
+                        -0.4486924,
+                        51.4429316
                     ],
                     [
-                        -123.0041133,
-                        48.1275918
+                        -0.4414826,
+                        51.4418616
                     ],
                     [
-                        -123.058416,
-                        48.1275918
+                        -0.4418259,
+                        51.4369394
                     ],
                     [
-                        -123.058416,
-                        48.190514
+                        -0.4112702,
+                        51.4380095
                     ],
                     [
-                        -123.254113,
-                        48.190514
+                        -0.4014855,
+                        51.4279498
                     ],
                     [
-                        -123.254113,
-                        48.1274982
+                        -0.3807145,
+                        51.4262372
                     ],
                     [
-                        -123.3706593,
-                        48.1274982
+                        -0.3805428,
+                        51.4161749
                     ],
                     [
-                        -123.3706593,
-                        48.1908403
+                        -0.3491288,
+                        51.4138195
                     ],
                     [
-                        -124.0582632,
-                        48.1908403
+                        -0.3274994,
+                        51.4037544
                     ],
                     [
-                        -124.0582632,
-                        48.253442
+                        -0.3039818,
+                        51.3990424
                     ],
                     [
-                        -124.1815163,
-                        48.253442
+                        -0.3019219,
+                        51.3754747
                     ],
                     [
-                        -124.1815163,
-                        48.3164666
+                        -0.309475,
+                        51.369688
                     ],
                     [
-                        -124.4319117,
-                        48.3164666
+                        -0.3111916,
+                        51.3529669
                     ],
                     [
-                        -124.4319117,
-                        48.3782613
+                        -0.2955704,
+                        51.3541462
                     ],
                     [
-                        -124.5564618,
-                        48.3782613
+                        -0.2923089,
+                        51.3673303
                     ],
                     [
-                        -124.5564618,
-                        48.4408305
+                        -0.2850991,
+                        51.3680805
                     ],
                     [
-                        -124.7555107,
-                        48.4408305
+                        -0.2787476,
+                        51.3771891
                     ],
                     [
-                        -124.7555107,
-                        48.1914986
+                        -0.2655297,
+                        51.3837247
                     ],
                     [
-                        -124.8185282,
-                        48.1914986
+                        -0.2411538,
+                        51.3847961
                     ],
                     [
-                        -124.8185282,
-                        48.1228381
+                        -0.2123147,
+                        51.3628288
                     ],
                     [
-                        -124.7552951,
-                        48.1228381
+                        -0.2107697,
+                        51.3498578
                     ],
                     [
-                        -124.7552951,
-                        47.5535253
+                        -0.190857,
+                        51.3502867
                     ],
                     [
-                        -124.3812108,
-                        47.5535253
+                        -0.1542931,
+                        51.3338802
                     ],
                     [
-                        -124.3812108,
-                        47.1218696
+                        -0.1496583,
+                        51.3057719
                     ],
                     [
-                        -124.1928897,
-                        47.1218696
+                        -0.1074296,
+                        51.2966491
                     ],
                     [
-                        -124.1928897,
-                        43.7569431
+                        -0.0887185,
+                        51.3099571
                     ],
                     [
-                        -124.4443382,
-                        43.7569431
+                        -0.0878602,
+                        51.3220811
                     ],
                     [
-                        -124.4443382,
-                        43.1425556
+                        -0.0652009,
+                        51.3215448
                     ],
                     [
-                        -124.6398855,
-                        43.1425556
+                        -0.0641709,
+                        51.3264793
                     ],
                     [
-                        -124.6398855,
-                        42.6194503
+                        -0.0519829,
+                        51.3263721
                     ],
                     [
-                        -124.4438525,
-                        42.6194503
+                        -0.0528412,
+                        51.334631
                     ],
                     [
-                        -124.4438525,
-                        39.8080662
+                        -0.0330779,
+                        51.3430876
                     ],
                     [
-                        -123.8815685,
-                        39.8080662
+                        0.0019187,
+                        51.3376339
                     ],
                     [
-                        -123.8815685,
-                        39.1102825
+                        0.0118751,
+                        51.3281956
                     ],
                     [
-                        -123.75805,
-                        39.1102825
+                        0.013935,
+                        51.2994398
                     ],
                     [
-                        -123.75805,
-                        38.4968799
+                        0.0202865,
+                        51.2994398
                     ],
                     [
-                        -123.2702803,
-                        38.4968799
+                        0.0240631,
+                        51.3072743
                     ],
                     [
-                        -123.2702803,
-                        37.9331905
+                        0.0331611,
+                        51.3086694
                     ],
                     [
-                        -122.8148084,
-                        37.9331905
+                        0.0455207,
+                        51.30545
                     ],
                     [
-                        -122.8148084,
-                        37.8019606
+                        0.0523872,
+                        51.2877392
                     ],
                     [
-                        -122.5664316,
-                        37.8019606
+                        0.0616569,
+                        51.2577764
                     ],
                     [
-                        -122.5664316,
-                        36.9319611
+                        0.0640602,
+                        51.2415518
                     ],
                     [
-                        -121.8784026,
-                        36.9319611
+                        0.0462074,
+                        51.2126342
                     ],
                     [
-                        -121.8784026,
-                        36.6897596
+                        0.0407142,
+                        51.2109136
                     ],
                     [
-                        -122.0034748,
-                        36.6897596
+                        0.0448341,
+                        51.1989753
                     ],
                     [
-                        -122.0034748,
-                        36.4341056
+                        0.0494689,
+                        51.1997283
                     ],
                     [
-                        -121.9414159,
-                        36.4341056
+                        0.0558204,
+                        51.1944573
                     ],
                     [
-                        -121.9414159,
-                        35.9297636
+                        0.0611419,
+                        51.1790713
                     ],
                     [
-                        -121.5040977,
-                        35.9297636
+                        0.0623435,
+                        51.1542061
                     ],
                     [
-                        -121.5040977,
-                        35.8100273
+                        0.0577087,
+                        51.1417146
                     ],
                     [
-                        -121.3790276,
-                        35.8100273
+                        0.0204582,
+                        51.1365447
                     ],
                     [
-                        -121.3790276,
-                        35.4239164
+                        -0.0446015,
+                        51.1336364
                     ],
                     [
-                        -120.9426515,
-                        35.4239164
+                        -0.1566964,
+                        51.1352522
                     ],
                     [
-                        -120.9426515,
-                        35.1849683
+                        -0.1572114,
+                        51.1290043
                     ],
                     [
-                        -120.8171978,
-                        35.1849683
+                        -0.2287942,
+                        51.1183379
                     ],
                     [
-                        -120.8171978,
-                        35.1219894
+                        -0.2473336,
+                        51.1183379
                     ],
                     [
-                        -120.6918447,
-                        35.1219894
+                        -0.2500802,
+                        51.1211394
                     ],
                     [
-                        -120.6918447,
-                        34.4966794
+                        -0.299347,
+                        51.1137042
                     ],
                     [
-                        -120.5045898,
-                        34.4966794
+                        -0.3221779,
+                        51.1119799
                     ],
                     [
-                        -120.5045898,
-                        34.4339651
+                        -0.3223496,
+                        51.1058367
                     ],
                     [
-                        -120.0078775,
-                        34.4339651
+                        -0.3596001,
+                        51.1019563
                     ],
                     [
-                        -120.0078775,
-                        34.3682626
+                        -0.3589135,
+                        51.1113333
                     ],
                     [
-                        -119.5283517,
-                        34.3682626
+                        -0.3863793,
+                        51.1117644
                     ],
                     [
-                        -119.5283517,
-                        34.0576434
+                        -0.3869014,
+                        51.1062516
                     ],
                     [
-                        -119.0060985,
-                        34.0576434
+                        -0.4281001,
+                        51.0947174
                     ],
                     [
-                        -119.0060985,
-                        33.9975267
+                        -0.4856784,
+                        51.0951554
                     ],
                     [
-                        -118.5046259,
-                        33.9975267
+                        -0.487135,
+                        51.0872266
                     ],
                     [
-                        -118.5046259,
-                        33.8694631
+                        -0.5297404,
+                        51.0865404
                     ],
                     [
-                        -118.4413209,
-                        33.8694631
+                        -0.5302259,
+                        51.0789914
                     ],
                     [
-                        -118.4413209,
-                        33.6865253
+                        -0.61046,
+                        51.076551
                     ],
                     [
-                        -118.066912,
-                        33.6865253
+                        -0.6099745,
+                        51.080669
                     ],
                     [
-                        -118.066912,
-                        33.3063832
+                        -0.6577994,
+                        51.0792202
                     ],
                     [
-                        -117.5030045,
-                        33.3063832
+                        -0.6582849,
+                        51.0743394
                     ],
                     [
-                        -117.5030045,
-                        33.0500337
+                        -0.6836539,
+                        51.0707547
                     ],
                     [
-                        -117.3188195,
-                        33.0500337
+                        -0.6997979,
+                        51.070831
                     ],
                     [
-                        -117.3188195,
-                        32.6205888
+                        -0.7296581,
+                        51.0744919
+                    ]
+                ]
+            ]
+        },
+        {
+            "name": "Toulouse - Orthophotoplan 2007",
+            "type": "tms",
+            "template": "http://wms.openstreetmap.fr/tms/1.0.0/toulouse_ortho2007/{zoom}/{x}/{y}",
+            "scaleExtent": [
+                0,
+                22
+            ],
+            "polygon": [
+                [
+                    [
+                        1.1919978,
+                        43.6328791
                     ],
                     [
-                        -117.1917023,
-                        32.6205888
+                        1.2015377,
+                        43.6329729
                     ],
                     [
-                        -117.1917023,
-                        32.4974566
+                        1.2011107,
+                        43.6554932
                     ],
                     [
-                        -116.746496,
-                        32.4974566
+                        1.2227985,
+                        43.6557029
                     ],
                     [
-                        -116.746496,
-                        32.5609161
+                        1.2226231,
+                        43.6653353
                     ],
                     [
-                        -115.9970138,
-                        32.5609161
+                        1.2275341,
+                        43.6653849
                     ],
                     [
-                        -115.9970138,
-                        32.6264942
+                        1.2275417,
+                        43.6656387
                     ],
                     [
-                        -114.8808125,
-                        32.6264942
+                        1.2337568,
+                        43.6656883
                     ],
                     [
-                        -114.8808125,
-                        32.4340796
+                        1.2337644,
+                        43.6650153
                     ],
                     [
-                        -114.6294474,
-                        32.4340796
+                        1.2351218,
+                        43.6650319
                     ],
                     [
-                        -114.6294474,
-                        32.3731636
+                        1.2350913,
+                        43.6670729
                     ],
                     [
-                        -114.4447437,
-                        32.3731636
+                        1.2443566,
+                        43.6671556
                     ],
                     [
-                        -114.4447437,
-                        32.3075418
+                        1.2441584,
+                        43.6743925
                     ],
                     [
-                        -114.2557628,
-                        32.3075418
+                        1.2493973,
+                        43.6744256
                     ],
                     [
-                        -114.2557628,
-                        32.2444561
+                        1.2493973,
+                        43.6746628
                     ],
                     [
-                        -114.0680274,
-                        32.2444561
+                        1.2555666,
+                        43.6747234
                     ],
                     [
-                        -114.0680274,
-                        32.1829113
+                        1.2555742,
+                        43.6744532
                     ],
                     [
-                        -113.8166499,
-                        32.1829113
+                        1.2569545,
+                        43.6744697
                     ],
                     [
-                        -113.8166499,
-                        32.1207622
+                        1.2568782,
+                        43.678529
                     ],
                     [
-                        -113.6307421,
-                        32.1207622
+                        1.2874873,
+                        43.6788257
                     ],
                     [
-                        -113.6307421,
-                        32.0565099
+                        1.2870803,
+                        43.7013229
                     ],
                     [
-                        -113.4417495,
-                        32.0565099
+                        1.3088219,
+                        43.7014632
                     ],
                     [
-                        -113.4417495,
-                        31.9984372
+                        1.3086493,
+                        43.7127673
                     ],
                     [
-                        -113.2546027,
-                        31.9984372
+                        1.3303262,
+                        43.7129544
                     ],
                     [
-                        -113.2546027,
-                        31.9325434
+                        1.3300242,
+                        43.7305221
                     ],
                     [
-                        -113.068072,
-                        31.9325434
+                        1.3367106,
+                        43.7305845
                     ],
                     [
-                        -113.068072,
-                        31.8718062
+                        1.3367322,
+                        43.7312235
                     ],
                     [
-                        -112.8161105,
-                        31.8718062
+                        1.3734338,
+                        43.7310456
                     ],
                     [
-                        -112.8161105,
-                        31.8104171
+                        1.3735848,
+                        43.7245772
                     ],
                     [
-                        -112.6308756,
-                        31.8104171
+                        1.4604504,
+                        43.7252947
                     ],
                     [
-                        -112.6308756,
-                        31.7464723
+                        1.4607783,
+                        43.7028034
                     ],
                     [
-                        -112.4418918,
-                        31.7464723
+                        1.4824875,
+                        43.7029516
                     ],
                     [
-                        -112.4418918,
-                        31.6856001
+                        1.4829828,
+                        43.6692071
                     ],
                     [
-                        -112.257192,
-                        31.6856001
+                        1.5046832,
+                        43.6693616
                     ],
                     [
-                        -112.257192,
-                        31.6210352
+                        1.5048383,
+                        43.6581174
                     ],
                     [
-                        -112.0033787,
-                        31.6210352
+                        1.5265475,
+                        43.6582656
                     ],
                     [
-                        -112.0033787,
-                        31.559584
+                        1.5266945,
+                        43.6470298
                     ],
                     [
-                        -111.815619,
-                        31.559584
+                        1.548368,
+                        43.6471633
                     ],
                     [
-                        -111.815619,
-                        31.4970238
+                        1.5485357,
+                        43.6359385
                     ],
                     [
-                        -111.6278586,
-                        31.4970238
+                        1.5702172,
+                        43.636082
                     ],
                     [
-                        -111.6278586,
-                        31.4339867
+                        1.5705123,
+                        43.6135777
                     ],
                     [
-                        -111.4418978,
-                        31.4339867
+                        1.5488166,
+                        43.6134276
                     ],
                     [
-                        -111.4418978,
-                        31.3733859
+                        1.549097,
+                        43.5909479
                     ],
                     [
-                        -111.2559708,
-                        31.3733859
+                        1.5707695,
+                        43.5910694
                     ],
                     [
-                        -111.2559708,
-                        31.3113225
+                        1.5709373,
+                        43.5798341
                     ],
                     [
-                        -108.1845822,
-                        31.3113225
+                        1.5793714,
+                        43.5798894
                     ],
                     [
-                        -108.1845822,
-                        31.7459502
+                        1.5794782,
+                        43.5737682
                     ],
                     [
-                        -106.5065055,
-                        31.7459502
+                        1.5809119,
+                        43.5737792
                     ],
                     [
-                        -106.5065055,
-                        31.6842308
+                        1.5810859,
+                        43.5573794
                     ],
                     [
-                        -106.3797265,
-                        31.6842308
+                        1.5712334,
+                        43.5573131
                     ],
                     [
-                        -106.3797265,
-                        31.621752
+                        1.5716504,
+                        43.5235497
                     ],
                     [
-                        -106.317434,
-                        31.621752
+                        1.3984804,
+                        43.5222618
                     ],
                     [
-                        -106.317434,
-                        31.4968167
+                        1.3986509,
+                        43.5110113
                     ],
                     [
-                        -106.2551769,
-                        31.4968167
+                        1.3120959,
+                        43.5102543
                     ],
                     [
-                        -106.2551769,
-                        31.4344889
+                        1.3118968,
+                        43.5215192
                     ],
                     [
-                        -106.1924698,
-                        31.4344889
+                        1.2902569,
+                        43.5213126
                     ],
                     [
-                        -106.1924698,
-                        31.3721296
+                        1.2898637,
+                        43.5438168
                     ],
                     [
-                        -106.0039212,
-                        31.3721296
+                        1.311517,
+                        43.5440133
                     ],
                     [
-                        -106.0039212,
-                        31.309328
+                        1.3113271,
+                        43.5552596
                     ],
                     [
-                        -105.9416582,
-                        31.309328
+                        1.3036924,
+                        43.5551924
                     ],
                     [
-                        -105.9416582,
-                        31.2457547
+                        1.3036117,
+                        43.5595099
                     ],
                     [
-                        -105.8798174,
-                        31.2457547
+                        1.2955449,
+                        43.5594317
                     ],
                     [
-                        -105.8798174,
-                        31.1836194
+                        1.2955449,
+                        43.5595489
                     ],
                     [
-                        -105.8162349,
-                        31.1836194
+                        1.2895595,
+                        43.5594473
                     ],
                     [
-                        -105.8162349,
-                        31.1207155
+                        1.2892899,
+                        43.5775366
                     ],
                     [
-                        -105.6921198,
-                        31.1207155
+                        1.2675698,
+                        43.5773647
                     ],
                     [
-                        -105.6921198,
-                        31.0584835
+                        1.2673973,
+                        43.5886141
                     ],
                     [
-                        -105.6302881,
-                        31.0584835
+                        1.25355,
+                        43.5885047
                     ],
                     [
-                        -105.6302881,
-                        30.9328271
+                        1.2533774,
+                        43.5956282
                     ],
                     [
-                        -105.5044418,
-                        30.9328271
+                        1.2518029,
+                        43.5956282
                     ],
                     [
-                        -105.5044418,
-                        30.8715864
+                        1.2518029,
+                        43.5949409
                     ],
                     [
-                        -105.4412973,
-                        30.8715864
+                        1.2350437,
+                        43.5947847
                     ],
                     [
-                        -105.4412973,
-                        30.808463
+                        1.2350437,
+                        43.5945972
                     ],
                     [
-                        -105.3781497,
-                        30.808463
+                        1.2239572,
+                        43.5945972
                     ],
                     [
-                        -105.3781497,
-                        30.7471828
+                        1.2239357,
+                        43.5994708
                     ],
                     [
-                        -105.1904658,
-                        30.7471828
+                        1.2139708,
+                        43.599299
                     ],
                     [
-                        -105.1904658,
-                        30.6843231
+                        1.2138845,
+                        43.6046408
                     ],
                     [
-                        -105.1286244,
-                        30.6843231
+                        1.2020647,
+                        43.6044846
                     ],
                     [
-                        -105.1286244,
-                        30.6199737
+                        1.2019464,
+                        43.61048
                     ],
                     [
-                        -105.0036504,
-                        30.6199737
-                    ],
+                        1.1924294,
+                        43.6103695
+                    ]
+                ]
+            ],
+            "terms_url": "https://wiki.openstreetmap.org/wiki/Toulouse/ToulouseMetropoleData",
+            "terms_text": "ToulouseMetropole"
+        },
+        {
+            "name": "Toulouse - Orthophotoplan 2011",
+            "type": "tms",
+            "template": "http://wms.openstreetmap.fr/tms/1.0.0/toulouse_ortho2011/{zoom}/{x}/{y}",
+            "scaleExtent": [
+                0,
+                22
+            ],
+            "polygon": [
+                [
                     [
-                        -105.0036504,
-                        30.5589058
+                        1.1135067,
+                        43.6867566
                     ],
                     [
-                        -104.9417962,
-                        30.5589058
+                        1.1351836,
+                        43.6870842
                     ],
                     [
-                        -104.9417962,
-                        30.4963236
+                        1.1348907,
+                        43.6983471
                     ],
                     [
-                        -104.8782018,
-                        30.4963236
+                        1.1782867,
+                        43.6990338
                     ],
                     [
-                        -104.8782018,
-                        30.3098261
+                        1.1779903,
+                        43.7102786
                     ],
                     [
-                        -104.8155257,
-                        30.3098261
+                        1.1996591,
+                        43.7106144
                     ],
                     [
-                        -104.8155257,
-                        30.2478305
+                        1.1993387,
+                        43.7218722
                     ],
                     [
-                        -104.7536079,
-                        30.2478305
+                        1.2427356,
+                        43.7225269
                     ],
                     [
-                        -104.7536079,
-                        29.9353916
+                        1.2424336,
+                        43.7337491
                     ],
                     [
-                        -104.690949,
-                        29.9353916
+                        1.2641536,
+                        43.734092
                     ],
                     [
-                        -104.690949,
-                        29.8090156
+                        1.2638301,
+                        43.7453588
                     ],
                     [
-                        -104.6291301,
-                        29.8090156
+                        1.2855285,
+                        43.7456548
                     ],
                     [
-                        -104.6291301,
-                        29.6843577
+                        1.2852481,
+                        43.756935
                     ],
                     [
-                        -104.5659869,
-                        29.6843577
+                        1.306925,
+                        43.757231
                     ],
                     [
-                        -104.5659869,
-                        29.6223459
+                        1.3066446,
+                        43.7684779
                     ],
                     [
-                        -104.5037188,
-                        29.6223459
+                        1.3283431,
+                        43.7687894
                     ],
                     [
-                        -104.5037188,
-                        29.5595436
+                        1.3280842,
+                        43.780034
                     ],
                     [
-                        -104.4410072,
-                        29.5595436
+                        1.4367275,
+                        43.7815757
                     ],
                     [
-                        -104.4410072,
-                        29.4974832
+                        1.4373098,
+                        43.7591004
                     ],
                     [
-                        -104.2537551,
-                        29.4974832
+                        1.4590083,
+                        43.7593653
                     ],
                     [
-                        -104.2537551,
-                        29.3716718
+                        1.4593318,
+                        43.7481479
                     ],
                     [
-                        -104.1291984,
-                        29.3716718
+                        1.4810303,
+                        43.7483972
                     ],
                     [
-                        -104.1291984,
-                        29.3091621
+                        1.4813322,
+                        43.7371777
                     ],
                     [
-                        -104.0688737,
-                        29.3091621
+                        1.5030307,
+                        43.7374115
                     ],
                     [
-                        -104.0688737,
-                        29.2467276
+                        1.5035915,
+                        43.7149664
                     ],
                     [
-                        -103.8187309,
-                        29.2467276
+                        1.5253115,
+                        43.7151846
                     ],
                     [
-                        -103.8187309,
-                        29.1843076
+                        1.5256135,
+                        43.7040057
                     ],
                     [
-                        -103.755736,
-                        29.1843076
+                        1.5472688,
+                        43.7042552
                     ],
                     [
-                        -103.755736,
-                        29.1223174
+                        1.5475708,
+                        43.6930431
                     ],
                     [
-                        -103.5667542,
-                        29.1223174
+                        1.5692045,
+                        43.6932926
                     ],
                     [
-                        -103.5667542,
-                        29.0598119
+                        1.5695712,
+                        43.6820316
                     ],
                     [
-                        -103.5049819,
-                        29.0598119
+                        1.5912049,
+                        43.6822656
                     ],
                     [
-                        -103.5049819,
-                        28.9967506
+                        1.5917441,
+                        43.6597998
                     ],
                     [
-                        -103.3165753,
-                        28.9967506
+                        1.613421,
+                        43.6600339
                     ],
                     [
-                        -103.3165753,
-                        28.9346923
+                        1.613723,
+                        43.6488291
                     ],
                     [
-                        -103.0597572,
-                        28.9346923
+                        1.6353783,
+                        43.6490788
                     ],
                     [
-                        -103.0597572,
-                        29.0592965
+                        1.6384146,
+                        43.5140731
                     ],
                     [
-                        -102.9979694,
-                        29.0592965
+                        1.2921649,
+                        43.5094658
                     ],
                     [
-                        -102.9979694,
-                        29.1212855
+                        1.2918629,
+                        43.5206966
                     ],
                     [
-                        -102.9331397,
-                        29.1212855
+                        1.2702076,
+                        43.5203994
                     ],
                     [
-                        -102.9331397,
-                        29.1848575
+                        1.2698841,
+                        43.5316437
                     ],
                     [
-                        -102.8095989,
-                        29.1848575
+                        1.2482288,
+                        43.531331
                     ],
                     [
-                        -102.8095989,
-                        29.2526154
+                        1.2476048,
+                        43.5537788
                     ],
                     [
-                        -102.8701345,
-                        29.2526154
+                        1.2259628,
+                        43.5534914
                     ],
                     [
-                        -102.8701345,
-                        29.308096
+                        1.2256819,
+                        43.564716
                     ],
                     [
-                        -102.8096681,
-                        29.308096
+                        1.2039835,
+                        43.564419
                     ],
                     [
-                        -102.8096681,
-                        29.3715484
+                        1.2033148,
+                        43.5869049
                     ],
                     [
-                        -102.7475655,
-                        29.3715484
+                        1.1816164,
+                        43.5865611
                     ],
                     [
-                        -102.7475655,
-                        29.5581899
+                        1.1810237,
+                        43.6090368
                     ],
                     [
-                        -102.684554,
-                        29.5581899
+                        1.1592821,
+                        43.6086932
                     ],
                     [
-                        -102.684554,
-                        29.6847655
+                        1.1589585,
+                        43.6199523
                     ],
                     [
-                        -102.4967764,
-                        29.6847655
+                        1.1372601,
+                        43.6196244
                     ],
                     [
-                        -102.4967764,
-                        29.7457694
+                        1.1365933,
+                        43.642094
                     ],
                     [
-                        -102.3086647,
-                        29.7457694
+                        1.1149055,
+                        43.6417629
+                    ]
+                ]
+            ],
+            "terms_url": "https://wiki.openstreetmap.org/wiki/Toulouse/ToulouseMetropoleData",
+            "terms_text": "ToulouseMetropole"
+        },
+        {
+            "name": "Tours - Orthophotos 2008",
+            "type": "tms",
+            "template": "http://tms.mapspot.ge/tms/2/nonstandard/{zoom}/{x}/{y}.jpeg",
+            "polygon": [
+                [
+                    [
+                        0.5457462,
+                        47.465264
                     ],
                     [
-                        -102.3086647,
-                        29.8086627
+                        0.54585,
+                        47.4608163
                     ],
                     [
-                        -102.1909323,
-                        29.8086627
+                        0.5392188,
+                        47.4606983
                     ],
                     [
-                        -102.1909323,
-                        29.7460097
+                        0.5393484,
+                        47.456243
                     ],
                     [
-                        -101.5049914,
-                        29.7460097
+                        0.5327959,
+                        47.4561003
                     ],
                     [
-                        -101.5049914,
-                        29.6846777
+                        0.5329011,
+                        47.451565
                     ],
                     [
-                        -101.3805796,
-                        29.6846777
+                        0.52619,
+                        47.4514013
                     ],
                     [
-                        -101.3805796,
-                        29.5594459
+                        0.5265854,
+                        47.4424884
                     ],
                     [
-                        -101.3175057,
-                        29.5594459
+                        0.5000941,
+                        47.4420739
                     ],
                     [
-                        -101.3175057,
-                        29.4958934
+                        0.5002357,
+                        47.4375835
                     ],
                     [
-                        -101.1910075,
-                        29.4958934
+                        0.4936014,
+                        47.4374324
                     ],
                     [
-                        -101.1910075,
-                        29.4326115
+                        0.4937,
+                        47.4329285
                     ],
                     [
-                        -101.067501,
-                        29.4326115
+                        0.4606141,
+                        47.4324593
                     ],
                     [
-                        -101.067501,
-                        29.308808
+                        0.4607248,
+                        47.4279827
                     ],
                     [
-                        -100.9418897,
-                        29.308808
+                        0.4541016,
+                        47.4278125
                     ],
                     [
-                        -100.9418897,
-                        29.2456231
+                        0.454932,
+                        47.4053921
                     ],
                     [
-                        -100.8167271,
-                        29.2456231
+                        0.4615431,
+                        47.4054476
                     ],
                     [
-                        -100.8167271,
-                        29.1190449
+                        0.4619097,
+                        47.3964924
                     ],
                     [
-                        -100.7522672,
-                        29.1190449
+                        0.4684346,
+                        47.3966005
                     ],
                     [
-                        -100.7522672,
-                        29.0578214
+                        0.4691319,
+                        47.3786415
                     ],
                     [
-                        -100.6925358,
-                        29.0578214
+                        0.4757125,
+                        47.3787609
                     ],
                     [
-                        -100.6925358,
-                        28.8720431
+                        0.4762116,
+                        47.3652018
                     ],
                     [
-                        -100.6290158,
-                        28.8720431
+                        0.4828297,
+                        47.3653499
                     ],
                     [
-                        -100.6290158,
-                        28.8095363
+                        0.4832223,
+                        47.3518574
                     ],
                     [
-                        -100.5679901,
-                        28.8095363
+                        0.5097927,
+                        47.3522592
                     ],
                     [
-                        -100.5679901,
-                        28.622554
+                        0.5095688,
+                        47.3567713
                     ],
                     [
-                        -100.5040411,
-                        28.622554
+                        0.5227698,
+                        47.3569785
                     ],
                     [
-                        -100.5040411,
-                        28.5583804
+                        0.5226429,
+                        47.3614867
                     ],
                     [
-                        -100.4421832,
-                        28.5583804
+                        0.5490721,
+                        47.3618878
                     ],
                     [
-                        -100.4421832,
-                        28.4968266
+                        0.5489087,
+                        47.3663307
                     ],
                     [
-                        -100.379434,
-                        28.4968266
+                        0.5555159,
+                        47.3664985
                     ],
                     [
-                        -100.379434,
-                        28.3092865
+                        0.5559105,
+                        47.3575522
                     ],
                     [
-                        -100.3171942,
-                        28.3092865
+                        0.6152789,
+                        47.358407
                     ],
                     [
-                        -100.3171942,
-                        28.1835681
+                        0.6152963,
+                        47.362893
                     ],
                     [
-                        -100.254483,
-                        28.1835681
+                        0.6285093,
+                        47.3630936
                     ],
                     [
-                        -100.254483,
-                        28.1213885
+                        0.6288256,
+                        47.353987
                     ],
                     [
-                        -100.1282282,
-                        28.1213885
+                        0.6155012,
+                        47.3538823
                     ],
                     [
-                        -100.1282282,
-                        28.059215
+                        0.6157682,
+                        47.3493424
                     ],
                     [
-                        -100.0659537,
-                        28.059215
+                        0.6090956,
+                        47.3492991
                     ],
                     [
-                        -100.0659537,
-                        27.9966087
+                        0.6094735,
+                        47.3402962
                     ],
                     [
-                        -100.0023855,
-                        27.9966087
+                        0.6160477,
+                        47.3404448
                     ],
                     [
-                        -100.0023855,
-                        27.9332152
+                        0.616083,
+                        47.3369074
                     ],
                     [
-                        -99.9426497,
-                        27.9332152
+                        0.77497,
+                        47.3388218
                     ],
                     [
-                        -99.9426497,
-                        27.7454658
+                        0.7745786,
+                        47.351628
                     ],
                     [
-                        -99.816851,
-                        27.7454658
+                        0.7680363,
+                        47.3515901
                     ],
                     [
-                        -99.816851,
-                        27.6834301
+                        0.767589,
+                        47.3605298
                     ],
                     [
-                        -99.7541346,
-                        27.6834301
+                        0.7742443,
+                        47.3606238
                     ],
                     [
-                        -99.7541346,
-                        27.6221543
+                        0.7733465,
+                        47.3921266
                     ],
                     [
-                        -99.6291629,
-                        27.6221543
+                        0.7667434,
+                        47.3920195
                     ],
                     [
-                        -99.6291629,
-                        27.5588977
+                        0.7664411,
+                        47.4010837
                     ],
                     [
-                        -99.5672838,
-                        27.5588977
+                        0.7730647,
+                        47.4011115
                     ],
                     [
-                        -99.5672838,
-                        27.4353752
+                        0.7728868,
+                        47.4101297
                     ],
                     [
-                        -99.5041798,
-                        27.4353752
+                        0.7661849,
+                        47.4100226
                     ],
                     [
-                        -99.5041798,
-                        27.3774021
+                        0.7660267,
+                        47.4145044
                     ],
                     [
-                        -99.5671796,
-                        27.3774021
+                        0.7527613,
+                        47.4143038
                     ],
                     [
-                        -99.5671796,
-                        27.2463726
+                        0.7529788,
+                        47.4098086
                     ],
                     [
-                        -99.504975,
-                        27.2463726
+                        0.7462373,
+                        47.4097016
                     ],
                     [
-                        -99.504975,
-                        26.9965649
+                        0.7459424,
+                        47.4232208
                     ],
                     [
-                        -99.4427427,
-                        26.9965649
+                        0.7392324,
+                        47.4231451
                     ],
                     [
-                        -99.4427427,
-                        26.872803
+                        0.738869,
+                        47.4366116
                     ],
                     [
-                        -99.3800633,
-                        26.872803
+                        0.7323267,
+                        47.4365171
                     ],
                     [
-                        -99.3800633,
-                        26.8068179
+                        0.7321869,
+                        47.4410556
                     ],
                     [
-                        -99.3190684,
-                        26.8068179
+                        0.7255048,
+                        47.44098
                     ],
                     [
-                        -99.3190684,
-                        26.7473614
+                        0.7254209,
+                        47.4453479
                     ],
                     [
-                        -99.2537541,
-                        26.7473614
+                        0.7318793,
+                        47.4454803
                     ],
                     [
-                        -99.2537541,
-                        26.6210068
+                        0.7318514,
+                        47.4501126
                     ],
                     [
-                        -99.1910617,
-                        26.6210068
+                        0.7384496,
+                        47.450226
                     ],
                     [
-                        -99.1910617,
-                        26.4956737
+                        0.7383098,
+                        47.454631
                     ],
                     [
-                        -99.1300639,
-                        26.4956737
+                        0.7449359,
+                        47.4547444
                     ],
                     [
-                        -99.1300639,
-                        26.3713808
+                        0.7443209,
+                        47.4771985
                     ],
                     [
-                        -99.0029473,
-                        26.3713808
+                        0.7310685,
+                        47.4769717
                     ],
                     [
-                        -99.0029473,
-                        26.3093836
+                        0.7309008,
+                        47.4815445
                     ],
                     [
-                        -98.816572,
-                        26.3093836
+                        0.7176205,
+                        47.4812611
                     ],
                     [
-                        -98.816572,
-                        26.2457762
+                        0.7177883,
+                        47.4768394
                     ],
                     [
-                        -98.6920082,
-                        26.2457762
+                        0.69777,
+                        47.4764993
                     ],
                     [
-                        -98.6920082,
-                        26.1837096
+                        0.6980496,
+                        47.4719827
                     ],
                     [
-                        -98.4440896,
-                        26.1837096
+                        0.6914514,
+                        47.4718882
                     ],
                     [
-                        -98.4440896,
-                        26.1217217
+                        0.6917309,
+                        47.4630241
                     ],
                     [
-                        -98.3823181,
-                        26.1217217
+                        0.6851048,
+                        47.4629295
                     ],
                     [
-                        -98.3823181,
-                        26.0596488
+                        0.684937,
+                        47.4673524
                     ],
                     [
-                        -98.2532707,
-                        26.0596488
+                        0.678255,
+                        47.4673335
                     ],
                     [
-                        -98.2532707,
-                        25.9986871
+                        0.6779754,
+                        47.4762158
                     ],
                     [
-                        -98.0109084,
-                        25.9986871
+                        0.6714051,
+                        47.4761592
                     ],
                     [
-                        -98.0109084,
-                        25.9932255
+                        0.6710417,
+                        47.4881952
                     ],
                     [
-                        -97.6932319,
-                        25.9932255
+                        0.6577334,
+                        47.4879685
                     ],
                     [
-                        -97.6932319,
-                        25.9334103
+                        0.6578173,
+                        47.48504
                     ],
                     [
-                        -97.6313904,
-                        25.9334103
+                        0.6511911,
+                        47.4848322
                     ],
                     [
-                        -97.6313904,
-                        25.8695893
+                        0.6514707,
+                        47.4758568
                     ],
                     [
-                        -97.5046779,
-                        25.8695893
+                        0.6448166,
+                        47.4757245
                     ],
                     [
-                        -97.5046779,
-                        25.8073488
+                        0.6449284,
+                        47.4712646
                     ],
                     [
-                        -97.3083401,
-                        25.8073488
+                        0.6117976,
+                        47.4707543
                     ],
                     [
-                        -97.3083401,
-                        25.8731159
+                        0.6118815,
+                        47.4663129
                     ],
                     [
-                        -97.2456326,
-                        25.8731159
+                        0.6052833,
+                        47.4661239
                     ],
                     [
-                        -97.2456326,
-                        25.9353731
+                        0.6054231,
+                        47.4616631
                     ],
                     [
-                        -97.1138939,
-                        25.9353731
+                        0.5988808,
+                        47.4615497
                     ],
                     [
-                        -97.1138939,
-                        27.6809179
+                        0.5990206,
+                        47.4570886
                     ],
                     [
-                        -97.0571035,
-                        27.6809179
+                        0.572488,
+                        47.4566916
                     ],
                     [
-                        -97.0571035,
-                        27.8108242
+                        0.5721805,
+                        47.4656513
+                    ]
+                ]
+            ],
+            "terms_url": "http://wiki.openstreetmap.org/wiki/Tours/Orthophoto",
+            "terms_text": "Orthophoto Tour(s) Plus 2008"
+        },
+        {
+            "name": "Tours - Orthophotos 2008-2010",
+            "type": "tms",
+            "template": "http://wms.openstreetmap.fr/tms/1.0.0/tours/{zoom}/{x}/{y}",
+            "scaleExtent": [
+                0,
+                20
+            ],
+            "polygon": [
+                [
+                    [
+                        0.5457462,
+                        47.465264
                     ],
                     [
-                        -95.5810766,
-                        27.8108242
+                        0.54585,
+                        47.4608163
                     ],
                     [
-                        -95.5810766,
-                        28.7468827
+                        0.5392188,
+                        47.4606983
                     ],
                     [
-                        -94.271041,
-                        28.7468827
+                        0.5393484,
+                        47.456243
                     ],
                     [
-                        -94.271041,
-                        29.5594076
+                        0.5327959,
+                        47.4561003
                     ],
                     [
-                        -92.5029947,
-                        29.5594076
+                        0.5329011,
+                        47.451565
                     ],
                     [
-                        -92.5029947,
-                        29.4974754
+                        0.52619,
+                        47.4514013
                     ],
                     [
-                        -91.8776216,
-                        29.4974754
+                        0.5265854,
+                        47.4424884
                     ],
                     [
-                        -91.8776216,
-                        29.3727013
+                        0.5000941,
+                        47.4420739
                     ],
                     [
-                        -91.378418,
-                        29.3727013
+                        0.5002357,
+                        47.4375835
                     ],
                     [
-                        -91.378418,
-                        29.2468326
+                        0.4936014,
+                        47.4374324
                     ],
                     [
-                        -91.3153953,
-                        29.2468326
+                        0.4937,
+                        47.4329285
                     ],
                     [
-                        -91.3153953,
-                        29.1844301
+                        0.4606141,
+                        47.4324593
                     ],
                     [
-                        -91.1294702,
-                        29.1844301
+                        0.4607248,
+                        47.4279827
                     ],
                     [
-                        -91.1294702,
-                        29.1232559
+                        0.4541016,
+                        47.4278125
                     ],
                     [
-                        -91.0052632,
-                        29.1232559
+                        0.454932,
+                        47.4053921
                     ],
                     [
-                        -91.0052632,
-                        28.9968437
+                        0.4615431,
+                        47.4054476
                     ],
                     [
-                        -89.4500159,
-                        28.9968437
+                        0.4619097,
+                        47.3964924
                     ],
                     [
-                        -89.4500159,
-                        28.8677422
+                        0.4684346,
+                        47.3966005
                     ],
                     [
-                        -88.8104309,
-                        28.8677422
+                        0.4691319,
+                        47.3786415
                     ],
                     [
-                        -88.8104309,
-                        30.1841864
+                        0.4757125,
+                        47.3787609
                     ],
                     [
-                        -85.8791527,
-                        30.1841864
+                        0.4762116,
+                        47.3652018
                     ],
                     [
-                        -85.8791527,
-                        29.5455038
+                        0.4828297,
+                        47.3653499
                     ],
                     [
-                        -84.8368083,
-                        29.5455038
+                        0.4829611,
+                        47.3608321
                     ],
                     [
-                        -84.8368083,
-                        29.6225158
+                        0.4763543,
+                        47.360743
                     ],
                     [
-                        -84.7482786,
-                        29.6225158
+                        0.476654,
+                        47.3517263
                     ],
                     [
-                        -84.7482786,
-                        29.683624
+                        0.4700497,
+                        47.3516186
                     ],
                     [
-                        -84.685894,
-                        29.683624
+                        0.4701971,
+                        47.3471313
                     ],
                     [
-                        -84.685894,
-                        29.7468386
+                        0.4637503,
+                        47.3470104
                     ],
                     [
-                        -83.6296975,
-                        29.7468386
+                        0.4571425,
+                        47.3424146
                     ],
                     [
-                        -83.6296975,
-                        29.4324361
+                        0.4572922,
+                        47.3379061
                     ],
                     [
-                        -83.3174937,
-                        29.4324361
+                        0.4506741,
+                        47.3378081
                     ],
                     [
-                        -83.3174937,
-                        29.0579442
+                        0.4508379,
+                        47.3333051
                     ],
                     [
-                        -82.879659,
-                        29.0579442
+                        0.4442212,
+                        47.3332032
                     ],
                     [
-                        -82.879659,
-                        27.7453529
+                        0.4443809,
+                        47.328711
                     ],
                     [
-                        -82.8182822,
-                        27.7453529
+                        0.4311392,
+                        47.3284977
                     ],
                     [
-                        -82.8182822,
-                        26.9290868
+                        0.4316262,
+                        47.3150004
                     ],
                     [
-                        -82.3796782,
-                        26.9290868
+                        0.4382432,
+                        47.3151136
                     ],
                     [
-                        -82.3796782,
-                        26.3694183
+                        0.4383815,
+                        47.3106174
                     ],
                     [
-                        -81.8777106,
-                        26.3694183
+                        0.4714487,
+                        47.3111374
                     ],
                     [
-                        -81.8777106,
-                        25.805971
+                        0.4713096,
+                        47.3156565
                     ],
                     [
-                        -81.5036862,
-                        25.805971
+                        0.477888,
+                        47.3157542
                     ],
                     [
-                        -81.5036862,
-                        25.7474753
+                        0.4780733,
+                        47.3112802
                     ],
                     [
-                        -81.4405462,
-                        25.7474753
+                        0.4846826,
+                        47.3113639
                     ],
                     [
-                        -81.4405462,
-                        25.6851489
+                        0.4848576,
+                        47.3068686
                     ],
                     [
-                        -81.3155883,
-                        25.6851489
+                        0.4914359,
+                        47.3069803
                     ],
                     [
-                        -81.3155883,
-                        25.5600985
+                        0.491745,
+                        47.2979733
                     ],
                     [
-                        -81.2538534,
-                        25.5600985
+                        0.4851578,
+                        47.2978722
                     ],
                     [
-                        -81.2538534,
-                        25.4342361
+                        0.4854269,
+                        47.2888744
                     ],
                     [
-                        -81.1902012,
-                        25.4342361
+                        0.4788485,
+                        47.2887697
                     ],
                     [
-                        -81.1902012,
-                        25.1234341
+                        0.4791574,
+                        47.2797818
                     ],
                     [
-                        -81.1288133,
-                        25.1234341
+                        0.4857769,
+                        47.2799005
                     ],
                     [
-                        -81.1288133,
-                        25.0619389
+                        0.4859107,
+                        47.2753885
                     ],
                     [
-                        -81.0649231,
-                        25.0619389
+                        0.492539,
+                        47.2755029
                     ],
                     [
-                        -81.0649231,
-                        24.8157807
+                        0.4926669,
+                        47.2710127
                     ],
                     [
-                        -81.6289469,
-                        24.8157807
+                        0.4992986,
+                        47.2711066
                     ],
                     [
-                        -81.6289469,
-                        24.7538367
+                        0.4994296,
+                        47.2666116
                     ],
                     [
-                        -81.6907173,
-                        24.7538367
+                        0.5192658,
+                        47.2669245
                     ],
                     [
-                        -81.6907173,
-                        24.6899374
+                        0.5194225,
+                        47.2624231
                     ],
                     [
-                        -81.8173189,
-                        24.6899374
+                        0.5260186,
+                        47.2625205
                     ],
                     [
-                        -81.8173189,
-                        24.6279161
+                        0.5258735,
+                        47.2670183
                     ],
                     [
-                        -82.1910041,
-                        24.6279161
+                        0.5456972,
+                        47.2673383
                     ],
                     [
-                        -82.1910041,
-                        24.496294
+                        0.5455537,
+                        47.2718283
                     ],
                     [
-                        -81.6216596,
-                        24.496294
+                        0.5587737,
+                        47.2720366
                     ],
                     [
-                        -81.6216596,
-                        24.559484
+                        0.5586259,
+                        47.2765185
                     ],
                     [
-                        -81.372006,
-                        24.559484
+                        0.5652252,
+                        47.2766278
                     ],
                     [
-                        -81.372006,
-                        24.6220687
+                        0.5650848,
+                        47.2811206
                     ],
                     [
-                        -81.0593278,
-                        24.6220687
+                        0.5716753,
+                        47.2812285
                     ],
                     [
-                        -81.0593278,
-                        24.684826
+                        0.5715223,
+                        47.2857217
                     ],
                     [
-                        -80.9347147,
-                        24.684826
+                        0.5781436,
+                        47.2858299
                     ],
                     [
-                        -80.9347147,
-                        24.7474828
+                        0.5779914,
+                        47.2903294
                     ],
                     [
-                        -80.7471081,
-                        24.7474828
+                        0.5846023,
+                        47.2904263
                     ],
                     [
-                        -80.7471081,
-                        24.8100618
+                        0.5843076,
+                        47.2994231
                     ],
                     [
-                        -80.3629898,
-                        24.8100618
+                        0.597499,
+                        47.2996094
                     ],
                     [
-                        -80.3629898,
-                        25.1175858
+                        0.5976637,
+                        47.2951375
                     ],
                     [
-                        -80.122344,
-                        25.1175858
+                        0.6571596,
+                        47.2960036
                     ],
                     [
-                        -80.122344,
-                        25.7472357
+                        0.6572988,
+                        47.2915091
                     ],
                     [
-                        -80.0588458,
-                        25.7472357
+                        0.6705019,
+                        47.2917186
                     ],
                     [
-                        -80.0588458,
-                        26.3708251
+                        0.6703475,
+                        47.2962082
                     ],
                     [
-                        -79.995837,
-                        26.3708251
+                        0.6836175,
+                        47.2963688
                     ],
                     [
-                        -79.995837,
-                        26.9398003
+                        0.6834322,
+                        47.3008929
                     ],
                     [
-                        -80.0587265,
-                        26.9398003
+                        0.690062,
+                        47.3009558
                     ],
                     [
-                        -80.0587265,
-                        27.1277466
+                        0.6899241,
+                        47.3054703
                     ],
                     [
-                        -80.1226251,
-                        27.1277466
+                        0.7362019,
+                        47.3061157
                     ],
                     [
-                        -80.1226251,
-                        27.2534279
+                        0.7360848,
+                        47.3106063
                     ],
                     [
-                        -80.1846956,
-                        27.2534279
+                        0.7559022,
+                        47.3108935
                     ],
                     [
-                        -80.1846956,
-                        27.3781229
+                        0.7557718,
+                        47.315392
                     ],
                     [
-                        -80.246175,
-                        27.3781229
+                        0.7623755,
+                        47.3154716
                     ],
                     [
-                        -80.246175,
-                        27.5658729
+                        0.7622314,
+                        47.3199941
                     ],
                     [
-                        -80.3094768,
-                        27.5658729
+                        0.7754911,
+                        47.3201546
                     ],
                     [
-                        -80.3094768,
-                        27.7530311
+                        0.77497,
+                        47.3388218
                     ],
                     [
-                        -80.3721485,
-                        27.7530311
+                        0.7745786,
+                        47.351628
                     ],
                     [
-                        -80.3721485,
-                        27.8774451
+                        0.7680363,
+                        47.3515901
                     ],
                     [
-                        -80.4351457,
-                        27.8774451
+                        0.767589,
+                        47.3605298
                     ],
                     [
-                        -80.4351457,
-                        28.0033366
+                        0.7742443,
+                        47.3606238
                     ],
                     [
-                        -80.4966078,
-                        28.0033366
+                        0.7733465,
+                        47.3921266
                     ],
                     [
-                        -80.4966078,
-                        28.1277326
+                        0.7667434,
+                        47.3920195
                     ],
                     [
-                        -80.5587159,
-                        28.1277326
+                        0.7664411,
+                        47.4010837
                     ],
                     [
-                        -80.5587159,
-                        28.3723509
+                        0.7730647,
+                        47.4011115
                     ],
                     [
-                        -80.4966335,
-                        28.3723509
+                        0.7728868,
+                        47.4101297
                     ],
                     [
-                        -80.4966335,
-                        29.5160326
+                        0.7661849,
+                        47.4100226
                     ],
                     [
-                        -81.1213644,
-                        29.5160326
+                        0.7660267,
+                        47.4145044
                     ],
                     [
-                        -81.1213644,
-                        31.6846966
+                        0.7527613,
+                        47.4143038
                     ],
                     [
-                        -80.6018723,
-                        31.6846966
+                        0.7529788,
+                        47.4098086
                     ],
                     [
-                        -80.6018723,
-                        32.2475309
+                        0.7462373,
+                        47.4097016
                     ],
                     [
-                        -79.4921024,
-                        32.2475309
+                        0.7459424,
+                        47.4232208
                     ],
                     [
-                        -79.4921024,
-                        32.9970261
+                        0.7392324,
+                        47.4231451
                     ],
                     [
-                        -79.1116488,
-                        32.9970261
+                        0.738869,
+                        47.4366116
                     ],
                     [
-                        -79.1116488,
-                        33.3729457
+                        0.7323267,
+                        47.4365171
                     ],
                     [
-                        -78.6153621,
-                        33.3729457
+                        0.7321869,
+                        47.4410556
                     ],
                     [
-                        -78.6153621,
-                        33.8097638
+                        0.7255048,
+                        47.44098
                     ],
                     [
-                        -77.9316963,
-                        33.8097638
+                        0.7254209,
+                        47.4453479
                     ],
                     [
-                        -77.9316963,
-                        33.8718243
+                        0.7318793,
+                        47.4454803
                     ],
                     [
-                        -77.8692252,
-                        33.8718243
+                        0.7318514,
+                        47.4501126
                     ],
                     [
-                        -77.8692252,
-                        34.0552454
+                        0.7384496,
+                        47.450226
                     ],
                     [
-                        -77.6826392,
-                        34.0552454
+                        0.7383098,
+                        47.454631
                     ],
                     [
-                        -77.6826392,
-                        34.2974598
+                        0.7449359,
+                        47.4547444
                     ],
                     [
-                        -77.2453509,
-                        34.2974598
+                        0.7443209,
+                        47.4771985
                     ],
                     [
-                        -77.2453509,
-                        34.5598585
+                        0.7310685,
+                        47.4769717
                     ],
                     [
-                        -76.4973277,
-                        34.5598585
+                        0.7309008,
+                        47.4815445
                     ],
                     [
-                        -76.4973277,
-                        34.622796
+                        0.7176205,
+                        47.4812611
                     ],
                     [
-                        -76.4337602,
-                        34.622796
+                        0.7177883,
+                        47.4768394
                     ],
                     [
-                        -76.4337602,
-                        34.6849285
+                        0.69777,
+                        47.4764993
                     ],
                     [
-                        -76.373212,
-                        34.6849285
+                        0.6980496,
+                        47.4719827
                     ],
                     [
-                        -76.373212,
-                        34.7467674
+                        0.6914514,
+                        47.4718882
                     ],
                     [
-                        -76.3059364,
-                        34.7467674
+                        0.6917309,
+                        47.4630241
                     ],
                     [
-                        -76.3059364,
-                        34.808551
+                        0.6851048,
+                        47.4629295
                     ],
                     [
-                        -76.2468017,
-                        34.808551
+                        0.684937,
+                        47.4673524
                     ],
                     [
-                        -76.2468017,
-                        34.8728418
+                        0.678255,
+                        47.4673335
                     ],
                     [
-                        -76.1825922,
-                        34.8728418
+                        0.6779754,
+                        47.4762158
                     ],
                     [
-                        -76.1825922,
-                        34.9335332
+                        0.6714051,
+                        47.4761592
                     ],
                     [
-                        -76.120814,
-                        34.9335332
+                        0.6710417,
+                        47.4881952
                     ],
                     [
-                        -76.120814,
-                        34.9952359
+                        0.6577334,
+                        47.4879685
                     ],
                     [
-                        -75.9979015,
-                        34.9952359
+                        0.6578173,
+                        47.48504
                     ],
                     [
-                        -75.9979015,
-                        35.0578182
+                        0.6511911,
+                        47.4848322
                     ],
                     [
-                        -75.870338,
-                        35.0578182
+                        0.6514707,
+                        47.4758568
                     ],
                     [
-                        -75.870338,
-                        35.1219097
+                        0.6448166,
+                        47.4757245
                     ],
                     [
-                        -75.7462194,
-                        35.1219097
+                        0.6449284,
+                        47.4712646
                     ],
                     [
-                        -75.7462194,
-                        35.1818911
+                        0.6117976,
+                        47.4707543
                     ],
                     [
-                        -75.4929694,
-                        35.1818911
+                        0.6118815,
+                        47.4663129
                     ],
                     [
-                        -75.4929694,
-                        35.3082988
+                        0.6052833,
+                        47.4661239
                     ],
                     [
-                        -75.4325662,
-                        35.3082988
+                        0.6054231,
+                        47.4616631
                     ],
                     [
-                        -75.4325662,
-                        35.7542495
+                        0.5988808,
+                        47.4615497
                     ],
                     [
-                        -75.4969907,
-                        35.7542495
+                        0.5990206,
+                        47.4570886
                     ],
                     [
-                        -75.4969907,
-                        37.8105602
+                        0.572488,
+                        47.4566916
                     ],
                     [
-                        -75.3082972,
-                        37.8105602
-                    ],
+                        0.5721805,
+                        47.4656513
+                    ]
+                ]
+            ],
+            "terms_url": "http://wiki.openstreetmap.org/wiki/Tours/Orthophoto",
+            "terms_text": "Orthophoto Tour(s) Plus 2008"
+        },
+        {
+            "name": "USGS Large Scale Imagery",
+            "type": "tms",
+            "template": "http://{switch:a,b,c}.tile.openstreetmap.us/usgs_large_scale/{zoom}/{x}/{y}.jpg",
+            "scaleExtent": [
+                12,
+                20
+            ],
+            "polygon": [
+                [
                     [
-                        -75.3082972,
-                        37.8720088
+                        -123.2549305,
+                        48.7529029
                     ],
                     [
-                        -75.245601,
-                        37.8720088
+                        -123.2549305,
+                        48.5592263
                     ],
                     [
-                        -75.245601,
-                        37.9954849
+                        -123.192224,
+                        48.5592263
                     ],
                     [
-                        -75.1828751,
-                        37.9954849
+                        -123.192224,
+                        48.4348366
                     ],
                     [
-                        -75.1828751,
-                        38.0585079
+                        -122.9419646,
+                        48.4348366
                     ],
                     [
-                        -75.1184793,
-                        38.0585079
+                        -122.9419646,
+                        48.3720812
                     ],
                     [
-                        -75.1184793,
-                        38.2469091
+                        -122.8806229,
+                        48.3720812
                     ],
                     [
-                        -75.0592098,
-                        38.2469091
+                        -122.8806229,
+                        48.3094763
                     ],
                     [
-                        -75.0592098,
-                        38.3704316
+                        -122.8167566,
+                        48.3094763
                     ],
                     [
-                        -74.9948111,
-                        38.3704316
+                        -122.8167566,
+                        48.1904587
                     ],
                     [
-                        -74.9948111,
-                        38.8718417
+                        -123.0041133,
+                        48.1904587
                     ],
                     [
-                        -74.4878252,
-                        38.8718417
+                        -123.0041133,
+                        48.1275918
                     ],
                     [
-                        -74.4878252,
-                        39.3089428
+                        -123.058416,
+                        48.1275918
                     ],
                     [
-                        -74.1766317,
-                        39.3089428
+                        -123.058416,
+                        48.190514
                     ],
                     [
-                        -74.1766317,
-                        39.6224653
+                        -123.254113,
+                        48.190514
                     ],
                     [
-                        -74.0567045,
-                        39.6224653
+                        -123.254113,
+                        48.1274982
                     ],
                     [
-                        -74.0567045,
-                        39.933178
+                        -123.3706593,
+                        48.1274982
                     ],
                     [
-                        -73.9959035,
-                        39.933178
+                        -123.3706593,
+                        48.1908403
                     ],
                     [
-                        -73.9959035,
-                        40.1854852
+                        -124.0582632,
+                        48.1908403
                     ],
                     [
-                        -73.9341593,
-                        40.1854852
+                        -124.0582632,
+                        48.253442
                     ],
                     [
-                        -73.9341593,
-                        40.4959486
+                        -124.1815163,
+                        48.253442
                     ],
                     [
-                        -73.8723024,
-                        40.4959486
+                        -124.1815163,
+                        48.3164666
                     ],
                     [
-                        -73.8723024,
-                        40.5527135
+                        -124.4319117,
+                        48.3164666
                     ],
                     [
-                        -71.8074506,
-                        40.5527135
+                        -124.4319117,
+                        48.3782613
                     ],
                     [
-                        -71.8074506,
-                        41.3088005
+                        -124.5564618,
+                        48.3782613
                     ],
                     [
-                        -70.882512,
-                        41.3088005
+                        -124.5564618,
+                        48.4408305
                     ],
                     [
-                        -70.882512,
-                        41.184978
+                        -124.7555107,
+                        48.4408305
                     ],
                     [
-                        -70.7461947,
-                        41.184978
+                        -124.7555107,
+                        48.1914986
                     ],
                     [
-                        -70.7461947,
-                        41.3091865
+                        -124.8185282,
+                        48.1914986
                     ],
                     [
-                        -70.4337553,
-                        41.3091865
+                        -124.8185282,
+                        48.1228381
                     ],
                     [
-                        -70.4337553,
-                        41.4963885
+                        -124.7552951,
+                        48.1228381
                     ],
                     [
-                        -69.9334281,
-                        41.4963885
+                        -124.7552951,
+                        47.5535253
                     ],
                     [
-                        -69.9334281,
-                        41.6230802
+                        -124.3812108,
+                        47.5535253
                     ],
                     [
-                        -69.869857,
-                        41.6230802
+                        -124.3812108,
+                        47.1218696
                     ],
                     [
-                        -69.869857,
-                        41.8776895
+                        -124.1928897,
+                        47.1218696
                     ],
                     [
-                        -69.935791,
-                        41.8776895
+                        -124.1928897,
+                        43.7569431
                     ],
                     [
-                        -69.935791,
-                        42.0032342
+                        -124.4443382,
+                        43.7569431
                     ],
                     [
-                        -69.9975823,
-                        42.0032342
+                        -124.4443382,
+                        43.1425556
                     ],
                     [
-                        -69.9975823,
-                        42.0650191
+                        -124.6398855,
+                        43.1425556
                     ],
                     [
-                        -70.0606103,
-                        42.0650191
+                        -124.6398855,
+                        42.6194503
                     ],
                     [
-                        -70.0606103,
-                        42.1294348
+                        -124.4438525,
+                        42.6194503
                     ],
                     [
-                        -70.5572884,
-                        42.1294348
+                        -124.4438525,
+                        39.8080662
                     ],
                     [
-                        -70.5572884,
-                        43.2487079
+                        -123.8815685,
+                        39.8080662
                     ],
                     [
-                        -70.4974097,
-                        43.2487079
+                        -123.8815685,
+                        39.1102825
                     ],
                     [
-                        -70.4974097,
-                        43.3092194
+                        -123.75805,
+                        39.1102825
                     ],
                     [
-                        -70.3704249,
-                        43.3092194
+                        -123.75805,
+                        38.4968799
                     ],
                     [
-                        -70.3704249,
-                        43.371963
+                        -123.2702803,
+                        38.4968799
                     ],
                     [
-                        -70.3085701,
-                        43.371963
+                        -123.2702803,
+                        37.9331905
                     ],
                     [
-                        -70.3085701,
-                        43.4969879
+                        -122.8148084,
+                        37.9331905
                     ],
                     [
-                        -70.183921,
-                        43.4969879
+                        -122.8148084,
+                        37.8019606
                     ],
                     [
-                        -70.183921,
-                        43.6223531
+                        -122.5664316,
+                        37.8019606
                     ],
                     [
-                        -70.057583,
-                        43.6223531
+                        -122.5664316,
+                        36.9319611
                     ],
                     [
-                        -70.057583,
-                        43.6850173
+                        -121.8784026,
+                        36.9319611
                     ],
                     [
-                        -69.7455247,
-                        43.6850173
+                        -121.8784026,
+                        36.6897596
                     ],
                     [
-                        -69.7455247,
-                        43.7476571
+                        -122.0034748,
+                        36.6897596
                     ],
                     [
-                        -69.2472845,
-                        43.7476571
+                        -122.0034748,
+                        36.4341056
                     ],
                     [
-                        -69.2472845,
-                        43.8107035
+                        -121.9414159,
+                        36.4341056
                     ],
                     [
-                        -69.0560701,
-                        43.8107035
+                        -121.9414159,
+                        35.9297636
                     ],
                     [
-                        -69.0560701,
-                        43.8717247
+                        -121.5040977,
+                        35.9297636
                     ],
                     [
-                        -68.9950522,
-                        43.8717247
+                        -121.5040977,
+                        35.8100273
                     ],
                     [
-                        -68.9950522,
-                        43.9982022
+                        -121.3790276,
+                        35.8100273
                     ],
                     [
-                        -68.4963672,
-                        43.9982022
+                        -121.3790276,
+                        35.4239164
                     ],
                     [
-                        -68.4963672,
-                        44.0597368
+                        -120.9426515,
+                        35.4239164
                     ],
                     [
-                        -68.3081038,
-                        44.0597368
+                        -120.9426515,
+                        35.1849683
                     ],
                     [
-                        -68.3081038,
-                        44.122137
+                        -120.8171978,
+                        35.1849683
                     ],
                     [
-                        -68.1851802,
-                        44.122137
+                        -120.8171978,
+                        35.1219894
                     ],
                     [
-                        -68.1851802,
-                        44.3081382
+                        -120.6918447,
+                        35.1219894
                     ],
                     [
-                        -67.9956019,
-                        44.3081382
+                        -120.6918447,
+                        34.4966794
                     ],
                     [
-                        -67.9956019,
-                        44.3727489
+                        -120.5045898,
+                        34.4966794
                     ],
                     [
-                        -67.8103041,
-                        44.3727489
+                        -120.5045898,
+                        34.4339651
                     ],
                     [
-                        -67.8103041,
-                        44.435178
+                        -120.0078775,
+                        34.4339651
                     ],
                     [
-                        -67.4965289,
-                        44.435178
+                        -120.0078775,
+                        34.3682626
                     ],
                     [
-                        -67.4965289,
-                        44.4968776
+                        -119.5283517,
+                        34.3682626
                     ],
                     [
-                        -67.37102,
-                        44.4968776
+                        -119.5283517,
+                        34.0576434
                     ],
                     [
-                        -67.37102,
-                        44.5600642
+                        -119.0060985,
+                        34.0576434
                     ],
                     [
-                        -67.1848753,
-                        44.5600642
+                        -119.0060985,
+                        33.9975267
                     ],
                     [
-                        -67.1848753,
-                        44.6213345
+                        -118.5046259,
+                        33.9975267
                     ],
                     [
-                        -67.1221208,
-                        44.6213345
+                        -118.5046259,
+                        33.8694631
                     ],
                     [
-                        -67.1221208,
-                        44.6867918
+                        -118.4413209,
+                        33.8694631
                     ],
                     [
-                        -67.059365,
-                        44.6867918
+                        -118.4413209,
+                        33.6865253
                     ],
                     [
-                        -67.059365,
-                        44.7473657
+                        -118.066912,
+                        33.6865253
                     ],
                     [
-                        -66.9311098,
-                        44.7473657
+                        -118.066912,
+                        33.3063832
                     ],
                     [
-                        -66.9311098,
-                        44.9406566
+                        -117.5030045,
+                        33.3063832
                     ],
                     [
-                        -66.994683,
-                        44.9406566
+                        -117.5030045,
+                        33.0500337
                     ],
                     [
-                        -66.994683,
-                        45.0024514
+                        -117.3188195,
+                        33.0500337
                     ],
                     [
-                        -67.0595847,
-                        45.0024514
+                        -117.3188195,
+                        32.6205888
                     ],
                     [
-                        -67.0595847,
-                        45.1273377
+                        -117.1917023,
+                        32.6205888
                     ],
                     [
-                        -67.1201974,
-                        45.1273377
+                        -117.1917023,
+                        32.4974566
                     ],
                     [
-                        -67.1201974,
-                        45.1910115
+                        -116.746496,
+                        32.4974566
                     ],
                     [
-                        -67.2469811,
-                        45.1910115
+                        -116.746496,
+                        32.5609161
                     ],
                     [
-                        -67.2469811,
-                        45.253442
+                        -115.9970138,
+                        32.5609161
                     ],
                     [
-                        -67.3177546,
-                        45.253442
+                        -115.9970138,
+                        32.6264942
                     ],
                     [
-                        -67.3177546,
-                        45.1898369
+                        -114.8808125,
+                        32.6264942
                     ],
                     [
-                        -67.370749,
-                        45.1898369
+                        -114.8808125,
+                        32.4340796
                     ],
                     [
-                        -67.370749,
-                        45.2534001
+                        -114.6294474,
+                        32.4340796
                     ],
                     [
-                        -67.4326888,
-                        45.2534001
+                        -114.6294474,
+                        32.3731636
                     ],
                     [
-                        -67.4326888,
-                        45.3083409
+                        -114.4447437,
+                        32.3731636
                     ],
                     [
-                        -67.3708571,
-                        45.3083409
+                        -114.4447437,
+                        32.3075418
                     ],
                     [
-                        -67.3708571,
-                        45.4396986
+                        -114.2557628,
+                        32.3075418
                     ],
                     [
-                        -67.4305573,
-                        45.4396986
+                        -114.2557628,
+                        32.2444561
                     ],
                     [
-                        -67.4305573,
-                        45.4950095
+                        -114.0680274,
+                        32.2444561
                     ],
                     [
-                        -67.37099,
-                        45.4950095
+                        -114.0680274,
+                        32.1829113
                     ],
                     [
-                        -67.37099,
-                        45.6264543
+                        -113.8166499,
+                        32.1829113
                     ],
                     [
-                        -67.6214982,
-                        45.6264543
+                        -113.8166499,
+                        32.1207622
                     ],
                     [
-                        -67.6214982,
-                        45.6896133
+                        -113.6307421,
+                        32.1207622
                     ],
                     [
-                        -67.683828,
-                        45.6896133
+                        -113.6307421,
+                        32.0565099
                     ],
                     [
-                        -67.683828,
-                        45.753259
+                        -113.4417495,
+                        32.0565099
                     ],
                     [
-                        -67.7462097,
-                        45.753259
+                        -113.4417495,
+                        31.9984372
                     ],
                     [
-                        -67.7462097,
-                        47.1268165
+                        -113.2546027,
+                        31.9984372
                     ],
                     [
-                        -67.8700141,
-                        47.1268165
+                        -113.2546027,
+                        31.9325434
                     ],
                     [
-                        -67.8700141,
-                        47.1900278
+                        -113.068072,
+                        31.9325434
                     ],
                     [
-                        -67.9323803,
-                        47.1900278
+                        -113.068072,
+                        31.8718062
                     ],
                     [
-                        -67.9323803,
-                        47.2539678
+                        -112.8161105,
+                        31.8718062
                     ],
                     [
-                        -67.9959387,
-                        47.2539678
+                        -112.8161105,
+                        31.8104171
                     ],
                     [
-                        -67.9959387,
-                        47.3149737
+                        -112.6308756,
+                        31.8104171
                     ],
                     [
-                        -68.1206676,
-                        47.3149737
+                        -112.6308756,
+                        31.7464723
                     ],
                     [
-                        -68.1206676,
-                        47.3780823
+                        -112.4418918,
+                        31.7464723
                     ],
                     [
-                        -68.4423175,
-                        47.3780823
+                        -112.4418918,
+                        31.6856001
                     ],
                     [
-                        -68.4423175,
-                        47.3166082
+                        -112.257192,
+                        31.6856001
                     ],
                     [
-                        -68.6314305,
-                        47.3166082
+                        -112.257192,
+                        31.6210352
                     ],
                     [
-                        -68.6314305,
-                        47.2544676
+                        -112.0033787,
+                        31.6210352
                     ],
                     [
-                        -68.9978037,
-                        47.2544676
+                        -112.0033787,
+                        31.559584
                     ],
                     [
-                        -68.9978037,
-                        47.439895
+                        -111.815619,
+                        31.559584
                     ],
                     [
-                        -69.0607223,
-                        47.439895
+                        -111.815619,
+                        31.4970238
                     ],
                     [
-                        -69.0607223,
-                        47.5047558
+                        -111.6278586,
+                        31.4970238
                     ],
                     [
-                        -69.2538122,
-                        47.5047558
+                        -111.6278586,
+                        31.4339867
                     ],
                     [
-                        -69.2538122,
-                        47.4398084
+                        -111.4418978,
+                        31.4339867
                     ],
                     [
-                        -69.3179284,
-                        47.4398084
+                        -111.4418978,
+                        31.3733859
                     ],
                     [
-                        -69.3179284,
-                        47.378601
+                        -111.2559708,
+                        31.3733859
                     ],
                     [
-                        -69.4438546,
-                        47.378601
+                        -111.2559708,
+                        31.3113225
                     ],
                     [
-                        -69.4438546,
-                        47.3156274
+                        -108.1845822,
+                        31.3113225
                     ],
                     [
-                        -69.5038204,
-                        47.3156274
+                        -108.1845822,
+                        31.7459502
                     ],
                     [
-                        -69.5038204,
-                        47.2525839
+                        -106.5065055,
+                        31.7459502
                     ],
                     [
-                        -69.5667838,
-                        47.2525839
+                        -106.5065055,
+                        31.6842308
                     ],
                     [
-                        -69.5667838,
-                        47.1910884
+                        -106.3797265,
+                        31.6842308
                     ],
                     [
-                        -69.6303478,
-                        47.1910884
+                        -106.3797265,
+                        31.621752
                     ],
                     [
-                        -69.6303478,
-                        47.128701
+                        -106.317434,
+                        31.621752
                     ],
                     [
-                        -69.6933103,
-                        47.128701
+                        -106.317434,
+                        31.4968167
                     ],
                     [
-                        -69.6933103,
-                        47.0654307
+                        -106.2551769,
+                        31.4968167
                     ],
                     [
-                        -69.7557063,
-                        47.0654307
+                        -106.2551769,
+                        31.4344889
                     ],
                     [
-                        -69.7557063,
-                        47.0042751
+                        -106.1924698,
+                        31.4344889
                     ],
                     [
-                        -69.8180391,
-                        47.0042751
+                        -106.1924698,
+                        31.3721296
                     ],
                     [
-                        -69.8180391,
-                        46.9415344
+                        -106.0039212,
+                        31.3721296
                     ],
                     [
-                        -69.8804023,
-                        46.9415344
+                        -106.0039212,
+                        31.309328
                     ],
                     [
-                        -69.8804023,
-                        46.8792519
+                        -105.9416582,
+                        31.309328
                     ],
                     [
-                        -69.9421674,
-                        46.8792519
+                        -105.9416582,
+                        31.2457547
                     ],
                     [
-                        -69.9421674,
-                        46.8177399
+                        -105.8798174,
+                        31.2457547
                     ],
                     [
-                        -70.0063088,
-                        46.8177399
+                        -105.8798174,
+                        31.1836194
                     ],
                     [
-                        -70.0063088,
-                        46.6920295
+                        -105.8162349,
+                        31.1836194
                     ],
                     [
-                        -70.0704265,
-                        46.6920295
+                        -105.8162349,
+                        31.1207155
                     ],
                     [
-                        -70.0704265,
-                        46.4425926
+                        -105.6921198,
+                        31.1207155
                     ],
                     [
-                        -70.1945902,
-                        46.4425926
+                        -105.6921198,
+                        31.0584835
                     ],
                     [
-                        -70.1945902,
-                        46.3785887
+                        -105.6302881,
+                        31.0584835
                     ],
                     [
-                        -70.2562047,
-                        46.3785887
+                        -105.6302881,
+                        30.9328271
                     ],
                     [
-                        -70.2562047,
-                        46.3152628
+                        -105.5044418,
+                        30.9328271
                     ],
                     [
-                        -70.3203651,
-                        46.3152628
+                        -105.5044418,
+                        30.8715864
                     ],
                     [
-                        -70.3203651,
-                        46.0651209
+                        -105.4412973,
+                        30.8715864
                     ],
                     [
-                        -70.3814988,
-                        46.0651209
+                        -105.4412973,
+                        30.808463
                     ],
                     [
-                        -70.3814988,
-                        45.93552
+                        -105.3781497,
+                        30.808463
                     ],
                     [
-                        -70.3201618,
-                        45.93552
+                        -105.3781497,
+                        30.7471828
                     ],
                     [
-                        -70.3201618,
-                        45.879479
+                        -105.1904658,
+                        30.7471828
                     ],
                     [
-                        -70.4493131,
-                        45.879479
+                        -105.1904658,
+                        30.6843231
                     ],
                     [
-                        -70.4493131,
-                        45.7538713
+                        -105.1286244,
+                        30.6843231
                     ],
                     [
-                        -70.5070021,
-                        45.7538713
+                        -105.1286244,
+                        30.6199737
                     ],
                     [
-                        -70.5070021,
-                        45.6916912
+                        -105.0036504,
+                        30.6199737
                     ],
                     [
-                        -70.6316642,
-                        45.6916912
+                        -105.0036504,
+                        30.5589058
                     ],
                     [
-                        -70.6316642,
-                        45.6291619
+                        -104.9417962,
+                        30.5589058
                     ],
                     [
-                        -70.7575538,
-                        45.6291619
+                        -104.9417962,
+                        30.4963236
                     ],
                     [
-                        -70.7575538,
-                        45.4414685
+                        -104.8782018,
+                        30.4963236
                     ],
                     [
-                        -70.8809878,
-                        45.4414685
+                        -104.8782018,
+                        30.3098261
                     ],
                     [
-                        -70.8809878,
-                        45.3780612
+                        -104.8155257,
+                        30.3098261
                     ],
                     [
-                        -71.13328,
-                        45.3780612
+                        -104.8155257,
+                        30.2478305
                     ],
                     [
-                        -71.13328,
-                        45.3151452
+                        -104.7536079,
+                        30.2478305
                     ],
                     [
-                        -71.3830282,
-                        45.3151452
+                        -104.7536079,
+                        29.9353916
                     ],
                     [
-                        -71.3830282,
-                        45.253416
+                        -104.690949,
+                        29.9353916
                     ],
                     [
-                        -71.5076448,
-                        45.253416
+                        -104.690949,
+                        29.8090156
                     ],
                     [
-                        -71.5076448,
-                        45.0655726
+                        -104.6291301,
+                        29.8090156
                     ],
                     [
-                        -73.9418929,
-                        45.0655726
+                        -104.6291301,
+                        29.6843577
                     ],
                     [
-                        -73.9418929,
-                        45.0031242
+                        -104.5659869,
+                        29.6843577
                     ],
                     [
-                        -74.7469725,
-                        45.0031242
+                        -104.5659869,
+                        29.6223459
                     ],
                     [
-                        -74.7469725,
-                        45.0649003
+                        -104.5037188,
+                        29.6223459
                     ],
                     [
-                        -74.8800964,
-                        45.0649003
+                        -104.5037188,
+                        29.5595436
                     ],
                     [
-                        -74.8800964,
-                        45.0029023
+                        -104.4410072,
+                        29.5595436
                     ],
                     [
-                        -75.0662455,
-                        45.0029023
+                        -104.4410072,
+                        29.4974832
                     ],
                     [
-                        -75.0662455,
-                        44.9415167
+                        -104.2537551,
+                        29.4974832
                     ],
                     [
-                        -75.2539363,
-                        44.9415167
+                        -104.2537551,
+                        29.3716718
                     ],
                     [
-                        -75.2539363,
-                        44.8776043
+                        -104.1291984,
+                        29.3716718
                     ],
                     [
-                        -75.3789648,
-                        44.8776043
+                        -104.1291984,
+                        29.3091621
                     ],
                     [
-                        -75.3789648,
-                        44.8153462
+                        -104.0688737,
+                        29.3091621
                     ],
                     [
-                        -75.4431283,
-                        44.8153462
+                        -104.0688737,
+                        29.2467276
                     ],
                     [
-                        -75.4431283,
-                        44.7536053
+                        -103.8187309,
+                        29.2467276
                     ],
                     [
-                        -75.5666566,
-                        44.7536053
+                        -103.8187309,
+                        29.1843076
                     ],
                     [
-                        -75.5666566,
-                        44.6909879
+                        -103.755736,
+                        29.1843076
                     ],
                     [
-                        -75.6290205,
-                        44.6909879
+                        -103.755736,
+                        29.1223174
                     ],
                     [
-                        -75.6290205,
-                        44.6284958
+                        -103.5667542,
+                        29.1223174
                     ],
                     [
-                        -75.7540484,
-                        44.6284958
+                        -103.5667542,
+                        29.0598119
                     ],
                     [
-                        -75.7540484,
-                        44.566385
+                        -103.5049819,
+                        29.0598119
                     ],
                     [
-                        -75.817312,
-                        44.566385
+                        -103.5049819,
+                        28.9967506
                     ],
                     [
-                        -75.817312,
-                        44.5028932
+                        -103.3165753,
+                        28.9967506
                     ],
                     [
-                        -75.8799549,
-                        44.5028932
+                        -103.3165753,
+                        28.9346923
                     ],
                     [
-                        -75.8799549,
-                        44.3784946
+                        -103.0597572,
+                        28.9346923
                     ],
                     [
-                        -76.1300319,
-                        44.3784946
+                        -103.0597572,
+                        29.0592965
                     ],
                     [
-                        -76.1300319,
-                        44.3159227
+                        -102.9979694,
+                        29.0592965
                     ],
                     [
-                        -76.1926961,
-                        44.3159227
+                        -102.9979694,
+                        29.1212855
                     ],
                     [
-                        -76.1926961,
-                        44.2534378
+                        -102.9331397,
+                        29.1212855
                     ],
                     [
-                        -76.3182619,
-                        44.2534378
+                        -102.9331397,
+                        29.1848575
                     ],
                     [
-                        -76.3182619,
-                        44.1916726
+                        -102.8095989,
+                        29.1848575
                     ],
                     [
-                        -76.3792975,
-                        44.1916726
+                        -102.8095989,
+                        29.2526154
                     ],
                     [
-                        -76.3792975,
-                        44.0653733
+                        -102.8701345,
+                        29.2526154
                     ],
                     [
-                        -76.4427584,
-                        44.0653733
+                        -102.8701345,
+                        29.308096
                     ],
                     [
-                        -76.4427584,
-                        43.9963825
+                        -102.8096681,
+                        29.308096
                     ],
                     [
-                        -76.317027,
-                        43.9963825
+                        -102.8096681,
+                        29.3715484
                     ],
                     [
-                        -76.317027,
-                        43.9414581
+                        -102.7475655,
+                        29.3715484
                     ],
                     [
-                        -76.5076611,
-                        43.9414581
+                        -102.7475655,
+                        29.5581899
                     ],
                     [
-                        -76.5076611,
-                        43.8723335
+                        -102.684554,
+                        29.5581899
                     ],
                     [
-                        -76.3829974,
-                        43.8723335
+                        -102.684554,
+                        29.6847655
                     ],
                     [
-                        -76.3829974,
-                        43.8091872
+                        -102.4967764,
+                        29.6847655
                     ],
                     [
-                        -76.2534102,
-                        43.8091872
+                        -102.4967764,
+                        29.7457694
                     ],
                     [
-                        -76.2534102,
-                        43.5665222
+                        -102.3086647,
+                        29.7457694
                     ],
                     [
-                        -76.5064833,
-                        43.5665222
+                        -102.3086647,
+                        29.8086627
                     ],
                     [
-                        -76.5064833,
-                        43.5033881
+                        -102.1909323,
+                        29.8086627
                     ],
                     [
-                        -76.6331208,
-                        43.5033881
+                        -102.1909323,
+                        29.7460097
                     ],
                     [
-                        -76.6331208,
-                        43.4432252
+                        -101.5049914,
+                        29.7460097
                     ],
                     [
-                        -76.6951085,
-                        43.4432252
+                        -101.5049914,
+                        29.6846777
                     ],
                     [
-                        -76.6951085,
-                        43.3786858
+                        -101.3805796,
+                        29.6846777
                     ],
                     [
-                        -76.8177798,
-                        43.3786858
+                        -101.3805796,
+                        29.5594459
                     ],
                     [
-                        -76.8177798,
-                        43.318066
+                        -101.3175057,
+                        29.5594459
                     ],
                     [
-                        -77.682,
-                        43.318066
+                        -101.3175057,
+                        29.4958934
                     ],
                     [
-                        -77.682,
-                        43.3789376
+                        -101.1910075,
+                        29.4958934
                     ],
                     [
-                        -78.0565883,
-                        43.3789376
+                        -101.1910075,
+                        29.4326115
                     ],
                     [
-                        -78.0565883,
-                        43.4396918
+                        -101.067501,
+                        29.4326115
                     ],
                     [
-                        -78.4389748,
-                        43.4396918
+                        -101.067501,
+                        29.308808
                     ],
                     [
-                        -78.4389748,
-                        43.3794382
+                        -100.9418897,
+                        29.308808
                     ],
                     [
-                        -78.8803396,
-                        43.3794382
+                        -100.9418897,
+                        29.2456231
                     ],
                     [
-                        -78.8803396,
-                        43.3149724
+                        -100.8167271,
+                        29.2456231
                     ],
                     [
-                        -79.1298858,
-                        43.3149724
+                        -100.8167271,
+                        29.1190449
                     ],
                     [
-                        -79.1298858,
-                        43.2429286
+                        -100.7522672,
+                        29.1190449
                     ],
                     [
-                        -79.0669615,
-                        43.2429286
+                        -100.7522672,
+                        29.0578214
                     ],
                     [
-                        -79.0669615,
-                        43.1299931
+                        -100.6925358,
+                        29.0578214
                     ],
                     [
-                        -79.1298858,
-                        43.1299931
+                        -100.6925358,
+                        28.8720431
                     ],
                     [
-                        -79.1298858,
-                        43.0577305
+                        -100.6290158,
+                        28.8720431
                     ],
                     [
-                        -79.071264,
-                        43.0577305
+                        -100.6290158,
+                        28.8095363
                     ],
                     [
-                        -79.071264,
-                        42.9294906
+                        -100.5679901,
+                        28.8095363
                     ],
                     [
-                        -78.943264,
-                        42.9294906
+                        -100.5679901,
+                        28.622554
                     ],
                     [
-                        -78.943264,
-                        42.7542165
+                        -100.5040411,
+                        28.622554
                     ],
                     [
-                        -79.069439,
-                        42.7542165
+                        -100.5040411,
+                        28.5583804
                     ],
                     [
-                        -79.069439,
-                        42.6941622
+                        -100.4421832,
+                        28.5583804
                     ],
                     [
-                        -79.133439,
-                        42.6941622
+                        -100.4421832,
+                        28.4968266
                     ],
                     [
-                        -79.133439,
-                        42.6296973
+                        -100.379434,
+                        28.4968266
                     ],
                     [
-                        -79.1947499,
-                        42.6296973
+                        -100.379434,
+                        28.3092865
                     ],
                     [
-                        -79.1947499,
-                        42.5663538
+                        -100.3171942,
+                        28.3092865
                     ],
                     [
-                        -79.3786827,
-                        42.5663538
+                        -100.3171942,
+                        28.1835681
                     ],
                     [
-                        -79.3786827,
-                        42.5033425
+                        -100.254483,
+                        28.1835681
                     ],
                     [
-                        -79.4442961,
-                        42.5033425
+                        -100.254483,
+                        28.1213885
                     ],
                     [
-                        -79.4442961,
-                        42.4410614
+                        -100.1282282,
+                        28.1213885
                     ],
                     [
-                        -79.5679936,
-                        42.4410614
+                        -100.1282282,
+                        28.059215
                     ],
                     [
-                        -79.5679936,
-                        42.3775264
+                        -100.0659537,
+                        28.059215
                     ],
                     [
-                        -79.6906154,
-                        42.3775264
+                        -100.0659537,
+                        27.9966087
                     ],
                     [
-                        -79.6906154,
-                        42.3171086
+                        -100.0023855,
+                        27.9966087
                     ],
                     [
-                        -79.8164642,
-                        42.3171086
+                        -100.0023855,
+                        27.9332152
                     ],
                     [
-                        -79.8164642,
-                        42.2534481
+                        -99.9426497,
+                        27.9332152
                     ],
                     [
-                        -80.0052373,
-                        42.2534481
+                        -99.9426497,
+                        27.7454658
                     ],
                     [
-                        -80.0052373,
-                        42.1909188
+                        -99.816851,
+                        27.7454658
                     ],
                     [
-                        -80.1916829,
-                        42.1909188
+                        -99.816851,
+                        27.6834301
                     ],
                     [
-                        -80.1916829,
-                        42.1272555
+                        -99.7541346,
+                        27.6834301
                     ],
                     [
-                        -80.3167992,
-                        42.1272555
+                        -99.7541346,
+                        27.6221543
                     ],
                     [
-                        -80.3167992,
-                        42.0669857
+                        -99.6291629,
+                        27.6221543
                     ],
                     [
-                        -80.5063234,
-                        42.0669857
+                        -99.6291629,
+                        27.5588977
                     ],
                     [
-                        -80.5063234,
-                        42.0034331
+                        -99.5672838,
+                        27.5588977
                     ],
                     [
-                        -80.6930471,
-                        42.0034331
+                        -99.5672838,
+                        27.4353752
                     ],
                     [
-                        -80.6930471,
-                        41.9415141
+                        -99.5041798,
+                        27.4353752
                     ],
                     [
-                        -80.9440403,
-                        41.9415141
+                        -99.5041798,
+                        27.3774021
                     ],
                     [
-                        -80.9440403,
-                        41.8781193
+                        -99.5671796,
+                        27.3774021
                     ],
                     [
-                        -81.1942729,
-                        41.8781193
+                        -99.5671796,
+                        27.2463726
                     ],
                     [
-                        -81.1942729,
-                        41.8166455
+                        -99.504975,
+                        27.2463726
                     ],
                     [
-                        -81.3190089,
-                        41.8166455
+                        -99.504975,
+                        26.9965649
                     ],
                     [
-                        -81.3190089,
-                        41.7545453
+                        -99.4427427,
+                        26.9965649
                     ],
                     [
-                        -81.4418435,
-                        41.7545453
+                        -99.4427427,
+                        26.872803
                     ],
                     [
-                        -81.4418435,
-                        41.690965
+                        -99.3800633,
+                        26.872803
                     ],
                     [
-                        -81.5053523,
-                        41.690965
+                        -99.3800633,
+                        26.8068179
                     ],
                     [
-                        -81.5053523,
-                        41.6301643
+                        -99.3190684,
+                        26.8068179
                     ],
                     [
-                        -82.7470081,
-                        41.6301643
+                        -99.3190684,
+                        26.7473614
                     ],
                     [
-                        -82.7470081,
-                        41.7536942
+                        -99.2537541,
+                        26.7473614
                     ],
                     [
-                        -82.8839135,
-                        41.7536942
+                        -99.2537541,
+                        26.6210068
                     ],
                     [
-                        -82.8839135,
-                        41.5656075
+                        -99.1910617,
+                        26.6210068
                     ],
                     [
-                        -82.9957195,
-                        41.5656075
+                        -99.1910617,
+                        26.4956737
                     ],
                     [
-                        -82.9957195,
-                        41.6270375
+                        -99.1300639,
+                        26.4956737
                     ],
                     [
-                        -83.1257796,
-                        41.6270375
+                        -99.1300639,
+                        26.3713808
                     ],
                     [
-                        -83.1257796,
-                        41.6878411
+                        -99.0029473,
+                        26.3713808
                     ],
                     [
-                        -83.2474733,
-                        41.6878411
+                        -99.0029473,
+                        26.3093836
                     ],
                     [
-                        -83.2474733,
-                        41.7536942
+                        -98.816572,
+                        26.3093836
                     ],
                     [
-                        -83.3737305,
-                        41.7536942
+                        -98.816572,
+                        26.2457762
                     ],
                     [
-                        -83.3737305,
-                        41.809276
+                        -98.6920082,
+                        26.2457762
                     ],
                     [
-                        -83.3106019,
-                        41.809276
+                        -98.6920082,
+                        26.1837096
                     ],
                     [
-                        -83.3106019,
-                        41.8716064
+                        -98.4440896,
+                        26.1837096
                     ],
                     [
-                        -83.2474733,
-                        41.8716064
+                        -98.4440896,
+                        26.1217217
                     ],
                     [
-                        -83.2474733,
-                        41.9361393
+                        -98.3823181,
+                        26.1217217
                     ],
                     [
-                        -83.1843447,
-                        41.9361393
+                        -98.3823181,
+                        26.0596488
                     ],
                     [
-                        -83.1843447,
-                        41.9960851
+                        -98.2532707,
+                        26.0596488
                     ],
                     [
-                        -83.1207681,
-                        41.9960851
+                        -98.2532707,
+                        25.9986871
                     ],
                     [
-                        -83.1207681,
-                        42.2464812
+                        -98.0109084,
+                        25.9986871
                     ],
                     [
-                        -83.0589194,
-                        42.2464812
+                        -98.0109084,
+                        25.9932255
                     ],
                     [
-                        -83.0589194,
-                        42.3089555
+                        -97.6932319,
+                        25.9932255
                     ],
                     [
-                        -82.8685328,
-                        42.3089555
+                        -97.6932319,
+                        25.9334103
                     ],
                     [
-                        -82.8685328,
-                        42.3717652
+                        -97.6313904,
+                        25.9334103
                     ],
                     [
-                        -82.8072219,
-                        42.3717652
+                        -97.6313904,
+                        25.8695893
                     ],
                     [
-                        -82.8072219,
-                        42.558553
+                        -97.5046779,
+                        25.8695893
                     ],
                     [
-                        -82.7553745,
-                        42.558553
+                        -97.5046779,
+                        25.8073488
                     ],
                     [
-                        -82.7553745,
-                        42.4954945
+                        -97.3083401,
+                        25.8073488
                     ],
                     [
-                        -82.5599041,
-                        42.4954945
+                        -97.3083401,
+                        25.8731159
                     ],
                     [
-                        -82.5599041,
-                        42.558553
+                        -97.2456326,
+                        25.8731159
                     ],
                     [
-                        -82.4967755,
-                        42.558553
+                        -97.2456326,
+                        25.9353731
                     ],
                     [
-                        -82.4967755,
-                        42.6833607
+                        -97.1138939,
+                        25.9353731
                     ],
                     [
-                        -82.4328863,
-                        42.6833607
+                        -97.1138939,
+                        27.6809179
                     ],
                     [
-                        -82.4328863,
-                        42.9342196
+                        -97.0571035,
+                        27.6809179
                     ],
                     [
-                        -82.3700552,
-                        42.9342196
+                        -97.0571035,
+                        27.8108242
                     ],
                     [
-                        -82.3700552,
-                        43.0648071
+                        -95.5810766,
+                        27.8108242
                     ],
                     [
-                        -82.4328863,
-                        43.0648071
+                        -95.5810766,
+                        28.7468827
                     ],
                     [
-                        -82.4328863,
-                        43.1917566
+                        -94.271041,
+                        28.7468827
                     ],
                     [
-                        -82.4947464,
-                        43.1917566
+                        -94.271041,
+                        29.5594076
                     ],
                     [
-                        -82.4947464,
-                        43.5034627
+                        -92.5029947,
+                        29.5594076
                     ],
                     [
-                        -82.557133,
-                        43.5034627
+                        -92.5029947,
+                        29.4974754
                     ],
                     [
-                        -82.557133,
-                        43.8160901
+                        -91.8776216,
+                        29.4974754
                     ],
                     [
-                        -82.6197884,
-                        43.8160901
+                        -91.8776216,
+                        29.3727013
                     ],
                     [
-                        -82.6197884,
-                        43.9422098
+                        -91.378418,
+                        29.3727013
                     ],
                     [
-                        -82.6839499,
-                        43.9422098
+                        -91.378418,
+                        29.2468326
                     ],
                     [
-                        -82.6839499,
-                        44.0022641
+                        -91.3153953,
+                        29.2468326
                     ],
                     [
-                        -82.7465346,
-                        44.0022641
+                        -91.3153953,
+                        29.1844301
                     ],
                     [
-                        -82.7465346,
-                        44.0670545
+                        -91.1294702,
+                        29.1844301
                     ],
                     [
-                        -82.8708696,
-                        44.0670545
+                        -91.1294702,
+                        29.1232559
                     ],
                     [
-                        -82.8708696,
-                        44.1291935
+                        -91.0052632,
+                        29.1232559
                     ],
                     [
-                        -83.008517,
-                        44.1291935
+                        -91.0052632,
+                        28.9968437
                     ],
                     [
-                        -83.008517,
-                        44.0664786
+                        -89.4500159,
+                        28.9968437
                     ],
                     [
-                        -83.1336086,
-                        44.0664786
+                        -89.4500159,
+                        28.8677422
                     ],
                     [
-                        -83.1336086,
-                        44.0053949
+                        -88.8104309,
+                        28.8677422
                     ],
                     [
-                        -83.2414522,
-                        44.0053949
+                        -88.8104309,
+                        30.1841864
                     ],
                     [
-                        -83.2414522,
-                        44.9962034
+                        -85.8791527,
+                        30.1841864
                     ],
                     [
-                        -83.1806112,
-                        44.9962034
+                        -85.8791527,
+                        29.5455038
                     ],
                     [
-                        -83.1806112,
-                        45.067302
+                        -84.8368083,
+                        29.5455038
                     ],
                     [
-                        -83.2455172,
-                        45.067302
+                        -84.8368083,
+                        29.6225158
                     ],
                     [
-                        -83.2455172,
-                        45.1287382
+                        -84.7482786,
+                        29.6225158
                     ],
                     [
-                        -83.3065878,
-                        45.1287382
+                        -84.7482786,
+                        29.683624
                     ],
                     [
-                        -83.3065878,
-                        45.2551509
+                        -84.685894,
+                        29.683624
                     ],
                     [
-                        -83.3706087,
-                        45.2551509
+                        -84.685894,
+                        29.7468386
                     ],
                     [
-                        -83.3706087,
-                        45.3165923
+                        -83.6296975,
+                        29.7468386
                     ],
                     [
-                        -83.4325644,
-                        45.3165923
+                        -83.6296975,
+                        29.4324361
                     ],
                     [
-                        -83.4325644,
-                        45.3792105
+                        -83.3174937,
+                        29.4324361
                     ],
                     [
-                        -83.6178415,
-                        45.3792105
+                        -83.3174937,
+                        29.0579442
                     ],
                     [
-                        -83.6178415,
-                        45.4419665
+                        -82.879659,
+                        29.0579442
                     ],
                     [
-                        -83.8084291,
-                        45.4419665
+                        -82.879659,
+                        27.7453529
                     ],
                     [
-                        -83.8084291,
-                        45.5036189
+                        -82.8182822,
+                        27.7453529
                     ],
                     [
-                        -84.0550718,
-                        45.5036189
+                        -82.8182822,
+                        26.9290868
                     ],
                     [
-                        -84.0550718,
-                        45.5647907
+                        -82.3796782,
+                        26.9290868
                     ],
                     [
-                        -84.1235181,
-                        45.5647907
+                        -82.3796782,
+                        26.3694183
                     ],
                     [
-                        -84.1235181,
-                        45.6287845
+                        -81.8777106,
+                        26.3694183
                     ],
                     [
-                        -84.1807534,
-                        45.6287845
+                        -81.8777106,
+                        25.805971
                     ],
                     [
-                        -84.1807534,
-                        45.6914688
+                        -81.5036862,
+                        25.805971
                     ],
                     [
-                        -84.3111554,
-                        45.6914688
+                        -81.5036862,
+                        25.7474753
                     ],
                     [
-                        -84.3111554,
-                        45.9337076
+                        -81.4405462,
+                        25.7474753
                     ],
                     [
-                        -83.8209974,
-                        45.9337076
+                        -81.4405462,
+                        25.6851489
                     ],
                     [
-                        -83.8209974,
-                        45.8725113
+                        -81.3155883,
+                        25.6851489
                     ],
                     [
-                        -83.4968086,
-                        45.8725113
+                        -81.3155883,
+                        25.5600985
                     ],
                     [
-                        -83.4968086,
-                        45.9337076
+                        -81.2538534,
+                        25.5600985
                     ],
                     [
-                        -83.4338066,
-                        45.9337076
+                        -81.2538534,
+                        25.4342361
                     ],
                     [
-                        -83.4338066,
-                        46.0016863
+                        -81.1902012,
+                        25.4342361
                     ],
                     [
-                        -83.4962697,
-                        46.0016863
+                        -81.1902012,
+                        25.1234341
                     ],
                     [
-                        -83.4962697,
-                        46.0668178
+                        -81.1288133,
+                        25.1234341
                     ],
                     [
-                        -83.5599956,
-                        46.0668178
+                        -81.1288133,
+                        25.0619389
                     ],
                     [
-                        -83.5599956,
-                        46.1261576
+                        -81.0649231,
+                        25.0619389
                     ],
                     [
-                        -83.9954558,
-                        46.1261576
+                        -81.0649231,
+                        24.8157807
                     ],
                     [
-                        -83.9954558,
-                        46.1931747
+                        -81.6289469,
+                        24.8157807
                     ],
                     [
-                        -84.0591816,
-                        46.1931747
+                        -81.6289469,
+                        24.7538367
                     ],
                     [
-                        -84.0591816,
-                        46.3814972
+                        -81.6907173,
+                        24.7538367
                     ],
                     [
-                        -84.1152614,
-                        46.3814972
+                        -81.6907173,
+                        24.6899374
                     ],
                     [
-                        -84.1152614,
-                        46.4953584
+                        -81.8173189,
+                        24.6899374
                     ],
                     [
-                        -84.0591816,
-                        46.4953584
+                        -81.8173189,
+                        24.6279161
                     ],
                     [
-                        -84.0591816,
-                        46.5682653
+                        -82.1910041,
+                        24.6279161
                     ],
                     [
-                        -84.2579545,
-                        46.5682653
+                        -82.1910041,
+                        24.496294
                     ],
                     [
-                        -84.2579545,
-                        46.5051232
+                        -81.6216596,
+                        24.496294
                     ],
                     [
-                        -84.3071879,
-                        46.5051232
+                        -81.6216596,
+                        24.559484
                     ],
                     [
-                        -84.3071879,
-                        46.5682653
+                        -81.372006,
+                        24.559484
                     ],
                     [
-                        -84.4415364,
-                        46.5682653
+                        -81.372006,
+                        24.6220687
                     ],
                     [
-                        -84.4415364,
-                        46.504525
+                        -81.0593278,
+                        24.6220687
                     ],
                     [
-                        -84.9965729,
-                        46.504525
+                        -81.0593278,
+                        24.684826
                     ],
                     [
-                        -84.9965729,
-                        46.6842882
+                        -80.9347147,
+                        24.684826
                     ],
                     [
-                        -84.9298158,
-                        46.6842882
+                        -80.9347147,
+                        24.7474828
                     ],
                     [
-                        -84.9298158,
-                        46.818077
+                        -80.7471081,
+                        24.7474828
                     ],
                     [
-                        -85.3165894,
-                        46.818077
+                        -80.7471081,
+                        24.8100618
                     ],
                     [
-                        -85.3165894,
-                        46.7535825
+                        -80.3629898,
+                        24.8100618
                     ],
                     [
-                        -87.5562645,
-                        46.7535825
+                        -80.3629898,
+                        25.1175858
                     ],
                     [
-                        -87.5562645,
-                        47.4407371
+                        -80.122344,
+                        25.1175858
                     ],
                     [
-                        -87.6825361,
-                        47.4407371
+                        -80.122344,
+                        25.7472357
                     ],
                     [
-                        -87.6825361,
-                        47.5035554
+                        -80.0588458,
+                        25.7472357
                     ],
                     [
-                        -88.2560738,
-                        47.5035554
+                        -80.0588458,
+                        26.3708251
                     ],
                     [
-                        -88.2560738,
-                        47.4433716
+                        -79.995837,
+                        26.3708251
                     ],
                     [
-                        -88.4417419,
-                        47.4433716
+                        -79.995837,
+                        26.9398003
                     ],
                     [
-                        -88.4417419,
-                        47.3789949
+                        -80.0587265,
+                        26.9398003
                     ],
                     [
-                        -88.50683,
-                        47.3789949
+                        -80.0587265,
+                        27.1277466
                     ],
                     [
-                        -88.50683,
-                        47.3153881
+                        -80.1226251,
+                        27.1277466
                     ],
                     [
-                        -88.6312821,
-                        47.3153881
+                        -80.1226251,
+                        27.2534279
                     ],
                     [
-                        -88.6312821,
-                        47.2539782
+                        -80.1846956,
+                        27.2534279
                     ],
                     [
-                        -88.7569636,
-                        47.2539782
+                        -80.1846956,
+                        27.3781229
                     ],
                     [
-                        -88.7569636,
-                        47.1934682
+                        -80.246175,
+                        27.3781229
                     ],
                     [
-                        -88.8838253,
-                        47.1934682
+                        -80.246175,
+                        27.5658729
                     ],
                     [
-                        -88.8838253,
-                        47.1284735
+                        -80.3094768,
+                        27.5658729
                     ],
                     [
-                        -88.9434208,
-                        47.1284735
+                        -80.3094768,
+                        27.7530311
                     ],
                     [
-                        -88.9434208,
-                        47.0662127
+                        -80.3721485,
+                        27.7530311
                     ],
                     [
-                        -89.0708726,
-                        47.0662127
+                        -80.3721485,
+                        27.8774451
                     ],
                     [
-                        -89.0708726,
-                        47.0026826
+                        -80.4351457,
+                        27.8774451
                     ],
                     [
-                        -89.2565553,
-                        47.0026826
+                        -80.4351457,
+                        28.0033366
                     ],
                     [
-                        -89.2565553,
-                        46.9410806
+                        -80.4966078,
+                        28.0033366
                     ],
                     [
-                        -90.3677669,
-                        46.9410806
+                        -80.4966078,
+                        28.1277326
                     ],
                     [
-                        -90.3677669,
-                        47.6844827
+                        -80.5587159,
+                        28.1277326
                     ],
                     [
-                        -90.3069978,
-                        47.6844827
+                        -80.5587159,
+                        28.3723509
                     ],
                     [
-                        -90.3069978,
-                        47.7460174
+                        -80.4966335,
+                        28.3723509
                     ],
                     [
-                        -89.994859,
-                        47.7460174
+                        -80.4966335,
+                        29.5160326
                     ],
                     [
-                        -89.994859,
-                        47.8082719
+                        -81.1213644,
+                        29.5160326
                     ],
                     [
-                        -89.8048615,
-                        47.8082719
+                        -81.1213644,
+                        31.6846966
                     ],
                     [
-                        -89.8048615,
-                        47.8700562
+                        -80.6018723,
+                        31.6846966
                     ],
                     [
-                        -89.6797699,
-                        47.8700562
+                        -80.6018723,
+                        32.2475309
                     ],
                     [
-                        -89.6797699,
-                        47.9339637
+                        -79.4921024,
+                        32.2475309
                     ],
                     [
-                        -89.4933757,
-                        47.9339637
+                        -79.4921024,
+                        32.9970261
                     ],
                     [
-                        -89.4933757,
-                        47.9957956
+                        -79.1116488,
+                        32.9970261
                     ],
                     [
-                        -89.4284697,
-                        47.9957956
+                        -79.1116488,
+                        33.3729457
                     ],
                     [
-                        -89.4284697,
-                        48.0656377
+                        -78.6153621,
+                        33.3729457
                     ],
                     [
-                        -89.9932739,
-                        48.0656377
+                        -78.6153621,
+                        33.8097638
                     ],
                     [
-                        -89.9932739,
-                        48.1282966
+                        -77.9316963,
+                        33.8097638
                     ],
                     [
-                        -90.7455933,
-                        48.1282966
+                        -77.9316963,
+                        33.8718243
                     ],
                     [
-                        -90.7455933,
-                        48.1893056
+                        -77.8692252,
+                        33.8718243
                     ],
                     [
-                        -90.8087291,
-                        48.1893056
+                        -77.8692252,
+                        34.0552454
                     ],
                     [
-                        -90.8087291,
-                        48.2522065
+                        -77.6826392,
+                        34.0552454
                     ],
                     [
-                        -91.067763,
-                        48.2522065
+                        -77.6826392,
+                        34.2974598
                     ],
                     [
-                        -91.067763,
-                        48.1916658
+                        -77.2453509,
+                        34.2974598
                     ],
                     [
-                        -91.1946247,
-                        48.1916658
+                        -77.2453509,
+                        34.5598585
                     ],
                     [
-                        -91.1946247,
-                        48.1279027
+                        -76.4973277,
+                        34.5598585
                     ],
                     [
-                        -91.6814196,
-                        48.1279027
+                        -76.4973277,
+                        34.622796
                     ],
                     [
-                        -91.6814196,
-                        48.2525994
+                        -76.4337602,
+                        34.622796
                     ],
                     [
-                        -91.9321927,
-                        48.2525994
+                        -76.4337602,
+                        34.6849285
                     ],
                     [
-                        -91.9321927,
-                        48.3142454
+                        -76.373212,
+                        34.6849285
                     ],
                     [
-                        -91.9929683,
-                        48.3142454
+                        -76.373212,
+                        34.7467674
                     ],
                     [
-                        -91.9929683,
-                        48.3780845
+                        -76.3059364,
+                        34.7467674
                     ],
                     [
-                        -92.3189383,
-                        48.3780845
+                        -76.3059364,
+                        34.808551
                     ],
                     [
-                        -92.3189383,
-                        48.2529081
+                        -76.2468017,
+                        34.808551
                     ],
                     [
-                        -92.3732233,
-                        48.2529081
+                        -76.2468017,
+                        34.8728418
                     ],
                     [
-                        -92.3732233,
-                        48.3153385
+                        -76.1825922,
+                        34.8728418
                     ],
                     [
-                        -92.4322288,
-                        48.3153385
+                        -76.1825922,
+                        34.9335332
                     ],
                     [
-                        -92.4322288,
-                        48.4411448
+                        -76.120814,
+                        34.9335332
                     ],
                     [
-                        -92.4977248,
-                        48.4411448
+                        -76.120814,
+                        34.9952359
                     ],
                     [
-                        -92.4977248,
-                        48.501781
+                        -75.9979015,
+                        34.9952359
                     ],
                     [
-                        -92.5679413,
-                        48.501781
+                        -75.9979015,
+                        35.0578182
                     ],
                     [
-                        -92.5679413,
-                        48.439579
+                        -75.870338,
+                        35.0578182
                     ],
                     [
-                        -92.6210462,
-                        48.439579
+                        -75.870338,
+                        35.1219097
                     ],
                     [
-                        -92.6210462,
-                        48.5650783
+                        -75.7462194,
+                        35.1219097
                     ],
                     [
-                        -92.8086835,
-                        48.5650783
+                        -75.7462194,
+                        35.1818911
                     ],
                     [
-                        -92.8086835,
-                        48.6286865
+                        -75.4929694,
+                        35.1818911
                     ],
                     [
-                        -92.8086835,
-                        48.6267365
+                        -75.4929694,
+                        35.3082988
                     ],
                     [
-                        -92.933185,
-                        48.6267365
+                        -75.4325662,
+                        35.3082988
                     ],
                     [
-                        -92.933185,
-                        48.6922145
+                        -75.4325662,
+                        35.7542495
                     ],
                     [
-                        -93.0051716,
-                        48.6922145
+                        -75.4969907,
+                        35.7542495
                     ],
                     [
-                        -93.0051716,
-                        48.6282965
+                        -75.4969907,
+                        37.8105602
                     ],
                     [
-                        -93.1225924,
-                        48.6282965
+                        -75.3082972,
+                        37.8105602
                     ],
                     [
-                        -93.1225924,
-                        48.6922145
+                        -75.3082972,
+                        37.8720088
                     ],
                     [
-                        -93.3190806,
-                        48.6922145
+                        -75.245601,
+                        37.8720088
                     ],
                     [
-                        -93.3190806,
-                        48.6267365
+                        -75.245601,
+                        37.9954849
                     ],
                     [
-                        -93.5049477,
-                        48.6267365
+                        -75.1828751,
+                        37.9954849
                     ],
                     [
-                        -93.5049477,
-                        48.5635164
+                        -75.1828751,
+                        38.0585079
                     ],
                     [
-                        -93.7474601,
-                        48.5635164
+                        -75.1184793,
+                        38.0585079
                     ],
                     [
-                        -93.7474601,
-                        48.6267365
+                        -75.1184793,
+                        38.2469091
                     ],
                     [
-                        -93.8135461,
-                        48.6267365
+                        -75.0592098,
+                        38.2469091
                     ],
                     [
-                        -93.8135461,
-                        48.6898775
+                        -75.0592098,
+                        38.3704316
                     ],
                     [
-                        -94.2453121,
-                        48.6898775
+                        -74.9948111,
+                        38.3704316
                     ],
                     [
-                        -94.2453121,
-                        48.7554327
+                        -74.9948111,
+                        38.8718417
                     ],
                     [
-                        -94.6183171,
-                        48.7554327
+                        -74.4878252,
+                        38.8718417
                     ],
                     [
-                        -94.6183171,
-                        48.941036
+                        -74.4878252,
+                        39.3089428
                     ],
                     [
-                        -94.6809018,
-                        48.941036
+                        -74.1766317,
+                        39.3089428
                     ],
                     [
-                        -94.6809018,
-                        49.0029737
+                        -74.1766317,
+                        39.6224653
                     ],
                     [
-                        -94.7441532,
-                        49.0029737
+                        -74.0567045,
+                        39.6224653
                     ],
                     [
-                        -94.7441532,
-                        49.2536079
+                        -74.0567045,
+                        39.933178
                     ],
                     [
-                        -94.8084069,
-                        49.2536079
+                        -73.9959035,
+                        39.933178
                     ],
                     [
-                        -94.8084069,
-                        49.3784134
+                        -73.9959035,
+                        40.1854852
                     ],
                     [
-                        -95.1192391,
-                        49.3784134
+                        -73.9341593,
+                        40.1854852
                     ],
                     [
-                        -95.1192391,
-                        49.4425264
+                        -73.9341593,
+                        40.4959486
                     ],
                     [
-                        -95.1934341,
-                        49.4425264
+                        -73.8723024,
+                        40.4959486
                     ],
                     [
-                        -95.1934341,
-                        49.0035292
+                        -73.8723024,
+                        40.5527135
                     ],
                     [
-                        -96.87069,
-                        49.0035292
+                        -71.8074506,
+                        40.5527135
                     ],
                     [
-                        -96.87069,
-                        49.0656063
+                        -71.8074506,
+                        41.3088005
                     ],
                     [
-                        -99.0049312,
-                        49.0656063
+                        -70.882512,
+                        41.3088005
                     ],
                     [
-                        -99.0049312,
-                        49.0050714
+                        -70.882512,
+                        41.184978
                     ],
                     [
-                        -109.3699257,
-                        49.0050714
+                        -70.7461947,
+                        41.184978
                     ],
                     [
-                        -109.3699257,
-                        49.0668231
+                        -70.7461947,
+                        41.3091865
                     ],
                     [
-                        -109.5058746,
-                        49.0668231
+                        -70.4337553,
+                        41.3091865
                     ],
                     [
-                        -109.5058746,
-                        49.0050714
+                        -70.4337553,
+                        41.4963885
                     ],
                     [
-                        -114.1830014,
-                        49.0050714
+                        -69.9334281,
+                        41.4963885
                     ],
                     [
-                        -114.1830014,
-                        49.0687317
+                        -69.9334281,
+                        41.6230802
                     ],
                     [
-                        -114.7578709,
-                        49.0687317
+                        -69.869857,
+                        41.6230802
                     ],
                     [
-                        -114.7578709,
-                        49.0050714
+                        -69.869857,
+                        41.8776895
                     ],
                     [
-                        -115.433731,
-                        49.0050714
+                        -69.935791,
+                        41.8776895
                     ],
                     [
-                        -115.433731,
-                        49.0671412
+                        -69.935791,
+                        42.0032342
                     ],
                     [
-                        -116.5062706,
-                        49.0671412
+                        -69.9975823,
+                        42.0032342
                     ],
                     [
-                        -116.5062706,
-                        49.0050714
+                        -69.9975823,
+                        42.0650191
                     ],
                     [
-                        -117.3089504,
-                        49.0050714
+                        -70.0606103,
+                        42.0650191
                     ],
                     [
-                        -117.3089504,
-                        49.0659803
+                        -70.0606103,
+                        42.1294348
                     ],
                     [
-                        -119.882945,
-                        49.0659803
+                        -70.5572884,
+                        42.1294348
                     ],
                     [
-                        -119.882945,
-                        49.0050714
+                        -70.5572884,
+                        43.2487079
                     ],
                     [
-                        -120.1208555,
-                        49.0050714
+                        -70.4974097,
+                        43.2487079
                     ],
                     [
-                        -120.1208555,
-                        49.0678367
+                        -70.4974097,
+                        43.3092194
                     ],
                     [
-                        -121.4451636,
-                        49.0678367
+                        -70.3704249,
+                        43.3092194
                     ],
                     [
-                        -121.4451636,
-                        49.0050714
+                        -70.3704249,
+                        43.371963
                     ],
                     [
-                        -121.9311808,
-                        49.0050714
+                        -70.3085701,
+                        43.371963
                     ],
                     [
-                        -121.9311808,
-                        49.0656099
+                        -70.3085701,
+                        43.4969879
                     ],
                     [
-                        -122.817484,
-                        49.0656099
+                        -70.183921,
+                        43.4969879
                     ],
                     [
-                        -122.817484,
-                        49.0029143
+                        -70.183921,
+                        43.6223531
                     ],
                     [
-                        -122.8795155,
-                        49.0029143
+                        -70.057583,
+                        43.6223531
                     ],
                     [
-                        -122.8795155,
-                        48.9347018
+                        -70.057583,
+                        43.6850173
                     ],
                     [
-                        -122.8174629,
-                        48.9347018
+                        -69.7455247,
+                        43.6850173
                     ],
                     [
-                        -122.8174629,
-                        48.8101998
+                        -69.7455247,
+                        43.7476571
                     ],
                     [
-                        -122.7538859,
-                        48.8101998
+                        -69.2472845,
+                        43.7476571
                     ],
                     [
-                        -122.7538859,
-                        48.7533758
+                        -69.2472845,
+                        43.8107035
                     ],
                     [
-                        -122.8712937,
-                        48.7533758
+                        -69.0560701,
+                        43.8107035
                     ],
                     [
-                        -122.8712937,
-                        48.8153948
+                        -69.0560701,
+                        43.8717247
                     ],
                     [
-                        -123.0055391,
-                        48.8153948
+                        -68.9950522,
+                        43.8717247
                     ],
                     [
-                        -123.0055391,
-                        48.7529529
+                        -68.9950522,
+                        43.9982022
                     ],
                     [
-                        -123.1296926,
-                        48.7529529
+                        -68.4963672,
+                        43.9982022
                     ],
                     [
-                        -123.1296926,
-                        48.6902201
+                        -68.4963672,
+                        44.0597368
                     ],
                     [
-                        -123.1838197,
-                        48.6902201
+                        -68.3081038,
+                        44.0597368
                     ],
                     [
-                        -123.1838197,
-                        48.7529029
-                    ]
-                ],
-                [
-                    [
-                        -122.9341743,
-                        37.7521547
+                        -68.3081038,
+                        44.122137
                     ],
                     [
-                        -122.9347457,
-                        37.6842013
+                        -68.1851802,
+                        44.122137
                     ],
                     [
-                        -123.0679013,
-                        37.6849023
+                        -68.1851802,
+                        44.3081382
                     ],
                     [
-                        -123.0673747,
-                        37.7475251
+                        -67.9956019,
+                        44.3081382
                     ],
                     [
-                        -123.1292603,
-                        37.7478506
+                        -67.9956019,
+                        44.3727489
                     ],
                     [
-                        -123.1286894,
-                        37.815685
+                        -67.8103041,
+                        44.3727489
                     ],
                     [
-                        -123.0590687,
-                        37.8153192
+                        -67.8103041,
+                        44.435178
                     ],
                     [
-                        -123.0595947,
-                        37.7528143
-                    ]
-                ],
-                [
-                    [
-                        -71.6299464,
-                        41.2540893
+                        -67.4965289,
+                        44.435178
                     ],
                     [
-                        -71.4966465,
-                        41.2541393
+                        -67.4965289,
+                        44.4968776
                     ],
                     [
-                        -71.4965596,
-                        41.122965
+                        -67.37102,
+                        44.4968776
                     ],
                     [
-                        -71.6298594,
-                        41.1229149
-                    ]
-                ],
-                [
-                    [
-                        -70.3184265,
-                        41.3775196
+                        -67.37102,
+                        44.5600642
                     ],
                     [
-                        -70.3183384,
-                        41.2448243
+                        -67.1848753,
+                        44.5600642
                     ],
                     [
-                        -70.1906612,
-                        41.2448722
+                        -67.1848753,
+                        44.6213345
                     ],
                     [
-                        -70.1906239,
-                        41.1886019
+                        -67.1221208,
+                        44.6213345
                     ],
                     [
-                        -69.9336025,
-                        41.1886984
+                        -67.1221208,
+                        44.6867918
                     ],
                     [
-                        -69.933729,
-                        41.3791941
+                        -67.059365,
+                        44.6867918
                     ],
                     [
-                        -69.9950664,
-                        41.3791712
+                        -67.059365,
+                        44.7473657
                     ],
                     [
-                        -69.995109,
-                        41.443159
+                        -66.9311098,
+                        44.7473657
                     ],
                     [
-                        -70.0707828,
-                        41.4431307
+                        -66.9311098,
+                        44.9406566
                     ],
                     [
-                        -70.0706972,
-                        41.3144915
+                        -66.994683,
+                        44.9406566
                     ],
                     [
-                        -70.2461667,
-                        41.3144258
+                        -66.994683,
+                        45.0024514
                     ],
                     [
-                        -70.2462087,
-                        41.3775467
-                    ]
-                ],
-                [
-                    [
-                        -68.9403374,
-                        43.9404062
+                        -67.0595847,
+                        45.0024514
                     ],
                     [
-                        -68.6856948,
-                        43.9404977
+                        -67.0595847,
+                        45.1273377
                     ],
                     [
-                        -68.6856475,
-                        43.8721797
+                        -67.1201974,
+                        45.1273377
                     ],
                     [
-                        -68.7465405,
-                        43.8721577
+                        -67.1201974,
+                        45.1910115
                     ],
                     [
-                        -68.7464976,
-                        43.8102529
+                        -67.2469811,
+                        45.1910115
                     ],
                     [
-                        -68.8090782,
-                        43.8102304
+                        -67.2469811,
+                        45.253442
                     ],
                     [
-                        -68.8090343,
-                        43.746728
+                        -67.3177546,
+                        45.253442
                     ],
                     [
-                        -68.8773094,
-                        43.7467034
+                        -67.3177546,
+                        45.1898369
                     ],
                     [
-                        -68.8773544,
-                        43.8117826
+                        -67.370749,
+                        45.1898369
                     ],
                     [
-                        -68.9402483,
-                        43.8117599
-                    ]
-                ],
-                [
+                        -67.370749,
+                        45.2534001
+                    ],
                     [
-                        -123.1291466,
-                        49.0645144
+                        -67.4326888,
+                        45.2534001
                     ],
                     [
-                        -122.9954224,
-                        49.0645144
+                        -67.4326888,
+                        45.3083409
                     ],
                     [
-                        -122.9954224,
-                        48.9343243
+                        -67.3708571,
+                        45.3083409
                     ],
                     [
-                        -123.1291466,
-                        48.9343243
-                    ]
-                ],
-                [
-                    [
-                        -82.9407144,
-                        24.7535913
+                        -67.3708571,
+                        45.4396986
                     ],
                     [
-                        -82.8719398,
-                        24.7535913
+                        -67.4305573,
+                        45.4396986
                     ],
                     [
-                        -82.8719398,
-                        24.6905653
+                        -67.4305573,
+                        45.4950095
                     ],
                     [
-                        -82.7446233,
-                        24.6905653
+                        -67.37099,
+                        45.4950095
                     ],
                     [
-                        -82.7446233,
-                        24.6214593
+                        -67.37099,
+                        45.6264543
                     ],
                     [
-                        -82.8088038,
-                        24.6214593
+                        -67.6214982,
+                        45.6264543
                     ],
                     [
-                        -82.8088038,
-                        24.5594908
+                        -67.6214982,
+                        45.6896133
                     ],
                     [
-                        -82.9407144,
-                        24.5594908
-                    ]
-                ]
-            ]
-        },
-        {
-            "name": "USGS Topographic Maps",
-            "type": "tms",
-            "template": "http://{switch:a,b,c}.tile.openstreetmap.us/usgs_scanned_topos/{zoom}/{x}/{y}.png",
-            "polygon": [
-                [
-                    [
-                        -125.990173,
-                        48.9962416
+                        -67.683828,
+                        45.6896133
                     ],
                     [
-                        -125.989419,
-                        47.9948396
+                        -67.683828,
+                        45.753259
                     ],
                     [
-                        -123.9929739,
-                        47.9955062
+                        -67.7462097,
+                        45.753259
                     ],
                     [
-                        -123.9922429,
-                        47.0059202
+                        -67.7462097,
+                        47.1268165
                     ],
                     [
-                        -125.988688,
-                        47.0052409
+                        -67.8700141,
+                        47.1268165
                     ],
                     [
-                        -125.9879604,
-                        46.0015618
+                        -67.8700141,
+                        47.1900278
                     ],
                     [
-                        -123.9939396,
-                        46.0022529
+                        -67.9323803,
+                        47.1900278
                     ],
                     [
-                        -123.9925238,
-                        43.9961708
+                        -67.9323803,
+                        47.2539678
                     ],
                     [
-                        -124.9931832,
-                        43.9958116
+                        -67.9959387,
+                        47.2539678
                     ],
                     [
-                        -124.9918175,
-                        41.9942149
+                        -67.9959387,
+                        47.3149737
                     ],
                     [
-                        -125.9851789,
-                        41.9938465
+                        -68.1206676,
+                        47.3149737
                     ],
                     [
-                        -125.9838655,
-                        40.0076111
+                        -68.1206676,
+                        47.3780823
                     ],
                     [
-                        -123.9833285,
-                        40.0083757
+                        -68.4423175,
+                        47.3780823
                     ],
                     [
-                        -123.9814115,
-                        37.002615
+                        -68.4423175,
+                        47.3166082
                     ],
                     [
-                        -122.21903,
-                        37.0033173
+                        -68.6314305,
+                        47.3166082
                     ],
                     [
-                        -122.2184144,
-                        36.011671
+                        -68.6314305,
+                        47.2544676
                     ],
                     [
-                        -122.020087,
-                        36.011751
+                        -68.9978037,
+                        47.2544676
                     ],
                     [
-                        -122.0188591,
-                        33.9961766
+                        -68.9978037,
+                        47.439895
                     ],
                     [
-                        -119.9787757,
-                        33.9970206
+                        -69.0607223,
+                        47.439895
                     ],
                     [
-                        -119.9775867,
-                        31.9987658
+                        -69.0607223,
+                        47.5047558
                     ],
                     [
-                        -114.0122833,
-                        32.00129
+                        -69.2538122,
+                        47.5047558
                     ],
                     [
-                        -114.0116894,
-                        30.9862401
+                        -69.2538122,
+                        47.4398084
                     ],
                     [
-                        -105.998294,
-                        30.9896679
+                        -69.3179284,
+                        47.4398084
                     ],
                     [
-                        -105.9971419,
-                        28.9901065
+                        -69.3179284,
+                        47.378601
                     ],
                     [
-                        -102.0210506,
-                        28.9918418
+                        -69.4438546,
+                        47.378601
                     ],
                     [
-                        -102.0204916,
-                        28.00733
+                        -69.4438546,
+                        47.3156274
                     ],
                     [
-                        -100.0062436,
-                        28.0082173
+                        -69.5038204,
+                        47.3156274
                     ],
                     [
-                        -100.0051143,
-                        25.991909
+                        -69.5038204,
+                        47.2525839
                     ],
                     [
-                        -98.0109067,
-                        25.9928035
+                        -69.5667838,
+                        47.2525839
                     ],
                     [
-                        -98.0103613,
-                        25.0063461
+                        -69.5667838,
+                        47.1910884
                     ],
                     [
-                        -97.0161086,
-                        25.0067957
+                        -69.6303478,
+                        47.1910884
                     ],
                     [
-                        -97.016654,
-                        25.9932494
+                        -69.6303478,
+                        47.128701
                     ],
                     [
-                        -95.9824825,
-                        25.9937132
+                        -69.6933103,
+                        47.128701
                     ],
                     [
-                        -95.9835999,
-                        27.9891175
+                        -69.6933103,
+                        47.0654307
                     ],
                     [
-                        -94.0200898,
-                        27.9899826
+                        -69.7557063,
+                        47.0654307
                     ],
                     [
-                        -94.0206586,
-                        28.9918129
+                        -69.7557063,
+                        47.0042751
                     ],
                     [
-                        -88.0156706,
-                        28.9944338
+                        -69.8180391,
+                        47.0042751
                     ],
                     [
-                        -88.0162494,
-                        30.0038862
+                        -69.8180391,
+                        46.9415344
                     ],
                     [
-                        -86.0277506,
-                        30.0047454
+                        -69.8804023,
+                        46.9415344
                     ],
                     [
-                        -86.0271719,
-                        28.9953016
+                        -69.8804023,
+                        46.8792519
                     ],
                     [
-                        -84.0187909,
-                        28.9961781
+                        -69.9421674,
+                        46.8792519
                     ],
                     [
-                        -84.017095,
-                        25.9817708
+                        -69.9421674,
+                        46.8177399
                     ],
                     [
-                        -81.9971976,
-                        25.9826768
+                        -70.0063088,
+                        46.8177399
                     ],
                     [
-                        -81.9966618,
-                        25.0134917
+                        -70.0063088,
+                        46.6920295
                     ],
                     [
-                        -84.0165592,
-                        25.0125783
+                        -70.0704265,
+                        46.6920295
                     ],
                     [
-                        -84.0160068,
-                        24.0052745
+                        -70.0704265,
+                        46.4425926
                     ],
                     [
-                        -80.0199985,
-                        24.007096
+                        -70.1945902,
+                        46.4425926
                     ],
                     [
-                        -80.0245309,
-                        32.0161282
+                        -70.1945902,
+                        46.3785887
                     ],
                     [
-                        -78.0066484,
-                        32.0169819
+                        -70.2562047,
+                        46.3785887
                     ],
                     [
-                        -78.0072238,
-                        32.9894278
+                        -70.2562047,
+                        46.3152628
                     ],
                     [
-                        -77.8807233,
-                        32.9894807
+                        -70.3203651,
+                        46.3152628
                     ],
                     [
-                        -77.8813253,
-                        33.9955918
+                        -70.3203651,
+                        46.0651209
                     ],
                     [
-                        -76.0115411,
-                        33.9963653
+                        -70.3814988,
+                        46.0651209
                     ],
                     [
-                        -76.0121459,
-                        34.9952552
+                        -70.3814988,
+                        45.93552
                     ],
                     [
-                        -74.0068449,
-                        34.9960749
+                        -70.3201618,
+                        45.93552
                     ],
                     [
-                        -74.0099997,
-                        40.0084254
+                        -70.3201618,
+                        45.879479
                     ],
                     [
-                        -72.0013745,
-                        40.0091931
+                        -70.4493131,
+                        45.879479
                     ],
                     [
-                        -72.002019,
-                        40.9912464
+                        -70.4493131,
+                        45.7538713
                     ],
                     [
-                        -69.8797398,
-                        40.9920457
+                        -70.5070021,
+                        45.7538713
                     ],
                     [
-                        -69.8804173,
-                        42.00893
+                        -70.5070021,
+                        45.6916912
                     ],
                     [
-                        -69.9927682,
-                        42.0088883
+                        -70.6316642,
+                        45.6916912
                     ],
                     [
-                        -69.9934462,
-                        43.0105166
+                        -70.6316642,
+                        45.6291619
                     ],
                     [
-                        -67.9845366,
-                        43.0112496
+                        -70.7575538,
+                        45.6291619
                     ],
                     [
-                        -67.985224,
-                        44.0103812
+                        -70.7575538,
+                        45.4414685
                     ],
                     [
-                        -65.9892568,
-                        44.0110975
+                        -70.8809878,
+                        45.4414685
                     ],
                     [
-                        -65.9921237,
-                        47.9993584
+                        -70.8809878,
+                        45.3780612
                     ],
                     [
-                        -70.006442,
-                        47.9980181
+                        -71.13328,
+                        45.3780612
                     ],
                     [
-                        -70.005708,
-                        47.0042007
+                        -71.13328,
+                        45.3151452
                     ],
                     [
-                        -72.023686,
-                        47.003514
+                        -71.3830282,
+                        45.3151452
                     ],
                     [
-                        -72.0222508,
-                        45.0059846
+                        -71.3830282,
+                        45.253416
                     ],
                     [
-                        -78.0146667,
-                        45.0038705
+                        -71.5076448,
+                        45.253416
                     ],
                     [
-                        -78.0139662,
-                        44.0026998
+                        -71.5076448,
+                        45.0655726
                     ],
                     [
-                        -80.029686,
-                        44.0019763
+                        -73.9418929,
+                        45.0655726
                     ],
                     [
-                        -80.0290052,
-                        43.0122994
+                        -73.9418929,
+                        45.0031242
                     ],
                     [
-                        -81.995479,
-                        43.011582
+                        -74.7469725,
+                        45.0031242
                     ],
                     [
-                        -81.9982986,
-                        47.0042713
+                        -74.7469725,
+                        45.0649003
                     ],
                     [
-                        -87.505706,
-                        47.0023972
+                        -74.8800964,
+                        45.0649003
                     ],
                     [
-                        -87.5064535,
-                        48.0142702
+                        -74.8800964,
+                        45.0029023
                     ],
                     [
-                        -88.0260889,
-                        48.0140968
+                        -75.0662455,
+                        45.0029023
                     ],
                     [
-                        -88.026838,
-                        49.0086686
+                        -75.0662455,
+                        44.9415167
                     ],
                     [
-                        -93.9981078,
-                        49.0067142
+                        -75.2539363,
+                        44.9415167
                     ],
                     [
-                        -93.9988778,
-                        50.0086456
+                        -75.2539363,
+                        44.8776043
                     ],
                     [
-                        -96.0138899,
-                        50.0079995
+                        -75.3789648,
+                        44.8776043
                     ],
                     [
-                        -96.0131199,
-                        49.0060547
-                    ]
-                ],
-                [
-                    [
-                        -160.5787616,
-                        22.5062947
+                        -75.3789648,
+                        44.8153462
                     ],
                     [
-                        -160.5782192,
-                        21.4984647
+                        -75.4431283,
+                        44.8153462
                     ],
                     [
-                        -159.0030121,
-                        21.499196
+                        -75.4431283,
+                        44.7536053
                     ],
                     [
-                        -159.0027422,
-                        20.9951068
+                        -75.5666566,
+                        44.7536053
                     ],
                     [
-                        -157.5083185,
-                        20.995803
+                        -75.5666566,
+                        44.6909879
                     ],
                     [
-                        -157.5080519,
-                        20.4960241
+                        -75.6290205,
+                        44.6909879
                     ],
                     [
-                        -155.966889,
-                        20.4967444
+                        -75.6290205,
+                        44.6284958
                     ],
                     [
-                        -155.9674267,
-                        21.5028287
+                        -75.7540484,
+                        44.6284958
                     ],
                     [
-                        -157.5044717,
-                        21.5021151
+                        -75.7540484,
+                        44.566385
                     ],
                     [
-                        -157.5047384,
-                        21.9984962
+                        -75.817312,
+                        44.566385
                     ],
                     [
-                        -159.0090946,
-                        21.9978002
+                        -75.817312,
+                        44.5028932
                     ],
                     [
-                        -159.0093692,
-                        22.5070181
-                    ]
-                ],
-                [
-                    [
-                        -168.006102,
-                        68.9941463
+                        -75.8799549,
+                        44.5028932
                     ],
                     [
-                        -168.0047628,
-                        68.0107853
+                        -75.8799549,
+                        44.3784946
                     ],
                     [
-                        -165.4842481,
-                        68.0112562
+                        -76.1300319,
+                        44.3784946
                     ],
                     [
-                        -165.4829337,
-                        67.0037303
+                        -76.1300319,
+                        44.3159227
                     ],
                     [
-                        -168.0034485,
-                        67.0032389
+                        -76.1926961,
+                        44.3159227
                     ],
                     [
-                        -168.002195,
-                        66.0017503
+                        -76.1926961,
+                        44.2534378
                     ],
                     [
-                        -169.0087448,
-                        66.001546
+                        -76.3182619,
+                        44.2534378
                     ],
                     [
-                        -169.0075381,
-                        64.9987675
+                        -76.3182619,
+                        44.1916726
                     ],
                     [
-                        -168.0009882,
-                        64.9989798
+                        -76.3792975,
+                        44.1916726
                     ],
                     [
-                        -167.9998282,
-                        63.9982374
+                        -76.3792975,
+                        44.0653733
                     ],
                     [
-                        -164.9871288,
-                        63.9988964
+                        -76.4427584,
+                        44.0653733
                     ],
                     [
-                        -164.9860062,
-                        62.9950845
+                        -76.4427584,
+                        43.9963825
                     ],
                     [
-                        -167.9987057,
-                        62.9944019
+                        -76.317027,
+                        43.9963825
                     ],
                     [
-                        -167.9946035,
-                        59.0153692
+                        -76.317027,
+                        43.9414581
                     ],
                     [
-                        -162.5027857,
-                        59.0167799
+                        -76.5076611,
+                        43.9414581
                     ],
                     [
-                        -162.5018149,
-                        58.0005815
+                        -76.5076611,
+                        43.8723335
                     ],
                     [
-                        -160.0159024,
-                        58.0012389
+                        -76.3829974,
+                        43.8723335
                     ],
                     [
-                        -160.0149725,
-                        57.000035
+                        -76.3829974,
+                        43.8091872
                     ],
                     [
-                        -160.5054788,
-                        56.9999017
+                        -76.2534102,
+                        43.8091872
                     ],
                     [
-                        -160.5045719,
-                        55.9968161
+                        -76.2534102,
+                        43.5665222
                     ],
                     [
-                        -164.012195,
-                        55.9958373
+                        -76.5064833,
+                        43.5665222
                     ],
                     [
-                        -164.0113186,
-                        55.00107
+                        -76.5064833,
+                        43.5033881
                     ],
                     [
-                        -165.994782,
-                        55.0005023
+                        -76.6331208,
+                        43.5033881
                     ],
                     [
-                        -165.9941266,
-                        54.2400584
+                        -76.6331208,
+                        43.4432252
                     ],
                     [
-                        -168.0002944,
-                        54.2394734
+                        -76.6951085,
+                        43.4432252
                     ],
                     [
-                        -168.0000986,
-                        54.0094921
+                        -76.6951085,
+                        43.3786858
                     ],
                     [
-                        -170.0156134,
-                        54.0089011
+                        -76.8177798,
+                        43.3786858
                     ],
                     [
-                        -170.0147683,
-                        53.0016446
+                        -76.8177798,
+                        43.318066
                     ],
                     [
-                        -171.9993636,
-                        53.0010487
+                        -77.682,
+                        43.318066
                     ],
                     [
-                        -171.9989488,
-                        52.4977745
+                        -77.682,
+                        43.3789376
                     ],
                     [
-                        -176.0083239,
-                        52.4965566
+                        -78.0565883,
+                        43.3789376
                     ],
                     [
-                        -176.0081186,
-                        52.2452555
+                        -78.0565883,
+                        43.4396918
                     ],
                     [
-                        -178.000097,
-                        52.2446469
+                        -78.4389748,
+                        43.4396918
                     ],
                     [
-                        -177.9992996,
-                        51.2554252
+                        -78.4389748,
+                        43.3794382
                     ],
                     [
-                        -176.0073212,
-                        51.2560472
+                        -78.8803396,
+                        43.3794382
                     ],
                     [
-                        -176.0075146,
-                        51.4980163
+                        -78.8803396,
+                        43.3149724
                     ],
                     [
-                        -171.9981395,
-                        51.4992617
+                        -79.1298858,
+                        43.3149724
                     ],
                     [
-                        -171.9985419,
-                        51.9985373
+                        -79.1298858,
+                        43.2429286
                     ],
                     [
-                        -167.9984317,
-                        51.9997661
+                        -79.0669615,
+                        43.2429286
                     ],
                     [
-                        -167.9994645,
-                        53.2560877
+                        -79.0669615,
+                        43.1299931
                     ],
                     [
-                        -165.9932968,
-                        53.2566866
+                        -79.1298858,
+                        43.1299931
                     ],
                     [
-                        -165.9939308,
-                        54.0100804
+                        -79.1298858,
+                        43.0577305
                     ],
                     [
-                        -159.0067205,
-                        54.0121291
+                        -79.071264,
+                        43.0577305
                     ],
                     [
-                        -159.0075717,
-                        55.002502
+                        -79.071264,
+                        42.9294906
                     ],
                     [
-                        -158.0190709,
-                        55.0027849
+                        -78.943264,
+                        42.9294906
                     ],
                     [
-                        -158.0199473,
-                        55.9975094
+                        -78.943264,
+                        42.7542165
                     ],
                     [
-                        -151.9963213,
-                        55.9991902
+                        -79.069439,
+                        42.7542165
                     ],
                     [
-                        -151.9981536,
-                        57.9986536
+                        -79.069439,
+                        42.6941622
                     ],
                     [
-                        -151.500341,
-                        57.9987853
+                        -79.133439,
+                        42.6941622
                     ],
                     [
-                        -151.5012894,
-                        58.9919816
+                        -79.133439,
+                        42.6296973
                     ],
                     [
-                        -138.5159989,
-                        58.9953194
+                        -79.1947499,
+                        42.6296973
                     ],
                     [
-                        -138.5150471,
-                        57.9986434
+                        -79.1947499,
+                        42.5663538
                     ],
                     [
-                        -136.6872422,
-                        57.9991267
+                        -79.3786827,
+                        42.5663538
                     ],
                     [
-                        -136.6863158,
-                        57.0016688
+                        -79.3786827,
+                        42.5033425
                     ],
                     [
-                        -135.9973698,
-                        57.001856
+                        -79.4442961,
+                        42.5033425
                     ],
                     [
-                        -135.9964667,
-                        56.0030544
+                        -79.4442961,
+                        42.4410614
                     ],
                     [
-                        -134.6717732,
-                        56.003424
+                        -79.5679936,
+                        42.4410614
                     ],
                     [
-                        -134.6708865,
-                        54.9969623
+                        -79.5679936,
+                        42.3775264
                     ],
                     [
-                        -133.9956734,
-                        54.9971556
+                        -79.6906154,
+                        42.3775264
                     ],
                     [
-                        -133.9948193,
-                        54.0031685
+                        -79.6906154,
+                        42.3171086
                     ],
                     [
-                        -130.0044418,
-                        54.0043387
+                        -79.8164642,
+                        42.3171086
                     ],
                     [
-                        -130.0070826,
-                        57.0000507
+                        -79.8164642,
+                        42.2534481
                     ],
                     [
-                        -131.975877,
-                        56.9995156
+                        -80.0052373,
+                        42.2534481
                     ],
                     [
-                        -131.9787378,
-                        59.9933094
+                        -80.0052373,
+                        42.1909188
                     ],
                     [
-                        -138.0071813,
-                        59.991805
+                        -80.1916829,
+                        42.1909188
                     ],
                     [
-                        -138.0082158,
-                        61.0125755
+                        -80.1916829,
+                        42.1272555
                     ],
                     [
-                        -140.9874011,
-                        61.0118551
+                        -80.3167992,
+                        42.1272555
                     ],
                     [
-                        -140.99984,
-                        71.0039309
+                        -80.3167992,
+                        42.0669857
                     ],
                     [
-                        -154.5023956,
-                        71.0017377
+                        -80.5063234,
+                        42.0669857
                     ],
                     [
-                        -154.5039632,
-                        71.9983391
+                        -80.5063234,
+                        42.0034331
                     ],
                     [
-                        -157.499048,
-                        71.9978773
+                        -80.6930471,
+                        42.0034331
                     ],
                     [
-                        -157.4974758,
-                        70.9982877
+                        -80.6930471,
+                        41.9415141
                     ],
                     [
-                        -163.0233611,
-                        70.9973899
+                        -80.9440403,
+                        41.9415141
                     ],
                     [
-                        -163.0218273,
-                        69.9707435
+                        -80.9440403,
+                        41.8781193
                     ],
                     [
-                        -164.9730896,
-                        69.97041
+                        -81.1942729,
+                        41.8781193
                     ],
                     [
-                        -164.9717003,
-                        68.994689
-                    ]
-                ],
-                [
-                    [
-                        -168.5133204,
-                        62.8689586
+                        -81.1942729,
+                        41.8166455
                     ],
                     [
-                        -168.5144423,
-                        63.8765677
+                        -81.3190089,
+                        41.8166455
                     ],
                     [
-                        -172.0202755,
-                        63.8757975
+                        -81.3190089,
+                        41.7545453
                     ],
                     [
-                        -172.0191536,
-                        62.8681608
-                    ]
-                ],
-                [
-                    [
-                        -170.9947111,
-                        59.9954089
+                        -81.4418435,
+                        41.7545453
                     ],
                     [
-                        -170.995726,
-                        60.9969787
+                        -81.4418435,
+                        41.690965
                     ],
                     [
-                        -174.0045311,
-                        60.9962508
+                        -81.5053523,
+                        41.690965
                     ],
                     [
-                        -174.0035162,
-                        59.9946581
-                    ]
-                ],
-                [
-                    [
-                        -156.0717261,
-                        20.2854602
+                        -81.5053523,
+                        41.6301643
                     ],
                     [
-                        -154.7940471,
-                        20.2860582
+                        -82.7470081,
+                        41.6301643
                     ],
                     [
-                        -154.7933145,
-                        18.9029464
+                        -82.7470081,
+                        41.7536942
                     ],
                     [
-                        -156.0709936,
-                        18.9023432
-                    ]
-                ]
-            ]
-        },
-        {
-            "name": "Vejmidte (Denmark)",
-            "type": "tms",
-            "template": "http://{switch:a,b,c}.tile.openstreetmap.dk/danmark/vejmidte/{zoom}/{x}/{y}.png",
-            "scaleExtent": [
-                0,
-                20
-            ],
-            "polygon": [
-                [
+                        -82.8839135,
+                        41.7536942
+                    ],
                     [
-                        8.3743941,
-                        54.9551655
+                        -82.8839135,
+                        41.5656075
                     ],
                     [
-                        8.3683809,
-                        55.4042149
+                        -82.9957195,
+                        41.5656075
                     ],
                     [
-                        8.2103997,
-                        55.4039795
+                        -82.9957195,
+                        41.6270375
                     ],
                     [
-                        8.2087314,
-                        55.4937345
+                        -83.1257796,
+                        41.6270375
                     ],
                     [
-                        8.0502655,
-                        55.4924731
+                        -83.1257796,
+                        41.6878411
                     ],
                     [
-                        8.0185123,
-                        56.7501399
+                        -83.2474733,
+                        41.6878411
                     ],
                     [
-                        8.1819161,
-                        56.7509948
+                        -83.2474733,
+                        41.7536942
                     ],
                     [
-                        8.1763274,
-                        57.0208898
+                        -83.3737305,
+                        41.7536942
                     ],
                     [
-                        8.3413329,
-                        57.0219872
+                        -83.3737305,
+                        41.809276
                     ],
                     [
-                        8.3392467,
-                        57.1119574
+                        -83.3106019,
+                        41.809276
                     ],
                     [
-                        8.5054433,
-                        57.1123212
+                        -83.3106019,
+                        41.8716064
                     ],
                     [
-                        8.5033923,
-                        57.2020499
+                        -83.2474733,
+                        41.8716064
                     ],
                     [
-                        9.3316304,
-                        57.2027636
+                        -83.2474733,
+                        41.9361393
                     ],
                     [
-                        9.3319079,
-                        57.2924835
+                        -83.1843447,
+                        41.9361393
                     ],
                     [
-                        9.4978864,
-                        57.2919578
+                        -83.1843447,
+                        41.9960851
                     ],
                     [
-                        9.4988593,
-                        57.3820608
+                        -83.1207681,
+                        41.9960851
                     ],
                     [
-                        9.6649749,
-                        57.3811615
+                        -83.1207681,
+                        42.2464812
                     ],
                     [
-                        9.6687295,
-                        57.5605591
+                        -83.0589194,
+                        42.2464812
                     ],
                     [
-                        9.8351961,
-                        57.5596265
+                        -83.0589194,
+                        42.3089555
                     ],
                     [
-                        9.8374896,
-                        57.6493322
+                        -82.8685328,
+                        42.3089555
                     ],
                     [
-                        10.1725726,
-                        57.6462818
+                        -82.8685328,
+                        42.3717652
                     ],
                     [
-                        10.1754245,
-                        57.7367768
+                        -82.8072219,
+                        42.3717652
                     ],
                     [
-                        10.5118282,
-                        57.7330269
+                        -82.8072219,
+                        42.558553
                     ],
                     [
-                        10.5152095,
-                        57.8228945
+                        -82.7553745,
+                        42.558553
                     ],
                     [
-                        10.6834853,
-                        57.8207722
+                        -82.7553745,
+                        42.4954945
                     ],
                     [
-                        10.6751613,
-                        57.6412021
+                        -82.5599041,
+                        42.4954945
                     ],
                     [
-                        10.5077045,
-                        57.6433097
+                        -82.5599041,
+                        42.558553
                     ],
                     [
-                        10.5039992,
-                        57.5535088
+                        -82.4967755,
+                        42.558553
                     ],
                     [
-                        10.671038,
-                        57.5514113
+                        -82.4967755,
+                        42.6833607
                     ],
                     [
-                        10.6507805,
-                        57.1024538
+                        -82.4328863,
+                        42.6833607
                     ],
                     [
-                        10.4857673,
-                        57.1045138
+                        -82.4328863,
+                        42.9342196
                     ],
                     [
-                        10.4786236,
-                        56.9249051
+                        -82.3700552,
+                        42.9342196
                     ],
                     [
-                        10.3143981,
-                        56.9267573
+                        -82.3700552,
+                        43.0648071
                     ],
                     [
-                        10.3112341,
-                        56.8369269
+                        -82.4328863,
+                        43.0648071
                     ],
                     [
-                        10.4750295,
-                        56.83509
+                        -82.4328863,
+                        43.1917566
                     ],
                     [
-                        10.4649016,
-                        56.5656681
+                        -82.4947464,
+                        43.1917566
                     ],
                     [
-                        10.9524239,
-                        56.5589761
+                        -82.4947464,
+                        43.5034627
                     ],
                     [
-                        10.9479249,
-                        56.4692243
+                        -82.557133,
+                        43.5034627
                     ],
                     [
-                        11.1099335,
-                        56.4664675
+                        -82.557133,
+                        43.8160901
                     ],
                     [
-                        11.1052639,
-                        56.376833
+                        -82.6197884,
+                        43.8160901
                     ],
                     [
-                        10.9429901,
-                        56.3795284
+                        -82.6197884,
+                        43.9422098
                     ],
                     [
-                        10.9341235,
-                        56.1994768
+                        -82.6839499,
+                        43.9422098
                     ],
                     [
-                        10.7719685,
-                        56.2020244
+                        -82.6839499,
+                        44.0022641
                     ],
                     [
-                        10.7694751,
-                        56.1120103
+                        -82.7465346,
+                        44.0022641
                     ],
                     [
-                        10.6079695,
-                        56.1150259
+                        -82.7465346,
+                        44.0670545
                     ],
                     [
-                        10.4466742,
-                        56.116717
+                        -82.8708696,
+                        44.0670545
                     ],
                     [
-                        10.2865948,
-                        56.118675
+                        -82.8708696,
+                        44.1291935
                     ],
                     [
-                        10.2831527,
-                        56.0281851
+                        -83.008517,
+                        44.1291935
                     ],
                     [
-                        10.4439274,
-                        56.0270388
+                        -83.008517,
+                        44.0664786
                     ],
                     [
-                        10.4417713,
-                        55.7579243
+                        -83.1336086,
+                        44.0664786
                     ],
                     [
-                        10.4334961,
-                        55.6693533
+                        -83.1336086,
+                        44.0053949
                     ],
                     [
-                        10.743814,
-                        55.6646861
+                        -83.2414522,
+                        44.0053949
                     ],
                     [
-                        10.743814,
-                        55.5712253
+                        -83.2414522,
+                        44.9962034
                     ],
                     [
-                        10.8969041,
-                        55.5712253
+                        -83.1806112,
+                        44.9962034
                     ],
                     [
-                        10.9051793,
-                        55.3953852
+                        -83.1806112,
+                        45.067302
                     ],
                     [
-                        11.0613726,
-                        55.3812841
+                        -83.2455172,
+                        45.067302
                     ],
                     [
-                        11.0593038,
-                        55.1124061
+                        -83.2455172,
+                        45.1287382
                     ],
                     [
-                        11.0458567,
-                        55.0318621
+                        -83.3065878,
+                        45.1287382
                     ],
                     [
-                        11.2030844,
-                        55.0247474
+                        -83.3065878,
+                        45.2551509
                     ],
                     [
-                        11.2030844,
-                        55.117139
+                        -83.3706087,
+                        45.2551509
                     ],
                     [
-                        11.0593038,
-                        55.1124061
+                        -83.3706087,
+                        45.3165923
                     ],
                     [
-                        11.0613726,
-                        55.3812841
+                        -83.4325644,
+                        45.3165923
                     ],
                     [
-                        11.0789572,
-                        55.5712253
+                        -83.4325644,
+                        45.3792105
                     ],
                     [
-                        10.8969041,
-                        55.5712253
+                        -83.6178415,
+                        45.3792105
                     ],
                     [
-                        10.9258671,
-                        55.6670198
+                        -83.6178415,
+                        45.4419665
                     ],
                     [
-                        10.743814,
-                        55.6646861
+                        -83.8084291,
+                        45.4419665
                     ],
                     [
-                        10.7562267,
-                        55.7579243
+                        -83.8084291,
+                        45.5036189
                     ],
                     [
-                        10.4417713,
-                        55.7579243
+                        -84.0550718,
+                        45.5036189
                     ],
                     [
-                        10.4439274,
-                        56.0270388
+                        -84.0550718,
+                        45.5647907
                     ],
                     [
-                        10.4466742,
-                        56.116717
+                        -84.1235181,
+                        45.5647907
                     ],
                     [
-                        10.6079695,
-                        56.1150259
+                        -84.1235181,
+                        45.6287845
                     ],
                     [
-                        10.6052053,
-                        56.0247462
+                        -84.1807534,
+                        45.6287845
                     ],
                     [
-                        10.9258671,
-                        56.0201215
+                        -84.1807534,
+                        45.6914688
                     ],
                     [
-                        10.9197132,
-                        55.9309388
+                        -84.3111554,
+                        45.6914688
                     ],
                     [
-                        11.0802782,
-                        55.92792
+                        -84.3111554,
+                        45.9337076
                     ],
                     [
-                        11.0858066,
-                        56.0178284
+                        -83.8209974,
+                        45.9337076
                     ],
                     [
-                        11.7265047,
-                        56.005058
+                        -83.8209974,
+                        45.8725113
                     ],
                     [
-                        11.7319981,
-                        56.0952142
+                        -83.4968086,
+                        45.8725113
                     ],
                     [
-                        12.0540333,
-                        56.0871256
+                        -83.4968086,
+                        45.9337076
                     ],
                     [
-                        12.0608477,
-                        56.1762576
+                        -83.4338066,
+                        45.9337076
                     ],
                     [
-                        12.7023469,
-                        56.1594405
+                        -83.4338066,
+                        46.0016863
                     ],
                     [
-                        12.6611131,
-                        55.7114318
+                        -83.4962697,
+                        46.0016863
                     ],
                     [
-                        12.9792318,
-                        55.7014026
+                        -83.4962697,
+                        46.0668178
                     ],
                     [
-                        12.9612912,
-                        55.5217294
+                        -83.5599956,
+                        46.0668178
                     ],
                     [
-                        12.3268659,
-                        55.5412096
+                        -83.5599956,
+                        46.1261576
                     ],
                     [
-                        12.3206071,
-                        55.4513655
+                        -83.9954558,
+                        46.1261576
                     ],
                     [
-                        12.4778226,
-                        55.447067
+                        -83.9954558,
+                        46.1931747
                     ],
                     [
-                        12.4702432,
-                        55.3570479
+                        -84.0591816,
+                        46.1931747
                     ],
                     [
-                        12.6269738,
-                        55.3523837
+                        -84.0591816,
+                        46.3814972
                     ],
                     [
-                        12.6200898,
-                        55.2632576
+                        -84.1152614,
+                        46.3814972
                     ],
                     [
-                        12.4627339,
-                        55.26722
+                        -84.1152614,
+                        46.4953584
                     ],
                     [
-                        12.4552949,
-                        55.1778223
+                        -84.0591816,
+                        46.4953584
                     ],
                     [
-                        12.2987046,
-                        55.1822303
+                        -84.0591816,
+                        46.5682653
                     ],
                     [
-                        12.2897344,
-                        55.0923641
+                        -84.2579545,
+                        46.5682653
                     ],
                     [
-                        12.6048608,
-                        55.0832904
+                        -84.2579545,
+                        46.5051232
                     ],
                     [
-                        12.5872011,
-                        54.9036285
+                        -84.3071879,
+                        46.5051232
                     ],
                     [
-                        12.2766618,
-                        54.9119031
+                        -84.3071879,
+                        46.5682653
                     ],
                     [
-                        12.2610181,
-                        54.7331602
+                        -84.4415364,
+                        46.5682653
                     ],
                     [
-                        12.1070691,
-                        54.7378161
+                        -84.4415364,
+                        46.504525
                     ],
                     [
-                        12.0858621,
-                        54.4681655
+                        -84.9965729,
+                        46.504525
                     ],
                     [
-                        11.7794953,
-                        54.4753579
+                        -84.9965729,
+                        46.6842882
                     ],
                     [
-                        11.7837381,
-                        54.5654783
+                        -84.9298158,
+                        46.6842882
                     ],
                     [
-                        11.1658525,
-                        54.5782155
+                        -84.9298158,
+                        46.818077
                     ],
                     [
-                        11.1706443,
-                        54.6686508
+                        -85.3165894,
+                        46.818077
                     ],
                     [
-                        10.8617173,
-                        54.6733956
+                        -85.3165894,
+                        46.7535825
                     ],
                     [
-                        10.8651245,
-                        54.7634667
+                        -87.5562645,
+                        46.7535825
                     ],
                     [
-                        10.7713646,
-                        54.7643888
+                        -87.5562645,
+                        47.4407371
                     ],
                     [
-                        10.7707276,
-                        54.7372807
+                        -87.6825361,
+                        47.4407371
                     ],
                     [
-                        10.7551428,
-                        54.7375776
+                        -87.6825361,
+                        47.5035554
                     ],
                     [
-                        10.7544039,
-                        54.7195666
+                        -88.2560738,
+                        47.5035554
                     ],
                     [
-                        10.7389074,
-                        54.7197588
+                        -88.2560738,
+                        47.4433716
                     ],
                     [
-                        10.7384368,
-                        54.7108482
+                        -88.4417419,
+                        47.4433716
                     ],
                     [
-                        10.7074486,
-                        54.7113045
+                        -88.4417419,
+                        47.3789949
                     ],
                     [
-                        10.7041094,
-                        54.6756741
+                        -88.50683,
+                        47.3789949
                     ],
                     [
-                        10.5510973,
-                        54.6781698
+                        -88.50683,
+                        47.3153881
                     ],
                     [
-                        10.5547184,
-                        54.7670245
+                        -88.6312821,
+                        47.3153881
                     ],
                     [
-                        10.2423994,
-                        54.7705935
+                        -88.6312821,
+                        47.2539782
                     ],
                     [
-                        10.2459845,
-                        54.8604673
+                        -88.7569636,
+                        47.2539782
                     ],
                     [
-                        10.0902268,
-                        54.8622134
+                        -88.7569636,
+                        47.1934682
                     ],
                     [
-                        10.0873731,
-                        54.7723851
+                        -88.8838253,
+                        47.1934682
                     ],
                     [
-                        9.1555798,
-                        54.7769557
+                        -88.8838253,
+                        47.1284735
                     ],
                     [
-                        9.1562752,
-                        54.8675369
+                        -88.9434208,
+                        47.1284735
                     ],
                     [
-                        8.5321973,
-                        54.8663765
+                        -88.9434208,
+                        47.0662127
                     ],
                     [
-                        8.531432,
-                        54.95516
-                    ]
-                ],
-                [
+                        -89.0708726,
+                        47.0662127
+                    ],
                     [
-                        11.4577738,
-                        56.819554
+                        -89.0708726,
+                        47.0026826
                     ],
                     [
-                        11.7849181,
-                        56.8127385
+                        -89.2565553,
+                        47.0026826
                     ],
                     [
-                        11.7716715,
-                        56.6332796
+                        -89.2565553,
+                        46.9410806
                     ],
                     [
-                        11.4459621,
-                        56.6401087
-                    ]
-                ],
-                [
+                        -90.3677669,
+                        46.9410806
+                    ],
                     [
-                        11.3274736,
-                        57.3612962
+                        -90.3677669,
+                        47.6844827
                     ],
                     [
-                        11.3161808,
-                        57.1818004
+                        -90.3069978,
+                        47.6844827
                     ],
                     [
-                        11.1508692,
-                        57.1847276
+                        -90.3069978,
+                        47.7460174
                     ],
                     [
-                        11.1456628,
-                        57.094962
+                        -89.994859,
+                        47.7460174
                     ],
                     [
-                        10.8157703,
-                        57.1001693
+                        -89.994859,
+                        47.8082719
                     ],
                     [
-                        10.8290599,
-                        57.3695272
-                    ]
-                ],
-                [
+                        -89.8048615,
+                        47.8082719
+                    ],
                     [
-                        11.5843266,
-                        56.2777928
+                        -89.8048615,
+                        47.8700562
                     ],
                     [
-                        11.5782882,
-                        56.1880397
+                        -89.6797699,
+                        47.8700562
                     ],
                     [
-                        11.7392309,
-                        56.1845765
+                        -89.6797699,
+                        47.9339637
                     ],
                     [
-                        11.7456428,
-                        56.2743186
-                    ]
-                ],
-                [
+                        -89.4933757,
+                        47.9339637
+                    ],
                     [
-                        14.6825922,
-                        55.3639405
+                        -89.4933757,
+                        47.9957956
                     ],
                     [
-                        14.8395247,
-                        55.3565231
+                        -89.4284697,
+                        47.9957956
                     ],
                     [
-                        14.8263755,
-                        55.2671261
+                        -89.4284697,
+                        48.0656377
                     ],
                     [
-                        15.1393406,
-                        55.2517359
+                        -89.9932739,
+                        48.0656377
                     ],
                     [
-                        15.1532015,
-                        55.3410836
+                        -89.9932739,
+                        48.1282966
                     ],
                     [
-                        15.309925,
-                        55.3330556
+                        -90.7455933,
+                        48.1282966
                     ],
                     [
-                        15.295719,
-                        55.2437356
+                        -90.7455933,
+                        48.1893056
                     ],
                     [
-                        15.1393406,
-                        55.2517359
+                        -90.8087291,
+                        48.1893056
                     ],
                     [
-                        15.1255631,
-                        55.1623802
+                        -90.8087291,
+                        48.2522065
                     ],
                     [
-                        15.2815819,
-                        55.1544167
+                        -91.067763,
+                        48.2522065
                     ],
                     [
-                        15.2535578,
-                        54.9757646
+                        -91.067763,
+                        48.1916658
                     ],
                     [
-                        14.6317464,
-                        55.0062496
-                    ]
-                ]
-            ],
-            "terms_url": "http://wiki.openstreetmap.org/wiki/Vejmidte",
-            "terms_text": "Danish municipalities"
-        },
-        {
-            "name": "Vienna: Beschriftungen (annotations)",
-            "type": "tms",
-            "template": "http://www.wien.gv.at/wmts/beschriftung/normal/google3857/{zoom}/{y}/{x}.png",
-            "scaleExtent": [
-                0,
-                19
-            ],
-            "polygon": [
-                [
+                        -91.1946247,
+                        48.1916658
+                    ],
                     [
-                        16.17,
-                        48.1
+                        -91.1946247,
+                        48.1279027
                     ],
                     [
-                        16.17,
-                        48.33
+                        -91.6814196,
+                        48.1279027
                     ],
                     [
-                        16.58,
-                        48.33
+                        -91.6814196,
+                        48.2525994
                     ],
                     [
-                        16.58,
-                        48.1
+                        -91.9321927,
+                        48.2525994
                     ],
                     [
-                        16.17,
-                        48.1
-                    ]
-                ]
-            ],
-            "terms_url": "http://data.wien.gv.at/",
-            "terms_text": "Stadt Wien"
-        },
-        {
-            "name": "Vienna: Mehrzweckkarte (general purpose)",
-            "type": "tms",
-            "template": "http://www.wien.gv.at/wmts/fmzk/pastell/google3857/{zoom}/{y}/{x}.jpeg",
-            "scaleExtent": [
-                0,
-                19
-            ],
-            "polygon": [
-                [
+                        -91.9321927,
+                        48.3142454
+                    ],
                     [
-                        16.17,
-                        48.1
+                        -91.9929683,
+                        48.3142454
                     ],
                     [
-                        16.17,
-                        48.33
+                        -91.9929683,
+                        48.3780845
                     ],
                     [
-                        16.58,
-                        48.33
+                        -92.3189383,
+                        48.3780845
                     ],
                     [
-                        16.58,
-                        48.1
+                        -92.3189383,
+                        48.2529081
                     ],
                     [
-                        16.17,
-                        48.1
-                    ]
-                ]
-            ],
-            "terms_url": "http://data.wien.gv.at/",
-            "terms_text": "Stadt Wien"
-        },
-        {
-            "name": "Vienna: Orthofoto (aerial image)",
-            "type": "tms",
-            "template": "http://www.wien.gv.at/wmts/lb/farbe/google3857/{zoom}/{y}/{x}.jpeg",
-            "scaleExtent": [
-                0,
-                19
-            ],
-            "polygon": [
-                [
+                        -92.3732233,
+                        48.2529081
+                    ],
                     [
-                        16.17,
-                        48.1
+                        -92.3732233,
+                        48.3153385
                     ],
                     [
-                        16.17,
-                        48.33
+                        -92.4322288,
+                        48.3153385
                     ],
                     [
-                        16.58,
-                        48.33
+                        -92.4322288,
+                        48.4411448
                     ],
                     [
-                        16.58,
-                        48.1
+                        -92.4977248,
+                        48.4411448
                     ],
                     [
-                        16.17,
-                        48.1
-                    ]
-                ]
-            ],
-            "terms_url": "http://data.wien.gv.at/",
-            "terms_text": "Stadt Wien"
-        },
-        {
-            "name": "basemap.at",
-            "type": "tms",
-            "description": "Basemap of Austria, based on goverment data.",
-            "template": "http://maps.wien.gv.at/basemap/geolandbasemap/normal/google3857/{zoom}/{y}/{x}.jpeg",
-            "polygon": [
-                [
-                    [
-                        16.5073284,
-                        46.9929304
+                        -92.4977248,
+                        48.501781
                     ],
                     [
-                        16.283417,
-                        46.9929304
+                        -92.5679413,
+                        48.501781
                     ],
                     [
-                        16.135839,
-                        46.8713046
+                        -92.5679413,
+                        48.439579
                     ],
                     [
-                        15.9831722,
-                        46.8190947
+                        -92.6210462,
+                        48.439579
                     ],
                     [
-                        16.0493278,
-                        46.655175
+                        -92.6210462,
+                        48.5650783
                     ],
                     [
-                        15.8610387,
-                        46.7180116
+                        -92.8086835,
+                        48.5650783
                     ],
                     [
-                        15.7592608,
-                        46.6900933
+                        -92.8086835,
+                        48.6286865
                     ],
                     [
-                        15.5607938,
-                        46.6796202
+                        -92.8086835,
+                        48.6267365
                     ],
                     [
-                        15.5760605,
-                        46.6342132
+                        -92.933185,
+                        48.6267365
                     ],
                     [
-                        15.4793715,
-                        46.6027553
+                        -92.933185,
+                        48.6922145
                     ],
                     [
-                        15.4335715,
-                        46.6516819
+                        -93.0051716,
+                        48.6922145
                     ],
                     [
-                        15.2249267,
-                        46.6342132
+                        -93.0051716,
+                        48.6282965
                     ],
                     [
-                        15.0468154,
-                        46.6481886
+                        -93.1225924,
+                        48.6282965
                     ],
                     [
-                        14.9908376,
-                        46.5887681
+                        -93.1225924,
+                        48.6922145
                     ],
                     [
-                        14.9603042,
-                        46.6237293
+                        -93.3190806,
+                        48.6922145
                     ],
                     [
-                        14.8534374,
-                        46.6027553
+                        -93.3190806,
+                        48.6267365
                     ],
                     [
-                        14.8330818,
-                        46.5012666
+                        -93.5049477,
+                        48.6267365
                     ],
                     [
-                        14.7516595,
-                        46.4977636
+                        -93.5049477,
+                        48.5635164
                     ],
                     [
-                        14.6804149,
-                        46.4381781
+                        -93.7474601,
+                        48.5635164
                     ],
                     [
-                        14.6142593,
-                        46.4381781
+                        -93.7474601,
+                        48.6267365
                     ],
                     [
-                        14.578637,
-                        46.3785275
+                        -93.8135461,
+                        48.6267365
                     ],
                     [
-                        14.4412369,
-                        46.4311638
+                        -93.8135461,
+                        48.6898775
                     ],
                     [
-                        14.1613476,
-                        46.4276563
+                        -94.2453121,
+                        48.6898775
                     ],
                     [
-                        14.1257253,
-                        46.4767409
+                        -94.2453121,
+                        48.7554327
                     ],
                     [
-                        14.0188585,
-                        46.4767409
+                        -94.6183171,
+                        48.7554327
                     ],
                     [
-                        13.9119917,
-                        46.5257813
+                        -94.6183171,
+                        48.941036
                     ],
                     [
-                        13.8254805,
-                        46.5047694
+                        -94.6809018,
+                        48.941036
                     ],
                     [
-                        13.4438134,
-                        46.560783
+                        -94.6809018,
+                        49.0029737
                     ],
                     [
-                        13.3064132,
-                        46.5502848
+                        -94.7441532,
+                        49.0029737
                     ],
                     [
-                        13.1283019,
-                        46.5887681
+                        -94.7441532,
+                        49.2536079
                     ],
                     [
-                        12.8433237,
-                        46.6132433
+                        -94.8084069,
+                        49.2536079
                     ],
                     [
-                        12.7262791,
-                        46.6412014
+                        -94.8084069,
+                        49.3784134
                     ],
                     [
-                        12.5125455,
-                        46.6656529
+                        -95.1192391,
+                        49.3784134
                     ],
                     [
-                        12.3598787,
-                        46.7040543
+                        -95.1192391,
+                        49.4425264
                     ],
                     [
-                        12.3649676,
-                        46.7703197
+                        -95.1934341,
+                        49.4425264
                     ],
                     [
-                        12.2886341,
-                        46.7772902
+                        -95.1934341,
+                        49.0035292
                     ],
                     [
-                        12.2733674,
-                        46.8852187
+                        -96.87069,
+                        49.0035292
                     ],
                     [
-                        12.2072118,
-                        46.8747835
+                        -96.87069,
+                        49.0656063
                     ],
                     [
-                        12.1308784,
-                        46.9026062
+                        -99.0049312,
+                        49.0656063
                     ],
                     [
-                        12.1156117,
-                        46.9998721
+                        -99.0049312,
+                        49.0050714
                     ],
                     [
-                        12.2530119,
-                        47.0657733
+                        -109.3699257,
+                        49.0050714
                     ],
                     [
-                        12.2123007,
-                        47.0934969
+                        -109.3699257,
+                        49.0668231
                     ],
                     [
-                        11.9833004,
-                        47.0449712
+                        -109.5058746,
+                        49.0668231
                     ],
                     [
-                        11.7339445,
-                        46.9616816
+                        -109.5058746,
+                        49.0050714
                     ],
                     [
-                        11.6321666,
-                        47.010283
+                        -114.1830014,
+                        49.0050714
                     ],
                     [
-                        11.5405665,
-                        46.9755722
+                        -114.1830014,
+                        49.0687317
                     ],
                     [
-                        11.4998553,
-                        47.0068129
+                        -114.7578709,
+                        49.0687317
                     ],
                     [
-                        11.418433,
-                        46.9651546
+                        -114.7578709,
+                        49.0050714
                     ],
                     [
-                        11.2555884,
-                        46.9755722
+                        -115.433731,
+                        49.0050714
                     ],
                     [
-                        11.1130993,
-                        46.913036
+                        -115.433731,
+                        49.0671412
                     ],
                     [
-                        11.0418548,
-                        46.7633482
+                        -116.5062706,
+                        49.0671412
                     ],
                     [
-                        10.8891879,
-                        46.7598621
+                        -116.5062706,
+                        49.0050714
                     ],
                     [
-                        10.7416099,
-                        46.7842599
+                        -117.3089504,
+                        49.0050714
                     ],
                     [
-                        10.7059877,
-                        46.8643462
+                        -117.3089504,
+                        49.0659803
                     ],
                     [
-                        10.5787653,
-                        46.8399847
+                        -119.882945,
+                        49.0659803
                     ],
                     [
-                        10.4566318,
-                        46.8504267
+                        -119.882945,
+                        49.0050714
                     ],
                     [
-                        10.4769874,
-                        46.9269392
+                        -120.1208555,
+                        49.0050714
                     ],
                     [
-                        10.3853873,
-                        46.9894592
+                        -120.1208555,
+                        49.0678367
                     ],
                     [
-                        10.2327204,
-                        46.8643462
+                        -121.4451636,
+                        49.0678367
                     ],
                     [
-                        10.1207647,
-                        46.8330223
+                        -121.4451636,
+                        49.0050714
                     ],
                     [
-                        9.8663199,
-                        46.9408389
+                        -121.9311808,
+                        49.0050714
                     ],
                     [
-                        9.9019422,
-                        47.0033426
+                        -121.9311808,
+                        49.0656099
                     ],
                     [
-                        9.6831197,
-                        47.0588402
+                        -122.817484,
+                        49.0656099
                     ],
                     [
-                        9.6118752,
-                        47.0380354
+                        -122.817484,
+                        49.0029143
                     ],
                     [
-                        9.6322307,
-                        47.128131
+                        -122.8795155,
+                        49.0029143
                     ],
                     [
-                        9.5813418,
-                        47.1662025
+                        -122.8795155,
+                        48.9347018
                     ],
                     [
-                        9.5406306,
-                        47.2664422
+                        -122.8174629,
+                        48.9347018
                     ],
                     [
-                        9.6067863,
-                        47.3492559
+                        -122.8174629,
+                        48.8101998
                     ],
                     [
-                        9.6729419,
-                        47.369939
+                        -122.7538859,
+                        48.8101998
                     ],
                     [
-                        9.6424085,
-                        47.4457079
+                        -122.7538859,
+                        48.7533758
                     ],
                     [
-                        9.5660751,
-                        47.4801122
+                        -122.8712937,
+                        48.7533758
                     ],
                     [
-                        9.7136531,
-                        47.5282405
+                        -122.8712937,
+                        48.8153948
                     ],
                     [
-                        9.7848976,
-                        47.5969187
+                        -123.0055391,
+                        48.8153948
                     ],
                     [
-                        9.8357866,
-                        47.5454185
+                        -123.0055391,
+                        48.7529529
                     ],
                     [
-                        9.9477423,
-                        47.538548
+                        -123.1296926,
+                        48.7529529
                     ],
                     [
-                        10.0902313,
-                        47.4491493
+                        -123.1296926,
+                        48.6902201
                     ],
                     [
-                        10.1105869,
-                        47.3664924
+                        -123.1838197,
+                        48.6902201
                     ],
                     [
-                        10.2428982,
-                        47.3871688
-                    ],
+                        -123.1838197,
+                        48.7529029
+                    ]
+                ],
+                [
                     [
-                        10.1869203,
-                        47.2698953
+                        -122.9341743,
+                        37.7521547
                     ],
                     [
-                        10.3243205,
-                        47.2975125
+                        -122.9347457,
+                        37.6842013
                     ],
                     [
-                        10.4820763,
-                        47.4491493
+                        -123.0679013,
+                        37.6849023
                     ],
                     [
-                        10.4311873,
-                        47.4869904
+                        -123.0673747,
+                        37.7475251
                     ],
                     [
-                        10.4413651,
-                        47.5900549
+                        -123.1292603,
+                        37.7478506
                     ],
                     [
-                        10.4871652,
-                        47.5522881
+                        -123.1286894,
+                        37.815685
                     ],
                     [
-                        10.5482319,
-                        47.5351124
+                        -123.0590687,
+                        37.8153192
                     ],
                     [
-                        10.5991209,
-                        47.5660246
-                    ],
+                        -123.0595947,
+                        37.7528143
+                    ]
+                ],
+                [
                     [
-                        10.7568766,
-                        47.5316766
+                        -71.6299464,
+                        41.2540893
                     ],
                     [
-                        10.8891879,
-                        47.5454185
+                        -71.4966465,
+                        41.2541393
                     ],
                     [
-                        10.9400769,
-                        47.4869904
+                        -71.4965596,
+                        41.122965
                     ],
                     [
-                        10.9960547,
-                        47.3906141
-                    ],
+                        -71.6298594,
+                        41.1229149
+                    ]
+                ],
+                [
                     [
-                        11.2352328,
-                        47.4422662
+                        -70.3184265,
+                        41.3775196
                     ],
                     [
-                        11.2810328,
-                        47.3975039
+                        -70.3183384,
+                        41.2448243
                     ],
                     [
-                        11.4235219,
-                        47.5144941
+                        -70.1906612,
+                        41.2448722
                     ],
                     [
-                        11.5761888,
-                        47.5076195
+                        -70.1906239,
+                        41.1886019
                     ],
                     [
-                        11.6067221,
-                        47.5900549
+                        -69.9336025,
+                        41.1886984
                     ],
                     [
-                        11.8357224,
-                        47.5866227
+                        -69.933729,
+                        41.3791941
                     ],
                     [
-                        12.003656,
-                        47.6243647
+                        -69.9950664,
+                        41.3791712
                     ],
                     [
-                        12.2072118,
-                        47.6037815
+                        -69.995109,
+                        41.443159
                     ],
                     [
-                        12.1614117,
-                        47.6963421
+                        -70.0707828,
+                        41.4431307
                     ],
                     [
-                        12.2581008,
-                        47.7442718
+                        -70.0706972,
+                        41.3144915
                     ],
                     [
-                        12.2530119,
-                        47.6792136
+                        -70.2461667,
+                        41.3144258
                     ],
                     [
-                        12.4311232,
-                        47.7100408
-                    ],
+                        -70.2462087,
+                        41.3775467
+                    ]
+                ],
+                [
                     [
-                        12.4921899,
-                        47.631224
+                        -68.9403374,
+                        43.9404062
                     ],
                     [
-                        12.5685234,
-                        47.6277944
+                        -68.6856948,
+                        43.9404977
                     ],
                     [
-                        12.6295901,
-                        47.6894913
+                        -68.6856475,
+                        43.8721797
                     ],
                     [
-                        12.7720792,
-                        47.6689338
+                        -68.7465405,
+                        43.8721577
                     ],
                     [
-                        12.8331459,
-                        47.5419833
+                        -68.7464976,
+                        43.8102529
                     ],
                     [
-                        12.975635,
-                        47.4732332
+                        -68.8090782,
+                        43.8102304
                     ],
                     [
-                        13.0417906,
-                        47.4938677
+                        -68.8090343,
+                        43.746728
                     ],
                     [
-                        13.0367017,
-                        47.5557226
+                        -68.8773094,
+                        43.7467034
                     ],
                     [
-                        13.0977685,
-                        47.6415112
+                        -68.8773544,
+                        43.8117826
                     ],
                     [
-                        13.0316128,
-                        47.7100408
-                    ],
+                        -68.9402483,
+                        43.8117599
+                    ]
+                ],
+                [
                     [
-                        12.9043905,
-                        47.7203125
+                        -123.1291466,
+                        49.0645144
                     ],
                     [
-                        13.0061684,
-                        47.84683
+                        -122.9954224,
+                        49.0645144
                     ],
                     [
-                        12.9451016,
-                        47.9355501
+                        -122.9954224,
+                        48.9343243
                     ],
                     [
-                        12.8636793,
-                        47.9594103
-                    ],
+                        -123.1291466,
+                        48.9343243
+                    ]
+                ],
+                [
                     [
-                        12.8636793,
-                        48.0036929
+                        -82.9407144,
+                        24.7535913
                     ],
                     [
-                        12.7517236,
-                        48.0989418
+                        -82.8719398,
+                        24.7535913
                     ],
                     [
-                        12.8738571,
-                        48.2109733
+                        -82.8719398,
+                        24.6905653
                     ],
                     [
-                        12.9603683,
-                        48.2109733
+                        -82.7446233,
+                        24.6905653
                     ],
                     [
-                        13.0417906,
-                        48.2652035
+                        -82.7446233,
+                        24.6214593
                     ],
                     [
-                        13.1842797,
-                        48.2990682
+                        -82.8088038,
+                        24.6214593
                     ],
                     [
-                        13.2606131,
-                        48.2922971
+                        -82.8088038,
+                        24.5594908
                     ],
                     [
-                        13.3980133,
-                        48.3565867
+                        -82.9407144,
+                        24.5594908
+                    ]
+                ]
+            ]
+        },
+        {
+            "name": "USGS Topographic Maps",
+            "type": "tms",
+            "template": "http://{switch:a,b,c}.tile.openstreetmap.us/usgs_scanned_topos/{zoom}/{x}/{y}.png",
+            "polygon": [
+                [
+                    [
+                        -125.990173,
+                        48.9962416
                     ],
                     [
-                        13.4438134,
-                        48.417418
+                        -125.989419,
+                        47.9948396
                     ],
                     [
-                        13.4387245,
-                        48.5523383
+                        -123.9929739,
+                        47.9955062
                     ],
                     [
-                        13.509969,
-                        48.5860123
+                        -123.9922429,
+                        47.0059202
                     ],
                     [
-                        13.6117469,
-                        48.5725454
+                        -125.988688,
+                        47.0052409
                     ],
                     [
-                        13.7287915,
-                        48.5118999
+                        -125.9879604,
+                        46.0015618
                     ],
                     [
-                        13.7847694,
-                        48.5725454
+                        -123.9939396,
+                        46.0022529
                     ],
                     [
-                        13.8203916,
-                        48.6263915
+                        -123.9925238,
+                        43.9961708
                     ],
                     [
-                        13.7949471,
-                        48.7171267
+                        -124.9931832,
+                        43.9958116
                     ],
                     [
-                        13.850925,
-                        48.7741724
+                        -124.9918175,
+                        41.9942149
                     ],
                     [
-                        14.0595697,
-                        48.6633774
+                        -125.9851789,
+                        41.9938465
                     ],
                     [
-                        14.0137696,
-                        48.6331182
+                        -125.9838655,
+                        40.0076111
                     ],
                     [
-                        14.0748364,
-                        48.5927444
+                        -123.9833285,
+                        40.0083757
                     ],
                     [
-                        14.2173255,
-                        48.5961101
+                        -123.9814115,
+                        37.002615
                     ],
                     [
-                        14.3649034,
-                        48.5489696
+                        -122.21903,
+                        37.0033173
                     ],
                     [
-                        14.4666813,
-                        48.6499311
+                        -122.2184144,
+                        36.011671
                     ],
                     [
-                        14.5582815,
-                        48.5961101
+                        -122.020087,
+                        36.011751
                     ],
                     [
-                        14.5989926,
-                        48.6263915
+                        -122.0188591,
+                        33.9961766
                     ],
                     [
-                        14.7211261,
-                        48.5759124
+                        -119.9787757,
+                        33.9970206
                     ],
                     [
-                        14.7211261,
-                        48.6868997
+                        -119.9775867,
+                        31.9987658
                     ],
                     [
-                        14.822904,
-                        48.7271983
+                        -114.0122833,
+                        32.00129
                     ],
                     [
-                        14.8178151,
-                        48.777526
+                        -114.0116894,
+                        30.9862401
                     ],
                     [
-                        14.9647227,
-                        48.7851754
+                        -105.998294,
+                        30.9896679
                     ],
                     [
-                        14.9893637,
-                        49.0126611
+                        -105.9971419,
+                        28.9901065
                     ],
                     [
-                        15.1485933,
-                        48.9950306
+                        -102.0210506,
+                        28.9918418
                     ],
                     [
-                        15.1943934,
-                        48.9315502
+                        -102.0204916,
+                        28.00733
                     ],
                     [
-                        15.3063491,
-                        48.9850128
+                        -100.0062436,
+                        28.0082173
                     ],
                     [
-                        15.3928603,
-                        48.9850128
+                        -100.0051143,
+                        25.991909
                     ],
                     [
-                        15.4844604,
-                        48.9282069
+                        -98.0109067,
+                        25.9928035
                     ],
                     [
-                        15.749083,
-                        48.8545973
+                        -98.0103613,
+                        25.0063461
                     ],
                     [
-                        15.8406831,
-                        48.8880697
+                        -97.0161086,
+                        25.0067957
                     ],
                     [
-                        16.0086166,
-                        48.7808794
+                        -97.016654,
+                        25.9932494
                     ],
                     [
-                        16.2070835,
-                        48.7339115
+                        -95.9824825,
+                        25.9937132
                     ],
                     [
-                        16.3953727,
-                        48.7372678
+                        -95.9835999,
+                        27.9891175
                     ],
                     [
-                        16.4920617,
-                        48.8110498
+                        -94.0200898,
+                        27.9899826
                     ],
                     [
-                        16.6905286,
-                        48.7741724
+                        -94.0206586,
+                        28.9918129
                     ],
                     [
-                        16.7057953,
-                        48.7339115
+                        -88.0156706,
+                        28.9944338
                     ],
                     [
-                        16.8991733,
-                        48.713769
+                        -88.0162494,
+                        30.0038862
                     ],
                     [
-                        16.9755067,
-                        48.515271
+                        -86.0277506,
+                        30.0047454
                     ],
                     [
-                        16.8482844,
-                        48.4511817
+                        -86.0271719,
+                        28.9953016
                     ],
                     [
-                        16.8533733,
-                        48.3464411
+                        -84.0187909,
+                        28.9961781
                     ],
                     [
-                        16.9551512,
-                        48.2516513
+                        -84.017095,
+                        25.9817708
                     ],
                     [
-                        16.9907734,
-                        48.1498955
+                        -81.9971976,
+                        25.9826768
                     ],
                     [
-                        17.0925513,
-                        48.1397088
+                        -81.9966618,
+                        25.0134917
                     ],
                     [
-                        17.0823736,
-                        48.0241182
+                        -84.0165592,
+                        25.0125783
                     ],
                     [
-                        17.1739737,
-                        48.0207146
+                        -84.0160068,
+                        24.0052745
                     ],
                     [
-                        17.0823736,
-                        47.8741447
+                        -80.0199985,
+                        24.007096
                     ],
                     [
-                        16.9856845,
-                        47.8673174
+                        -80.0245309,
+                        32.0161282
                     ],
                     [
-                        17.0823736,
-                        47.8092489
+                        -78.0066484,
+                        32.0169819
                     ],
                     [
-                        17.0925513,
-                        47.7031919
+                        -78.0072238,
+                        32.9894278
                     ],
                     [
-                        16.7414176,
-                        47.6792136
+                        -77.8807233,
+                        32.9894807
                     ],
                     [
-                        16.7057953,
-                        47.7511153
+                        -77.8813253,
+                        33.9955918
                     ],
                     [
-                        16.5378617,
-                        47.7545368
+                        -76.0115411,
+                        33.9963653
                     ],
                     [
-                        16.5480395,
-                        47.7066164
+                        -76.0121459,
+                        34.9952552
                     ],
                     [
-                        16.4208172,
-                        47.6689338
+                        -74.0068449,
+                        34.9960749
                     ],
                     [
-                        16.573484,
-                        47.6175045
+                        -74.0099997,
+                        40.0084254
                     ],
                     [
-                        16.670173,
-                        47.631224
+                        -72.0013745,
+                        40.0091931
                     ],
                     [
-                        16.7108842,
-                        47.538548
+                        -72.002019,
+                        40.9912464
                     ],
                     [
-                        16.6599952,
-                        47.4491493
+                        -69.8797398,
+                        40.9920457
                     ],
                     [
-                        16.5429506,
-                        47.3940591
+                        -69.8804173,
+                        42.00893
                     ],
                     [
-                        16.4615283,
-                        47.3940591
+                        -69.9927682,
+                        42.0088883
                     ],
                     [
-                        16.4920617,
-                        47.276801
+                        -69.9934462,
+                        43.0105166
                     ],
                     [
-                        16.425906,
-                        47.1973317
+                        -67.9845366,
+                        43.0112496
                     ],
                     [
-                        16.4717061,
-                        47.1489007
+                        -67.985224,
+                        44.0103812
                     ],
                     [
-                        16.5480395,
-                        47.1489007
+                        -65.9892568,
+                        44.0110975
                     ],
                     [
-                        16.476795,
-                        47.0796369
+                        -65.9921237,
+                        47.9993584
                     ],
                     [
-                        16.527684,
-                        47.0588402
+                        -70.006442,
+                        47.9980181
+                    ],
+                    [
+                        -70.005708,
+                        47.0042007
+                    ],
+                    [
+                        -72.023686,
+                        47.003514
+                    ],
+                    [
+                        -72.0222508,
+                        45.0059846
+                    ],
+                    [
+                        -78.0146667,
+                        45.0038705
+                    ],
+                    [
+                        -78.0139662,
+                        44.0026998
+                    ],
+                    [
+                        -80.029686,
+                        44.0019763
+                    ],
+                    [
+                        -80.0290052,
+                        43.0122994
+                    ],
+                    [
+                        -81.995479,
+                        43.011582
+                    ],
+                    [
+                        -81.9982986,
+                        47.0042713
+                    ],
+                    [
+                        -87.505706,
+                        47.0023972
+                    ],
+                    [
+                        -87.5064535,
+                        48.0142702
+                    ],
+                    [
+                        -88.0260889,
+                        48.0140968
+                    ],
+                    [
+                        -88.026838,
+                        49.0086686
+                    ],
+                    [
+                        -93.9981078,
+                        49.0067142
+                    ],
+                    [
+                        -93.9988778,
+                        50.0086456
+                    ],
+                    [
+                        -96.0138899,
+                        50.0079995
+                    ],
+                    [
+                        -96.0131199,
+                        49.0060547
                     ]
-                ]
-            ],
-            "terms_text": "basemap.at",
-            "id": "basemap.at"
-        }
-    ],
-    "wikipedia": [
-        [
-            "English",
-            "English",
-            "en"
-        ],
-        [
-            "German",
-            "Deutsch",
-            "de"
-        ],
-        [
-            "Dutch",
-            "Nederlands",
-            "nl"
-        ],
-        [
-            "French",
-            "Français",
-            "fr"
-        ],
-        [
-            "Italian",
-            "Italiano",
-            "it"
-        ],
-        [
-            "Russian",
-            "Русский",
-            "ru"
-        ],
-        [
-            "Spanish",
-            "Español",
-            "es"
-        ],
-        [
-            "Polish",
-            "Polski",
-            "pl"
-        ],
-        [
-            "Swedish",
-            "Svenska",
-            "sv"
-        ],
-        [
-            "Japanese",
-            "日本語",
-            "ja"
-        ],
-        [
-            "Portuguese",
-            "Português",
-            "pt"
-        ],
-        [
-            "Chinese",
-            "中文",
-            "zh"
-        ],
-        [
-            "Vietnamese",
-            "Tiếng Việt",
-            "vi"
-        ],
-        [
-            "Ukrainian",
-            "Українська",
-            "uk"
-        ],
-        [
-            "Catalan",
-            "Català",
-            "ca"
-        ],
-        [
-            "Norwegian (Bokmål)",
-            "Norsk (Bokmål)",
-            "no"
-        ],
-        [
-            "Waray-Waray",
-            "Winaray",
-            "war"
-        ],
-        [
-            "Cebuano",
-            "Sinugboanong Binisaya",
-            "ceb"
-        ],
-        [
-            "Finnish",
-            "Suomi",
-            "fi"
-        ],
-        [
-            "Persian",
-            "فارسی",
-            "fa"
-        ],
-        [
-            "Czech",
-            "Čeština",
-            "cs"
-        ],
-        [
-            "Hungarian",
-            "Magyar",
-            "hu"
-        ],
-        [
-            "Korean",
-            "한국어",
-            "ko"
-        ],
-        [
-            "Romanian",
-            "Română",
-            "ro"
-        ],
-        [
-            "Arabic",
-            "العربية",
-            "ar"
-        ],
-        [
-            "Turkish",
-            "Türkçe",
-            "tr"
-        ],
-        [
-            "Indonesian",
-            "Bahasa Indonesia",
-            "id"
-        ],
-        [
-            "Kazakh",
+                ],
+                [
+                    [
+                        -160.5787616,
+                        22.5062947
+                    ],
+                    [
+                        -160.5782192,
+                        21.4984647
+                    ],
+                    [
+                        -159.0030121,
+                        21.499196
+                    ],
+                    [
+                        -159.0027422,
+                        20.9951068
+                    ],
+                    [
+                        -157.5083185,
+                        20.995803
+                    ],
+                    [
+                        -157.5080519,
+                        20.4960241
+                    ],
+                    [
+                        -155.966889,
+                        20.4967444
+                    ],
+                    [
+                        -155.9674267,
+                        21.5028287
+                    ],
+                    [
+                        -157.5044717,
+                        21.5021151
+                    ],
+                    [
+                        -157.5047384,
+                        21.9984962
+                    ],
+                    [
+                        -159.0090946,
+                        21.9978002
+                    ],
+                    [
+                        -159.0093692,
+                        22.5070181
+                    ]
+                ],
+                [
+                    [
+                        -168.006102,
+                        68.9941463
+                    ],
+                    [
+                        -168.0047628,
+                        68.0107853
+                    ],
+                    [
+                        -165.4842481,
+                        68.0112562
+                    ],
+                    [
+                        -165.4829337,
+                        67.0037303
+                    ],
+                    [
+                        -168.0034485,
+                        67.0032389
+                    ],
+                    [
+                        -168.002195,
+                        66.0017503
+                    ],
+                    [
+                        -169.0087448,
+                        66.001546
+                    ],
+                    [
+                        -169.0075381,
+                        64.9987675
+                    ],
+                    [
+                        -168.0009882,
+                        64.9989798
+                    ],
+                    [
+                        -167.9998282,
+                        63.9982374
+                    ],
+                    [
+                        -164.9871288,
+                        63.9988964
+                    ],
+                    [
+                        -164.9860062,
+                        62.9950845
+                    ],
+                    [
+                        -167.9987057,
+                        62.9944019
+                    ],
+                    [
+                        -167.9946035,
+                        59.0153692
+                    ],
+                    [
+                        -162.5027857,
+                        59.0167799
+                    ],
+                    [
+                        -162.5018149,
+                        58.0005815
+                    ],
+                    [
+                        -160.0159024,
+                        58.0012389
+                    ],
+                    [
+                        -160.0149725,
+                        57.000035
+                    ],
+                    [
+                        -160.5054788,
+                        56.9999017
+                    ],
+                    [
+                        -160.5045719,
+                        55.9968161
+                    ],
+                    [
+                        -164.012195,
+                        55.9958373
+                    ],
+                    [
+                        -164.0113186,
+                        55.00107
+                    ],
+                    [
+                        -165.994782,
+                        55.0005023
+                    ],
+                    [
+                        -165.9941266,
+                        54.2400584
+                    ],
+                    [
+                        -168.0002944,
+                        54.2394734
+                    ],
+                    [
+                        -168.0000986,
+                        54.0094921
+                    ],
+                    [
+                        -170.0156134,
+                        54.0089011
+                    ],
+                    [
+                        -170.0147683,
+                        53.0016446
+                    ],
+                    [
+                        -171.9993636,
+                        53.0010487
+                    ],
+                    [
+                        -171.9989488,
+                        52.4977745
+                    ],
+                    [
+                        -176.0083239,
+                        52.4965566
+                    ],
+                    [
+                        -176.0081186,
+                        52.2452555
+                    ],
+                    [
+                        -178.000097,
+                        52.2446469
+                    ],
+                    [
+                        -177.9992996,
+                        51.2554252
+                    ],
+                    [
+                        -176.0073212,
+                        51.2560472
+                    ],
+                    [
+                        -176.0075146,
+                        51.4980163
+                    ],
+                    [
+                        -171.9981395,
+                        51.4992617
+                    ],
+                    [
+                        -171.9985419,
+                        51.9985373
+                    ],
+                    [
+                        -167.9984317,
+                        51.9997661
+                    ],
+                    [
+                        -167.9994645,
+                        53.2560877
+                    ],
+                    [
+                        -165.9932968,
+                        53.2566866
+                    ],
+                    [
+                        -165.9939308,
+                        54.0100804
+                    ],
+                    [
+                        -159.0067205,
+                        54.0121291
+                    ],
+                    [
+                        -159.0075717,
+                        55.002502
+                    ],
+                    [
+                        -158.0190709,
+                        55.0027849
+                    ],
+                    [
+                        -158.0199473,
+                        55.9975094
+                    ],
+                    [
+                        -151.9963213,
+                        55.9991902
+                    ],
+                    [
+                        -151.9981536,
+                        57.9986536
+                    ],
+                    [
+                        -151.500341,
+                        57.9987853
+                    ],
+                    [
+                        -151.5012894,
+                        58.9919816
+                    ],
+                    [
+                        -138.5159989,
+                        58.9953194
+                    ],
+                    [
+                        -138.5150471,
+                        57.9986434
+                    ],
+                    [
+                        -136.6872422,
+                        57.9991267
+                    ],
+                    [
+                        -136.6863158,
+                        57.0016688
+                    ],
+                    [
+                        -135.9973698,
+                        57.001856
+                    ],
+                    [
+                        -135.9964667,
+                        56.0030544
+                    ],
+                    [
+                        -134.6717732,
+                        56.003424
+                    ],
+                    [
+                        -134.6708865,
+                        54.9969623
+                    ],
+                    [
+                        -133.9956734,
+                        54.9971556
+                    ],
+                    [
+                        -133.9948193,
+                        54.0031685
+                    ],
+                    [
+                        -130.0044418,
+                        54.0043387
+                    ],
+                    [
+                        -130.0070826,
+                        57.0000507
+                    ],
+                    [
+                        -131.975877,
+                        56.9995156
+                    ],
+                    [
+                        -131.9787378,
+                        59.9933094
+                    ],
+                    [
+                        -138.0071813,
+                        59.991805
+                    ],
+                    [
+                        -138.0082158,
+                        61.0125755
+                    ],
+                    [
+                        -140.9874011,
+                        61.0118551
+                    ],
+                    [
+                        -140.99984,
+                        71.0039309
+                    ],
+                    [
+                        -154.5023956,
+                        71.0017377
+                    ],
+                    [
+                        -154.5039632,
+                        71.9983391
+                    ],
+                    [
+                        -157.499048,
+                        71.9978773
+                    ],
+                    [
+                        -157.4974758,
+                        70.9982877
+                    ],
+                    [
+                        -163.0233611,
+                        70.9973899
+                    ],
+                    [
+                        -163.0218273,
+                        69.9707435
+                    ],
+                    [
+                        -164.9730896,
+                        69.97041
+                    ],
+                    [
+                        -164.9717003,
+                        68.994689
+                    ]
+                ],
+                [
+                    [
+                        -168.5133204,
+                        62.8689586
+                    ],
+                    [
+                        -168.5144423,
+                        63.8765677
+                    ],
+                    [
+                        -172.0202755,
+                        63.8757975
+                    ],
+                    [
+                        -172.0191536,
+                        62.8681608
+                    ]
+                ],
+                [
+                    [
+                        -170.9947111,
+                        59.9954089
+                    ],
+                    [
+                        -170.995726,
+                        60.9969787
+                    ],
+                    [
+                        -174.0045311,
+                        60.9962508
+                    ],
+                    [
+                        -174.0035162,
+                        59.9946581
+                    ]
+                ],
+                [
+                    [
+                        -156.0717261,
+                        20.2854602
+                    ],
+                    [
+                        -154.7940471,
+                        20.2860582
+                    ],
+                    [
+                        -154.7933145,
+                        18.9029464
+                    ],
+                    [
+                        -156.0709936,
+                        18.9023432
+                    ]
+                ]
+            ]
+        },
+        {
+            "name": "Vejmidte (Denmark)",
+            "type": "tms",
+            "template": "http://{switch:a,b,c}.tile.openstreetmap.dk/danmark/vejmidte/{zoom}/{x}/{y}.png",
+            "scaleExtent": [
+                0,
+                20
+            ],
+            "polygon": [
+                [
+                    [
+                        8.3743941,
+                        54.9551655
+                    ],
+                    [
+                        8.3683809,
+                        55.4042149
+                    ],
+                    [
+                        8.2103997,
+                        55.4039795
+                    ],
+                    [
+                        8.2087314,
+                        55.4937345
+                    ],
+                    [
+                        8.0502655,
+                        55.4924731
+                    ],
+                    [
+                        8.0185123,
+                        56.7501399
+                    ],
+                    [
+                        8.1819161,
+                        56.7509948
+                    ],
+                    [
+                        8.1763274,
+                        57.0208898
+                    ],
+                    [
+                        8.3413329,
+                        57.0219872
+                    ],
+                    [
+                        8.3392467,
+                        57.1119574
+                    ],
+                    [
+                        8.5054433,
+                        57.1123212
+                    ],
+                    [
+                        8.5033923,
+                        57.2020499
+                    ],
+                    [
+                        9.3316304,
+                        57.2027636
+                    ],
+                    [
+                        9.3319079,
+                        57.2924835
+                    ],
+                    [
+                        9.4978864,
+                        57.2919578
+                    ],
+                    [
+                        9.4988593,
+                        57.3820608
+                    ],
+                    [
+                        9.6649749,
+                        57.3811615
+                    ],
+                    [
+                        9.6687295,
+                        57.5605591
+                    ],
+                    [
+                        9.8351961,
+                        57.5596265
+                    ],
+                    [
+                        9.8374896,
+                        57.6493322
+                    ],
+                    [
+                        10.1725726,
+                        57.6462818
+                    ],
+                    [
+                        10.1754245,
+                        57.7367768
+                    ],
+                    [
+                        10.5118282,
+                        57.7330269
+                    ],
+                    [
+                        10.5152095,
+                        57.8228945
+                    ],
+                    [
+                        10.6834853,
+                        57.8207722
+                    ],
+                    [
+                        10.6751613,
+                        57.6412021
+                    ],
+                    [
+                        10.5077045,
+                        57.6433097
+                    ],
+                    [
+                        10.5039992,
+                        57.5535088
+                    ],
+                    [
+                        10.671038,
+                        57.5514113
+                    ],
+                    [
+                        10.6507805,
+                        57.1024538
+                    ],
+                    [
+                        10.4857673,
+                        57.1045138
+                    ],
+                    [
+                        10.4786236,
+                        56.9249051
+                    ],
+                    [
+                        10.3143981,
+                        56.9267573
+                    ],
+                    [
+                        10.3112341,
+                        56.8369269
+                    ],
+                    [
+                        10.4750295,
+                        56.83509
+                    ],
+                    [
+                        10.4649016,
+                        56.5656681
+                    ],
+                    [
+                        10.9524239,
+                        56.5589761
+                    ],
+                    [
+                        10.9479249,
+                        56.4692243
+                    ],
+                    [
+                        11.1099335,
+                        56.4664675
+                    ],
+                    [
+                        11.1052639,
+                        56.376833
+                    ],
+                    [
+                        10.9429901,
+                        56.3795284
+                    ],
+                    [
+                        10.9341235,
+                        56.1994768
+                    ],
+                    [
+                        10.7719685,
+                        56.2020244
+                    ],
+                    [
+                        10.7694751,
+                        56.1120103
+                    ],
+                    [
+                        10.6079695,
+                        56.1150259
+                    ],
+                    [
+                        10.4466742,
+                        56.116717
+                    ],
+                    [
+                        10.2865948,
+                        56.118675
+                    ],
+                    [
+                        10.2831527,
+                        56.0281851
+                    ],
+                    [
+                        10.4439274,
+                        56.0270388
+                    ],
+                    [
+                        10.4417713,
+                        55.7579243
+                    ],
+                    [
+                        10.4334961,
+                        55.6693533
+                    ],
+                    [
+                        10.743814,
+                        55.6646861
+                    ],
+                    [
+                        10.743814,
+                        55.5712253
+                    ],
+                    [
+                        10.8969041,
+                        55.5712253
+                    ],
+                    [
+                        10.9051793,
+                        55.3953852
+                    ],
+                    [
+                        11.0613726,
+                        55.3812841
+                    ],
+                    [
+                        11.0593038,
+                        55.1124061
+                    ],
+                    [
+                        11.0458567,
+                        55.0318621
+                    ],
+                    [
+                        11.2030844,
+                        55.0247474
+                    ],
+                    [
+                        11.2030844,
+                        55.117139
+                    ],
+                    [
+                        11.0593038,
+                        55.1124061
+                    ],
+                    [
+                        11.0613726,
+                        55.3812841
+                    ],
+                    [
+                        11.0789572,
+                        55.5712253
+                    ],
+                    [
+                        10.8969041,
+                        55.5712253
+                    ],
+                    [
+                        10.9258671,
+                        55.6670198
+                    ],
+                    [
+                        10.743814,
+                        55.6646861
+                    ],
+                    [
+                        10.7562267,
+                        55.7579243
+                    ],
+                    [
+                        10.4417713,
+                        55.7579243
+                    ],
+                    [
+                        10.4439274,
+                        56.0270388
+                    ],
+                    [
+                        10.4466742,
+                        56.116717
+                    ],
+                    [
+                        10.6079695,
+                        56.1150259
+                    ],
+                    [
+                        10.6052053,
+                        56.0247462
+                    ],
+                    [
+                        10.9258671,
+                        56.0201215
+                    ],
+                    [
+                        10.9197132,
+                        55.9309388
+                    ],
+                    [
+                        11.0802782,
+                        55.92792
+                    ],
+                    [
+                        11.0858066,
+                        56.0178284
+                    ],
+                    [
+                        11.7265047,
+                        56.005058
+                    ],
+                    [
+                        11.7319981,
+                        56.0952142
+                    ],
+                    [
+                        12.0540333,
+                        56.0871256
+                    ],
+                    [
+                        12.0608477,
+                        56.1762576
+                    ],
+                    [
+                        12.7023469,
+                        56.1594405
+                    ],
+                    [
+                        12.6611131,
+                        55.7114318
+                    ],
+                    [
+                        12.9792318,
+                        55.7014026
+                    ],
+                    [
+                        12.9612912,
+                        55.5217294
+                    ],
+                    [
+                        12.3268659,
+                        55.5412096
+                    ],
+                    [
+                        12.3206071,
+                        55.4513655
+                    ],
+                    [
+                        12.4778226,
+                        55.447067
+                    ],
+                    [
+                        12.4702432,
+                        55.3570479
+                    ],
+                    [
+                        12.6269738,
+                        55.3523837
+                    ],
+                    [
+                        12.6200898,
+                        55.2632576
+                    ],
+                    [
+                        12.4627339,
+                        55.26722
+                    ],
+                    [
+                        12.4552949,
+                        55.1778223
+                    ],
+                    [
+                        12.2987046,
+                        55.1822303
+                    ],
+                    [
+                        12.2897344,
+                        55.0923641
+                    ],
+                    [
+                        12.6048608,
+                        55.0832904
+                    ],
+                    [
+                        12.5872011,
+                        54.9036285
+                    ],
+                    [
+                        12.2766618,
+                        54.9119031
+                    ],
+                    [
+                        12.2610181,
+                        54.7331602
+                    ],
+                    [
+                        12.1070691,
+                        54.7378161
+                    ],
+                    [
+                        12.0858621,
+                        54.4681655
+                    ],
+                    [
+                        11.7794953,
+                        54.4753579
+                    ],
+                    [
+                        11.7837381,
+                        54.5654783
+                    ],
+                    [
+                        11.1658525,
+                        54.5782155
+                    ],
+                    [
+                        11.1706443,
+                        54.6686508
+                    ],
+                    [
+                        10.8617173,
+                        54.6733956
+                    ],
+                    [
+                        10.8651245,
+                        54.7634667
+                    ],
+                    [
+                        10.7713646,
+                        54.7643888
+                    ],
+                    [
+                        10.7707276,
+                        54.7372807
+                    ],
+                    [
+                        10.7551428,
+                        54.7375776
+                    ],
+                    [
+                        10.7544039,
+                        54.7195666
+                    ],
+                    [
+                        10.7389074,
+                        54.7197588
+                    ],
+                    [
+                        10.7384368,
+                        54.7108482
+                    ],
+                    [
+                        10.7074486,
+                        54.7113045
+                    ],
+                    [
+                        10.7041094,
+                        54.6756741
+                    ],
+                    [
+                        10.5510973,
+                        54.6781698
+                    ],
+                    [
+                        10.5547184,
+                        54.7670245
+                    ],
+                    [
+                        10.2423994,
+                        54.7705935
+                    ],
+                    [
+                        10.2459845,
+                        54.8604673
+                    ],
+                    [
+                        10.0902268,
+                        54.8622134
+                    ],
+                    [
+                        10.0873731,
+                        54.7723851
+                    ],
+                    [
+                        9.1555798,
+                        54.7769557
+                    ],
+                    [
+                        9.1562752,
+                        54.8675369
+                    ],
+                    [
+                        8.5321973,
+                        54.8663765
+                    ],
+                    [
+                        8.531432,
+                        54.95516
+                    ]
+                ],
+                [
+                    [
+                        11.4577738,
+                        56.819554
+                    ],
+                    [
+                        11.7849181,
+                        56.8127385
+                    ],
+                    [
+                        11.7716715,
+                        56.6332796
+                    ],
+                    [
+                        11.4459621,
+                        56.6401087
+                    ]
+                ],
+                [
+                    [
+                        11.3274736,
+                        57.3612962
+                    ],
+                    [
+                        11.3161808,
+                        57.1818004
+                    ],
+                    [
+                        11.1508692,
+                        57.1847276
+                    ],
+                    [
+                        11.1456628,
+                        57.094962
+                    ],
+                    [
+                        10.8157703,
+                        57.1001693
+                    ],
+                    [
+                        10.8290599,
+                        57.3695272
+                    ]
+                ],
+                [
+                    [
+                        11.5843266,
+                        56.2777928
+                    ],
+                    [
+                        11.5782882,
+                        56.1880397
+                    ],
+                    [
+                        11.7392309,
+                        56.1845765
+                    ],
+                    [
+                        11.7456428,
+                        56.2743186
+                    ]
+                ],
+                [
+                    [
+                        14.6825922,
+                        55.3639405
+                    ],
+                    [
+                        14.8395247,
+                        55.3565231
+                    ],
+                    [
+                        14.8263755,
+                        55.2671261
+                    ],
+                    [
+                        15.1393406,
+                        55.2517359
+                    ],
+                    [
+                        15.1532015,
+                        55.3410836
+                    ],
+                    [
+                        15.309925,
+                        55.3330556
+                    ],
+                    [
+                        15.295719,
+                        55.2437356
+                    ],
+                    [
+                        15.1393406,
+                        55.2517359
+                    ],
+                    [
+                        15.1255631,
+                        55.1623802
+                    ],
+                    [
+                        15.2815819,
+                        55.1544167
+                    ],
+                    [
+                        15.2535578,
+                        54.9757646
+                    ],
+                    [
+                        14.6317464,
+                        55.0062496
+                    ]
+                ]
+            ],
+            "terms_url": "http://wiki.openstreetmap.org/wiki/Vejmidte",
+            "terms_text": "Danish municipalities"
+        },
+        {
+            "name": "Vienna: Beschriftungen (annotations)",
+            "type": "tms",
+            "template": "http://www.wien.gv.at/wmts/beschriftung/normal/google3857/{zoom}/{y}/{x}.png",
+            "scaleExtent": [
+                0,
+                19
+            ],
+            "polygon": [
+                [
+                    [
+                        16.17,
+                        48.1
+                    ],
+                    [
+                        16.17,
+                        48.33
+                    ],
+                    [
+                        16.58,
+                        48.33
+                    ],
+                    [
+                        16.58,
+                        48.1
+                    ],
+                    [
+                        16.17,
+                        48.1
+                    ]
+                ]
+            ],
+            "terms_url": "http://data.wien.gv.at/",
+            "terms_text": "Stadt Wien"
+        },
+        {
+            "name": "Vienna: Mehrzweckkarte (general purpose)",
+            "type": "tms",
+            "template": "http://www.wien.gv.at/wmts/fmzk/pastell/google3857/{zoom}/{y}/{x}.jpeg",
+            "scaleExtent": [
+                0,
+                19
+            ],
+            "polygon": [
+                [
+                    [
+                        16.17,
+                        48.1
+                    ],
+                    [
+                        16.17,
+                        48.33
+                    ],
+                    [
+                        16.58,
+                        48.33
+                    ],
+                    [
+                        16.58,
+                        48.1
+                    ],
+                    [
+                        16.17,
+                        48.1
+                    ]
+                ]
+            ],
+            "terms_url": "http://data.wien.gv.at/",
+            "terms_text": "Stadt Wien"
+        },
+        {
+            "name": "Vienna: Orthofoto (aerial image)",
+            "type": "tms",
+            "template": "http://www.wien.gv.at/wmts/lb/farbe/google3857/{zoom}/{y}/{x}.jpeg",
+            "scaleExtent": [
+                0,
+                19
+            ],
+            "polygon": [
+                [
+                    [
+                        16.17,
+                        48.1
+                    ],
+                    [
+                        16.17,
+                        48.33
+                    ],
+                    [
+                        16.58,
+                        48.33
+                    ],
+                    [
+                        16.58,
+                        48.1
+                    ],
+                    [
+                        16.17,
+                        48.1
+                    ]
+                ]
+            ],
+            "terms_url": "http://data.wien.gv.at/",
+            "terms_text": "Stadt Wien"
+        },
+        {
+            "name": "basemap.at",
+            "type": "tms",
+            "description": "Basemap of Austria, based on goverment data.",
+            "template": "http://maps.wien.gv.at/basemap/geolandbasemap/normal/google3857/{zoom}/{y}/{x}.jpeg",
+            "polygon": [
+                [
+                    [
+                        16.5073284,
+                        46.9929304
+                    ],
+                    [
+                        16.283417,
+                        46.9929304
+                    ],
+                    [
+                        16.135839,
+                        46.8713046
+                    ],
+                    [
+                        15.9831722,
+                        46.8190947
+                    ],
+                    [
+                        16.0493278,
+                        46.655175
+                    ],
+                    [
+                        15.8610387,
+                        46.7180116
+                    ],
+                    [
+                        15.7592608,
+                        46.6900933
+                    ],
+                    [
+                        15.5607938,
+                        46.6796202
+                    ],
+                    [
+                        15.5760605,
+                        46.6342132
+                    ],
+                    [
+                        15.4793715,
+                        46.6027553
+                    ],
+                    [
+                        15.4335715,
+                        46.6516819
+                    ],
+                    [
+                        15.2249267,
+                        46.6342132
+                    ],
+                    [
+                        15.0468154,
+                        46.6481886
+                    ],
+                    [
+                        14.9908376,
+                        46.5887681
+                    ],
+                    [
+                        14.9603042,
+                        46.6237293
+                    ],
+                    [
+                        14.8534374,
+                        46.6027553
+                    ],
+                    [
+                        14.8330818,
+                        46.5012666
+                    ],
+                    [
+                        14.7516595,
+                        46.4977636
+                    ],
+                    [
+                        14.6804149,
+                        46.4381781
+                    ],
+                    [
+                        14.6142593,
+                        46.4381781
+                    ],
+                    [
+                        14.578637,
+                        46.3785275
+                    ],
+                    [
+                        14.4412369,
+                        46.4311638
+                    ],
+                    [
+                        14.1613476,
+                        46.4276563
+                    ],
+                    [
+                        14.1257253,
+                        46.4767409
+                    ],
+                    [
+                        14.0188585,
+                        46.4767409
+                    ],
+                    [
+                        13.9119917,
+                        46.5257813
+                    ],
+                    [
+                        13.8254805,
+                        46.5047694
+                    ],
+                    [
+                        13.4438134,
+                        46.560783
+                    ],
+                    [
+                        13.3064132,
+                        46.5502848
+                    ],
+                    [
+                        13.1283019,
+                        46.5887681
+                    ],
+                    [
+                        12.8433237,
+                        46.6132433
+                    ],
+                    [
+                        12.7262791,
+                        46.6412014
+                    ],
+                    [
+                        12.5125455,
+                        46.6656529
+                    ],
+                    [
+                        12.3598787,
+                        46.7040543
+                    ],
+                    [
+                        12.3649676,
+                        46.7703197
+                    ],
+                    [
+                        12.2886341,
+                        46.7772902
+                    ],
+                    [
+                        12.2733674,
+                        46.8852187
+                    ],
+                    [
+                        12.2072118,
+                        46.8747835
+                    ],
+                    [
+                        12.1308784,
+                        46.9026062
+                    ],
+                    [
+                        12.1156117,
+                        46.9998721
+                    ],
+                    [
+                        12.2530119,
+                        47.0657733
+                    ],
+                    [
+                        12.2123007,
+                        47.0934969
+                    ],
+                    [
+                        11.9833004,
+                        47.0449712
+                    ],
+                    [
+                        11.7339445,
+                        46.9616816
+                    ],
+                    [
+                        11.6321666,
+                        47.010283
+                    ],
+                    [
+                        11.5405665,
+                        46.9755722
+                    ],
+                    [
+                        11.4998553,
+                        47.0068129
+                    ],
+                    [
+                        11.418433,
+                        46.9651546
+                    ],
+                    [
+                        11.2555884,
+                        46.9755722
+                    ],
+                    [
+                        11.1130993,
+                        46.913036
+                    ],
+                    [
+                        11.0418548,
+                        46.7633482
+                    ],
+                    [
+                        10.8891879,
+                        46.7598621
+                    ],
+                    [
+                        10.7416099,
+                        46.7842599
+                    ],
+                    [
+                        10.7059877,
+                        46.8643462
+                    ],
+                    [
+                        10.5787653,
+                        46.8399847
+                    ],
+                    [
+                        10.4566318,
+                        46.8504267
+                    ],
+                    [
+                        10.4769874,
+                        46.9269392
+                    ],
+                    [
+                        10.3853873,
+                        46.9894592
+                    ],
+                    [
+                        10.2327204,
+                        46.8643462
+                    ],
+                    [
+                        10.1207647,
+                        46.8330223
+                    ],
+                    [
+                        9.8663199,
+                        46.9408389
+                    ],
+                    [
+                        9.9019422,
+                        47.0033426
+                    ],
+                    [
+                        9.6831197,
+                        47.0588402
+                    ],
+                    [
+                        9.6118752,
+                        47.0380354
+                    ],
+                    [
+                        9.6322307,
+                        47.128131
+                    ],
+                    [
+                        9.5813418,
+                        47.1662025
+                    ],
+                    [
+                        9.5406306,
+                        47.2664422
+                    ],
+                    [
+                        9.6067863,
+                        47.3492559
+                    ],
+                    [
+                        9.6729419,
+                        47.369939
+                    ],
+                    [
+                        9.6424085,
+                        47.4457079
+                    ],
+                    [
+                        9.5660751,
+                        47.4801122
+                    ],
+                    [
+                        9.7136531,
+                        47.5282405
+                    ],
+                    [
+                        9.7848976,
+                        47.5969187
+                    ],
+                    [
+                        9.8357866,
+                        47.5454185
+                    ],
+                    [
+                        9.9477423,
+                        47.538548
+                    ],
+                    [
+                        10.0902313,
+                        47.4491493
+                    ],
+                    [
+                        10.1105869,
+                        47.3664924
+                    ],
+                    [
+                        10.2428982,
+                        47.3871688
+                    ],
+                    [
+                        10.1869203,
+                        47.2698953
+                    ],
+                    [
+                        10.3243205,
+                        47.2975125
+                    ],
+                    [
+                        10.4820763,
+                        47.4491493
+                    ],
+                    [
+                        10.4311873,
+                        47.4869904
+                    ],
+                    [
+                        10.4413651,
+                        47.5900549
+                    ],
+                    [
+                        10.4871652,
+                        47.5522881
+                    ],
+                    [
+                        10.5482319,
+                        47.5351124
+                    ],
+                    [
+                        10.5991209,
+                        47.5660246
+                    ],
+                    [
+                        10.7568766,
+                        47.5316766
+                    ],
+                    [
+                        10.8891879,
+                        47.5454185
+                    ],
+                    [
+                        10.9400769,
+                        47.4869904
+                    ],
+                    [
+                        10.9960547,
+                        47.3906141
+                    ],
+                    [
+                        11.2352328,
+                        47.4422662
+                    ],
+                    [
+                        11.2810328,
+                        47.3975039
+                    ],
+                    [
+                        11.4235219,
+                        47.5144941
+                    ],
+                    [
+                        11.5761888,
+                        47.5076195
+                    ],
+                    [
+                        11.6067221,
+                        47.5900549
+                    ],
+                    [
+                        11.8357224,
+                        47.5866227
+                    ],
+                    [
+                        12.003656,
+                        47.6243647
+                    ],
+                    [
+                        12.2072118,
+                        47.6037815
+                    ],
+                    [
+                        12.1614117,
+                        47.6963421
+                    ],
+                    [
+                        12.2581008,
+                        47.7442718
+                    ],
+                    [
+                        12.2530119,
+                        47.6792136
+                    ],
+                    [
+                        12.4311232,
+                        47.7100408
+                    ],
+                    [
+                        12.4921899,
+                        47.631224
+                    ],
+                    [
+                        12.5685234,
+                        47.6277944
+                    ],
+                    [
+                        12.6295901,
+                        47.6894913
+                    ],
+                    [
+                        12.7720792,
+                        47.6689338
+                    ],
+                    [
+                        12.8331459,
+                        47.5419833
+                    ],
+                    [
+                        12.975635,
+                        47.4732332
+                    ],
+                    [
+                        13.0417906,
+                        47.4938677
+                    ],
+                    [
+                        13.0367017,
+                        47.5557226
+                    ],
+                    [
+                        13.0977685,
+                        47.6415112
+                    ],
+                    [
+                        13.0316128,
+                        47.7100408
+                    ],
+                    [
+                        12.9043905,
+                        47.7203125
+                    ],
+                    [
+                        13.0061684,
+                        47.84683
+                    ],
+                    [
+                        12.9451016,
+                        47.9355501
+                    ],
+                    [
+                        12.8636793,
+                        47.9594103
+                    ],
+                    [
+                        12.8636793,
+                        48.0036929
+                    ],
+                    [
+                        12.7517236,
+                        48.0989418
+                    ],
+                    [
+                        12.8738571,
+                        48.2109733
+                    ],
+                    [
+                        12.9603683,
+                        48.2109733
+                    ],
+                    [
+                        13.0417906,
+                        48.2652035
+                    ],
+                    [
+                        13.1842797,
+                        48.2990682
+                    ],
+                    [
+                        13.2606131,
+                        48.2922971
+                    ],
+                    [
+                        13.3980133,
+                        48.3565867
+                    ],
+                    [
+                        13.4438134,
+                        48.417418
+                    ],
+                    [
+                        13.4387245,
+                        48.5523383
+                    ],
+                    [
+                        13.509969,
+                        48.5860123
+                    ],
+                    [
+                        13.6117469,
+                        48.5725454
+                    ],
+                    [
+                        13.7287915,
+                        48.5118999
+                    ],
+                    [
+                        13.7847694,
+                        48.5725454
+                    ],
+                    [
+                        13.8203916,
+                        48.6263915
+                    ],
+                    [
+                        13.7949471,
+                        48.7171267
+                    ],
+                    [
+                        13.850925,
+                        48.7741724
+                    ],
+                    [
+                        14.0595697,
+                        48.6633774
+                    ],
+                    [
+                        14.0137696,
+                        48.6331182
+                    ],
+                    [
+                        14.0748364,
+                        48.5927444
+                    ],
+                    [
+                        14.2173255,
+                        48.5961101
+                    ],
+                    [
+                        14.3649034,
+                        48.5489696
+                    ],
+                    [
+                        14.4666813,
+                        48.6499311
+                    ],
+                    [
+                        14.5582815,
+                        48.5961101
+                    ],
+                    [
+                        14.5989926,
+                        48.6263915
+                    ],
+                    [
+                        14.7211261,
+                        48.5759124
+                    ],
+                    [
+                        14.7211261,
+                        48.6868997
+                    ],
+                    [
+                        14.822904,
+                        48.7271983
+                    ],
+                    [
+                        14.8178151,
+                        48.777526
+                    ],
+                    [
+                        14.9647227,
+                        48.7851754
+                    ],
+                    [
+                        14.9893637,
+                        49.0126611
+                    ],
+                    [
+                        15.1485933,
+                        48.9950306
+                    ],
+                    [
+                        15.1943934,
+                        48.9315502
+                    ],
+                    [
+                        15.3063491,
+                        48.9850128
+                    ],
+                    [
+                        15.3928603,
+                        48.9850128
+                    ],
+                    [
+                        15.4844604,
+                        48.9282069
+                    ],
+                    [
+                        15.749083,
+                        48.8545973
+                    ],
+                    [
+                        15.8406831,
+                        48.8880697
+                    ],
+                    [
+                        16.0086166,
+                        48.7808794
+                    ],
+                    [
+                        16.2070835,
+                        48.7339115
+                    ],
+                    [
+                        16.3953727,
+                        48.7372678
+                    ],
+                    [
+                        16.4920617,
+                        48.8110498
+                    ],
+                    [
+                        16.6905286,
+                        48.7741724
+                    ],
+                    [
+                        16.7057953,
+                        48.7339115
+                    ],
+                    [
+                        16.8991733,
+                        48.713769
+                    ],
+                    [
+                        16.9755067,
+                        48.515271
+                    ],
+                    [
+                        16.8482844,
+                        48.4511817
+                    ],
+                    [
+                        16.8533733,
+                        48.3464411
+                    ],
+                    [
+                        16.9551512,
+                        48.2516513
+                    ],
+                    [
+                        16.9907734,
+                        48.1498955
+                    ],
+                    [
+                        17.0925513,
+                        48.1397088
+                    ],
+                    [
+                        17.0823736,
+                        48.0241182
+                    ],
+                    [
+                        17.1739737,
+                        48.0207146
+                    ],
+                    [
+                        17.0823736,
+                        47.8741447
+                    ],
+                    [
+                        16.9856845,
+                        47.8673174
+                    ],
+                    [
+                        17.0823736,
+                        47.8092489
+                    ],
+                    [
+                        17.0925513,
+                        47.7031919
+                    ],
+                    [
+                        16.7414176,
+                        47.6792136
+                    ],
+                    [
+                        16.7057953,
+                        47.7511153
+                    ],
+                    [
+                        16.5378617,
+                        47.7545368
+                    ],
+                    [
+                        16.5480395,
+                        47.7066164
+                    ],
+                    [
+                        16.4208172,
+                        47.6689338
+                    ],
+                    [
+                        16.573484,
+                        47.6175045
+                    ],
+                    [
+                        16.670173,
+                        47.631224
+                    ],
+                    [
+                        16.7108842,
+                        47.538548
+                    ],
+                    [
+                        16.6599952,
+                        47.4491493
+                    ],
+                    [
+                        16.5429506,
+                        47.3940591
+                    ],
+                    [
+                        16.4615283,
+                        47.3940591
+                    ],
+                    [
+                        16.4920617,
+                        47.276801
+                    ],
+                    [
+                        16.425906,
+                        47.1973317
+                    ],
+                    [
+                        16.4717061,
+                        47.1489007
+                    ],
+                    [
+                        16.5480395,
+                        47.1489007
+                    ],
+                    [
+                        16.476795,
+                        47.0796369
+                    ],
+                    [
+                        16.527684,
+                        47.0588402
+                    ]
+                ]
+            ],
+            "terms_text": "basemap.at",
+            "id": "basemap.at"
+        }
+    ],
+    "wikipedia": [
+        [
+            "English",
+            "English",
+            "en"
+        ],
+        [
+            "German",
+            "Deutsch",
+            "de"
+        ],
+        [
+            "Dutch",
+            "Nederlands",
+            "nl"
+        ],
+        [
+            "French",
+            "Français",
+            "fr"
+        ],
+        [
+            "Italian",
+            "Italiano",
+            "it"
+        ],
+        [
+            "Russian",
+            "Русский",
+            "ru"
+        ],
+        [
+            "Spanish",
+            "Español",
+            "es"
+        ],
+        [
+            "Polish",
+            "Polski",
+            "pl"
+        ],
+        [
+            "Swedish",
+            "Svenska",
+            "sv"
+        ],
+        [
+            "Japanese",
+            "日本語",
+            "ja"
+        ],
+        [
+            "Portuguese",
+            "Português",
+            "pt"
+        ],
+        [
+            "Chinese",
+            "中文",
+            "zh"
+        ],
+        [
+            "Vietnamese",
+            "Tiếng Việt",
+            "vi"
+        ],
+        [
+            "Ukrainian",
+            "Українська",
+            "uk"
+        ],
+        [
+            "Catalan",
+            "Català",
+            "ca"
+        ],
+        [
+            "Norwegian (Bokmål)",
+            "Norsk (Bokmål)",
+            "no"
+        ],
+        [
+            "Waray-Waray",
+            "Winaray",
+            "war"
+        ],
+        [
+            "Cebuano",
+            "Sinugboanong Binisaya",
+            "ceb"
+        ],
+        [
+            "Finnish",
+            "Suomi",
+            "fi"
+        ],
+        [
+            "Persian",
+            "فارسی",
+            "fa"
+        ],
+        [
+            "Czech",
+            "Čeština",
+            "cs"
+        ],
+        [
+            "Hungarian",
+            "Magyar",
+            "hu"
+        ],
+        [
+            "Korean",
+            "한국어",
+            "ko"
+        ],
+        [
+            "Romanian",
+            "Română",
+            "ro"
+        ],
+        [
+            "Arabic",
+            "العربية",
+            "ar"
+        ],
+        [
+            "Turkish",
+            "Türkçe",
+            "tr"
+        ],
+        [
+            "Indonesian",
+            "Bahasa Indonesia",
+            "id"
+        ],
+        [
+            "Kazakh",
             "Қазақша",
             "kk"
         ],
@@ -63490,5140 +66597,5994 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
         "presets": {
             "address": {
                 "fields": [
-                    "address"
+                    "address"
+                ],
+                "geometry": [
+                    "point"
+                ],
+                "tags": {
+                    "addr:housenumber": "*"
+                },
+                "addTags": {},
+                "removeTags": {},
+                "matchScore": 0.2,
+                "name": "Address"
+            },
+            "aerialway": {
+                "fields": [
+                    "aerialway"
+                ],
+                "geometry": [
+                    "point",
+                    "vertex",
+                    "line"
+                ],
+                "tags": {
+                    "aerialway": "*"
+                },
+                "terms": [
+                    "ski lift",
+                    "funifor",
+                    "funitel"
+                ],
+                "name": "Aerialway"
+            },
+            "aerialway/cable_car": {
+                "geometry": [
+                    "line"
+                ],
+                "terms": [
+                    "tramway",
+                    "ropeway"
+                ],
+                "fields": [
+                    "aerialway/occupancy",
+                    "aerialway/capacity",
+                    "aerialway/duration",
+                    "aerialway/heating"
+                ],
+                "tags": {
+                    "aerialway": "cable_car"
+                },
+                "name": "Cable Car"
+            },
+            "aerialway/chair_lift": {
+                "geometry": [
+                    "line"
+                ],
+                "fields": [
+                    "aerialway/occupancy",
+                    "aerialway/capacity",
+                    "aerialway/duration",
+                    "aerialway/bubble",
+                    "aerialway/heating"
+                ],
+                "tags": {
+                    "aerialway": "chair_lift"
+                },
+                "name": "Chair Lift"
+            },
+            "aerialway/gondola": {
+                "geometry": [
+                    "line"
+                ],
+                "fields": [
+                    "aerialway/occupancy",
+                    "aerialway/capacity",
+                    "aerialway/duration",
+                    "aerialway/bubble",
+                    "aerialway/heating"
+                ],
+                "tags": {
+                    "aerialway": "gondola"
+                },
+                "name": "Gondola"
+            },
+            "aerialway/magic_carpet": {
+                "geometry": [
+                    "line"
+                ],
+                "fields": [
+                    "aerialway/capacity",
+                    "aerialway/duration",
+                    "aerialway/heating"
+                ],
+                "tags": {
+                    "aerialway": "magic_carpet"
+                },
+                "name": "Magic Carpet Lift"
+            },
+            "aerialway/platter": {
+                "geometry": [
+                    "line"
+                ],
+                "terms": [
+                    "button lift",
+                    "poma lift"
+                ],
+                "fields": [
+                    "aerialway/capacity",
+                    "aerialway/duration"
+                ],
+                "tags": {
+                    "aerialway": "platter"
+                },
+                "name": "Platter Lift"
+            },
+            "aerialway/pylon": {
+                "geometry": [
+                    "point",
+                    "vertex"
+                ],
+                "fields": [
+                    "ref"
+                ],
+                "tags": {
+                    "aerialway": "pylon"
+                },
+                "name": "Aerialway Pylon"
+            },
+            "aerialway/rope_tow": {
+                "geometry": [
+                    "line"
+                ],
+                "terms": [
+                    "handle tow",
+                    "bugel lift"
+                ],
+                "fields": [
+                    "aerialway/capacity",
+                    "aerialway/duration"
+                ],
+                "tags": {
+                    "aerialway": "rope_tow"
+                },
+                "name": "Rope Tow Lift"
+            },
+            "aerialway/station": {
+                "geometry": [
+                    "point",
+                    "vertex"
+                ],
+                "fields": [
+                    "aerialway/access",
+                    "aerialway/summer/access",
+                    "elevation"
+                ],
+                "tags": {
+                    "aerialway": "station"
+                },
+                "name": "Aerialway Station"
+            },
+            "aerialway/t-bar": {
+                "geometry": [
+                    "line"
+                ],
+                "fields": [
+                    "aerialway/capacity",
+                    "aerialway/duration"
+                ],
+                "tags": {
+                    "aerialway": "t-bar"
+                },
+                "name": "T-bar Lift"
+            },
+            "aeroway": {
+                "icon": "airport",
+                "fields": [
+                    "aeroway"
+                ],
+                "geometry": [
+                    "point",
+                    "vertex",
+                    "line",
+                    "area"
+                ],
+                "tags": {
+                    "aeroway": "*"
+                },
+                "name": "Aeroway"
+            },
+            "aeroway/aerodrome": {
+                "icon": "airport",
+                "geometry": [
+                    "point",
+                    "area"
+                ],
+                "terms": [
+                    "airplane",
+                    "airport",
+                    "aerodrome"
+                ],
+                "fields": [
+                    "ref",
+                    "iata",
+                    "icao",
+                    "operator"
+                ],
+                "tags": {
+                    "aeroway": "aerodrome"
+                },
+                "name": "Airport"
+            },
+            "aeroway/apron": {
+                "icon": "airport",
+                "geometry": [
+                    "area"
+                ],
+                "terms": [
+                    "ramp"
+                ],
+                "fields": [
+                    "ref",
+                    "surface"
+                ],
+                "tags": {
+                    "aeroway": "apron"
+                },
+                "name": "Apron"
+            },
+            "aeroway/gate": {
+                "icon": "airport",
+                "geometry": [
+                    "point"
+                ],
+                "fields": [
+                    "ref"
+                ],
+                "tags": {
+                    "aeroway": "gate"
+                },
+                "name": "Airport gate"
+            },
+            "aeroway/hangar": {
+                "geometry": [
+                    "area"
+                ],
+                "fields": [
+                    "building_area"
+                ],
+                "tags": {
+                    "aeroway": "hangar"
+                },
+                "name": "Hangar"
+            },
+            "aeroway/helipad": {
+                "icon": "heliport",
+                "geometry": [
+                    "point",
+                    "area"
+                ],
+                "terms": [
+                    "helicopter",
+                    "helipad",
+                    "heliport"
+                ],
+                "tags": {
+                    "aeroway": "helipad"
+                },
+                "name": "Helipad"
+            },
+            "aeroway/runway": {
+                "geometry": [
+                    "line",
+                    "area"
+                ],
+                "terms": [
+                    "landing strip"
+                ],
+                "fields": [
+                    "ref",
+                    "surface",
+                    "length",
+                    "width"
+                ],
+                "tags": {
+                    "aeroway": "runway"
+                },
+                "name": "Runway"
+            },
+            "aeroway/taxiway": {
+                "geometry": [
+                    "line"
+                ],
+                "fields": [
+                    "ref",
+                    "surface"
+                ],
+                "tags": {
+                    "aeroway": "taxiway"
+                },
+                "name": "Taxiway"
+            },
+            "aeroway/terminal": {
+                "geometry": [
+                    "point",
+                    "area"
+                ],
+                "terms": [
+                    "airport",
+                    "aerodrome"
+                ],
+                "fields": [
+                    "operator",
+                    "building_area"
+                ],
+                "tags": {
+                    "aeroway": "terminal"
+                },
+                "name": "Airport terminal"
+            },
+            "amenity": {
+                "fields": [
+                    "amenity"
+                ],
+                "geometry": [
+                    "point",
+                    "vertex",
+                    "area"
+                ],
+                "tags": {
+                    "amenity": "*"
+                },
+                "searchable": false,
+                "name": "Amenity"
+            },
+            "amenity/arts_centre": {
+                "icon": "theatre",
+                "fields": [
+                    "address",
+                    "building_area",
+                    "opening_hours"
+                ],
+                "geometry": [
+                    "point",
+                    "area"
+                ],
+                "terms": [],
+                "tags": {
+                    "amenity": "arts_centre"
+                },
+                "name": "Arts Center"
+            },
+            "amenity/atm": {
+                "icon": "bank",
+                "fields": [
+                    "operator"
+                ],
+                "geometry": [
+                    "point",
+                    "vertex"
+                ],
+                "terms": [
+                    "money",
+                    "cash",
+                    "machine"
+                ],
+                "tags": {
+                    "amenity": "atm"
+                },
+                "name": "ATM"
+            },
+            "amenity/bank": {
+                "icon": "bank",
+                "fields": [
+                    "atm",
+                    "operator",
+                    "address",
+                    "building_area",
+                    "opening_hours"
+                ],
+                "geometry": [
+                    "point",
+                    "area"
+                ],
+                "terms": [
+                    "credit union",
+                    "check",
+                    "deposit",
+                    "fund",
+                    "investment",
+                    "repository",
+                    "reserve",
+                    "safe",
+                    "savings",
+                    "stock",
+                    "treasury",
+                    "trust",
+                    "vault"
+                ],
+                "tags": {
+                    "amenity": "bank"
+                },
+                "name": "Bank"
+            },
+            "amenity/bar": {
+                "icon": "bar",
+                "fields": [
+                    "operator",
+                    "address",
+                    "building_area",
+                    "opening_hours",
+                    "smoking"
+                ],
+                "geometry": [
+                    "point",
+                    "area"
+                ],
+                "terms": [
+                    "dive",
+                    "beer",
+                    "bier",
+                    "booze"
+                ],
+                "tags": {
+                    "amenity": "bar"
+                },
+                "name": "Bar"
+            },
+            "amenity/bbq": {
+                "fields": [
+                    "covered",
+                    "fuel"
+                ],
+                "geometry": [
+                    "point"
+                ],
+                "terms": [
+                    "bbq"
+                ],
+                "tags": {
+                    "amenity": "bbq"
+                },
+                "name": "Barbecue/Grill"
+            },
+            "amenity/bench": {
+                "fields": [
+                    "backrest"
+                ],
+                "geometry": [
+                    "point",
+                    "vertex",
+                    "line"
+                ],
+                "tags": {
+                    "amenity": "bench"
+                },
+                "name": "Bench"
+            },
+            "amenity/bicycle_parking": {
+                "icon": "bicycle",
+                "fields": [
+                    "bicycle_parking",
+                    "capacity",
+                    "operator",
+                    "covered",
+                    "access_simple"
+                ],
+                "geometry": [
+                    "point",
+                    "vertex",
+                    "area"
+                ],
+                "terms": [
+                    "bike"
+                ],
+                "tags": {
+                    "amenity": "bicycle_parking"
+                },
+                "name": "Bicycle Parking"
+            },
+            "amenity/bicycle_rental": {
+                "icon": "bicycle",
+                "fields": [
+                    "capacity",
+                    "network",
+                    "operator"
+                ],
+                "geometry": [
+                    "point",
+                    "vertex",
+                    "area"
+                ],
+                "terms": [
+                    "bike"
+                ],
+                "tags": {
+                    "amenity": "bicycle_rental"
+                },
+                "name": "Bicycle Rental"
+            },
+            "amenity/boat_rental": {
+                "fields": [
+                    "operator"
+                ],
+                "geometry": [
+                    "point",
+                    "area"
+                ],
+                "tags": {
+                    "amenity": "boat_rental"
+                },
+                "name": "Boat Rental"
+            },
+            "amenity/bureau_de_change": {
+                "icon": "bank",
+                "fields": [
+                    "operator"
+                ],
+                "geometry": [
+                    "point",
+                    "vertex"
+                ],
+                "terms": [
+                    "bureau de change",
+                    "money changer"
+                ],
+                "tags": {
+                    "amenity": "bureau_de_change"
+                },
+                "name": "Currency Exchange"
+            },
+            "amenity/bus_station": {
+                "icon": "bus",
+                "fields": [
+                    "building_area",
+                    "operator"
+                ],
+                "geometry": [
+                    "point",
+                    "area"
+                ],
+                "tags": {
+                    "amenity": "bus_station"
+                },
+                "name": "Bus Station"
+            },
+            "amenity/cafe": {
+                "icon": "cafe",
+                "fields": [
+                    "cuisine",
+                    "internet_access",
+                    "address",
+                    "building_area",
+                    "opening_hours",
+                    "smoking"
+                ],
+                "geometry": [
+                    "point",
+                    "area"
+                ],
+                "terms": [
+                    "coffee",
+                    "tea"
+                ],
+                "tags": {
+                    "amenity": "cafe"
+                },
+                "name": "Cafe"
+            },
+            "amenity/car_rental": {
+                "icon": "car",
+                "fields": [
+                    "operator"
+                ],
+                "geometry": [
+                    "point",
+                    "area"
+                ],
+                "tags": {
+                    "amenity": "car_rental"
+                },
+                "name": "Car Rental"
+            },
+            "amenity/car_sharing": {
+                "icon": "car",
+                "fields": [
+                    "operator",
+                    "capacity"
+                ],
+                "geometry": [
+                    "point",
+                    "area"
+                ],
+                "tags": {
+                    "amenity": "car_sharing"
+                },
+                "name": "Car Sharing"
+            },
+            "amenity/car_wash": {
+                "icon": "car",
+                "fields": [
+                    "address",
+                    "building_area",
+                    "opening_hours"
+                ],
+                "geometry": [
+                    "point",
+                    "area"
+                ],
+                "tags": {
+                    "amenity": "car_wash"
+                },
+                "name": "Car Wash"
+            },
+            "amenity/charging_station": {
+                "icon": "car",
+                "fields": [
+                    "operator"
+                ],
+                "geometry": [
+                    "point",
+                    "area"
+                ],
+                "tags": {
+                    "amenity": "charging_station"
+                },
+                "terms": [
+                    "EV",
+                    "Electric Vehicle",
+                    "Supercharger"
+                ],
+                "name": "Charging Station"
+            },
+            "amenity/childcare": {
+                "icon": "school",
+                "fields": [
+                    "operator",
+                    "address",
+                    "building_area",
+                    "opening_hours"
+                ],
+                "geometry": [
+                    "point",
+                    "area"
+                ],
+                "terms": [
+                    "daycare",
+                    "orphanage",
+                    "playgroup"
+                ],
+                "tags": {
+                    "amenity": "childcare"
+                },
+                "name": "Nursery/Childcare"
+            },
+            "amenity/cinema": {
+                "icon": "cinema",
+                "fields": [
+                    "address",
+                    "building_area",
+                    "opening_hours"
+                ],
+                "geometry": [
+                    "point",
+                    "area"
+                ],
+                "terms": [
+                    "drive-in",
+                    "film",
+                    "flick",
+                    "movie",
+                    "theater",
+                    "picture",
+                    "show",
+                    "screen"
+                ],
+                "tags": {
+                    "amenity": "cinema"
+                },
+                "name": "Cinema"
+            },
+            "amenity/clinic": {
+                "icon": "hospital",
+                "fields": [
+                    "address",
+                    "building_area",
+                    "opening_hours"
+                ],
+                "geometry": [
+                    "point",
+                    "area"
+                ],
+                "terms": [
+                    "medical",
+                    "urgentcare"
+                ],
+                "tags": {
+                    "amenity": "clinic"
+                },
+                "name": "Clinic"
+            },
+            "amenity/clock": {
+                "geometry": [
+                    "point",
+                    "vertex"
+                ],
+                "tags": {
+                    "amenity": "clock"
+                },
+                "name": "Clock"
+            },
+            "amenity/college": {
+                "icon": "college",
+                "fields": [
+                    "operator",
+                    "address"
+                ],
+                "geometry": [
+                    "point",
+                    "area"
+                ],
+                "terms": [
+                    "university"
+                ],
+                "tags": {
+                    "amenity": "college"
+                },
+                "name": "College Grounds"
+            },
+            "amenity/community_centre": {
+                "icon": "town-hall",
+                "fields": [
+                    "operator",
+                    "address",
+                    "building_area"
+                ],
+                "geometry": [
+                    "point",
+                    "area"
+                ],
+                "terms": [
+                    "event",
+                    "hall"
+                ],
+                "tags": {
+                    "amenity": "community_centre"
+                },
+                "name": "Community Center"
+            },
+            "amenity/compressed_air": {
+                "icon": "car",
+                "geometry": [
+                    "point",
+                    "area"
+                ],
+                "tags": {
+                    "amenity": "compressed_air"
+                },
+                "name": "Compressed Air"
+            },
+            "amenity/courthouse": {
+                "icon": "town-hall",
+                "fields": [
+                    "operator",
+                    "address",
+                    "building_area"
+                ],
+                "geometry": [
+                    "point",
+                    "area"
+                ],
+                "tags": {
+                    "amenity": "courthouse"
+                },
+                "name": "Courthouse"
+            },
+            "amenity/dentist": {
+                "icon": "hospital",
+                "fields": [
+                    "address",
+                    "building_area",
+                    "opening_hours"
+                ],
+                "geometry": [
+                    "point",
+                    "area"
+                ],
+                "terms": [
+                    "tooth",
+                    "teeth"
+                ],
+                "tags": {
+                    "amenity": "dentist"
+                },
+                "name": "Dentist"
+            },
+            "amenity/doctor": {
+                "icon": "hospital",
+                "fields": [
+                    "address",
+                    "building_area",
+                    "opening_hours"
+                ],
+                "geometry": [
+                    "point",
+                    "area"
+                ],
+                "terms": [
+                    "medic*"
+                ],
+                "tags": {
+                    "amenity": "doctors"
+                },
+                "name": "Doctor"
+            },
+            "amenity/dojo": {
+                "icon": "pitch",
+                "fields": [
+                    "sport",
+                    "address",
+                    "building_area",
+                    "opening_hours"
+                ],
+                "geometry": [
+                    "point",
+                    "area"
+                ],
+                "terms": [
+                    "martial arts",
+                    "dojang"
+                ],
+                "tags": {
+                    "amenity": "dojo"
+                },
+                "name": "Dojo / Martial Arts Academy"
+            },
+            "amenity/drinking_water": {
+                "icon": "water",
+                "geometry": [
+                    "point"
+                ],
+                "tags": {
+                    "amenity": "drinking_water"
+                },
+                "terms": [
+                    "fountain",
+                    "potable"
+                ],
+                "name": "Drinking Water"
+            },
+            "amenity/embassy": {
+                "icon": "embassy",
+                "fields": [
+                    "country",
+                    "address",
+                    "building_area"
+                ],
+                "geometry": [
+                    "point",
+                    "area"
+                ],
+                "tags": {
+                    "amenity": "embassy"
+                },
+                "name": "Embassy"
+            },
+            "amenity/fast_food": {
+                "icon": "fast-food",
+                "fields": [
+                    "cuisine",
+                    "operator",
+                    "address",
+                    "building_area",
+                    "opening_hours",
+                    "smoking"
+                ],
+                "geometry": [
+                    "point",
+                    "area"
+                ],
+                "tags": {
+                    "amenity": "fast_food"
+                },
+                "terms": [
+                    "restaurant"
+                ],
+                "name": "Fast Food"
+            },
+            "amenity/fire_station": {
+                "icon": "fire-station",
+                "fields": [
+                    "operator",
+                    "address",
+                    "building_area"
+                ],
+                "geometry": [
+                    "point",
+                    "area"
+                ],
+                "terms": [],
+                "tags": {
+                    "amenity": "fire_station"
+                },
+                "name": "Fire Station"
+            },
+            "amenity/fountain": {
+                "geometry": [
+                    "point",
+                    "area"
+                ],
+                "tags": {
+                    "amenity": "fountain"
+                },
+                "name": "Fountain"
+            },
+            "amenity/fuel": {
+                "icon": "fuel",
+                "fields": [
+                    "operator",
+                    "address",
+                    "building_area",
+                    "opening_hours"
                 ],
                 "geometry": [
-                    "point"
+                    "point",
+                    "area"
+                ],
+                "terms": [
+                    "petrol",
+                    "fuel",
+                    "propane",
+                    "diesel",
+                    "lng",
+                    "cng",
+                    "biodiesel"
                 ],
                 "tags": {
-                    "addr:housenumber": "*"
+                    "amenity": "fuel"
                 },
-                "addTags": {},
-                "removeTags": {},
-                "matchScore": 0.2,
-                "name": "Address"
+                "name": "Gas Station"
             },
-            "aerialway": {
+            "amenity/grave_yard": {
+                "icon": "cemetery",
                 "fields": [
-                    "aerialway"
+                    "religion",
+                    "denomination"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
-                    "line"
+                    "area"
                 ],
                 "tags": {
-                    "aerialway": "*"
+                    "amenity": "grave_yard"
                 },
+                "name": "Graveyard"
+            },
+            "amenity/hospital": {
+                "icon": "hospital",
+                "fields": [
+                    "operator",
+                    "address",
+                    "emergency"
+                ],
+                "geometry": [
+                    "point",
+                    "area"
+                ],
                 "terms": [
-                    "ski lift",
-                    "funifor",
-                    "funitel"
+                    "clinic",
+                    "doctor",
+                    "emergency room",
+                    "health service",
+                    "hospice",
+                    "infirmary",
+                    "institution",
+                    "nursing home",
+                    "sanatorium",
+                    "sanitarium",
+                    "sick",
+                    "surgery",
+                    "ward"
                 ],
-                "name": "Aerialway"
+                "tags": {
+                    "amenity": "hospital"
+                },
+                "name": "Hospital Grounds"
             },
-            "aerialway/cable_car": {
+            "amenity/kindergarten": {
+                "icon": "school",
+                "fields": [
+                    "operator",
+                    "address"
+                ],
                 "geometry": [
-                    "line"
+                    "point",
+                    "area"
                 ],
                 "terms": [
-                    "tramway",
-                    "ropeway"
+                    "kindergarden",
+                    "pre-school"
                 ],
+                "tags": {
+                    "amenity": "kindergarten"
+                },
+                "name": "Preschool/Kindergarten Grounds"
+            },
+            "amenity/library": {
+                "icon": "library",
                 "fields": [
-                    "aerialway/occupancy",
-                    "aerialway/capacity",
-                    "aerialway/duration",
-                    "aerialway/heating"
+                    "operator",
+                    "building_area",
+                    "address",
+                    "opening_hours"
+                ],
+                "geometry": [
+                    "point",
+                    "area"
+                ],
+                "terms": [
+                    "book"
                 ],
                 "tags": {
-                    "aerialway": "cable_car"
+                    "amenity": "library"
                 },
-                "name": "Cable Car"
+                "name": "Library"
             },
-            "aerialway/chair_lift": {
+            "amenity/marketplace": {
+                "fields": [
+                    "operator",
+                    "address",
+                    "building_area",
+                    "opening_hours"
+                ],
                 "geometry": [
-                    "line"
+                    "point",
+                    "area"
                 ],
+                "tags": {
+                    "amenity": "marketplace"
+                },
+                "name": "Marketplace"
+            },
+            "amenity/nightclub": {
+                "icon": "bar",
                 "fields": [
-                    "aerialway/occupancy",
-                    "aerialway/capacity",
-                    "aerialway/duration",
-                    "aerialway/bubble",
-                    "aerialway/heating"
+                    "operator",
+                    "address",
+                    "building_area",
+                    "opening_hours",
+                    "smoking"
+                ],
+                "geometry": [
+                    "point",
+                    "area"
                 ],
                 "tags": {
-                    "aerialway": "chair_lift"
+                    "amenity": "nightclub"
                 },
-                "name": "Chair Lift"
+                "terms": [
+                    "disco*",
+                    "night club",
+                    "dancing",
+                    "dance club"
+                ],
+                "name": "Nightclub"
             },
-            "aerialway/gondola": {
+            "amenity/parking": {
+                "icon": "parking",
+                "fields": [
+                    "operator",
+                    "parking",
+                    "capacity",
+                    "fee",
+                    "access_simple",
+                    "supervised",
+                    "park_ride",
+                    "address"
+                ],
                 "geometry": [
-                    "line"
+                    "point",
+                    "vertex",
+                    "area"
                 ],
+                "tags": {
+                    "amenity": "parking"
+                },
+                "terms": [],
+                "name": "Car Parking"
+            },
+            "amenity/parking_entrance": {
+                "icon": "entrance",
                 "fields": [
-                    "aerialway/occupancy",
-                    "aerialway/capacity",
-                    "aerialway/duration",
-                    "aerialway/bubble",
-                    "aerialway/heating"
+                    "access_simple",
+                    "ref"
+                ],
+                "geometry": [
+                    "vertex"
                 ],
                 "tags": {
-                    "aerialway": "gondola"
+                    "amenity": "parking_entrance"
                 },
-                "name": "Gondola"
+                "name": "Parking Garage Entrance/Exit"
             },
-            "aerialway/magic_carpet": {
+            "amenity/pharmacy": {
+                "icon": "pharmacy",
+                "fields": [
+                    "operator",
+                    "address",
+                    "building_area",
+                    "opening_hours"
+                ],
                 "geometry": [
-                    "line"
+                    "point",
+                    "area"
+                ],
+                "tags": {
+                    "amenity": "pharmacy"
+                },
+                "terms": [
+                    "drug",
+                    "medicine"
                 ],
+                "name": "Pharmacy"
+            },
+            "amenity/place_of_worship": {
+                "icon": "place-of-worship",
                 "fields": [
-                    "aerialway/capacity",
-                    "aerialway/duration",
-                    "aerialway/heating"
+                    "religion",
+                    "denomination",
+                    "address",
+                    "building_area"
+                ],
+                "geometry": [
+                    "point",
+                    "area"
+                ],
+                "terms": [
+                    "abbey",
+                    "basilica",
+                    "bethel",
+                    "cathedral",
+                    "chancel",
+                    "chantry",
+                    "chapel",
+                    "church",
+                    "fold",
+                    "house of God",
+                    "house of prayer",
+                    "house of worship",
+                    "minster",
+                    "mission",
+                    "mosque",
+                    "oratory",
+                    "parish",
+                    "sacellum",
+                    "sanctuary",
+                    "shrine",
+                    "synagogue",
+                    "tabernacle",
+                    "temple"
                 ],
                 "tags": {
-                    "aerialway": "magic_carpet"
+                    "amenity": "place_of_worship"
                 },
-                "name": "Magic Carpet Lift"
+                "name": "Place of Worship"
             },
-            "aerialway/platter": {
+            "amenity/place_of_worship/buddhist": {
+                "icon": "place-of-worship",
+                "fields": [
+                    "denomination",
+                    "building_area",
+                    "address"
+                ],
                 "geometry": [
-                    "line"
+                    "point",
+                    "area"
                 ],
                 "terms": [
-                    "button lift",
-                    "poma lift"
+                    "stupa",
+                    "vihara",
+                    "monastery",
+                    "temple",
+                    "pagoda",
+                    "zendo",
+                    "dojo"
                 ],
+                "tags": {
+                    "amenity": "place_of_worship",
+                    "religion": "buddhist"
+                },
+                "name": "Buddhist Temple"
+            },
+            "amenity/place_of_worship/christian": {
+                "icon": "religious-christian",
                 "fields": [
-                    "aerialway/capacity",
-                    "aerialway/duration"
+                    "denomination",
+                    "building_area",
+                    "address"
+                ],
+                "geometry": [
+                    "point",
+                    "area"
+                ],
+                "terms": [
+                    "christian",
+                    "abbey",
+                    "basilica",
+                    "bethel",
+                    "cathedral",
+                    "chancel",
+                    "chantry",
+                    "chapel",
+                    "fold",
+                    "house of God",
+                    "house of prayer",
+                    "house of worship",
+                    "minster",
+                    "mission",
+                    "oratory",
+                    "parish",
+                    "sacellum",
+                    "sanctuary",
+                    "shrine",
+                    "tabernacle",
+                    "temple"
                 ],
                 "tags": {
-                    "aerialway": "platter"
+                    "amenity": "place_of_worship",
+                    "religion": "christian"
                 },
-                "name": "Platter Lift"
+                "name": "Church"
             },
-            "aerialway/pylon": {
+            "amenity/place_of_worship/jewish": {
+                "icon": "religious-jewish",
+                "fields": [
+                    "denomination",
+                    "building_area",
+                    "address"
+                ],
                 "geometry": [
                     "point",
-                    "vertex"
+                    "area"
                 ],
-                "fields": [
-                    "ref"
+                "terms": [
+                    "jewish"
                 ],
                 "tags": {
-                    "aerialway": "pylon"
+                    "amenity": "place_of_worship",
+                    "religion": "jewish"
                 },
-                "name": "Aerialway Pylon"
+                "name": "Synagogue"
             },
-            "aerialway/rope_tow": {
+            "amenity/place_of_worship/muslim": {
+                "icon": "religious-muslim",
+                "fields": [
+                    "denomination",
+                    "building_area",
+                    "address"
+                ],
                 "geometry": [
-                    "line"
+                    "point",
+                    "area"
                 ],
                 "terms": [
-                    "handle tow",
-                    "bugel lift"
+                    "muslim"
                 ],
+                "tags": {
+                    "amenity": "place_of_worship",
+                    "religion": "muslim"
+                },
+                "name": "Mosque"
+            },
+            "amenity/police": {
+                "icon": "police",
                 "fields": [
-                    "aerialway/capacity",
-                    "aerialway/duration"
+                    "operator",
+                    "address",
+                    "building_area"
+                ],
+                "geometry": [
+                    "point",
+                    "area"
+                ],
+                "terms": [
+                    "badge",
+                    "constable",
+                    "constabulary",
+                    "cop",
+                    "detective",
+                    "fed",
+                    "law",
+                    "enforcement",
+                    "officer",
+                    "patrol"
                 ],
                 "tags": {
-                    "aerialway": "rope_tow"
+                    "amenity": "police"
                 },
-                "name": "Rope Tow Lift"
+                "name": "Police"
             },
-            "aerialway/station": {
+            "amenity/post_box": {
+                "icon": "post",
+                "fields": [
+                    "operator",
+                    "collection_times"
+                ],
                 "geometry": [
                     "point",
                     "vertex"
                 ],
+                "tags": {
+                    "amenity": "post_box"
+                },
+                "terms": [
+                    "letter",
+                    "post"
+                ],
+                "name": "Mailbox"
+            },
+            "amenity/post_office": {
+                "icon": "post",
                 "fields": [
-                    "aerialway/access",
-                    "aerialway/summer/access",
-                    "elevation"
+                    "operator",
+                    "address",
+                    "building_area",
+                    "collection_times"
+                ],
+                "geometry": [
+                    "point",
+                    "area"
+                ],
+                "terms": [
+                    "letter",
+                    "mail"
                 ],
                 "tags": {
-                    "aerialway": "station"
+                    "amenity": "post_office"
                 },
-                "name": "Aerialway Station"
+                "name": "Post Office"
             },
-            "aerialway/t-bar": {
+            "amenity/pub": {
+                "icon": "beer",
+                "fields": [
+                    "address",
+                    "building_area",
+                    "opening_hours",
+                    "smoking"
+                ],
                 "geometry": [
-                    "line"
+                    "point",
+                    "area"
+                ],
+                "tags": {
+                    "amenity": "pub"
+                },
+                "terms": [
+                    "dive",
+                    "beer",
+                    "bier",
+                    "booze"
                 ],
+                "name": "Pub"
+            },
+            "amenity/ranger_station": {
                 "fields": [
-                    "aerialway/capacity",
-                    "aerialway/duration"
+                    "operator",
+                    "address",
+                    "building_area",
+                    "opening_hours"
+                ],
+                "geometry": [
+                    "point",
+                    "area"
+                ],
+                "terms": [
+                    "visitor center",
+                    "visitor centre",
+                    "permit center",
+                    "permit centre",
+                    "backcountry office",
+                    "warden office",
+                    "warden center"
                 ],
                 "tags": {
-                    "aerialway": "t-bar"
+                    "amenity": "ranger_station"
                 },
-                "name": "T-bar Lift"
+                "name": "Ranger Station"
             },
-            "aeroway": {
-                "icon": "airport",
+            "amenity/recycling": {
+                "icon": "recycling",
                 "fields": [
-                    "aeroway"
+                    "operator",
+                    "address",
+                    "recycling/cans",
+                    "recycling/glass",
+                    "recycling/paper",
+                    "recycling/clothes"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
-                    "line",
                     "area"
                 ],
+                "terms": [
+                    "can",
+                    "bottle",
+                    "garbage",
+                    "scrap",
+                    "trash"
+                ],
                 "tags": {
-                    "aeroway": "*"
+                    "amenity": "recycling"
                 },
-                "name": "Aeroway"
+                "name": "Recycling"
             },
-            "aeroway/aerodrome": {
-                "icon": "airport",
+            "amenity/restaurant": {
+                "icon": "restaurant",
+                "fields": [
+                    "cuisine",
+                    "address",
+                    "building_area",
+                    "opening_hours",
+                    "capacity",
+                    "smoking"
+                ],
+                "geometry": [
+                    "point",
+                    "area"
+                ],
+                "terms": [
+                    "bar",
+                    "breakfast",
+                    "cafe",
+                    "café",
+                    "canteen",
+                    "coffee",
+                    "dine",
+                    "dining",
+                    "dinner",
+                    "drive-in",
+                    "eat",
+                    "grill",
+                    "lunch",
+                    "table"
+                ],
+                "tags": {
+                    "amenity": "restaurant"
+                },
+                "name": "Restaurant"
+            },
+            "amenity/school": {
+                "icon": "school",
+                "fields": [
+                    "operator",
+                    "address"
+                ],
                 "geometry": [
                     "point",
                     "area"
                 ],
                 "terms": [
-                    "airplane",
-                    "airport",
-                    "aerodrome"
-                ],
-                "fields": [
-                    "ref",
-                    "iata",
-                    "icao",
-                    "operator"
+                    "academy",
+                    "elementary school",
+                    "middle school",
+                    "high school"
                 ],
                 "tags": {
-                    "aeroway": "aerodrome"
+                    "amenity": "school"
                 },
-                "name": "Airport"
+                "name": "School Grounds"
             },
-            "aeroway/apron": {
-                "icon": "airport",
+            "amenity/shelter": {
+                "fields": [
+                    "shelter_type"
+                ],
                 "geometry": [
+                    "point",
+                    "vertex",
                     "area"
                 ],
                 "terms": [
-                    "ramp"
-                ],
-                "fields": [
-                    "ref",
-                    "surface"
+                    "lean-to",
+                    "gazebo",
+                    "picnic"
                 ],
                 "tags": {
-                    "aeroway": "apron"
+                    "amenity": "shelter"
                 },
-                "name": "Apron"
+                "name": "Shelter"
             },
-            "aeroway/gate": {
-                "icon": "airport",
-                "geometry": [
-                    "point"
-                ],
+            "amenity/social_facility": {
                 "fields": [
-                    "ref"
+                    "operator",
+                    "address",
+                    "building_area",
+                    "opening_hours",
+                    "wheelchair",
+                    "social_facility_for"
+                ],
+                "geometry": [
+                    "point",
+                    "area"
                 ],
+                "terms": [],
                 "tags": {
-                    "aeroway": "gate"
+                    "amenity": "social_facility"
                 },
-                "name": "Airport gate"
+                "name": "Social Facility"
             },
-            "aeroway/hangar": {
+            "amenity/social_facility/food_bank": {
+                "fields": [
+                    "operator",
+                    "address",
+                    "building_area",
+                    "opening_hours",
+                    "social_facility_for"
+                ],
                 "geometry": [
+                    "point",
                     "area"
                 ],
-                "fields": [
-                    "building_area"
-                ],
+                "terms": [],
                 "tags": {
-                    "aeroway": "hangar"
+                    "amenity": "social_facility",
+                    "social_facility": "food_bank"
                 },
-                "name": "Hangar"
+                "name": "Food Bank"
             },
-            "aeroway/helipad": {
-                "icon": "heliport",
+            "amenity/social_facility/group_home": {
+                "fields": [
+                    "operator",
+                    "address",
+                    "building_area",
+                    "opening_hours",
+                    "wheelchair",
+                    "social_facility_for"
+                ],
                 "geometry": [
                     "point",
                     "area"
                 ],
                 "terms": [
-                    "helicopter",
-                    "helipad",
-                    "heliport"
+                    "old",
+                    "senior",
+                    "living"
                 ],
                 "tags": {
-                    "aeroway": "helipad"
+                    "amenity": "social_facility",
+                    "social_facility": "group_home",
+                    "social_facility_for": "senior"
                 },
-                "name": "Helipad"
+                "name": "Elderly Group Home"
             },
-            "aeroway/runway": {
+            "amenity/social_facility/homeless_shelter": {
+                "fields": [
+                    "operator",
+                    "address",
+                    "building_area",
+                    "opening_hours",
+                    "wheelchair",
+                    "social_facility_for"
+                ],
                 "geometry": [
-                    "line",
+                    "point",
                     "area"
                 ],
                 "terms": [
-                    "landing strip"
-                ],
-                "fields": [
-                    "ref",
-                    "surface",
-                    "length",
-                    "width"
+                    "houseless",
+                    "unhoused",
+                    "displaced"
                 ],
                 "tags": {
-                    "aeroway": "runway"
+                    "amenity": "social_facility",
+                    "social_facility": "shelter",
+                    "social_facility:for": "homeless"
                 },
-                "name": "Runway"
+                "name": "Homeless Shelter"
             },
-            "aeroway/taxiway": {
-                "geometry": [
-                    "line"
-                ],
+            "amenity/studio": {
+                "icon": "music",
                 "fields": [
-                    "ref",
-                    "surface"
+                    "studio_type",
+                    "address",
+                    "building_area"
                 ],
-                "tags": {
-                    "aeroway": "taxiway"
-                },
-                "name": "Taxiway"
-            },
-            "aeroway/terminal": {
                 "geometry": [
                     "point",
                     "area"
                 ],
                 "terms": [
-                    "airport",
-                    "aerodrome"
-                ],
-                "fields": [
-                    "operator",
-                    "building_area"
+                    "recording",
+                    "radio",
+                    "television"
                 ],
                 "tags": {
-                    "aeroway": "terminal"
+                    "amenity": "studio"
                 },
-                "name": "Airport terminal"
+                "name": "Studio"
             },
-            "amenity": {
-                "fields": [
-                    "amenity"
-                ],
+            "amenity/swimming_pool": {
+                "icon": "swimming",
                 "geometry": [
                     "point",
                     "vertex",
                     "area"
                 ],
                 "tags": {
-                    "amenity": "*"
+                    "amenity": "swimming_pool"
                 },
-                "name": "Amenity"
+                "name": "Swimming Pool",
+                "searchable": false
             },
-            "amenity/arts_centre": {
-                "name": "Arts Center",
+            "amenity/taxi": {
+                "icon": "car",
+                "fields": [
+                    "operator",
+                    "capacity"
+                ],
                 "geometry": [
                     "point",
+                    "vertex",
                     "area"
                 ],
                 "terms": [
-                    "arts",
-                    "arts centre"
+                    "cab"
                 ],
                 "tags": {
-                    "amenity": "arts_centre"
+                    "amenity": "taxi"
                 },
-                "icon": "theatre",
-                "fields": [
-                    "building_area",
-                    "address"
-                ]
+                "name": "Taxi Stand"
             },
-            "amenity/atm": {
-                "icon": "bank",
-                "fields": [
-                    "operator"
-                ],
+            "amenity/telephone": {
+                "icon": "telephone",
                 "geometry": [
                     "point",
                     "vertex"
                 ],
                 "tags": {
-                    "amenity": "atm"
+                    "amenity": "telephone"
                 },
-                "name": "ATM"
+                "terms": [
+                    "phone"
+                ],
+                "name": "Telephone"
             },
-            "amenity/bank": {
-                "icon": "bank",
+            "amenity/theatre": {
+                "icon": "theatre",
                 "fields": [
-                    "atm",
-                    "building_area",
+                    "operator",
                     "address",
-                    "opening_hours"
+                    "building_area"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "terms": [
-                    "coffer",
-                    "countinghouse",
-                    "credit union",
-                    "depository",
-                    "exchequer",
-                    "fund",
-                    "hoard",
-                    "investment firm",
-                    "repository",
-                    "reserve",
-                    "reservoir",
-                    "safe",
-                    "savings",
-                    "stock",
-                    "stockpile",
-                    "store",
-                    "storehouse",
-                    "thrift",
-                    "treasury",
-                    "trust company",
-                    "vault"
+                    "theatre",
+                    "performance",
+                    "play",
+                    "musical"
                 ],
                 "tags": {
-                    "amenity": "bank"
+                    "amenity": "theatre"
                 },
-                "name": "Bank"
+                "name": "Theater"
             },
-            "amenity/bar": {
-                "icon": "bar",
+            "amenity/toilets": {
+                "icon": "toilets",
                 "fields": [
+                    "toilets/disposal",
+                    "operator",
                     "building_area",
-                    "address",
-                    "opening_hours",
-                    "smoking"
+                    "access_toilets"
                 ],
                 "geometry": [
                     "point",
                     "vertex",
                     "area"
                 ],
-                "tags": {
-                    "amenity": "bar"
-                },
-                "terms": [],
-                "name": "Bar"
-            },
-            "amenity/bbq": {
-                "geometry": [
-                    "point"
+                "terms": [
+                    "bathroom",
+                    "restroom",
+                    "outhouse",
+                    "privy",
+                    "head",
+                    "lavatory",
+                    "latrine",
+                    "water closet",
+                    "WC",
+                    "W.C."
                 ],
                 "tags": {
-                    "amenity": "bbq"
+                    "amenity": "toilets"
                 },
+                "name": "Toilets"
+            },
+            "amenity/townhall": {
+                "icon": "town-hall",
                 "fields": [
-                    "covered",
-                    "fuel"
-                ],
-                "terms": [
-                    "barbecue",
-                    "bbq",
-                    "grill"
+                    "operator",
+                    "address",
+                    "building_area"
                 ],
-                "name": "Barbecue/Grill"
-            },
-            "amenity/bench": {
                 "geometry": [
                     "point",
-                    "vertex",
-                    "line"
+                    "area"
+                ],
+                "terms": [
+                    "village",
+                    "city",
+                    "government",
+                    "courthouse",
+                    "municipal"
                 ],
                 "tags": {
-                    "amenity": "bench"
+                    "amenity": "townhall"
                 },
-                "fields": [
-                    "backrest"
-                ],
-                "name": "Bench"
+                "name": "Town Hall"
             },
-            "amenity/bicycle_parking": {
-                "icon": "bicycle",
+            "amenity/university": {
+                "icon": "college",
                 "fields": [
-                    "bicycle_parking",
-                    "capacity",
                     "operator",
-                    "covered",
-                    "access_simple"
+                    "address"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
+                "terms": [
+                    "college"
+                ],
                 "tags": {
-                    "amenity": "bicycle_parking"
+                    "amenity": "university"
                 },
-                "name": "Bicycle Parking"
+                "name": "University Grounds"
             },
-            "amenity/bicycle_rental": {
-                "icon": "bicycle",
+            "amenity/vending_machine": {
                 "fields": [
-                    "capacity",
-                    "network",
+                    "vending",
                     "operator"
                 ],
                 "geometry": [
-                    "point",
-                    "vertex",
-                    "area"
+                    "point"
+                ],
+                "terms": [
+                    "snack",
+                    "soda",
+                    "ticket"
                 ],
                 "tags": {
-                    "amenity": "bicycle_rental"
+                    "amenity": "vending_machine"
                 },
-                "name": "Bicycle Rental"
+                "name": "Vending Machine"
             },
-            "amenity/boat_rental": {
+            "amenity/veterinary": {
+                "icon": "dog-park",
+                "fields": [
+                    "operator",
+                    "address",
+                    "building_area",
+                    "opening_hours"
+                ],
                 "geometry": [
                     "point",
                     "area"
                 ],
+                "terms": [
+                    "pet clinic",
+                    "veterinarian",
+                    "animal hospital",
+                    "pet doctor"
+                ],
                 "tags": {
-                    "amenity": "boat_rental"
+                    "amenity": "veterinary"
                 },
-                "fields": [
-                    "operator"
-                ],
-                "name": "Boat Rental"
+                "name": "Veterinary"
             },
-            "amenity/cafe": {
-                "icon": "cafe",
-                "fields": [
-                    "cuisine",
-                    "internet_access",
-                    "building_area",
-                    "address",
-                    "opening_hours",
-                    "smoking"
-                ],
+            "amenity/waste_basket": {
+                "icon": "waste-basket",
                 "geometry": [
                     "point",
-                    "vertex",
-                    "area"
+                    "vertex"
                 ],
+                "tags": {
+                    "amenity": "waste_basket"
+                },
                 "terms": [
-                    "coffee",
-                    "tea",
-                    "coffee shop"
+                    "rubbish",
+                    "litter",
+                    "trash",
+                    "garbage"
                 ],
+                "name": "Waste Basket"
+            },
+            "area": {
+                "name": "Area",
                 "tags": {
-                    "amenity": "cafe"
+                    "area": "yes"
                 },
-                "name": "Cafe"
+                "geometry": [
+                    "area"
+                ],
+                "matchScore": 0.1
             },
-            "amenity/car_rental": {
-                "icon": "car",
+            "barrier": {
                 "geometry": [
                     "point",
+                    "vertex",
+                    "line",
                     "area"
                 ],
                 "tags": {
-                    "amenity": "car_rental"
+                    "barrier": "*"
                 },
                 "fields": [
-                    "operator"
+                    "barrier"
                 ],
-                "name": "Car Rental"
+                "name": "Barrier"
             },
-            "amenity/car_sharing": {
-                "icon": "car",
+            "barrier/block": {
+                "fields": [
+                    "access"
+                ],
                 "geometry": [
                     "point",
-                    "area"
+                    "vertex"
                 ],
                 "tags": {
-                    "amenity": "car_sharing"
+                    "barrier": "block"
                 },
+                "name": "Block"
+            },
+            "barrier/bollard": {
                 "fields": [
-                    "operator",
-                    "capacity"
+                    "access"
                 ],
-                "name": "Car Sharing"
-            },
-            "amenity/car_wash": {
-                "icon": "car",
                 "geometry": [
                     "point",
-                    "area"
+                    "vertex",
+                    "line"
                 ],
                 "tags": {
-                    "amenity": "car_wash"
+                    "barrier": "bollard"
                 },
-                "fields": [
-                    "building_area"
+                "name": "Bollard"
+            },
+            "barrier/cattle_grid": {
+                "geometry": [
+                    "vertex"
                 ],
-                "name": "Car Wash"
+                "tags": {
+                    "barrier": "cattle_grid"
+                },
+                "name": "Cattle Grid"
             },
-            "amenity/charging_station": {
-                "icon": "car",
+            "barrier/city_wall": {
                 "geometry": [
-                    "point",
+                    "line",
                     "area"
                 ],
                 "tags": {
-                    "amenity": "charging_station"
+                    "barrier": "city_wall"
                 },
+                "name": "City Wall"
+            },
+            "barrier/cycle_barrier": {
                 "fields": [
-                    "operator"
+                    "access"
                 ],
-                "terms": [
-                    "EV",
-                    "Electric Vehicle",
-                    "Supercharger"
+                "geometry": [
+                    "vertex"
                 ],
-                "name": "Charging Station"
+                "tags": {
+                    "barrier": "cycle_barrier"
+                },
+                "name": "Cycle Barrier"
             },
-            "amenity/childcare": {
-                "icon": "school",
-                "fields": [
-                    "building_area",
-                    "address"
-                ],
+            "barrier/ditch": {
                 "geometry": [
-                    "point",
-                    "vertex",
+                    "line",
                     "area"
                 ],
-                "terms": [
-                    "nursery",
-                    "orphanage",
-                    "playgroup"
+                "tags": {
+                    "barrier": "ditch"
+                },
+                "name": "Ditch"
+            },
+            "barrier/entrance": {
+                "icon": "entrance",
+                "geometry": [
+                    "vertex"
                 ],
                 "tags": {
-                    "amenity": "childcare"
+                    "barrier": "entrance"
                 },
-                "name": "Childcare"
+                "name": "Entrance",
+                "searchable": false
             },
-            "amenity/cinema": {
-                "icon": "cinema",
+            "barrier/fence": {
+                "geometry": [
+                    "line"
+                ],
+                "tags": {
+                    "barrier": "fence"
+                },
+                "name": "Fence"
+            },
+            "barrier/gate": {
                 "fields": [
-                    "building_area",
-                    "address"
+                    "access"
                 ],
                 "geometry": [
                     "point",
                     "vertex",
-                    "area"
-                ],
-                "terms": [
-                    "big screen",
-                    "bijou",
-                    "cine",
-                    "drive-in",
-                    "film",
-                    "flicks",
-                    "motion pictures",
-                    "movie house",
-                    "movie theater",
-                    "moving pictures",
-                    "nabes",
-                    "photoplay",
-                    "picture show",
-                    "pictures",
-                    "playhouse",
-                    "show",
-                    "silver screen"
+                    "line"
                 ],
                 "tags": {
-                    "amenity": "cinema"
+                    "barrier": "gate"
                 },
-                "name": "Cinema"
+                "name": "Gate"
             },
-            "amenity/clinic": {
-                "name": "Clinic",
+            "barrier/hedge": {
                 "geometry": [
-                    "point",
+                    "line",
                     "area"
                 ],
-                "terms": [
-                    "clinic",
-                    "medical clinic"
-                ],
                 "tags": {
-                    "amenity": "clinic"
+                    "barrier": "hedge"
                 },
-                "icon": "hospital",
-                "fields": [
-                    "building_area",
-                    "address",
-                    "opening_hours"
-                ]
+                "name": "Hedge"
             },
-            "amenity/clock": {
+            "barrier/kissing_gate": {
+                "fields": [
+                    "access"
+                ],
                 "geometry": [
-                    "point",
                     "vertex"
                 ],
                 "tags": {
-                    "amenity": "clock"
+                    "barrier": "kissing_gate"
                 },
-                "name": "Clock"
+                "name": "Kissing Gate"
             },
-            "amenity/college": {
-                "icon": "college",
+            "barrier/lift_gate": {
                 "fields": [
-                    "operator",
-                    "address"
+                    "access"
                 ],
                 "geometry": [
                     "point",
-                    "area"
+                    "vertex"
                 ],
                 "tags": {
-                    "amenity": "college"
+                    "barrier": "lift_gate"
                 },
-                "terms": [],
-                "name": "College"
+                "name": "Lift Gate"
             },
-            "amenity/compressed_air": {
-                "icon": "car",
+            "barrier/retaining_wall": {
                 "geometry": [
-                    "point",
+                    "line",
                     "area"
                 ],
                 "tags": {
-                    "amenity": "compressed_air"
+                    "barrier": "retaining_wall"
                 },
-                "name": "Compressed Air"
+                "name": "Retaining Wall"
             },
-            "amenity/courthouse": {
+            "barrier/stile": {
                 "fields": [
-                    "operator",
-                    "building_area",
-                    "address"
+                    "access"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
-                    "area"
+                    "vertex"
                 ],
                 "tags": {
-                    "amenity": "courthouse"
+                    "barrier": "stile"
                 },
-                "name": "Courthouse"
+                "name": "Stile"
             },
-            "amenity/dentist": {
-                "name": "Dentist",
-                "geometry": [
-                    "point",
-                    "area"
+            "barrier/toll_booth": {
+                "fields": [
+                    "access"
                 ],
-                "terms": [
-                    "dentist",
-                    "dentist's office"
+                "geometry": [
+                    "vertex"
                 ],
                 "tags": {
-                    "amenity": "dentist"
+                    "barrier": "toll_booth"
                 },
-                "icon": "hospital",
-                "fields": [
-                    "building_area",
-                    "address",
-                    "opening_hours"
-                ]
+                "name": "Toll Booth"
             },
-            "amenity/doctor": {
-                "name": "Doctor",
+            "barrier/wall": {
                 "geometry": [
-                    "point",
+                    "line",
                     "area"
                 ],
-                "terms": [
-                    "doctor",
-                    "doctor's office"
-                ],
                 "tags": {
-                    "amenity": "doctors"
+                    "barrier": "wall"
                 },
-                "icon": "hospital",
-                "fields": [
-                    "building_area",
-                    "address",
-                    "opening_hours"
-                ]
+                "name": "Wall"
             },
-            "amenity/dojo": {
-                "icon": "pitch",
+            "boundary/administrative": {
+                "name": "Administrative Boundary",
                 "geometry": [
-                    "point",
-                    "area"
-                ],
-                "terms": [
-                    "martial arts",
-                    "dojo",
-                    "dojang"
+                    "line"
                 ],
                 "tags": {
-                    "amenity": "dojo"
+                    "boundary": "administrative"
                 },
                 "fields": [
-                    "address",
-                    "sport"
-                ],
-                "name": "Dojo / Martial Arts Academy"
+                    "admin_level"
+                ]
             },
-            "amenity/drinking_water": {
-                "icon": "water",
+            "building": {
+                "icon": "building",
+                "fields": [
+                    "building",
+                    "levels",
+                    "address"
+                ],
                 "geometry": [
-                    "point"
+                    "area"
                 ],
                 "tags": {
-                    "amenity": "drinking_water"
+                    "building": "*"
                 },
-                "terms": [
-                    "water fountain",
-                    "potable water"
-                ],
-                "name": "Drinking Water"
+                "terms": [],
+                "name": "Building"
             },
-            "amenity/embassy": {
+            "building/apartments": {
+                "icon": "commercial",
+                "fields": [
+                    "address",
+                    "levels"
+                ],
                 "geometry": [
-                    "area",
-                    "point"
+                    "point",
+                    "area"
                 ],
                 "tags": {
-                    "amenity": "embassy"
+                    "building": "apartments"
                 },
-                "fields": [
-                    "country",
-                    "building_area"
-                ],
-                "icon": "embassy",
-                "name": "Embassy"
+                "name": "Apartments"
             },
-            "amenity/fast_food": {
-                "icon": "fast-food",
+            "building/barn": {
+                "icon": "building",
                 "fields": [
-                    "cuisine",
-                    "building_area",
                     "address",
-                    "opening_hours",
-                    "smoking"
+                    "levels"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "tags": {
-                    "amenity": "fast_food"
+                    "building": "barn"
                 },
-                "terms": [],
-                "name": "Fast Food"
+                "name": "Barn"
             },
-            "amenity/fire_station": {
-                "icon": "fire-station",
+            "building/bunker": {
                 "fields": [
-                    "operator",
-                    "building_area",
-                    "address"
+                    "address",
+                    "levels"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "tags": {
-                    "amenity": "fire_station"
+                    "building": "bunker"
                 },
-                "terms": [],
-                "name": "Fire Station"
+                "name": "Bunker",
+                "searchable": false
             },
-            "amenity/fountain": {
+            "building/cabin": {
+                "icon": "building",
+                "fields": [
+                    "address",
+                    "levels"
+                ],
                 "geometry": [
                     "point",
                     "area"
                 ],
                 "tags": {
-                    "amenity": "fountain"
+                    "building": "cabin"
                 },
-                "name": "Fountain"
+                "name": "Cabin"
             },
-            "amenity/fuel": {
-                "icon": "fuel",
+            "building/cathedral": {
+                "icon": "place-of-worship",
                 "fields": [
-                    "operator",
                     "address",
-                    "building_area"
+                    "levels"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
-                "terms": [
-                    "petrol",
-                    "fuel",
-                    "propane",
-                    "diesel",
-                    "lng",
-                    "cng",
-                    "biodiesel"
-                ],
                 "tags": {
-                    "amenity": "fuel"
+                    "building": "cathedral"
                 },
-                "name": "Gas Station"
+                "name": "Cathedral"
             },
-            "amenity/grave_yard": {
-                "icon": "cemetery",
+            "building/chapel": {
+                "icon": "place-of-worship",
                 "fields": [
-                    "religion",
-                    "denomination"
+                    "address",
+                    "levels"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "tags": {
-                    "amenity": "grave_yard"
+                    "building": "chapel"
                 },
-                "name": "Graveyard"
+                "name": "Chapel"
             },
-            "amenity/hospital": {
-                "icon": "hospital",
+            "building/church": {
+                "icon": "place-of-worship",
                 "fields": [
-                    "emergency",
-                    "address"
+                    "address",
+                    "levels"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
-                "terms": [
-                    "clinic",
-                    "emergency room",
-                    "health service",
-                    "hospice",
-                    "infirmary",
-                    "institution",
-                    "nursing home",
-                    "rest home",
-                    "sanatorium",
-                    "sanitarium",
-                    "sick bay",
-                    "surgery",
-                    "ward"
-                ],
                 "tags": {
-                    "amenity": "hospital"
+                    "building": "church"
                 },
-                "name": "Hospital Grounds"
+                "name": "Church"
             },
-            "amenity/kindergarten": {
-                "icon": "school",
+            "building/college": {
+                "icon": "building",
                 "fields": [
-                    "address"
+                    "address",
+                    "levels"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "terms": [
-                    "nursery",
-                    "preschool"
+                    "university"
                 ],
                 "tags": {
-                    "amenity": "kindergarten"
+                    "building": "college"
                 },
-                "name": "Kindergarten Grounds"
+                "name": "College Building"
             },
-            "amenity/library": {
-                "icon": "library",
+            "building/commercial": {
+                "icon": "commercial",
                 "fields": [
-                    "operator",
-                    "building_area",
-                    "address"
+                    "address",
+                    "smoking"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "tags": {
-                    "amenity": "library"
+                    "building": "commercial"
                 },
-                "terms": [],
-                "name": "Library"
+                "name": "Commercial Building"
             },
-            "amenity/marketplace": {
+            "building/construction": {
+                "icon": "building",
+                "fields": [
+                    "address",
+                    "levels"
+                ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "tags": {
-                    "amenity": "marketplace"
+                    "building": "construction"
                 },
-                "fields": [
-                    "building_area"
-                ],
-                "name": "Marketplace"
+                "name": "Building Under Construction"
             },
-            "amenity/nightclub": {
-                "icon": "bar",
+            "building/detached": {
+                "icon": "building",
                 "fields": [
-                    "building_area",
                     "address",
-                    "opening_hours",
-                    "smoking"
+                    "levels"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "tags": {
-                    "amenity": "nightclub"
+                    "building": "detached"
                 },
-                "terms": [
-                    "disco*",
-                    "night club",
-                    "dancing",
-                    "dance club"
-                ],
-                "name": "Nightclub"
+                "name": "Detached Home"
             },
-            "amenity/parking": {
-                "icon": "parking",
+            "building/dormitory": {
+                "icon": "building",
                 "fields": [
-                    "parking",
-                    "capacity",
-                    "fee",
-                    "access_simple",
-                    "supervised",
-                    "park_ride",
-                    "address"
+                    "address",
+                    "levels",
+                    "smoking"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "tags": {
-                    "amenity": "parking"
+                    "building": "dormitory"
                 },
-                "terms": [],
-                "name": "Car Parking"
+                "name": "Dormitory"
             },
-            "amenity/parking_entrance": {
+            "building/entrance": {
                 "icon": "entrance",
                 "geometry": [
                     "vertex"
                 ],
                 "tags": {
-                    "amenity": "parking_entrance"
+                    "building": "entrance"
                 },
-                "fields": [
-                    "access_simple",
-                    "ref"
-                ],
-                "name": "Parking Garage Entrance/Exit"
+                "name": "Entrance/Exit",
+                "searchable": false
             },
-            "amenity/pharmacy": {
-                "icon": "pharmacy",
+            "building/garage": {
                 "fields": [
-                    "operator",
-                    "building_area",
-                    "address",
-                    "opening_hours"
+                    "capacity"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "tags": {
-                    "amenity": "pharmacy"
+                    "building": "garage"
                 },
-                "terms": [],
-                "name": "Pharmacy"
+                "name": "Garage",
+                "icon": "warehouse"
             },
-            "amenity/place_of_worship": {
-                "icon": "place-of-worship",
+            "building/garages": {
+                "icon": "warehouse",
                 "fields": [
-                    "religion",
-                    "denomination",
-                    "building_area",
-                    "address"
+                    "capacity"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
-                "terms": [
-                    "abbey",
-                    "basilica",
-                    "bethel",
-                    "cathedral",
-                    "chancel",
-                    "chantry",
-                    "chapel",
-                    "church",
-                    "fold",
-                    "house of God",
-                    "house of prayer",
-                    "house of worship",
-                    "minster",
-                    "mission",
-                    "mosque",
-                    "oratory",
-                    "parish",
-                    "sacellum",
-                    "sanctuary",
-                    "shrine",
-                    "synagogue",
-                    "tabernacle",
-                    "temple"
-                ],
                 "tags": {
-                    "amenity": "place_of_worship"
+                    "building": "garages"
                 },
-                "name": "Place of Worship"
+                "name": "Garages"
             },
-            "amenity/place_of_worship/buddhist": {
-                "icon": "place-of-worship",
+            "building/greenhouse": {
+                "icon": "building",
                 "fields": [
-                    "denomination",
-                    "building_area",
-                    "address"
+                    "address",
+                    "levels"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
-                "terms": [
-                    "stupa",
-                    "vihara",
-                    "monastery",
-                    "temple",
-                    "pagoda",
-                    "zendo",
-                    "dojo"
-                ],
                 "tags": {
-                    "amenity": "place_of_worship",
-                    "religion": "buddhist"
+                    "building": "greenhouse"
                 },
-                "name": "Buddhist Temple"
+                "name": "Greenhouse"
             },
-            "amenity/place_of_worship/christian": {
-                "icon": "religious-christian",
+            "building/hospital": {
+                "icon": "building",
                 "fields": [
-                    "denomination",
-                    "building_area",
-                    "address"
+                    "address",
+                    "levels"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
-                "terms": [
-                    "christian",
-                    "abbey",
-                    "basilica",
-                    "bethel",
-                    "cathedral",
-                    "chancel",
-                    "chantry",
-                    "chapel",
-                    "church",
-                    "fold",
-                    "house of God",
-                    "house of prayer",
-                    "house of worship",
-                    "minster",
-                    "mission",
-                    "oratory",
-                    "parish",
-                    "sacellum",
-                    "sanctuary",
-                    "shrine",
-                    "tabernacle",
-                    "temple"
-                ],
                 "tags": {
-                    "amenity": "place_of_worship",
-                    "religion": "christian"
+                    "building": "hospital"
                 },
-                "name": "Church"
+                "name": "Hospital Building"
             },
-            "amenity/place_of_worship/jewish": {
-                "icon": "religious-jewish",
+            "building/hotel": {
+                "icon": "building",
                 "fields": [
-                    "denomination",
-                    "building_area",
-                    "address"
+                    "address",
+                    "levels",
+                    "smoking"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
-                "terms": [
-                    "jewish",
-                    "synagogue"
-                ],
                 "tags": {
-                    "amenity": "place_of_worship",
-                    "religion": "jewish"
+                    "building": "hotel"
                 },
-                "name": "Synagogue"
+                "name": "Hotel Building"
             },
-            "amenity/place_of_worship/muslim": {
-                "icon": "religious-muslim",
+            "building/house": {
+                "icon": "building",
                 "fields": [
-                    "denomination",
-                    "building_area",
-                    "address"
+                    "address",
+                    "levels"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
-                "terms": [
-                    "muslim",
-                    "mosque"
+                "tags": {
+                    "building": "house"
+                },
+                "name": "House"
+            },
+            "building/hut": {
+                "geometry": [
+                    "point",
+                    "area"
                 ],
                 "tags": {
-                    "amenity": "place_of_worship",
-                    "religion": "muslim"
+                    "building": "hut"
                 },
-                "name": "Mosque"
+                "name": "Hut"
             },
-            "amenity/police": {
-                "icon": "police",
+            "building/industrial": {
+                "icon": "industrial",
                 "fields": [
-                    "operator",
-                    "building_area",
-                    "address"
+                    "address",
+                    "levels"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
-                "terms": [
-                    "badge",
-                    "bear",
-                    "blue",
-                    "bluecoat",
-                    "bobby",
-                    "boy scout",
-                    "bull",
-                    "constable",
-                    "constabulary",
-                    "cop",
-                    "copper",
-                    "corps",
-                    "county mounty",
-                    "detective",
-                    "fed",
-                    "flatfoot",
-                    "force",
-                    "fuzz",
-                    "gendarme",
-                    "gumshoe",
-                    "heat",
-                    "law",
-                    "law enforcement",
-                    "man",
-                    "narc",
-                    "officers",
-                    "patrolman",
-                    "police"
-                ],
                 "tags": {
-                    "amenity": "police"
+                    "building": "industrial"
                 },
-                "name": "Police"
+                "name": "Industrial Building"
             },
-            "amenity/post_box": {
-                "icon": "post",
+            "building/kindergarten": {
+                "icon": "building",
                 "fields": [
-                    "operator",
-                    "collection_times"
+                    "address",
+                    "levels"
                 ],
                 "geometry": [
                     "point",
-                    "vertex"
+                    "area"
                 ],
-                "tags": {
-                    "amenity": "post_box"
-                },
                 "terms": [
-                    "letter drop",
-                    "letterbox",
-                    "mail drop",
-                    "mailbox",
-                    "pillar box",
-                    "postbox"
+                    "kindergarden",
+                    "pre-school"
                 ],
-                "name": "Mailbox"
+                "tags": {
+                    "building": "kindergarten"
+                },
+                "name": "Preschool/Kindergarten Building"
             },
-            "amenity/post_office": {
-                "icon": "post",
+            "building/public": {
+                "icon": "building",
                 "fields": [
-                    "operator",
-                    "collection_times",
-                    "building_area"
+                    "address",
+                    "levels",
+                    "smoking"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "tags": {
-                    "amenity": "post_office"
+                    "building": "public"
                 },
-                "name": "Post Office"
+                "name": "Public Building"
             },
-            "amenity/pub": {
-                "icon": "beer",
+            "building/residential": {
+                "icon": "building",
                 "fields": [
-                    "building_area",
                     "address",
-                    "opening_hours",
-                    "smoking"
+                    "levels"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "tags": {
-                    "amenity": "pub"
+                    "building": "residential"
                 },
-                "terms": [],
-                "name": "Pub"
+                "name": "Residential Building"
             },
-            "amenity/ranger_station": {
+            "building/retail": {
+                "icon": "building",
                 "fields": [
-                    "building_area",
-                    "opening_hours",
-                    "operator",
-                    "phone"
+                    "address",
+                    "levels",
+                    "smoking"
                 ],
                 "geometry": [
                     "point",
                     "area"
                 ],
-                "terms": [
-                    "visitor center",
-                    "visitor centre",
-                    "permit center",
-                    "permit centre",
-                    "backcountry office",
-                    "warden office",
-                    "warden center"
-                ],
                 "tags": {
-                    "amenity": "ranger_station"
+                    "building": "retail"
                 },
-                "name": "Ranger Station"
+                "name": "Retail Building"
             },
-            "amenity/recycling": {
-                "icon": "recycling",
+            "building/roof": {
+                "icon": "building",
                 "fields": [
-                    "recycling/cans",
-                    "recycling/glass",
-                    "recycling/paper",
-                    "recycling/clothes"
+                    "address"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
-                "terms": [],
                 "tags": {
-                    "amenity": "recycling"
+                    "building": "roof"
                 },
-                "name": "Recycling"
+                "name": "Roof"
             },
-            "amenity/restaurant": {
-                "icon": "restaurant",
+            "building/school": {
+                "icon": "building",
                 "fields": [
-                    "cuisine",
-                    "building_area",
                     "address",
-                    "opening_hours",
-                    "capacity",
-                    "smoking"
+                    "levels"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "terms": [
-                    "bar",
-                    "cafeteria",
-                    "café",
-                    "canteen",
-                    "chophouse",
-                    "coffee shop",
-                    "diner",
-                    "dining room",
-                    "dive*",
-                    "doughtnut shop",
-                    "drive-in",
-                    "eatery",
-                    "eating house",
-                    "eating place",
-                    "fast-food place",
-                    "fish and chips",
-                    "greasy spoon",
-                    "grill",
-                    "hamburger stand",
-                    "hashery",
-                    "hideaway",
-                    "hotdog stand",
-                    "inn",
-                    "joint*",
-                    "luncheonette",
-                    "lunchroom",
-                    "night club",
-                    "outlet*",
-                    "pizzeria",
-                    "saloon",
-                    "soda fountain",
-                    "watering hole"
+                    "academy",
+                    "elementary school",
+                    "middle school",
+                    "high school"
                 ],
                 "tags": {
-                    "amenity": "restaurant"
+                    "building": "school"
                 },
-                "name": "Restaurant"
+                "name": "School Building"
             },
-            "amenity/school": {
-                "icon": "school",
+            "building/shed": {
+                "icon": "building",
                 "fields": [
-                    "operator",
-                    "address"
+                    "address",
+                    "levels"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
-                "terms": [
-                    "academy",
-                    "alma mater",
-                    "blackboard",
-                    "college",
-                    "department",
-                    "discipline",
-                    "establishment",
-                    "faculty",
-                    "hall",
-                    "halls of ivy",
-                    "institute",
-                    "institution",
-                    "jail*",
-                    "schoolhouse",
-                    "seminary",
-                    "university"
-                ],
                 "tags": {
-                    "amenity": "school"
+                    "building": "shed"
                 },
-                "name": "School Grounds"
+                "name": "Shed"
             },
-            "amenity/shelter": {
+            "building/stable": {
+                "icon": "building",
                 "fields": [
-                    "shelter_type"
+                    "address",
+                    "levels"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "tags": {
-                    "amenity": "shelter"
+                    "building": "stable"
                 },
-                "terms": [
-                    "lean-to"
-                ],
-                "name": "Shelter"
+                "name": "Stable"
             },
-            "amenity/social_facility": {
-                "name": "Social Facility",
+            "building/static_caravan": {
+                "icon": "building",
+                "fields": [
+                    "address",
+                    "levels"
+                ],
                 "geometry": [
                     "point",
                     "area"
                 ],
-                "terms": [],
                 "tags": {
-                    "amenity": "social_facility"
+                    "building": "static_caravan"
                 },
+                "name": "Static Mobile Home"
+            },
+            "building/terrace": {
+                "icon": "building",
                 "fields": [
-                    "social_facility_for",
                     "address",
-                    "phone",
-                    "opening_hours",
-                    "wheelchair",
-                    "operator"
-                ]
-            },
-            "amenity/social_facility/food_bank": {
-                "name": "Food Bank",
+                    "levels"
+                ],
                 "geometry": [
                     "point",
                     "area"
                 ],
-                "terms": [],
                 "tags": {
-                    "amenity": "social_facility",
-                    "social_facility": "food_bank"
+                    "building": "terrace"
                 },
+                "name": "Row Houses"
+            },
+            "building/train_station": {
+                "icon": "building",
                 "fields": [
-                    "social_facility_for",
                     "address",
-                    "phone",
-                    "opening_hours",
-                    "wheelchair",
-                    "operator"
-                ]
-            },
-            "amenity/social_facility/group_home": {
-                "name": "Group Home",
+                    "levels"
+                ],
                 "geometry": [
                     "point",
+                    "vertex",
                     "area"
                 ],
-                "terms": [
-                    "elderly",
-                    "old",
-                    "senior living"
-                ],
                 "tags": {
-                    "amenity": "social_facility",
-                    "social_facility": "group_home",
-                    "social_facility_for": "senior"
+                    "building": "train_station"
                 },
+                "name": "Train Station",
+                "searchable": false
+            },
+            "building/university": {
+                "icon": "building",
                 "fields": [
-                    "social_facility_for",
                     "address",
-                    "phone",
-                    "opening_hours",
-                    "wheelchair",
-                    "operator"
-                ]
-            },
-            "amenity/social_facility/homeless_shelter": {
-                "name": "Homeless Shelter",
+                    "levels"
+                ],
                 "geometry": [
                     "point",
                     "area"
                 ],
                 "terms": [
-                    "houseless",
-                    "unhoused",
-                    "displaced"
+                    "college"
                 ],
                 "tags": {
-                    "amenity": "social_facility",
-                    "social_facility": "shelter",
-                    "social_facility:for": "homeless"
+                    "building": "university"
                 },
+                "name": "University Building"
+            },
+            "building/warehouse": {
+                "icon": "building",
                 "fields": [
-                    "social_facility_for",
                     "address",
-                    "phone",
-                    "opening_hours",
-                    "wheelchair",
-                    "operator"
-                ]
-            },
-            "amenity/studio": {
-                "name": "Studio",
+                    "levels"
+                ],
                 "geometry": [
                     "point",
                     "area"
                 ],
-                "terms": [
-                    "recording studio",
-                    "studio",
-                    "radio",
-                    "radio studio",
-                    "television",
-                    "television studio"
-                ],
                 "tags": {
-                    "amenity": "studio"
+                    "building": "warehouse"
                 },
-                "icon": "music",
+                "name": "Warehouse"
+            },
+            "craft": {
+                "icon": "marker-stroked",
                 "fields": [
+                    "craft",
+                    "operator",
+                    "address",
                     "building_area",
-                    "studio_type",
-                    "address"
-                ]
-            },
-            "amenity/swimming_pool": {
+                    "opening_hours"
+                ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "tags": {
-                    "amenity": "swimming_pool"
+                    "craft": "*"
                 },
-                "icon": "swimming",
-                "searchable": false,
-                "name": "Swimming Pool"
+                "terms": [],
+                "name": "Craft"
             },
-            "amenity/taxi": {
+            "craft/basket_maker": {
+                "icon": "art-gallery",
                 "fields": [
                     "operator",
-                    "capacity"
+                    "address",
+                    "building_area",
+                    "opening_hours"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
-                "terms": [
-                    "cab"
-                ],
                 "tags": {
-                    "amenity": "taxi"
+                    "craft": "basket_maker"
                 },
-                "name": "Taxi Stand"
+                "name": "Basket Maker"
             },
-            "amenity/telephone": {
-                "icon": "telephone",
+            "craft/beekeeper": {
+                "icon": "farm",
+                "fields": [
+                    "operator",
+                    "address",
+                    "building_area",
+                    "opening_hours"
+                ],
                 "geometry": [
                     "point",
-                    "vertex"
+                    "area"
                 ],
                 "tags": {
-                    "amenity": "telephone"
+                    "craft": "beekeeper"
                 },
-                "terms": [
-                    "phone"
-                ],
-                "name": "Telephone"
+                "name": "Beekeeper"
             },
-            "amenity/theatre": {
-                "icon": "theatre",
+            "craft/blacksmith": {
+                "icon": "farm",
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
-                "terms": [
-                    "theatre",
-                    "performance",
-                    "play",
-                    "musical"
-                ],
                 "tags": {
-                    "amenity": "theatre"
+                    "craft": "blacksmith"
                 },
-                "name": "Theater"
+                "name": "Blacksmith"
             },
-            "amenity/toilets": {
+            "craft/boatbuilder": {
+                "icon": "marker-stroked",
                 "fields": [
-                    "toilets/disposal",
                     "operator",
+                    "address",
                     "building_area",
-                    "fee",
-                    "access_simple"
+                    "opening_hours"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
-                "terms": [
-                    "bathroom",
-                    "restroom",
-                    "outhouse",
-                    "privy",
-                    "head",
-                    "lavatory",
-                    "latrine",
-                    "water closet",
-                    "WC",
-                    "W.C."
-                ],
                 "tags": {
-                    "amenity": "toilets"
+                    "craft": "boatbuilder"
                 },
-                "icon": "toilets",
-                "name": "Toilets"
+                "name": "Boat Builder"
             },
-            "amenity/townhall": {
-                "icon": "town-hall",
+            "craft/bookbinder": {
+                "icon": "library",
                 "fields": [
+                    "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "terms": [
-                    "village hall",
-                    "city government",
-                    "courthouse",
-                    "municipal building",
-                    "municipal center",
-                    "municipal centre"
+                    "book repair"
                 ],
                 "tags": {
-                    "amenity": "townhall"
+                    "craft": "bookbinder"
                 },
-                "name": "Town Hall"
+                "name": "Bookbinder"
             },
-            "amenity/university": {
-                "icon": "college",
+            "craft/brewery": {
+                "icon": "beer",
                 "fields": [
                     "operator",
-                    "address"
+                    "address",
+                    "building_area",
+                    "opening_hours"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
-                "tags": {
-                    "amenity": "university"
-                },
                 "terms": [
-                    "college"
-                ],
-                "name": "University"
-            },
-            "amenity/vending_machine": {
-                "fields": [
-                    "vending",
-                    "operator"
-                ],
-                "geometry": [
-                    "point"
+                    "beer",
+                    "bier"
                 ],
                 "tags": {
-                    "amenity": "vending_machine"
+                    "craft": "brewery"
                 },
-                "name": "Vending Machine"
+                "name": "Brewery"
             },
-            "amenity/veterinary": {
-                "fields": [],
+            "craft/carpenter": {
+                "icon": "logging",
+                "fields": [
+                    "operator",
+                    "address",
+                    "building_area",
+                    "opening_hours"
+                ],
                 "geometry": [
                     "point",
                     "area"
                 ],
                 "terms": [
-                    "pet clinic",
-                    "veterinarian",
-                    "animal hospital",
-                    "pet doctor"
+                    "woodworker"
                 ],
                 "tags": {
-                    "amenity": "veterinary"
+                    "craft": "carpenter"
                 },
-                "name": "Veterinary"
+                "name": "Carpenter"
             },
-            "amenity/waste_basket": {
-                "icon": "waste-basket",
+            "craft/carpet_layer": {
+                "icon": "square",
+                "fields": [
+                    "operator",
+                    "address",
+                    "building_area",
+                    "opening_hours"
+                ],
                 "geometry": [
                     "point",
-                    "vertex"
+                    "area"
                 ],
                 "tags": {
-                    "amenity": "waste_basket"
+                    "craft": "carpet_layer"
                 },
-                "terms": [
-                    "rubbish bin",
-                    "litter bin",
-                    "trash can",
-                    "garbage can"
-                ],
-                "name": "Waste Basket"
+                "name": "Carpet Layer"
             },
-            "area": {
-                "name": "Area",
-                "tags": {
-                    "area": "yes"
-                },
-                "geometry": [
-                    "area"
+            "craft/caterer": {
+                "icon": "bakery",
+                "fields": [
+                    "cuisine",
+                    "operator",
+                    "address",
+                    "building_area",
+                    "opening_hours"
                 ],
-                "matchScore": 0.1
-            },
-            "barrier": {
                 "geometry": [
                     "point",
-                    "vertex",
-                    "line",
                     "area"
                 ],
                 "tags": {
-                    "barrier": "*"
+                    "craft": "caterer"
                 },
-                "fields": [
-                    "barrier"
-                ],
-                "name": "Barrier"
+                "name": "Caterer"
             },
-            "barrier/block": {
+            "craft/clockmaker": {
+                "icon": "circle-stroked",
                 "fields": [
-                    "access"
+                    "operator",
+                    "address",
+                    "building_area",
+                    "opening_hours"
                 ],
                 "geometry": [
                     "point",
-                    "vertex"
+                    "area"
                 ],
                 "tags": {
-                    "barrier": "block"
+                    "craft": "clockmaker"
                 },
-                "name": "Block"
+                "name": "Clockmaker"
             },
-            "barrier/bollard": {
+            "craft/confectionary": {
+                "icon": "bakery",
                 "fields": [
-                    "access"
+                    "operator",
+                    "address",
+                    "building_area",
+                    "opening_hours"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
-                    "line"
+                    "area"
                 ],
-                "tags": {
-                    "barrier": "bollard"
-                },
-                "name": "Bollard"
-            },
-            "barrier/cattle_grid": {
-                "geometry": [
-                    "vertex"
+                "terms": [
+                    "sweets",
+                    "candy"
                 ],
                 "tags": {
-                    "barrier": "cattle_grid"
+                    "craft": "confectionary"
                 },
-                "name": "Cattle Grid"
+                "name": "Confectionary"
             },
-            "barrier/city_wall": {
+            "craft/dressmaker": {
+                "icon": "clothing-store",
+                "fields": [
+                    "operator",
+                    "address",
+                    "building_area",
+                    "opening_hours"
+                ],
                 "geometry": [
-                    "line",
+                    "point",
                     "area"
                 ],
+                "terms": [
+                    "seamstress"
+                ],
                 "tags": {
-                    "barrier": "city_wall"
+                    "craft": "dressmaker"
                 },
-                "name": "City Wall"
+                "name": "Dressmaker"
             },
-            "barrier/cycle_barrier": {
+            "craft/electrician": {
+                "icon": "marker-stroked",
                 "fields": [
-                    "access"
-                ],
-                "geometry": [
-                    "vertex"
+                    "operator",
+                    "address",
+                    "building_area",
+                    "opening_hours"
                 ],
-                "tags": {
-                    "barrier": "cycle_barrier"
-                },
-                "name": "Cycle Barrier"
-            },
-            "barrier/ditch": {
                 "geometry": [
-                    "line",
+                    "point",
                     "area"
                 ],
-                "tags": {
-                    "barrier": "ditch"
-                },
-                "name": "Ditch"
-            },
-            "barrier/entrance": {
-                "icon": "entrance",
-                "geometry": [
-                    "vertex"
+                "terms": [
+                    "power",
+                    "wire"
                 ],
                 "tags": {
-                    "barrier": "entrance"
+                    "craft": "electrician"
                 },
-                "name": "Entrance",
-                "searchable": false
+                "name": "Electrician"
             },
-            "barrier/fence": {
+            "craft/gardener": {
+                "icon": "garden",
+                "fields": [
+                    "operator",
+                    "address",
+                    "building_area",
+                    "opening_hours"
+                ],
                 "geometry": [
-                    "line"
+                    "point",
+                    "area"
+                ],
+                "terms": [
+                    "landscaper",
+                    "grounds keeper"
                 ],
                 "tags": {
-                    "barrier": "fence"
+                    "craft": "gardener"
                 },
-                "name": "Fence"
+                "name": "Gardener"
             },
-            "barrier/gate": {
+            "craft/glaziery": {
+                "icon": "fire-station",
                 "fields": [
-                    "access"
+                    "operator",
+                    "address",
+                    "building_area",
+                    "opening_hours"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
-                    "line"
+                    "area"
+                ],
+                "terms": [
+                    "glass",
+                    "stained-glass",
+                    "window"
                 ],
                 "tags": {
-                    "barrier": "gate"
+                    "craft": "glaziery"
                 },
-                "name": "Gate"
+                "name": "Glaziery"
             },
-            "barrier/hedge": {
+            "craft/handicraft": {
+                "icon": "art-gallery",
+                "fields": [
+                    "operator",
+                    "address",
+                    "building_area",
+                    "opening_hours"
+                ],
                 "geometry": [
-                    "line",
+                    "point",
                     "area"
                 ],
                 "tags": {
-                    "barrier": "hedge"
+                    "craft": "handicraft"
                 },
-                "name": "Hedge"
+                "name": "Handicraft"
             },
-            "barrier/kissing_gate": {
+            "craft/hvac": {
+                "icon": "marker-stroked",
                 "fields": [
-                    "access"
+                    "operator",
+                    "address",
+                    "building_area",
+                    "opening_hours"
                 ],
                 "geometry": [
-                    "vertex"
+                    "point",
+                    "area"
+                ],
+                "terms": [
+                    "heat*",
+                    "vent*",
+                    "air conditioning"
                 ],
                 "tags": {
-                    "barrier": "kissing_gate"
+                    "craft": "hvac"
                 },
-                "name": "Kissing Gate"
+                "name": "HVAC"
             },
-            "barrier/lift_gate": {
+            "craft/insulator": {
+                "icon": "marker-stroked",
                 "fields": [
-                    "access"
+                    "operator",
+                    "address",
+                    "building_area",
+                    "opening_hours"
                 ],
                 "geometry": [
                     "point",
-                    "vertex"
+                    "area"
                 ],
                 "tags": {
-                    "barrier": "lift_gate"
+                    "craft": "insulation"
                 },
-                "name": "Lift Gate"
+                "name": "Insulator"
             },
-            "barrier/retaining_wall": {
+            "craft/jeweler": {
+                "icon": "marker-stroked",
+                "fields": [
+                    "operator",
+                    "address",
+                    "building_area",
+                    "opening_hours"
+                ],
                 "geometry": [
-                    "line",
+                    "point",
                     "area"
                 ],
                 "tags": {
-                    "barrier": "retaining_wall"
+                    "craft": "jeweler"
                 },
-                "name": "Retaining Wall"
+                "name": "Jeweler",
+                "searchable": false
             },
-            "barrier/stile": {
+            "craft/key_cutter": {
+                "icon": "marker-stroked",
                 "fields": [
-                    "access"
+                    "operator",
+                    "address",
+                    "building_area",
+                    "opening_hours"
                 ],
                 "geometry": [
                     "point",
-                    "vertex"
+                    "area"
                 ],
                 "tags": {
-                    "barrier": "stile"
+                    "craft": "key_cutter"
                 },
-                "name": "Stile"
+                "name": "Key Cutter"
             },
-            "barrier/toll_booth": {
+            "craft/locksmith": {
+                "icon": "marker-stroked",
                 "fields": [
-                    "access"
+                    "operator",
+                    "address",
+                    "building_area",
+                    "opening_hours"
                 ],
                 "geometry": [
-                    "vertex"
+                    "point",
+                    "area"
                 ],
                 "tags": {
-                    "barrier": "toll_booth"
+                    "craft": "locksmith"
                 },
-                "name": "Toll Booth"
+                "name": "Locksmith",
+                "searchable": false
             },
-            "barrier/wall": {
+            "craft/metal_construction": {
+                "icon": "marker-stroked",
+                "fields": [
+                    "operator",
+                    "address",
+                    "building_area",
+                    "opening_hours"
+                ],
                 "geometry": [
-                    "line",
+                    "point",
                     "area"
                 ],
                 "tags": {
-                    "barrier": "wall"
+                    "craft": "metal_construction"
                 },
-                "name": "Wall"
+                "name": "Metal Construction"
             },
-            "boundary/administrative": {
-                "name": "Administrative Boundary",
+            "craft/optician": {
+                "icon": "marker-stroked",
+                "fields": [
+                    "operator",
+                    "address",
+                    "building_area",
+                    "opening_hours"
+                ],
                 "geometry": [
-                    "line"
+                    "point",
+                    "area"
                 ],
                 "tags": {
-                    "boundary": "administrative"
+                    "craft": "optician"
                 },
-                "fields": [
-                    "admin_level"
-                ]
+                "name": "Optician",
+                "searchable": false
             },
-            "building": {
-                "icon": "building",
+            "craft/painter": {
+                "icon": "art-gallery",
                 "fields": [
-                    "building",
-                    "levels",
-                    "address"
+                    "operator",
+                    "address",
+                    "building_area",
+                    "opening_hours"
                 ],
                 "geometry": [
+                    "point",
                     "area"
                 ],
                 "tags": {
-                    "building": "*"
+                    "craft": "painter"
                 },
-                "terms": [],
-                "name": "Building"
+                "name": "Painter"
             },
-            "building/apartments": {
-                "icon": "commercial",
+            "craft/photographer": {
+                "icon": "camera",
                 "fields": [
+                    "operator",
                     "address",
-                    "levels"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "tags": {
-                    "building": "apartments"
+                    "craft": "photographer"
                 },
-                "name": "Apartments"
+                "name": "Photographer"
             },
-            "building/barn": {
-                "icon": "building",
+            "craft/photographic_laboratory": {
+                "icon": "camera",
                 "fields": [
+                    "operator",
                     "address",
-                    "levels"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
+                "terms": [
+                    "film"
+                ],
                 "tags": {
-                    "building": "barn"
+                    "craft": "photographic_laboratory"
                 },
-                "name": "Barn"
+                "name": "Photographic Laboratory"
             },
-            "building/bunker": {
+            "craft/plasterer": {
+                "icon": "marker-stroked",
                 "fields": [
+                    "operator",
                     "address",
-                    "levels"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "tags": {
-                    "building": "bunker"
+                    "craft": "plasterer"
                 },
-                "name": "Bunker",
-                "searchable": false
+                "name": "Plasterer"
             },
-            "building/cabin": {
-                "icon": "building",
+            "craft/plumber": {
+                "icon": "marker-stroked",
                 "fields": [
+                    "operator",
                     "address",
-                    "levels"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
+                "terms": [
+                    "pipe"
+                ],
                 "tags": {
-                    "building": "cabin"
+                    "craft": "plumber"
                 },
-                "name": "Cabin"
+                "name": "Plumber"
             },
-            "building/cathedral": {
-                "icon": "place-of-worship",
+            "craft/pottery": {
+                "icon": "art-gallery",
                 "fields": [
+                    "operator",
                     "address",
-                    "levels"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
+                "terms": [
+                    "ceramic"
+                ],
                 "tags": {
-                    "building": "cathedral"
+                    "craft": "pottery"
                 },
-                "name": "Cathedral"
+                "name": "Pottery"
             },
-            "building/chapel": {
-                "icon": "place-of-worship",
+            "craft/rigger": {
+                "icon": "marker-stroked",
                 "fields": [
+                    "operator",
                     "address",
-                    "levels"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "tags": {
-                    "building": "chapel"
+                    "craft": "rigger"
                 },
-                "name": "Chapel"
+                "name": "Rigger"
             },
-            "building/church": {
-                "icon": "place-of-worship",
+            "craft/roofer": {
+                "icon": "marker-stroked",
                 "fields": [
+                    "operator",
                     "address",
-                    "levels"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "tags": {
-                    "building": "church"
+                    "craft": "roofer"
                 },
-                "name": "Church"
+                "name": "Roofer"
             },
-            "building/commercial": {
-                "icon": "commercial",
+            "craft/saddler": {
+                "icon": "marker-stroked",
                 "fields": [
+                    "operator",
                     "address",
-                    "smoking"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "tags": {
-                    "building": "commercial"
+                    "craft": "saddler"
                 },
-                "name": "Commercial Building"
+                "name": "Saddler"
             },
-            "building/construction": {
-                "icon": "building",
+            "craft/sailmaker": {
+                "icon": "marker-stroked",
                 "fields": [
+                    "operator",
                     "address",
-                    "levels"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "tags": {
-                    "building": "construction"
+                    "craft": "sailmaker"
                 },
-                "name": "Building Under Construction"
+                "name": "Sailmaker"
             },
-            "building/detached": {
-                "icon": "building",
+            "craft/sawmill": {
+                "icon": "park",
                 "fields": [
+                    "operator",
                     "address",
-                    "levels"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
+                "terms": [
+                    "lumber"
+                ],
                 "tags": {
-                    "building": "detached"
+                    "craft": "sawmill"
                 },
-                "name": "Detached Home"
+                "name": "Sawmill"
             },
-            "building/dormitory": {
-                "icon": "building",
+            "craft/scaffolder": {
+                "icon": "marker-stroked",
                 "fields": [
+                    "operator",
                     "address",
-                    "levels",
-                    "smoking"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "tags": {
-                    "building": "dormitory"
+                    "craft": "scaffolder"
                 },
-                "name": "Dormitory"
+                "name": "Scaffolder"
             },
-            "building/entrance": {
-                "icon": "entrance",
+            "craft/sculpter": {
+                "icon": "art-gallery",
+                "fields": [
+                    "operator",
+                    "address",
+                    "building_area",
+                    "opening_hours"
+                ],
                 "geometry": [
-                    "vertex"
+                    "point",
+                    "area"
                 ],
                 "tags": {
-                    "building": "entrance"
+                    "craft": "sculpter"
                 },
-                "name": "Entrance/Exit",
-                "searchable": false
+                "name": "Sculpter"
             },
-            "building/garage": {
+            "craft/shoemaker": {
+                "icon": "marker-stroked",
                 "fields": [
-                    "capacity"
+                    "operator",
+                    "address",
+                    "building_area",
+                    "opening_hours"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
+                "terms": [
+                    "cobbler"
+                ],
                 "tags": {
-                    "building": "garage"
+                    "craft": "shoemaker"
                 },
-                "name": "Garage",
-                "icon": "warehouse"
+                "name": "Shoemaker"
             },
-            "building/garages": {
-                "icon": "warehouse",
+            "craft/stonemason": {
+                "icon": "marker-stroked",
                 "fields": [
-                    "capacity"
+                    "operator",
+                    "address",
+                    "building_area",
+                    "opening_hours"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
+                "terms": [
+                    "masonry"
+                ],
                 "tags": {
-                    "building": "garages"
+                    "craft": "stonemason"
                 },
-                "name": "Garages"
+                "name": "Stonemason"
             },
-            "building/greenhouse": {
-                "icon": "building",
+            "craft/sweep": {
+                "icon": "marker-stroked",
                 "fields": [
+                    "operator",
                     "address",
-                    "levels"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "tags": {
-                    "building": "greenhouse"
+                    "craft": "sweep"
                 },
-                "name": "Greenhouse"
+                "name": "Chimney Sweep"
             },
-            "building/hospital": {
-                "icon": "building",
+            "craft/tailor": {
+                "icon": "clothing-store",
                 "fields": [
+                    "operator",
                     "address",
-                    "levels"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
+                "terms": [
+                    "clothes",
+                    "suit"
+                ],
                 "tags": {
-                    "building": "hospital"
+                    "craft": "tailor"
                 },
-                "name": "Hospital Building"
+                "name": "Tailor",
+                "searchable": false
             },
-            "building/hotel": {
-                "icon": "building",
+            "craft/tiler": {
+                "icon": "marker-stroked",
                 "fields": [
+                    "operator",
                     "address",
-                    "levels",
-                    "smoking"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "tags": {
-                    "building": "hotel"
+                    "craft": "tiler"
                 },
-                "name": "Hotel Building"
+                "name": "Tiler"
             },
-            "building/house": {
-                "icon": "building",
+            "craft/tinsmith": {
+                "icon": "marker-stroked",
                 "fields": [
+                    "operator",
                     "address",
-                    "levels"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "geometry": [
                     "point",
                     "area"
                 ],
                 "tags": {
-                    "building": "house"
+                    "craft": "tinsmith"
                 },
-                "name": "House"
+                "name": "Tinsmith"
             },
-            "building/hut": {
+            "craft/upholsterer": {
+                "icon": "marker-stroked",
+                "fields": [
+                    "operator",
+                    "address",
+                    "building_area",
+                    "opening_hours"
+                ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "tags": {
-                    "building": "hut"
+                    "craft": "upholsterer"
                 },
-                "name": "Hut"
+                "name": "Upholsterer"
             },
-            "building/industrial": {
-                "icon": "industrial",
+            "craft/watchmaker": {
+                "icon": "circle-stroked",
                 "fields": [
+                    "operator",
                     "address",
-                    "levels"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "tags": {
-                    "building": "industrial"
+                    "craft": "watchmaker"
                 },
-                "name": "Industrial Building"
+                "name": "Watchmaker"
             },
-            "building/public": {
-                "icon": "building",
+            "craft/window_construction": {
+                "icon": "marker-stroked",
                 "fields": [
+                    "operator",
                     "address",
-                    "levels",
-                    "smoking"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
+                "terms": [
+                    "glass"
+                ],
                 "tags": {
-                    "building": "public"
+                    "craft": "window_construction"
                 },
-                "name": "Public Building"
+                "name": "Window Construction"
             },
-            "building/residential": {
-                "icon": "building",
+            "craft/winery": {
+                "icon": "alcohol-shop",
                 "fields": [
+                    "operator",
                     "address",
-                    "levels"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "tags": {
-                    "building": "residential"
+                    "craft": "winery"
                 },
-                "name": "Residential Building"
+                "name": "Winery"
             },
-            "building/retail": {
-                "icon": "building",
+            "embankment": {
+                "geometry": [
+                    "line"
+                ],
+                "tags": {
+                    "embankment": "yes"
+                },
+                "name": "Embankment",
+                "matchScore": 0.2
+            },
+            "emergency/ambulance_station": {
+                "icon": "hospital",
                 "fields": [
-                    "address",
-                    "levels",
-                    "smoking"
+                    "operator",
+                    "building_area",
+                    "address"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
+                "terms": [
+                    "EMS",
+                    "EMT",
+                    "rescue"
+                ],
                 "tags": {
-                    "building": "retail"
+                    "emergency": "ambulance_station"
                 },
-                "name": "Retail Building"
+                "name": "Ambulance Station"
             },
-            "building/roof": {
-                "icon": "building",
+            "emergency/fire_hydrant": {
                 "fields": [
-                    "address",
-                    "levels"
+                    "fire_hydrant/type"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
-                    "area"
+                    "vertex"
                 ],
                 "tags": {
-                    "building": "roof"
+                    "emergency": "fire_hydrant"
                 },
-                "name": "Roof"
+                "name": "Fire Hydrant"
             },
-            "building/school": {
-                "icon": "building",
+            "emergency/phone": {
+                "icon": "emergency-telephone",
                 "fields": [
-                    "address",
-                    "levels"
+                    "operator"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
-                    "area"
+                    "vertex"
+                ],
+                "tags": {
+                    "emergency": "phone"
+                },
+                "name": "Emergency Phone"
+            },
+            "entrance": {
+                "icon": "entrance",
+                "geometry": [
+                    "vertex"
+                ],
+                "tags": {
+                    "entrance": "*"
+                },
+                "fields": [
+                    "entrance",
+                    "access_simple",
+                    "address"
+                ],
+                "name": "Entrance/Exit"
+            },
+            "footway/crossing": {
+                "fields": [
+                    "crossing",
+                    "access",
+                    "surface",
+                    "sloped_curb",
+                    "tactile_paving"
+                ],
+                "geometry": [
+                    "line"
                 ],
                 "tags": {
-                    "building": "school"
+                    "highway": "footway",
+                    "footway": "crossing"
                 },
-                "name": "School Building"
+                "terms": [],
+                "name": "Crossing"
             },
-            "building/shed": {
-                "icon": "building",
+            "footway/crosswalk": {
                 "fields": [
-                    "address",
-                    "levels"
+                    "crossing",
+                    "access",
+                    "surface",
+                    "sloped_curb",
+                    "tactile_paving"
                 ],
                 "geometry": [
-                    "point",
-                    "vertex",
-                    "area"
+                    "line"
                 ],
                 "tags": {
-                    "building": "shed"
+                    "highway": "footway",
+                    "footway": "crossing",
+                    "crossing": "zebra"
                 },
-                "name": "Shed"
+                "terms": [
+                    "zebra crossing"
+                ],
+                "name": "Crosswalk"
             },
-            "building/stable": {
-                "icon": "building",
+            "footway/sidewalk": {
                 "fields": [
-                    "address",
-                    "levels"
+                    "surface",
+                    "lit",
+                    "width",
+                    "structure",
+                    "access"
                 ],
                 "geometry": [
-                    "point",
-                    "vertex",
-                    "area"
+                    "line"
                 ],
                 "tags": {
-                    "building": "stable"
+                    "highway": "footway",
+                    "footway": "sidewalk"
                 },
-                "name": "Stable"
+                "terms": [],
+                "name": "Sidewalk"
             },
-            "building/static_caravan": {
-                "icon": "building",
-                "fields": [
-                    "address",
-                    "levels"
-                ],
+            "ford": {
                 "geometry": [
-                    "point",
-                    "vertex",
-                    "area"
+                    "vertex"
                 ],
                 "tags": {
-                    "building": "static_caravan"
+                    "ford": "yes"
                 },
-                "name": "Static Mobile Home"
+                "name": "Ford"
             },
-            "building/terrace": {
-                "icon": "building",
-                "fields": [
-                    "address",
-                    "levels"
-                ],
+            "golf/bunker": {
+                "icon": "golf",
                 "geometry": [
-                    "point",
-                    "vertex",
                     "area"
                 ],
                 "tags": {
-                    "building": "terrace"
+                    "golf": "bunker",
+                    "natural": "sand"
                 },
-                "name": "Row Houses"
-            },
-            "building/train_station": {
-                "icon": "building",
-                "fields": [
-                    "address",
-                    "levels"
+                "terms": [
+                    "hazard",
+                    "bunker"
                 ],
+                "name": "Sand Trap"
+            },
+            "golf/fairway": {
+                "icon": "golf",
                 "geometry": [
-                    "point",
-                    "vertex",
                     "area"
                 ],
                 "tags": {
-                    "building": "train_station"
+                    "golf": "fairway",
+                    "landuse": "grass"
                 },
-                "name": "Train Station",
-                "searchable": false
+                "name": "Fairway"
             },
-            "building/university": {
-                "icon": "building",
-                "fields": [
-                    "address",
-                    "levels"
-                ],
+            "golf/green": {
+                "icon": "golf",
                 "geometry": [
-                    "point",
-                    "vertex",
                     "area"
                 ],
                 "tags": {
-                    "building": "university"
+                    "golf": "green",
+                    "landuse": "grass",
+                    "leisure": "pitch",
+                    "sport": "golf"
                 },
-                "name": "University Building"
+                "name": "Putting Green"
             },
-            "building/warehouse": {
-                "icon": "building",
+            "golf/hole": {
+                "icon": "golf",
                 "fields": [
-                    "address",
-                    "levels"
+                    "golf_hole",
+                    "par",
+                    "handicap"
                 ],
                 "geometry": [
-                    "point",
-                    "vertex",
-                    "area"
+                    "line"
                 ],
                 "tags": {
-                    "building": "warehouse"
+                    "golf": "hole"
                 },
-                "name": "Warehouse"
+                "name": "Golf Hole"
             },
-            "craft/basket_maker": {
-                "name": "Basket Maker",
+            "golf/lateral_water_hazard": {
+                "icon": "golf",
                 "geometry": [
-                    "point",
+                    "line",
                     "area"
                 ],
-                "terms": [
-                    "basket",
-                    "basketry",
-                    "basket maker",
-                    "basket weaver"
-                ],
                 "tags": {
-                    "craft": "basket_maker"
+                    "golf": "lateral_water_hazard",
+                    "natural": "water"
                 },
-                "icon": "art-gallery",
-                "fields": [
-                    "building_area",
-                    "address",
-                    "operator",
-                    "opening_hours"
-                ]
+                "name": "Lateral Water Hazard"
             },
-            "craft/beekeeper": {
-                "name": "Beekeeper",
+            "golf/rough": {
+                "icon": "golf",
                 "geometry": [
-                    "point",
                     "area"
                 ],
-                "terms": [
-                    "bees",
-                    "beekeeper",
-                    "bee box"
-                ],
                 "tags": {
-                    "craft": "beekeeper"
+                    "golf": "rough",
+                    "landuse": "grass"
                 },
-                "icon": "farm",
-                "fields": [
-                    "building_area",
-                    "address",
-                    "operator",
-                    "opening_hours"
-                ]
+                "name": "Rough"
             },
-            "craft/blacksmith": {
-                "name": "Blacksmith",
+            "golf/tee": {
+                "icon": "golf",
                 "geometry": [
-                    "point",
                     "area"
                 ],
-                "terms": [
-                    "blacksmith"
-                ],
                 "tags": {
-                    "craft": "blacksmith"
+                    "golf": "tee",
+                    "landuse": "grass"
                 },
-                "icon": "farm",
-                "fields": [
-                    "building_area",
-                    "address",
-                    "operator",
-                    "opening_hours"
-                ]
+                "terms": [
+                    "teeing ground"
+                ],
+                "name": "Tee Box"
             },
-            "craft/boatbuilder": {
-                "name": "Boat Builder",
+            "golf/water_hazard": {
+                "icon": "golf",
                 "geometry": [
-                    "point",
+                    "line",
                     "area"
                 ],
-                "terms": [
-                    "boat builder"
-                ],
                 "tags": {
-                    "craft": "boatbuilder"
+                    "golf": "water_hazard",
+                    "natural": "water"
                 },
-                "icon": "marker-stroked",
-                "fields": [
-                    "building_area",
-                    "address",
-                    "operator",
-                    "opening_hours"
-                ]
+                "name": "Water Hazard"
             },
-            "craft/bookbinder": {
-                "name": "Bookbinder",
+            "highway": {
+                "fields": [
+                    "highway"
+                ],
                 "geometry": [
                     "point",
+                    "vertex",
+                    "line",
                     "area"
                 ],
-                "terms": [
-                    "bookbinder",
-                    "book repair"
-                ],
                 "tags": {
-                    "craft": "bookbinder"
+                    "highway": "*"
                 },
-                "icon": "library",
-                "fields": [
-                    "building_area",
-                    "address",
-                    "operator",
-                    "opening_hours"
-                ]
+                "name": "Highway"
             },
-            "craft/brewery": {
-                "name": "Brewery",
-                "geometry": [
-                    "point",
-                    "area"
+            "highway/bridleway": {
+                "fields": [
+                    "surface",
+                    "width",
+                    "structure",
+                    "access"
                 ],
-                "terms": [
-                    "brewery"
+                "icon": "highway-bridleway",
+                "geometry": [
+                    "line"
                 ],
                 "tags": {
-                    "craft": "brewery"
+                    "highway": "bridleway"
                 },
-                "icon": "beer",
+                "terms": [
+                    "bridleway",
+                    "equestrian",
+                    "horse"
+                ],
+                "name": "Bridle Path"
+            },
+            "highway/bus_stop": {
+                "icon": "bus",
                 "fields": [
-                    "building_area",
-                    "address",
                     "operator",
-                    "opening_hours"
-                ]
-            },
-            "craft/carpenter": {
-                "name": "Carpenter",
+                    "shelter"
+                ],
                 "geometry": [
                     "point",
-                    "area"
-                ],
-                "terms": [
-                    "carpenter",
-                    "woodworker"
+                    "vertex"
                 ],
                 "tags": {
-                    "craft": "carpenter"
+                    "highway": "bus_stop"
                 },
-                "icon": "logging",
-                "fields": [
-                    "building_area",
-                    "address",
-                    "operator",
-                    "opening_hours"
-                ]
+                "terms": [],
+                "name": "Bus Stop"
             },
-            "craft/carpet_layer": {
-                "name": "Carpet Layer",
-                "geometry": [
-                    "point",
-                    "area"
+            "highway/crossing": {
+                "fields": [
+                    "crossing",
+                    "sloped_curb",
+                    "tactile_paving"
                 ],
-                "terms": [
-                    "carpet layer"
+                "geometry": [
+                    "vertex"
                 ],
                 "tags": {
-                    "craft": "carpet_layer"
+                    "highway": "crossing"
                 },
-                "icon": "square",
-                "fields": [
-                    "building_area",
-                    "address",
-                    "operator",
-                    "opening_hours"
-                ]
+                "terms": [],
+                "name": "Crossing"
             },
-            "craft/caterer": {
-                "name": "Caterer",
+            "highway/crosswalk": {
+                "fields": [
+                    "crossing",
+                    "sloped_curb",
+                    "tactile_paving"
+                ],
                 "geometry": [
-                    "point",
-                    "area"
+                    "vertex"
                 ],
+                "tags": {
+                    "highway": "crossing",
+                    "crossing": "zebra"
+                },
                 "terms": [
-                    "Caterer",
-                    "Catering"
+                    "zebra crossing"
+                ],
+                "name": "Crosswalk"
+            },
+            "highway/cycleway": {
+                "icon": "highway-cycleway",
+                "fields": [
+                    "surface",
+                    "lit",
+                    "width",
+                    "oneway",
+                    "structure",
+                    "access"
+                ],
+                "geometry": [
+                    "line"
                 ],
                 "tags": {
-                    "craft": "caterer"
+                    "highway": "cycleway"
                 },
-                "icon": "bakery",
-                "fields": [
-                    "cuisine",
-                    "building_area",
-                    "address",
-                    "operator",
-                    "opening_hours"
-                ]
+                "terms": [
+                    "bike"
+                ],
+                "name": "Cycle Path"
             },
-            "craft/clockmaker": {
-                "name": "Clockmaker",
+            "highway/footway": {
+                "icon": "highway-footway",
+                "fields": [
+                    "surface",
+                    "lit",
+                    "width",
+                    "structure",
+                    "access"
+                ],
                 "geometry": [
-                    "point",
+                    "line",
                     "area"
                 ],
                 "terms": [
-                    "clock",
-                    "clockmaker",
-                    "clock repair"
+                    "hike",
+                    "hiking",
+                    "trackway",
+                    "trail",
+                    "walk"
                 ],
                 "tags": {
-                    "craft": "clockmaker"
+                    "highway": "footway"
                 },
-                "icon": "circle-stroked",
-                "fields": [
-                    "building_area",
-                    "address",
-                    "operator",
-                    "opening_hours"
-                ]
+                "name": "Foot Path"
             },
-            "craft/confectionary": {
-                "name": "Confectionary",
-                "geometry": [
-                    "point",
-                    "area"
+            "highway/living_street": {
+                "icon": "highway-living-street",
+                "fields": [
+                    "oneway",
+                    "maxspeed",
+                    "structure",
+                    "access",
+                    "surface"
                 ],
-                "terms": [
-                    "confectionary",
-                    "sweets",
-                    "candy"
+                "geometry": [
+                    "line"
                 ],
                 "tags": {
-                    "craft": "confectionary"
+                    "highway": "living_street"
                 },
-                "icon": "bakery",
-                "fields": [
-                    "building_area",
-                    "address",
-                    "operator",
-                    "opening_hours"
-                ]
+                "name": "Living Street"
             },
-            "craft/dressmaker": {
-                "name": "Dressmaker",
+            "highway/mini_roundabout": {
                 "geometry": [
-                    "point",
-                    "area"
-                ],
-                "terms": [
-                    "dress",
-                    "dressmaker"
+                    "vertex"
                 ],
                 "tags": {
-                    "craft": "dressmaker"
+                    "highway": "mini_roundabout"
                 },
-                "icon": "clothing-store",
                 "fields": [
-                    "building_area",
-                    "address",
-                    "operator",
-                    "opening_hours"
-                ]
+                    "clock_direction"
+                ],
+                "name": "Mini-Roundabout"
             },
-            "craft/electrician": {
-                "name": "Electrician",
-                "geometry": [
-                    "point",
-                    "area"
+            "highway/motorway": {
+                "icon": "highway-motorway",
+                "fields": [
+                    "oneway_yes",
+                    "maxspeed",
+                    "structure",
+                    "access",
+                    "lanes",
+                    "surface",
+                    "ref"
                 ],
-                "terms": [
-                    "electrician"
+                "geometry": [
+                    "line"
                 ],
                 "tags": {
-                    "craft": "electrician"
+                    "highway": "motorway"
                 },
-                "icon": "marker-stroked",
-                "fields": [
-                    "building_area",
-                    "address",
-                    "operator",
-                    "opening_hours"
-                ]
+                "terms": [],
+                "name": "Motorway"
             },
-            "craft/gardener": {
-                "name": "Gardener",
+            "highway/motorway_junction": {
                 "geometry": [
-                    "point",
-                    "area"
-                ],
-                "terms": [
-                    "gardener",
-                    "landscaper",
-                    "grounds keeper"
+                    "vertex"
                 ],
                 "tags": {
-                    "craft": "gardener"
+                    "highway": "motorway_junction"
                 },
-                "icon": "garden",
                 "fields": [
-                    "building_area",
-                    "address",
-                    "operator",
-                    "opening_hours"
-                ]
+                    "ref"
+                ],
+                "name": "Motorway Junction / Exit"
             },
-            "craft/glaziery": {
-                "name": "Glaziery",
-                "geometry": [
-                    "point",
-                    "area"
+            "highway/motorway_link": {
+                "icon": "highway-motorway-link",
+                "fields": [
+                    "oneway_yes",
+                    "maxspeed",
+                    "structure",
+                    "access",
+                    "surface",
+                    "ref"
                 ],
-                "terms": [
-                    "glass",
-                    "glass foundry",
-                    "stained-glass",
-                    "window"
+                "geometry": [
+                    "line"
                 ],
                 "tags": {
-                    "craft": "glaziery"
+                    "highway": "motorway_link"
                 },
-                "icon": "fire-station",
-                "fields": [
-                    "building_area",
-                    "address",
-                    "operator",
-                    "opening_hours"
-                ]
+                "terms": [
+                    "ramp",
+                    "on ramp",
+                    "off ramp"
+                ],
+                "name": "Motorway Link"
             },
-            "craft/handicraft": {
-                "name": "Handicraft",
-                "geometry": [
-                    "point",
-                    "area"
+            "highway/path": {
+                "icon": "highway-path",
+                "fields": [
+                    "surface",
+                    "width",
+                    "structure",
+                    "access",
+                    "incline",
+                    "sac_scale",
+                    "trail_visibility",
+                    "mtb/scale",
+                    "mtb/scale/uphill",
+                    "mtb/scale/imba",
+                    "ref"
+                ],
+                "geometry": [
+                    "line"
                 ],
                 "terms": [
-                    "handicraft"
+                    "hike",
+                    "hiking",
+                    "trackway",
+                    "trail",
+                    "walk"
                 ],
                 "tags": {
-                    "craft": "handicraft"
+                    "highway": "path"
                 },
-                "icon": "art-gallery",
-                "fields": [
-                    "building_area",
-                    "address",
-                    "operator",
-                    "opening_hours"
-                ]
+                "name": "Path"
             },
-            "craft/hvac": {
-                "name": "HVAC",
+            "highway/pedestrian": {
+                "fields": [
+                    "surface",
+                    "lit",
+                    "width",
+                    "oneway",
+                    "structure",
+                    "access"
+                ],
                 "geometry": [
-                    "point",
+                    "line",
                     "area"
                 ],
-                "terms": [
-                    "heating",
-                    "ventilating",
-                    "air-conditioning",
-                    "air conditioning"
-                ],
                 "tags": {
-                    "craft": "hvac"
+                    "highway": "pedestrian"
                 },
-                "icon": "marker-stroked",
-                "fields": [
-                    "building_area",
-                    "address",
-                    "operator",
-                    "opening_hours"
-                ]
+                "terms": [],
+                "name": "Pedestrian"
             },
-            "craft/insulator": {
-                "name": "Insulator",
-                "geometry": [
-                    "point",
-                    "area"
+            "highway/primary": {
+                "icon": "highway-primary",
+                "fields": [
+                    "oneway",
+                    "maxspeed",
+                    "structure",
+                    "access",
+                    "lanes",
+                    "surface",
+                    "ref"
                 ],
-                "terms": [
-                    "insulation",
-                    "insulator"
+                "geometry": [
+                    "line"
                 ],
                 "tags": {
-                    "craft": "insulation"
+                    "highway": "primary"
                 },
-                "icon": "marker-stroked",
-                "fields": [
-                    "building_area",
-                    "address",
-                    "operator",
-                    "opening_hours"
-                ]
+                "terms": [],
+                "name": "Primary Road"
             },
-            "craft/jeweler": {
-                "name": "Jeweler",
-                "geometry": [
-                    "point",
-                    "area"
+            "highway/primary_link": {
+                "icon": "highway-primary-link",
+                "fields": [
+                    "oneway",
+                    "maxspeed",
+                    "structure",
+                    "access",
+                    "surface",
+                    "ref"
                 ],
-                "terms": [
-                    "jeweler",
-                    "gem",
-                    "diamond"
+                "geometry": [
+                    "line"
                 ],
                 "tags": {
-                    "craft": "jeweler"
+                    "highway": "primary_link"
                 },
-                "icon": "marker-stroked",
-                "searchable": false,
-                "fields": [
-                    "building_area",
-                    "address",
-                    "operator",
-                    "opening_hours"
-                ]
+                "terms": [
+                    "ramp",
+                    "on ramp",
+                    "off ramp"
+                ],
+                "name": "Primary Link"
             },
-            "craft/key_cutter": {
-                "name": "Key Cutter",
+            "highway/raceway": {
+                "icon": "highway-unclassified",
+                "fields": [
+                    "oneway",
+                    "surface",
+                    "sport_racing",
+                    "structure"
+                ],
                 "geometry": [
-                    "point",
-                    "area"
+                    "line"
                 ],
+                "tags": {
+                    "highway": "raceway"
+                },
+                "addTags": {
+                    "highway": "raceway",
+                    "sport": "motor"
+                },
                 "terms": [
-                    "key",
-                    "key cutter"
+                    "auto*",
+                    "race*",
+                    "nascar"
+                ],
+                "name": "Motor Raceway"
+            },
+            "highway/residential": {
+                "icon": "highway-residential",
+                "fields": [
+                    "oneway",
+                    "maxspeed",
+                    "structure",
+                    "access",
+                    "surface"
+                ],
+                "geometry": [
+                    "line"
                 ],
                 "tags": {
-                    "craft": "key_cutter"
+                    "highway": "residential"
                 },
-                "icon": "marker-stroked",
-                "fields": [
-                    "building_area",
-                    "address",
-                    "operator",
-                    "opening_hours"
-                ]
+                "terms": [],
+                "name": "Residential Road"
             },
-            "craft/locksmith": {
-                "name": "Locksmith",
+            "highway/rest_area": {
                 "geometry": [
                     "point",
+                    "vertex",
                     "area"
                 ],
+                "tags": {
+                    "highway": "rest_area"
+                },
                 "terms": [
-                    "locksmith",
-                    "lock"
+                    "rest stop"
+                ],
+                "name": "Rest Area"
+            },
+            "highway/road": {
+                "icon": "highway-road",
+                "fields": [
+                    "oneway",
+                    "maxspeed",
+                    "structure",
+                    "access",
+                    "surface"
+                ],
+                "geometry": [
+                    "line"
                 ],
                 "tags": {
-                    "craft": "locksmith"
+                    "highway": "road"
                 },
-                "icon": "marker-stroked",
-                "searchable": false,
-                "fields": [
-                    "building_area",
-                    "address",
-                    "operator",
-                    "opening_hours"
-                ]
+                "terms": [],
+                "name": "Unknown Road"
             },
-            "craft/metal_construction": {
-                "name": "Metal Construction",
-                "geometry": [
-                    "point",
-                    "area"
+            "highway/secondary": {
+                "icon": "highway-secondary",
+                "fields": [
+                    "oneway",
+                    "maxspeed",
+                    "structure",
+                    "access",
+                    "lanes",
+                    "surface",
+                    "ref"
                 ],
-                "terms": [
-                    "metal construction"
+                "geometry": [
+                    "line"
                 ],
                 "tags": {
-                    "craft": "metal_construction"
+                    "highway": "secondary"
                 },
-                "icon": "marker-stroked",
-                "fields": [
-                    "building_area",
-                    "address",
-                    "operator",
-                    "opening_hours"
-                ]
+                "terms": [],
+                "name": "Secondary Road"
             },
-            "craft/optician": {
-                "name": "Optician",
+            "highway/secondary_link": {
+                "icon": "highway-secondary-link",
+                "fields": [
+                    "oneway",
+                    "maxspeed",
+                    "structure",
+                    "access",
+                    "surface",
+                    "ref"
+                ],
                 "geometry": [
-                    "point",
-                    "area"
+                    "line"
                 ],
+                "tags": {
+                    "highway": "secondary_link"
+                },
                 "terms": [
-                    "glasses",
-                    "optician"
+                    "ramp",
+                    "on ramp",
+                    "off ramp"
+                ],
+                "name": "Secondary Link"
+            },
+            "highway/service": {
+                "icon": "highway-service",
+                "fields": [
+                    "service",
+                    "oneway",
+                    "maxspeed",
+                    "structure",
+                    "access",
+                    "surface"
+                ],
+                "geometry": [
+                    "line"
                 ],
                 "tags": {
-                    "craft": "optician"
+                    "highway": "service"
                 },
-                "icon": "marker-stroked",
-                "searchable": false,
-                "fields": [
-                    "building_area",
-                    "address",
-                    "operator",
-                    "opening_hours"
-                ]
+                "terms": [],
+                "name": "Service Road"
             },
-            "craft/painter": {
-                "name": "Painter",
-                "geometry": [
-                    "point",
-                    "area"
+            "highway/service/alley": {
+                "icon": "highway-service",
+                "fields": [
+                    "oneway",
+                    "access",
+                    "surface"
                 ],
-                "terms": [
-                    "painter"
+                "geometry": [
+                    "line"
                 ],
                 "tags": {
-                    "craft": "painter"
+                    "highway": "service",
+                    "service": "alley"
                 },
-                "icon": "art-gallery",
-                "fields": [
-                    "building_area",
-                    "address",
-                    "operator",
-                    "opening_hours"
-                ]
+                "name": "Alley"
             },
-            "craft/photographer": {
-                "name": "Photographer",
-                "geometry": [
-                    "point",
-                    "area"
+            "highway/service/drive-through": {
+                "icon": "highway-service",
+                "fields": [
+                    "oneway",
+                    "access",
+                    "surface"
                 ],
-                "terms": [
-                    "photographer"
+                "geometry": [
+                    "line"
                 ],
                 "tags": {
-                    "craft": "photographer"
+                    "highway": "service",
+                    "service": "drive-through"
                 },
-                "icon": "camera",
-                "fields": [
-                    "building_area",
-                    "address",
-                    "operator",
-                    "opening_hours"
-                ]
+                "name": "Drive-Through"
             },
-            "craft/photographic_laboratory": {
-                "name": "Photographic Laboratory",
-                "geometry": [
-                    "point",
-                    "area"
+            "highway/service/driveway": {
+                "icon": "highway-service",
+                "fields": [
+                    "oneway",
+                    "access",
+                    "surface"
                 ],
-                "terms": [
-                    "photographic laboratory",
-                    "film developer"
+                "geometry": [
+                    "line"
                 ],
                 "tags": {
-                    "craft": "photographic_laboratory"
+                    "highway": "service",
+                    "service": "driveway"
                 },
-                "icon": "camera",
-                "fields": [
-                    "building_area",
-                    "address",
-                    "operator",
-                    "opening_hours"
-                ]
+                "name": "Driveway"
             },
-            "craft/plasterer": {
-                "name": "Plasterer",
-                "geometry": [
-                    "point",
-                    "area"
+            "highway/service/emergency_access": {
+                "icon": "highway-service",
+                "fields": [
+                    "oneway",
+                    "access",
+                    "surface"
                 ],
-                "terms": [
-                    "plasterer"
+                "geometry": [
+                    "line"
                 ],
                 "tags": {
-                    "craft": "plasterer"
+                    "highway": "service",
+                    "service": "emergency_access"
                 },
-                "icon": "marker-stroked",
-                "fields": [
-                    "building_area",
-                    "address",
-                    "operator",
-                    "opening_hours"
-                ]
+                "name": "Emergency Access"
             },
-            "craft/plumber": {
-                "name": "Plumber",
-                "geometry": [
-                    "point",
-                    "area"
+            "highway/service/parking_aisle": {
+                "icon": "highway-service",
+                "fields": [
+                    "oneway",
+                    "access",
+                    "surface"
                 ],
-                "terms": [
-                    "pumber"
+                "geometry": [
+                    "line"
                 ],
                 "tags": {
-                    "craft": "plumber"
+                    "highway": "service",
+                    "service": "parking_aisle"
                 },
-                "icon": "marker-stroked",
-                "fields": [
-                    "building_area",
-                    "address",
-                    "operator",
-                    "opening_hours"
-                ]
+                "name": "Parking Aisle"
             },
-            "craft/pottery": {
-                "name": "Pottery",
+            "highway/services": {
                 "geometry": [
                     "point",
+                    "vertex",
                     "area"
                 ],
-                "terms": [
-                    "pottery",
-                    "potter"
-                ],
                 "tags": {
-                    "craft": "pottery"
+                    "highway": "services"
                 },
-                "icon": "art-gallery",
-                "fields": [
-                    "building_area",
-                    "address",
-                    "operator",
-                    "opening_hours"
-                ]
+                "terms": [
+                    "services",
+                    "travel plaza",
+                    "service station"
+                ],
+                "name": "Service Area"
             },
-            "craft/rigger": {
-                "name": "Rigger",
+            "highway/steps": {
+                "fields": [
+                    "surface",
+                    "lit",
+                    "width",
+                    "access"
+                ],
+                "icon": "highway-steps",
                 "geometry": [
-                    "point",
-                    "area"
+                    "line"
                 ],
+                "tags": {
+                    "highway": "steps"
+                },
                 "terms": [
-                    "rigger"
+                    "stairs",
+                    "staircase"
+                ],
+                "name": "Steps"
+            },
+            "highway/stop": {
+                "geometry": [
+                    "vertex"
                 ],
                 "tags": {
-                    "craft": "rigger"
+                    "highway": "stop"
                 },
-                "icon": "marker-stroked",
-                "fields": [
-                    "building_area",
-                    "address",
-                    "operator",
-                    "opening_hours"
-                ]
+                "terms": [
+                    "stop sign"
+                ],
+                "name": "Stop Sign"
             },
-            "craft/roofer": {
-                "name": "Roofer",
+            "highway/street_lamp": {
                 "geometry": [
                     "point",
-                    "area"
-                ],
-                "terms": [
-                    "roofer"
+                    "vertex"
                 ],
                 "tags": {
-                    "craft": "roofer"
+                    "highway": "street_lamp"
                 },
-                "icon": "marker-stroked",
                 "fields": [
-                    "building_area",
-                    "address",
-                    "operator",
-                    "opening_hours"
-                ]
-            },
-            "craft/saddler": {
-                "name": "Saddler",
-                "geometry": [
-                    "point",
-                    "area"
+                    "lamp_type",
+                    "ref"
                 ],
                 "terms": [
-                    "saddler"
+                    "streetlight",
+                    "street light",
+                    "lamp",
+                    "light",
+                    "gaslight"
+                ],
+                "name": "Street Lamp"
+            },
+            "highway/tertiary": {
+                "icon": "highway-tertiary",
+                "fields": [
+                    "oneway",
+                    "maxspeed",
+                    "structure",
+                    "access",
+                    "lanes",
+                    "surface",
+                    "ref"
+                ],
+                "geometry": [
+                    "line"
                 ],
                 "tags": {
-                    "craft": "saddler"
+                    "highway": "tertiary"
                 },
-                "icon": "marker-stroked",
-                "fields": [
-                    "building_area",
-                    "address",
-                    "operator",
-                    "opening_hours"
-                ]
+                "terms": [],
+                "name": "Tertiary Road"
             },
-            "craft/sailmaker": {
-                "name": "Sailmaker",
-                "geometry": [
-                    "point",
-                    "area"
+            "highway/tertiary_link": {
+                "icon": "highway-tertiary-link",
+                "fields": [
+                    "oneway",
+                    "maxspeed",
+                    "structure",
+                    "access",
+                    "surface",
+                    "ref"
                 ],
-                "terms": [
-                    "sailmaker"
+                "geometry": [
+                    "line"
                 ],
                 "tags": {
-                    "craft": "sailmaker"
+                    "highway": "tertiary_link"
                 },
-                "icon": "marker-stroked",
-                "fields": [
-                    "building_area",
-                    "address",
-                    "operator",
-                    "opening_hours"
-                ]
+                "terms": [
+                    "ramp",
+                    "on ramp",
+                    "off ramp"
+                ],
+                "name": "Tertiary Link"
             },
-            "craft/sawmill": {
-                "name": "Sawmill",
-                "geometry": [
-                    "point",
-                    "area"
+            "highway/track": {
+                "icon": "highway-track",
+                "fields": [
+                    "surface",
+                    "width",
+                    "structure",
+                    "access",
+                    "incline",
+                    "tracktype",
+                    "smoothness",
+                    "mtb/scale",
+                    "mtb/scale/uphill",
+                    "mtb/scale/imba"
                 ],
-                "terms": [
-                    "sawmill",
-                    "lumber"
+                "geometry": [
+                    "line"
                 ],
                 "tags": {
-                    "craft": "sawmill"
+                    "highway": "track"
                 },
-                "icon": "park",
-                "fields": [
-                    "building_area",
-                    "address",
-                    "operator",
-                    "opening_hours"
-                ]
+                "terms": [
+                    "woods road",
+                    "fire road"
+                ],
+                "name": "Track"
             },
-            "craft/scaffolder": {
-                "name": "Scaffolder",
+            "highway/traffic_signals": {
                 "geometry": [
-                    "point",
-                    "area"
-                ],
-                "terms": [
-                    "scaffolder"
+                    "vertex"
                 ],
                 "tags": {
-                    "craft": "scaffolder"
+                    "highway": "traffic_signals"
                 },
-                "icon": "marker-stroked",
-                "fields": [
-                    "building_area",
-                    "address",
-                    "operator",
-                    "opening_hours"
-                ]
+                "terms": [
+                    "light",
+                    "stoplight",
+                    "traffic light"
+                ],
+                "name": "Traffic Signals"
             },
-            "craft/sculpter": {
-                "name": "Sculpter",
-                "geometry": [
-                    "point",
-                    "area"
+            "highway/trunk": {
+                "icon": "highway-trunk",
+                "fields": [
+                    "oneway",
+                    "maxspeed",
+                    "structure",
+                    "access",
+                    "lanes",
+                    "surface",
+                    "ref"
                 ],
-                "terms": [
-                    "sculpter"
+                "geometry": [
+                    "line"
                 ],
                 "tags": {
-                    "craft": "sculpter"
+                    "highway": "trunk"
                 },
-                "icon": "art-gallery",
-                "fields": [
-                    "building_area",
-                    "address",
-                    "operator",
-                    "opening_hours"
-                ]
+                "terms": [],
+                "name": "Trunk Road"
             },
-            "craft/shoemaker": {
-                "name": "Shoemaker",
-                "geometry": [
-                    "point",
-                    "area"
+            "highway/trunk_link": {
+                "icon": "highway-trunk-link",
+                "fields": [
+                    "oneway",
+                    "maxspeed",
+                    "structure",
+                    "access",
+                    "surface",
+                    "ref"
                 ],
-                "terms": [
-                    "shoe repair",
-                    "shoemaker"
+                "geometry": [
+                    "line"
                 ],
                 "tags": {
-                    "craft": "shoemaker"
+                    "highway": "trunk_link"
                 },
-                "icon": "marker-stroked",
-                "fields": [
-                    "building_area",
-                    "address",
-                    "operator",
-                    "opening_hours"
-                ]
+                "terms": [
+                    "ramp",
+                    "on ramp",
+                    "off ramp"
+                ],
+                "name": "Trunk Link"
             },
-            "craft/stonemason": {
-                "name": "Stonemason",
+            "highway/turning_circle": {
+                "icon": "circle",
                 "geometry": [
-                    "point",
-                    "area"
-                ],
-                "terms": [
-                    "stonemason",
-                    "masonry"
+                    "vertex"
                 ],
                 "tags": {
-                    "craft": "stonemason"
+                    "highway": "turning_circle"
                 },
-                "icon": "marker-stroked",
-                "fields": [
-                    "building_area",
-                    "address",
-                    "operator",
-                    "opening_hours"
-                ]
+                "terms": [
+                    "cul-de-sac"
+                ],
+                "name": "Turning Circle"
             },
-            "craft/sweep": {
-                "name": "Chimney Sweep",
-                "geometry": [
-                    "point",
-                    "area"
+            "highway/unclassified": {
+                "icon": "highway-unclassified",
+                "fields": [
+                    "oneway",
+                    "maxspeed",
+                    "structure",
+                    "access",
+                    "surface"
                 ],
-                "terms": [
-                    "sweep",
-                    "chimney sweep"
+                "geometry": [
+                    "line"
                 ],
                 "tags": {
-                    "craft": "sweep"
+                    "highway": "unclassified"
                 },
-                "icon": "marker-stroked",
-                "fields": [
-                    "building_area",
-                    "address",
-                    "operator",
-                    "opening_hours"
-                ]
+                "terms": [],
+                "name": "Unclassified Road"
             },
-            "craft/tailor": {
-                "name": "Tailor",
+            "historic": {
+                "fields": [
+                    "historic"
+                ],
                 "geometry": [
                     "point",
+                    "vertex",
                     "area"
                 ],
-                "terms": [
-                    "tailor",
-                    "clothes"
-                ],
                 "tags": {
-                    "craft": "tailor"
+                    "historic": "*"
                 },
-                "icon": "clothing-store",
-                "fields": [
-                    "building_area",
-                    "address",
-                    "operator",
-                    "opening_hours"
-                ]
+                "name": "Historic Site"
             },
-            "craft/tiler": {
-                "name": "Tiler",
+            "historic/archaeological_site": {
                 "geometry": [
                     "point",
+                    "vertex",
                     "area"
                 ],
-                "terms": [
-                    "tiler"
-                ],
                 "tags": {
-                    "craft": "tiler"
+                    "historic": "archaeological_site"
                 },
-                "icon": "marker-stroked",
-                "fields": [
-                    "building_area",
-                    "address",
-                    "operator",
-                    "opening_hours"
-                ]
+                "name": "Archaeological Site"
             },
-            "craft/tinsmith": {
-                "name": "Tinsmith",
+            "historic/boundary_stone": {
                 "geometry": [
                     "point",
-                    "area"
-                ],
-                "terms": [
-                    "tinsmith"
+                    "vertex"
                 ],
                 "tags": {
-                    "craft": "tinsmith"
+                    "historic": "boundary_stone"
                 },
-                "icon": "marker-stroked",
-                "fields": [
-                    "building_area",
-                    "address",
-                    "operator",
-                    "opening_hours"
-                ]
+                "name": "Boundary Stone"
             },
-            "craft/upholsterer": {
-                "name": "Upholsterer",
+            "historic/castle": {
                 "geometry": [
                     "point",
                     "area"
                 ],
-                "terms": [
-                    "upholsterer"
-                ],
                 "tags": {
-                    "craft": "upholsterer"
+                    "historic": "castle"
                 },
-                "icon": "marker-stroked",
-                "fields": [
-                    "building_area",
-                    "address",
-                    "operator",
-                    "opening_hours"
-                ]
+                "name": "Castle"
             },
-            "craft/watchmaker": {
-                "name": "Watchmaker",
+            "historic/memorial": {
+                "icon": "monument",
                 "geometry": [
                     "point",
+                    "vertex",
                     "area"
                 ],
-                "terms": [
-                    "watch",
-                    "watchmaker",
-                    "watch repair"
-                ],
                 "tags": {
-                    "craft": "watchmaker"
+                    "historic": "memorial"
                 },
-                "icon": "circle-stroked",
-                "fields": [
-                    "building_area",
-                    "address",
-                    "operator",
-                    "opening_hours"
-                ]
+                "name": "Memorial"
             },
-            "craft/window_construction": {
-                "name": "Window Construction",
+            "historic/monument": {
+                "icon": "monument",
                 "geometry": [
                     "point",
+                    "vertex",
                     "area"
                 ],
-                "terms": [
-                    "window",
-                    "window maker",
-                    "window construction"
-                ],
                 "tags": {
-                    "craft": "window_construction"
+                    "historic": "monument"
                 },
-                "icon": "marker-stroked",
-                "fields": [
-                    "building_area",
-                    "address",
-                    "operator",
-                    "opening_hours"
-                ]
+                "name": "Monument"
             },
-            "embankment": {
+            "historic/ruins": {
                 "geometry": [
-                    "line"
+                    "point",
+                    "vertex",
+                    "area"
                 ],
                 "tags": {
-                    "embankment": "yes"
+                    "historic": "ruins"
                 },
-                "name": "Embankment",
-                "matchScore": 0.2
+                "name": "Ruins"
             },
-            "emergency/ambulance_station": {
-                "fields": [
-                    "operator"
-                ],
+            "historic/wayside_cross": {
                 "geometry": [
-                    "area",
                     "point",
-                    "vertex"
+                    "vertex",
+                    "area"
                 ],
                 "tags": {
-                    "emergency": "ambulance_station"
+                    "historic": "wayside_cross"
                 },
-                "name": "Ambulance Station"
+                "name": "Wayside Cross"
             },
-            "emergency/fire_hydrant": {
-                "fields": [
-                    "fire_hydrant/type"
-                ],
+            "historic/wayside_shrine": {
                 "geometry": [
                     "point",
-                    "vertex"
+                    "vertex",
+                    "area"
                 ],
                 "tags": {
-                    "emergency": "fire_hydrant"
+                    "historic": "wayside_shrine"
                 },
-                "name": "Fire Hydrant"
+                "name": "Wayside Shrine"
             },
-            "emergency/phone": {
-                "icon": "emergency-telephone",
+            "landuse": {
                 "fields": [
-                    "operator"
+                    "landuse"
                 ],
                 "geometry": [
                     "point",
-                    "vertex"
+                    "vertex",
+                    "area"
                 ],
                 "tags": {
-                    "emergency": "phone"
+                    "landuse": "*"
                 },
-                "name": "Emergency Phone"
+                "name": "Landuse"
             },
-            "entrance": {
-                "icon": "entrance",
+            "landuse/allotments": {
                 "geometry": [
-                    "vertex"
+                    "point",
+                    "area"
                 ],
                 "tags": {
-                    "entrance": "*"
+                    "landuse": "allotments"
                 },
-                "fields": [
-                    "entrance",
-                    "access_simple",
-                    "address"
-                ],
-                "name": "Entrance/Exit"
+                "terms": [],
+                "name": "Allotments"
             },
-            "footway/crossing": {
-                "fields": [
-                    "crossing",
-                    "access",
-                    "surface",
-                    "sloped_curb",
-                    "tactile_paving"
-                ],
+            "landuse/basin": {
                 "geometry": [
-                    "line"
+                    "point",
+                    "area"
                 ],
                 "tags": {
-                    "highway": "footway",
-                    "footway": "crossing"
+                    "landuse": "basin"
                 },
                 "terms": [],
-                "name": "Crossing"
+                "name": "Basin"
             },
-            "footway/crosswalk": {
+            "landuse/cemetery": {
+                "icon": "cemetery",
                 "fields": [
-                    "crossing",
-                    "access",
-                    "surface",
-                    "sloped_curb",
-                    "tactile_paving"
+                    "religion",
+                    "denomination"
                 ],
                 "geometry": [
-                    "line"
+                    "point",
+                    "vertex",
+                    "area"
                 ],
                 "tags": {
-                    "highway": "footway",
-                    "footway": "crossing",
-                    "crossing": "zebra"
+                    "landuse": "cemetery"
                 },
-                "terms": [
-                    "crosswalk",
-                    "zebra crossing"
-                ],
-                "name": "Crosswalk"
+                "terms": [],
+                "name": "Cemetery"
             },
-            "footway/sidewalk": {
+            "landuse/churchyard": {
                 "fields": [
-                    "surface",
-                    "lit",
-                    "width",
-                    "structure",
-                    "access"
+                    "religion",
+                    "denomination"
                 ],
                 "geometry": [
-                    "line"
+                    "area"
                 ],
                 "tags": {
-                    "highway": "footway",
-                    "footway": "sidewalk"
+                    "landuse": "churchyard"
                 },
                 "terms": [],
-                "name": "Sidewalk"
-            },
-            "ford": {
-                "geometry": [
-                    "vertex"
-                ],
-                "tags": {
-                    "ford": "yes"
-                },
-                "name": "Ford"
+                "name": "Churchyard"
             },
-            "golf/bunker": {
-                "icon": "golf",
+            "landuse/commercial": {
+                "icon": "commercial",
                 "geometry": [
+                    "point",
                     "area"
                 ],
                 "tags": {
-                    "golf": "bunker",
-                    "natural": "sand"
+                    "landuse": "commercial"
                 },
-                "terms": [
-                    "hazard",
-                    "bunker"
-                ],
-                "name": "Sand Trap"
+                "terms": [],
+                "name": "Commercial"
             },
-            "golf/fairway": {
-                "icon": "golf",
-                "geometry": [
-                    "area"
+            "landuse/construction": {
+                "fields": [
+                    "construction",
+                    "operator"
                 ],
-                "tags": {
-                    "golf": "fairway",
-                    "landuse": "grass"
-                },
-                "name": "Fairway"
-            },
-            "golf/green": {
-                "icon": "golf",
                 "geometry": [
+                    "point",
                     "area"
                 ],
                 "tags": {
-                    "golf": "green",
-                    "landuse": "grass",
-                    "leisure": "pitch",
-                    "sport": "golf"
+                    "landuse": "construction"
                 },
-                "terms": [
-                    "putting green"
-                ],
-                "name": "Putting Green"
+                "terms": [],
+                "name": "Construction"
             },
-            "golf/hole": {
-                "icon": "golf",
+            "landuse/farm": {
                 "fields": [
-                    "golf_hole",
-                    "par",
-                    "handicap"
+                    "crop"
                 ],
                 "geometry": [
-                    "line"
+                    "point",
+                    "area"
                 ],
                 "tags": {
-                    "golf": "hole"
+                    "landuse": "farm"
                 },
-                "name": "Golf Hole"
+                "terms": [],
+                "name": "Farm",
+                "icon": "farm"
             },
-            "golf/lateral_water_hazard": {
-                "icon": "golf",
+            "landuse/farmland": {
+                "fields": [
+                    "crop"
+                ],
                 "geometry": [
-                    "line",
+                    "point",
                     "area"
                 ],
                 "tags": {
-                    "golf": "lateral_water_hazard",
-                    "natural": "water"
+                    "landuse": "farmland"
                 },
-                "name": "Lateral Water Hazard"
+                "terms": [],
+                "name": "Farmland",
+                "icon": "farm",
+                "searchable": false
             },
-            "golf/rough": {
-                "icon": "golf",
+            "landuse/farmyard": {
+                "fields": [
+                    "crop"
+                ],
                 "geometry": [
+                    "point",
                     "area"
                 ],
                 "tags": {
-                    "golf": "rough",
-                    "landuse": "grass"
+                    "landuse": "farmyard"
                 },
-                "name": "Rough"
+                "terms": [],
+                "name": "Farmyard",
+                "icon": "farm"
             },
-            "golf/tee": {
-                "icon": "golf",
+            "landuse/forest": {
+                "fields": [
+                    "wood"
+                ],
+                "icon": "park2",
                 "geometry": [
+                    "point",
                     "area"
                 ],
                 "tags": {
-                    "golf": "tee",
-                    "landuse": "grass"
+                    "landuse": "forest"
                 },
-                "terms": [
-                    "teeing ground"
-                ],
-                "name": "Tee Box"
+                "terms": [],
+                "name": "Forest"
             },
-            "golf/water_hazard": {
-                "icon": "golf",
+            "landuse/grass": {
                 "geometry": [
-                    "line",
+                    "point",
                     "area"
                 ],
                 "tags": {
-                    "golf": "water_hazard",
-                    "natural": "water"
+                    "landuse": "grass"
                 },
-                "name": "Water Hazard"
+                "terms": [],
+                "name": "Grass"
             },
-            "highway": {
-                "fields": [
-                    "highway"
-                ],
+            "landuse/industrial": {
+                "icon": "industrial",
                 "geometry": [
                     "point",
-                    "vertex",
-                    "line",
                     "area"
                 ],
                 "tags": {
-                    "highway": "*"
+                    "landuse": "industrial"
                 },
-                "name": "Highway"
+                "terms": [],
+                "name": "Industrial"
             },
-            "highway/bridleway": {
-                "fields": [
-                    "surface",
-                    "width",
-                    "structure",
-                    "access"
-                ],
-                "icon": "highway-bridleway",
+            "landuse/landfill": {
                 "geometry": [
-                    "line"
+                    "area"
                 ],
                 "tags": {
-                    "highway": "bridleway"
+                    "landuse": "landfill"
                 },
                 "terms": [
-                    "bridleway",
-                    "equestrian trail",
-                    "horse riding path",
-                    "bridle road",
-                    "horse trail"
+                    "dump"
                 ],
-                "name": "Bridle Path"
+                "name": "Landfill"
             },
-            "highway/bus_stop": {
-                "icon": "bus",
-                "fields": [
-                    "operator",
-                    "shelter"
-                ],
+            "landuse/meadow": {
                 "geometry": [
                     "point",
-                    "vertex"
+                    "area"
                 ],
                 "tags": {
-                    "highway": "bus_stop"
+                    "landuse": "meadow"
                 },
                 "terms": [],
-                "name": "Bus Stop"
+                "name": "Meadow"
             },
-            "highway/crossing": {
-                "fields": [
-                    "crossing",
-                    "sloped_curb",
-                    "tactile_paving"
-                ],
+            "landuse/military": {
                 "geometry": [
-                    "vertex"
+                    "area"
                 ],
                 "tags": {
-                    "highway": "crossing"
+                    "landuse": "military"
                 },
                 "terms": [],
-                "name": "Crossing"
+                "name": "Military"
             },
-            "highway/crosswalk": {
+            "landuse/orchard": {
                 "fields": [
-                    "crossing",
-                    "sloped_curb",
-                    "tactile_paving"
+                    "trees"
                 ],
                 "geometry": [
-                    "vertex"
+                    "point",
+                    "area"
                 ],
                 "tags": {
-                    "highway": "crossing",
-                    "crossing": "zebra"
+                    "landuse": "orchard"
                 },
-                "terms": [
-                    "crosswalk",
-                    "zebra crossing"
-                ],
-                "name": "Crosswalk"
+                "terms": [],
+                "name": "Orchard",
+                "icon": "park2"
             },
-            "highway/cycleway": {
-                "icon": "highway-cycleway",
-                "fields": [
-                    "surface",
-                    "lit",
-                    "width",
-                    "oneway",
-                    "structure",
-                    "access"
-                ],
+            "landuse/quarry": {
                 "geometry": [
-                    "line"
+                    "point",
+                    "area"
                 ],
                 "tags": {
-                    "highway": "cycleway"
+                    "landuse": "quarry"
                 },
                 "terms": [],
-                "name": "Cycle Path"
+                "name": "Quarry"
             },
-            "highway/footway": {
-                "icon": "highway-footway",
-                "fields": [
-                    "surface",
-                    "lit",
-                    "width",
-                    "structure",
-                    "access"
-                ],
+            "landuse/residential": {
+                "icon": "building",
                 "geometry": [
-                    "line",
+                    "point",
                     "area"
                 ],
-                "terms": [
-                    "beaten path",
-                    "boulevard",
-                    "clearing",
-                    "course",
-                    "cut*",
-                    "drag*",
-                    "footpath",
-                    "highway",
-                    "lane",
-                    "line",
-                    "orbit",
-                    "passage",
-                    "pathway",
-                    "rail",
-                    "rails",
-                    "road",
-                    "roadway",
-                    "route",
-                    "street",
-                    "thoroughfare",
-                    "trackway",
-                    "trail",
-                    "trajectory",
-                    "walk"
-                ],
                 "tags": {
-                    "highway": "footway"
+                    "landuse": "residential"
                 },
-                "name": "Foot Path"
+                "terms": [],
+                "name": "Residential"
             },
-            "highway/living_street": {
-                "icon": "highway-living-street",
-                "fields": [
-                    "oneway",
-                    "maxspeed",
-                    "structure",
-                    "access",
-                    "surface"
-                ],
+            "landuse/retail": {
+                "icon": "shop",
                 "geometry": [
-                    "line"
+                    "point",
+                    "area"
                 ],
                 "tags": {
-                    "highway": "living_street"
+                    "landuse": "retail"
                 },
-                "name": "Living Street"
+                "name": "Retail"
             },
-            "highway/mini_roundabout": {
+            "landuse/vineyard": {
                 "geometry": [
-                    "vertex"
+                    "point",
+                    "area"
                 ],
                 "tags": {
-                    "highway": "mini_roundabout"
+                    "landuse": "vineyard"
                 },
-                "fields": [
-                    "clock_direction"
-                ],
-                "name": "Mini-Roundabout"
+                "terms": [],
+                "name": "Vineyard"
             },
-            "highway/motorway": {
-                "icon": "highway-motorway",
+            "leisure": {
                 "fields": [
-                    "oneway_yes",
-                    "maxspeed",
-                    "structure",
-                    "access",
-                    "lanes",
-                    "surface",
-                    "ref"
+                    "leisure"
                 ],
                 "geometry": [
-                    "line"
+                    "point",
+                    "vertex",
+                    "area"
                 ],
                 "tags": {
-                    "highway": "motorway"
+                    "leisure": "*"
                 },
-                "terms": [],
-                "name": "Motorway"
+                "name": "Leisure"
             },
-            "highway/motorway_junction": {
+            "leisure/common": {
                 "geometry": [
-                    "vertex"
+                    "point",
+                    "area"
+                ],
+                "terms": [
+                    "open space"
                 ],
                 "tags": {
-                    "highway": "motorway_junction"
+                    "leisure": "common"
                 },
-                "fields": [
-                    "ref"
-                ],
-                "name": "Motorway Junction / Exit"
+                "name": "Common"
             },
-            "highway/motorway_link": {
-                "icon": "highway-motorway-link",
-                "fields": [
-                    "oneway_yes",
-                    "maxspeed",
-                    "structure",
-                    "access",
-                    "surface",
-                    "ref"
-                ],
+            "leisure/dog_park": {
+                "icon": "dog-park",
                 "geometry": [
-                    "line"
+                    "point",
+                    "area"
                 ],
+                "terms": [],
                 "tags": {
-                    "highway": "motorway_link"
+                    "leisure": "dog_park"
                 },
-                "terms": [
-                    "ramp",
-                    "on ramp",
-                    "off ramp"
-                ],
-                "name": "Motorway Link"
+                "name": "Dog Park"
             },
-            "highway/path": {
-                "icon": "highway-path",
-                "fields": [
-                    "surface",
-                    "width",
-                    "structure",
-                    "access",
-                    "sac_scale",
-                    "incline",
-                    "trail_visibility",
-                    "ref"
-                ],
+            "leisure/firepit": {
                 "geometry": [
-                    "line"
+                    "point",
+                    "area"
                 ],
                 "tags": {
-                    "highway": "path"
+                    "leisure": "firepit"
                 },
-                "terms": [],
-                "name": "Path"
-            },
-            "highway/pedestrian": {
-                "fields": [
-                    "surface",
-                    "lit",
-                    "width",
-                    "oneway",
-                    "structure",
-                    "access"
+                "terms": [
+                    "fireplace",
+                    "campfire"
                 ],
+                "name": "Firepit"
+            },
+            "leisure/garden": {
+                "icon": "garden",
                 "geometry": [
-                    "line",
+                    "point",
+                    "vertex",
                     "area"
                 ],
                 "tags": {
-                    "highway": "pedestrian"
+                    "leisure": "garden"
                 },
-                "terms": [],
-                "name": "Pedestrian"
+                "name": "Garden"
             },
-            "highway/primary": {
-                "icon": "highway-primary",
+            "leisure/golf_course": {
+                "icon": "golf",
                 "fields": [
-                    "oneway",
-                    "maxspeed",
-                    "structure",
-                    "access",
-                    "lanes",
-                    "surface",
-                    "ref"
+                    "operator",
+                    "address",
+                    "opening_hours"
                 ],
                 "geometry": [
-                    "line"
+                    "point",
+                    "area"
+                ],
+                "terms": [
+                    "links"
                 ],
                 "tags": {
-                    "highway": "primary"
+                    "leisure": "golf_course"
                 },
-                "terms": [],
-                "name": "Primary Road"
+                "name": "Golf Course"
             },
-            "highway/primary_link": {
-                "icon": "highway-primary-link",
+            "leisure/ice_rink": {
+                "icon": "pitch",
                 "fields": [
-                    "oneway",
-                    "maxspeed",
-                    "structure",
-                    "access",
-                    "surface",
-                    "ref"
+                    "seasonal",
+                    "sport_ice",
+                    "operator",
+                    "address",
+                    "building_area",
+                    "opening_hours"
                 ],
                 "geometry": [
-                    "line"
+                    "point",
+                    "area"
                 ],
-                "tags": {
-                    "highway": "primary_link"
-                },
                 "terms": [
-                    "ramp",
-                    "on ramp",
-                    "off ramp"
-                ],
-                "name": "Primary Link"
-            },
-            "highway/residential": {
-                "icon": "highway-residential",
-                "fields": [
-                    "oneway",
-                    "maxspeed",
-                    "structure",
-                    "access",
-                    "surface"
-                ],
-                "geometry": [
-                    "line"
+                    "hockey",
+                    "skating",
+                    "curling"
                 ],
                 "tags": {
-                    "highway": "residential"
+                    "leisure": "ice_rink"
                 },
-                "terms": [],
-                "name": "Residential Road"
+                "name": "Ice Rink"
             },
-            "highway/rest_area": {
+            "leisure/marina": {
+                "icon": "harbor",
                 "geometry": [
                     "point",
                     "vertex",
                     "area"
                 ],
+                "terms": [
+                    "boat"
+                ],
                 "tags": {
-                    "highway": "rest_area"
+                    "leisure": "marina"
                 },
+                "name": "Marina"
+            },
+            "leisure/park": {
+                "icon": "park",
+                "geometry": [
+                    "point",
+                    "area"
+                ],
                 "terms": [
-                    "rest stop",
-                    "turnout",
-                    "lay-by"
+                    "esplanade",
+                    "estate",
+                    "forest",
+                    "garden",
+                    "grass",
+                    "green",
+                    "grounds",
+                    "lawn",
+                    "lot",
+                    "meadow",
+                    "parkland",
+                    "place",
+                    "playground",
+                    "plaza",
+                    "pleasure garden",
+                    "recreation area",
+                    "square",
+                    "tract",
+                    "village green",
+                    "woodland"
                 ],
-                "name": "Rest Area"
+                "tags": {
+                    "leisure": "park"
+                },
+                "name": "Park"
             },
-            "highway/road": {
-                "icon": "highway-road",
-                "fields": [
-                    "oneway",
-                    "maxspeed",
-                    "structure",
-                    "access",
-                    "surface"
-                ],
+            "leisure/picnic_table": {
                 "geometry": [
-                    "line"
+                    "point"
                 ],
                 "tags": {
-                    "highway": "road"
+                    "leisure": "picnic_table"
                 },
-                "terms": [],
-                "name": "Unknown Road"
+                "terms": [
+                    "bench"
+                ],
+                "name": "Picnic Table"
             },
-            "highway/secondary": {
-                "icon": "highway-secondary",
+            "leisure/pitch": {
+                "icon": "pitch",
                 "fields": [
-                    "oneway",
-                    "maxspeed",
-                    "structure",
-                    "access",
-                    "lanes",
+                    "sport",
                     "surface",
-                    "ref"
+                    "lit"
                 ],
                 "geometry": [
-                    "line"
+                    "point",
+                    "area"
                 ],
                 "tags": {
-                    "highway": "secondary"
+                    "leisure": "pitch"
                 },
-                "terms": [],
-                "name": "Secondary Road"
+                "terms": [
+                    "field"
+                ],
+                "name": "Sport Pitch"
             },
-            "highway/secondary_link": {
-                "icon": "highway-secondary-link",
+            "leisure/pitch/american_football": {
+                "icon": "america-football",
                 "fields": [
-                    "oneway",
-                    "maxspeed",
-                    "structure",
-                    "access",
                     "surface",
-                    "ref"
+                    "lit"
                 ],
                 "geometry": [
-                    "line"
+                    "point",
+                    "area"
                 ],
                 "tags": {
-                    "highway": "secondary_link"
+                    "leisure": "pitch",
+                    "sport": "american_football"
                 },
-                "terms": [
-                    "ramp",
-                    "on ramp",
-                    "off ramp"
-                ],
-                "name": "Secondary Link"
+                "terms": [],
+                "name": "American Football Field"
             },
-            "highway/service": {
-                "icon": "highway-service",
+            "leisure/pitch/baseball": {
+                "icon": "baseball",
                 "fields": [
-                    "service",
-                    "oneway",
-                    "maxspeed",
-                    "structure",
-                    "access",
-                    "surface"
+                    "lit"
                 ],
                 "geometry": [
-                    "line"
+                    "point",
+                    "area"
                 ],
                 "tags": {
-                    "highway": "service"
+                    "leisure": "pitch",
+                    "sport": "baseball"
                 },
                 "terms": [],
-                "name": "Service Road"
+                "name": "Baseball Diamond"
             },
-            "highway/service/alley": {
-                "icon": "highway-service",
+            "leisure/pitch/basketball": {
+                "icon": "basketball",
                 "fields": [
-                    "oneway",
-                    "access",
-                    "surface"
+                    "surface",
+                    "hoops",
+                    "lit"
                 ],
                 "geometry": [
-                    "line"
+                    "point",
+                    "area"
                 ],
                 "tags": {
-                    "highway": "service",
-                    "service": "alley"
+                    "leisure": "pitch",
+                    "sport": "basketball"
                 },
-                "name": "Alley"
+                "terms": [],
+                "name": "Basketball Court"
             },
-            "highway/service/drive-through": {
-                "icon": "highway-service",
+            "leisure/pitch/skateboard": {
+                "icon": "pitch",
                 "fields": [
-                    "oneway",
-                    "access",
-                    "surface"
+                    "surface",
+                    "lit"
                 ],
                 "geometry": [
-                    "line"
+                    "point",
+                    "area"
                 ],
                 "tags": {
-                    "highway": "service",
-                    "service": "drive-through"
+                    "leisure": "pitch",
+                    "sport": "skateboard"
                 },
-                "name": "Drive-Through"
+                "terms": [],
+                "name": "Skate Park"
             },
-            "highway/service/driveway": {
-                "icon": "highway-service",
+            "leisure/pitch/soccer": {
+                "icon": "soccer",
                 "fields": [
-                    "oneway",
-                    "access",
-                    "surface"
+                    "surface",
+                    "lit"
                 ],
                 "geometry": [
-                    "line"
+                    "point",
+                    "area"
                 ],
                 "tags": {
-                    "highway": "service",
-                    "service": "driveway"
+                    "leisure": "pitch",
+                    "sport": "soccer"
                 },
-                "name": "Driveway"
+                "terms": [],
+                "name": "Soccer Field"
             },
-            "highway/service/emergency_access": {
-                "icon": "highway-service",
+            "leisure/pitch/tennis": {
+                "icon": "tennis",
                 "fields": [
-                    "oneway",
-                    "access",
-                    "surface"
+                    "surface",
+                    "lit"
                 ],
                 "geometry": [
-                    "line"
+                    "point",
+                    "area"
                 ],
                 "tags": {
-                    "highway": "service",
-                    "service": "emergency_access"
+                    "leisure": "pitch",
+                    "sport": "tennis"
                 },
-                "name": "Emergency Access"
+                "terms": [],
+                "name": "Tennis Court"
             },
-            "highway/service/parking_aisle": {
-                "icon": "highway-service",
+            "leisure/pitch/volleyball": {
+                "icon": "pitch",
                 "fields": [
-                    "oneway",
-                    "access",
-                    "surface"
+                    "surface",
+                    "lit"
                 ],
                 "geometry": [
-                    "line"
+                    "point",
+                    "area"
                 ],
                 "tags": {
-                    "highway": "service",
-                    "service": "parking_aisle"
+                    "leisure": "pitch",
+                    "sport": "volleyball"
                 },
-                "name": "Parking Aisle"
+                "terms": [],
+                "name": "Volleyball Court"
             },
-            "highway/services": {
+            "leisure/playground": {
+                "icon": "playground",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
-                "tags": {
-                    "highway": "services"
-                },
                 "terms": [
-                    "services",
-                    "travel plaza",
-                    "service station"
+                    "jungle gym",
+                    "play area"
                 ],
-                "name": "Service Area"
+                "tags": {
+                    "leisure": "playground"
+                },
+                "name": "Playground"
             },
-            "highway/steps": {
+            "leisure/running_track": {
+                "icon": "pitch",
                 "fields": [
                     "surface",
+                    "sport_racing",
                     "lit",
                     "width",
-                    "access"
+                    "lanes"
                 ],
-                "icon": "highway-steps",
                 "geometry": [
+                    "point",
                     "line"
                 ],
                 "tags": {
-                    "highway": "steps"
+                    "leisure": "track",
+                    "sport": "running"
                 },
-                "terms": [
-                    "stairs",
-                    "staircase"
-                ],
-                "name": "Steps"
+                "name": "Running Track"
             },
-            "highway/stop": {
+            "leisure/slipway": {
                 "geometry": [
-                    "vertex"
+                    "point",
+                    "line"
                 ],
-                "tags": {
-                    "highway": "stop"
-                },
                 "terms": [
-                    "stop sign"
-                ],
-                "name": "Stop Sign"
-            },
-            "highway/tertiary": {
-                "icon": "highway-tertiary",
-                "fields": [
-                    "oneway",
-                    "maxspeed",
-                    "structure",
-                    "access",
-                    "lanes",
-                    "surface",
-                    "ref"
-                ],
-                "geometry": [
-                    "line"
+                    "boat launch",
+                    "boat ramp"
                 ],
                 "tags": {
-                    "highway": "tertiary"
+                    "leisure": "slipway"
                 },
-                "terms": [],
-                "name": "Tertiary Road"
+                "name": "Slipway"
             },
-            "highway/tertiary_link": {
-                "icon": "highway-tertiary-link",
+            "leisure/sports_center": {
+                "icon": "pitch",
                 "fields": [
-                    "oneway",
-                    "maxspeed",
-                    "structure",
-                    "access",
-                    "surface",
-                    "ref"
+                    "sport",
+                    "address",
+                    "building_area",
+                    "opening_hours"
                 ],
                 "geometry": [
-                    "line"
+                    "point",
+                    "area"
                 ],
                 "tags": {
-                    "highway": "tertiary_link"
+                    "leisure": "sports_centre"
                 },
                 "terms": [
-                    "ramp",
-                    "on ramp",
-                    "off ramp"
+                    "gym"
                 ],
-                "name": "Tertiary Link"
+                "name": "Sports Center / Gym"
             },
-            "highway/track": {
-                "icon": "highway-track",
+            "leisure/stadium": {
+                "icon": "pitch",
                 "fields": [
-                    "tracktype",
-                    "oneway",
-                    "maxspeed",
-                    "structure",
-                    "access",
-                    "surface"
+                    "sport",
+                    "address"
                 ],
                 "geometry": [
-                    "line"
+                    "point",
+                    "area"
                 ],
                 "tags": {
-                    "highway": "track"
+                    "leisure": "stadium"
                 },
-                "terms": [],
-                "name": "Track"
+                "name": "Stadium"
             },
-            "highway/traffic_signals": {
+            "leisure/swimming_pool": {
+                "icon": "swimming",
+                "fields": [
+                    "access_simple",
+                    "operator",
+                    "address"
+                ],
                 "geometry": [
-                    "vertex"
+                    "point",
+                    "vertex",
+                    "area"
                 ],
                 "tags": {
-                    "highway": "traffic_signals"
+                    "leisure": "swimming_pool"
                 },
-                "terms": [
-                    "light",
-                    "stoplight",
-                    "traffic light"
-                ],
-                "name": "Traffic Signals"
+                "name": "Swimming Pool"
             },
-            "highway/trunk": {
-                "icon": "highway-trunk",
+            "leisure/track": {
+                "icon": "highway-road",
                 "fields": [
-                    "oneway",
-                    "maxspeed",
-                    "structure",
-                    "access",
-                    "lanes",
                     "surface",
-                    "ref"
+                    "sport_racing",
+                    "lit",
+                    "width",
+                    "lanes"
                 ],
                 "geometry": [
+                    "point",
                     "line"
                 ],
                 "tags": {
-                    "highway": "trunk"
+                    "leisure": "track"
                 },
-                "terms": [],
-                "name": "Trunk Road"
+                "name": "Racetrack (non-Motorsport)"
             },
-            "highway/trunk_link": {
-                "icon": "highway-trunk-link",
+            "line": {
+                "name": "Line",
+                "tags": {},
+                "geometry": [
+                    "line"
+                ],
+                "matchScore": 0.1
+            },
+            "man_made": {
                 "fields": [
-                    "oneway",
-                    "maxspeed",
-                    "structure",
-                    "access",
-                    "surface",
-                    "ref"
+                    "man_made"
                 ],
                 "geometry": [
-                    "line"
+                    "point",
+                    "vertex",
+                    "line",
+                    "area"
                 ],
                 "tags": {
-                    "highway": "trunk_link"
+                    "man_made": "*"
                 },
-                "terms": [
-                    "ramp",
-                    "on ramp",
-                    "off ramp"
-                ],
-                "name": "Trunk Link"
+                "name": "Man Made"
             },
-            "highway/turning_circle": {
-                "icon": "circle",
+            "man_made/breakwater": {
                 "geometry": [
-                    "vertex"
+                    "line",
+                    "area"
                 ],
                 "tags": {
-                    "highway": "turning_circle"
+                    "man_made": "breakwater"
                 },
-                "terms": [],
-                "name": "Turning Circle"
+                "name": "Breakwater"
             },
-            "highway/unclassified": {
-                "icon": "highway-unclassified",
-                "fields": [
-                    "oneway",
-                    "maxspeed",
-                    "structure",
-                    "access",
-                    "surface"
-                ],
+            "man_made/cutline": {
                 "geometry": [
                     "line"
                 ],
                 "tags": {
-                    "highway": "unclassified"
+                    "man_made": "cutline"
                 },
-                "terms": [],
-                "name": "Unclassified Road"
+                "name": "Cut line"
             },
-            "historic": {
-                "fields": [
-                    "historic"
-                ],
+            "man_made/embankment": {
                 "geometry": [
-                    "point",
-                    "vertex",
-                    "area"
+                    "line"
                 ],
                 "tags": {
-                    "historic": "*"
+                    "man_made": "embankment"
                 },
-                "name": "Historic Site"
+                "name": "Embankment",
+                "searchable": false
             },
-            "historic/archaeological_site": {
+            "man_made/flagpole": {
                 "geometry": [
-                    "point",
-                    "vertex",
-                    "area"
+                    "point"
                 ],
                 "tags": {
-                    "historic": "archaeological_site"
+                    "man_made": "flagpole"
                 },
-                "name": "Archaeological Site"
+                "name": "Flagpole",
+                "icon": "embassy"
             },
-            "historic/boundary_stone": {
+            "man_made/lighthouse": {
+                "icon": "lighthouse",
                 "geometry": [
                     "point",
-                    "vertex"
+                    "area"
                 ],
                 "tags": {
-                    "historic": "boundary_stone"
+                    "man_made": "lighthouse"
                 },
-                "name": "Boundary Stone"
+                "name": "Lighthouse"
             },
-            "historic/castle": {
+            "man_made/observation": {
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
+                "terms": [
+                    "lookout tower",
+                    "fire tower"
+                ],
                 "tags": {
-                    "historic": "castle"
+                    "man_made": "tower",
+                    "tower:type": "observation"
                 },
-                "name": "Castle"
+                "name": "Observation Tower"
             },
-            "historic/memorial": {
-                "icon": "monument",
+            "man_made/pier": {
                 "geometry": [
-                    "point",
-                    "vertex",
+                    "line",
                     "area"
                 ],
                 "tags": {
-                    "historic": "memorial"
+                    "man_made": "pier"
                 },
-                "name": "Memorial"
+                "name": "Pier"
             },
-            "historic/monument": {
-                "icon": "monument",
+            "man_made/pipeline": {
+                "icon": "pipeline",
+                "fields": [
+                    "location",
+                    "operator"
+                ],
                 "geometry": [
-                    "point",
-                    "vertex",
-                    "area"
+                    "line"
                 ],
                 "tags": {
-                    "historic": "monument"
+                    "man_made": "pipeline"
                 },
-                "name": "Monument"
+                "name": "Pipeline"
             },
-            "historic/ruins": {
+            "man_made/survey_point": {
+                "icon": "monument",
+                "fields": [
+                    "ref"
+                ],
                 "geometry": [
                     "point",
-                    "vertex",
-                    "area"
+                    "vertex"
                 ],
                 "tags": {
-                    "historic": "ruins"
+                    "man_made": "survey_point"
                 },
-                "name": "Ruins"
+                "name": "Survey Point"
             },
-            "historic/wayside_cross": {
+            "man_made/tower": {
+                "fields": [
+                    "towertype"
+                ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "tags": {
-                    "historic": "wayside_cross"
+                    "man_made": "tower"
                 },
-                "name": "Wayside Cross"
+                "name": "Tower"
             },
-            "historic/wayside_shrine": {
+            "man_made/wastewater_plant": {
+                "icon": "water",
+                "fields": [
+                    "operator",
+                    "address"
+                ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
+                "terms": [
+                    "sewage*",
+                    "water treatment plant",
+                    "reclamation plant"
+                ],
                 "tags": {
-                    "historic": "wayside_shrine"
+                    "man_made": "wastewater_plant"
                 },
-                "name": "Wayside Shrine"
+                "name": "Wastewater Plant"
             },
-            "landuse": {
+            "man_made/water_tower": {
+                "icon": "water",
                 "fields": [
-                    "landuse"
+                    "operator"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "tags": {
-                    "landuse": "*"
+                    "man_made": "water_tower"
                 },
-                "name": "Landuse"
+                "name": "Water Tower"
             },
-            "landuse/allotments": {
+            "man_made/water_well": {
+                "fields": [
+                    "operator"
+                ],
                 "geometry": [
                     "point",
                     "area"
                 ],
                 "tags": {
-                    "landuse": "allotments"
+                    "man_made": "water_well"
                 },
-                "terms": [],
-                "name": "Allotments"
+                "name": "Water Well"
             },
-            "landuse/basin": {
+            "man_made/water_works": {
+                "icon": "water",
+                "fields": [
+                    "operator",
+                    "address"
+                ],
                 "geometry": [
                     "point",
                     "area"
                 ],
                 "tags": {
-                    "landuse": "basin"
+                    "man_made": "water_works"
                 },
-                "terms": [],
-                "name": "Basin"
+                "name": "Water Works"
             },
-            "landuse/cemetery": {
-                "icon": "cemetery",
-                "fields": [
-                    "religion",
-                    "denomination"
-                ],
+            "military/airfield": {
+                "icon": "airfield",
                 "geometry": [
                     "point",
                     "vertex",
                     "area"
                 ],
+                "terms": [],
                 "tags": {
-                    "landuse": "cemetery"
+                    "military": "airfield"
                 },
-                "terms": [],
-                "name": "Cemetery"
+                "name": "Airfield"
             },
-            "landuse/churchyard": {
-                "fields": [
-                    "religion",
-                    "denomination"
-                ],
+            "military/barracks": {
                 "geometry": [
+                    "point",
+                    "vertex",
                     "area"
                 ],
+                "terms": [],
                 "tags": {
-                    "landuse": "churchyard"
+                    "military": "barracks"
                 },
-                "terms": [],
-                "name": "Churchyard"
+                "name": "Barracks"
             },
-            "landuse/commercial": {
-                "icon": "commercial",
+            "military/bunker": {
                 "geometry": [
                     "point",
+                    "vertex",
                     "area"
                 ],
+                "terms": [],
                 "tags": {
-                    "landuse": "commercial"
+                    "military": "bunker"
                 },
-                "terms": [],
-                "name": "Commercial"
+                "name": "Bunker"
             },
-            "landuse/construction": {
-                "fields": [
-                    "construction",
-                    "operator"
-                ],
+            "military/range": {
                 "geometry": [
                     "point",
+                    "vertex",
                     "area"
                 ],
+                "terms": [],
                 "tags": {
-                    "landuse": "construction"
+                    "military": "range"
                 },
-                "terms": [],
-                "name": "Construction"
+                "name": "Military Range"
             },
-            "landuse/farm": {
+            "natural": {
                 "fields": [
-                    "crop"
+                    "natural"
                 ],
                 "geometry": [
                     "point",
+                    "vertex",
                     "area"
                 ],
                 "tags": {
-                    "landuse": "farm"
+                    "natural": "*"
                 },
-                "terms": [],
-                "name": "Farm",
-                "icon": "farm"
+                "name": "Natural"
             },
-            "landuse/farmland": {
-                "fields": [
-                    "crop"
-                ],
+            "natural/bay": {
                 "geometry": [
                     "point",
                     "area"
                 ],
+                "terms": [],
                 "tags": {
-                    "landuse": "farmland"
+                    "natural": "bay"
                 },
-                "terms": [],
-                "name": "Farmland",
-                "icon": "farm",
-                "searchable": false
+                "name": "Bay"
             },
-            "landuse/farmyard": {
+            "natural/beach": {
                 "fields": [
-                    "crop"
+                    "surface"
                 ],
                 "geometry": [
                     "point",
                     "area"
                 ],
+                "terms": [],
                 "tags": {
-                    "landuse": "farmyard"
+                    "natural": "beach"
                 },
-                "terms": [],
-                "name": "Farmyard",
-                "icon": "farm"
+                "name": "Beach"
             },
-            "landuse/forest": {
-                "fields": [
-                    "wood"
-                ],
-                "icon": "park2",
+            "natural/cliff": {
                 "geometry": [
                     "point",
+                    "vertex",
+                    "line",
                     "area"
                 ],
+                "terms": [],
                 "tags": {
-                    "landuse": "forest"
+                    "natural": "cliff"
                 },
-                "terms": [],
-                "name": "Forest"
+                "name": "Cliff"
             },
-            "landuse/grass": {
+            "natural/coastline": {
                 "geometry": [
-                    "point",
-                    "area"
+                    "line"
+                ],
+                "terms": [
+                    "shore"
                 ],
                 "tags": {
-                    "landuse": "grass"
+                    "natural": "coastline"
                 },
-                "terms": [],
-                "name": "Grass"
+                "name": "Coastline"
             },
-            "landuse/industrial": {
-                "icon": "industrial",
+            "natural/fell": {
                 "geometry": [
-                    "point",
                     "area"
                 ],
+                "terms": [],
                 "tags": {
-                    "landuse": "industrial"
+                    "natural": "fell"
                 },
-                "terms": [],
-                "name": "Industrial"
+                "name": "Fell"
             },
-            "landuse/landfill": {
+            "natural/glacier": {
                 "geometry": [
                     "area"
                 ],
+                "terms": [],
                 "tags": {
-                    "landuse": "landfill"
+                    "natural": "glacier"
                 },
-                "terms": [
-                    "dump"
-                ],
-                "name": "Landfill"
+                "name": "Glacier"
             },
-            "landuse/meadow": {
+            "natural/grassland": {
                 "geometry": [
                     "point",
                     "area"
                 ],
+                "terms": [],
                 "tags": {
-                    "landuse": "meadow"
+                    "natural": "grassland"
                 },
-                "terms": [],
-                "name": "Meadow"
+                "name": "Grassland"
             },
-            "landuse/military": {
+            "natural/heath": {
                 "geometry": [
                     "area"
                 ],
+                "terms": [],
                 "tags": {
-                    "landuse": "military"
+                    "natural": "heath"
                 },
-                "terms": [],
-                "name": "Military"
+                "name": "Heath"
             },
-            "landuse/orchard": {
+            "natural/peak": {
+                "icon": "triangle",
                 "fields": [
-                    "trees"
+                    "elevation"
                 ],
                 "geometry": [
                     "point",
-                    "area"
+                    "vertex"
+                ],
+                "tags": {
+                    "natural": "peak"
+                },
+                "terms": [
+                    "acme",
+                    "aiguille",
+                    "alp",
+                    "climax",
+                    "crest",
+                    "crown",
+                    "hill",
+                    "mount",
+                    "mountain",
+                    "pinnacle",
+                    "summit",
+                    "tip",
+                    "top"
                 ],
-                "tags": {
-                    "landuse": "orchard"
-                },
-                "terms": [],
-                "name": "Orchard",
-                "icon": "park2"
+                "name": "Peak"
             },
-            "landuse/quarry": {
+            "natural/scree": {
                 "geometry": [
-                    "point",
                     "area"
                 ],
                 "tags": {
-                    "landuse": "quarry"
+                    "natural": "scree"
                 },
-                "terms": [],
-                "name": "Quarry"
+                "terms": [
+                    "loose rocks"
+                ],
+                "name": "Scree"
             },
-            "landuse/residential": {
-                "icon": "building",
+            "natural/scrub": {
                 "geometry": [
-                    "point",
                     "area"
                 ],
                 "tags": {
-                    "landuse": "residential"
+                    "natural": "scrub"
                 },
                 "terms": [],
-                "name": "Residential"
+                "name": "Scrub"
             },
-            "landuse/retail": {
-                "icon": "shop",
+            "natural/spring": {
                 "geometry": [
                     "point",
-                    "area"
+                    "vertex"
                 ],
+                "terms": [],
                 "tags": {
-                    "landuse": "retail"
+                    "natural": "spring"
                 },
-                "name": "Retail"
+                "name": "Spring"
             },
-            "landuse/vineyard": {
+            "natural/tree": {
+                "fields": [
+                    "tree_type",
+                    "denotation"
+                ],
+                "icon": "park",
                 "geometry": [
                     "point",
-                    "area"
+                    "vertex"
                 ],
+                "terms": [],
                 "tags": {
-                    "landuse": "vineyard"
+                    "natural": "tree"
                 },
-                "terms": [],
-                "name": "Vineyard"
+                "name": "Tree"
             },
-            "leisure": {
+            "natural/water": {
                 "fields": [
-                    "leisure"
+                    "water"
                 ],
                 "geometry": [
-                    "point",
-                    "vertex",
                     "area"
                 ],
                 "tags": {
-                    "leisure": "*"
+                    "natural": "water"
                 },
-                "name": "Leisure"
+                "icon": "water",
+                "name": "Water"
             },
-            "leisure/common": {
+            "natural/water/lake": {
                 "geometry": [
-                    "point",
                     "area"
                 ],
-                "terms": [
-                    "open space"
-                ],
                 "tags": {
-                    "leisure": "common"
+                    "natural": "water",
+                    "water": "lake"
                 },
-                "name": "Common"
-            },
-            "leisure/dog_park": {
-                "geometry": [
-                    "point",
-                    "area"
+                "terms": [
+                    "lakelet",
+                    "loch",
+                    "mere"
                 ],
-                "terms": [],
-                "tags": {
-                    "leisure": "dog_park"
-                },
-                "name": "Dog Park",
-                "icon": "dog-park"
+                "icon": "water",
+                "name": "Lake"
             },
-            "leisure/firepit": {
+            "natural/water/pond": {
                 "geometry": [
-                    "point",
                     "area"
                 ],
                 "tags": {
-                    "leisure": "firepit"
+                    "natural": "water",
+                    "water": "pond"
                 },
                 "terms": [
-                    "fireplace",
-                    "campfire"
+                    "lakelet",
+                    "millpond",
+                    "tarn",
+                    "pool",
+                    "mere"
                 ],
-                "name": "Firepit"
+                "icon": "water",
+                "name": "Pond"
             },
-            "leisure/garden": {
-                "icon": "garden",
+            "natural/water/reservoir": {
                 "geometry": [
-                    "point",
-                    "vertex",
                     "area"
                 ],
                 "tags": {
-                    "leisure": "garden"
+                    "natural": "water",
+                    "water": "reservoir"
                 },
-                "name": "Garden"
+                "icon": "water",
+                "name": "Reservoir"
             },
-            "leisure/golf_course": {
-                "icon": "golf",
+            "natural/wetland": {
+                "icon": "wetland",
                 "fields": [
-                    "operator",
-                    "address"
+                    "wetland"
                 ],
                 "geometry": [
                     "point",
                     "area"
                 ],
                 "tags": {
-                    "leisure": "golf_course"
+                    "natural": "wetland"
                 },
-                "terms": [
-                    "links"
-                ],
-                "name": "Golf Course"
+                "terms": [],
+                "name": "Wetland"
             },
-            "leisure/ice_rink": {
-                "icon": "pitch",
+            "natural/wood": {
                 "fields": [
-                    "building_area",
-                    "seasonal",
-                    "sport_ice"
+                    "wood"
                 ],
+                "icon": "park2",
                 "geometry": [
                     "point",
                     "area"
                 ],
-                "terms": [
-                    "hockey",
-                    "skating",
-                    "curling"
-                ],
                 "tags": {
-                    "leisure": "ice_rink"
+                    "natural": "wood"
                 },
-                "name": "Ice Rink"
+                "terms": [],
+                "name": "Wood"
             },
-            "leisure/marina": {
-                "icon": "harbor",
+            "office": {
+                "icon": "commercial",
+                "fields": [
+                    "office",
+                    "address",
+                    "building_area",
+                    "opening_hours",
+                    "smoking"
+                ],
                 "geometry": [
                     "point",
                     "vertex",
                     "area"
                 ],
                 "tags": {
-                    "leisure": "marina"
+                    "office": "*"
                 },
-                "name": "Marina"
+                "terms": [],
+                "name": "Office"
             },
-            "leisure/park": {
-                "icon": "park",
+            "office/accountant": {
+                "icon": "commercial",
+                "fields": [
+                    "address",
+                    "building_area",
+                    "opening_hours"
+                ],
                 "geometry": [
                     "point",
+                    "vertex",
                     "area"
                 ],
-                "terms": [
-                    "esplanade",
-                    "estate",
-                    "forest",
-                    "garden",
-                    "grass",
-                    "green",
-                    "grounds",
-                    "lawn",
-                    "lot",
-                    "meadow",
-                    "parkland",
-                    "place",
-                    "playground",
-                    "plaza",
-                    "pleasure garden",
-                    "recreation area",
-                    "square",
-                    "tract",
-                    "village green",
-                    "woodland"
-                ],
-                "tags": {
-                    "leisure": "park"
-                },
-                "name": "Park"
-            },
-            "leisure/picnic_table": {
-                "geometry": [
-                    "point"
-                ],
                 "tags": {
-                    "leisure": "picnic_table"
+                    "office": "accountant"
                 },
-                "terms": [
-                    "bench",
-                    "table"
-                ],
-                "name": "Picnic Table"
+                "terms": [],
+                "name": "Accountant"
             },
-            "leisure/pitch": {
-                "icon": "pitch",
+            "office/administrative": {
+                "icon": "commercial",
                 "fields": [
-                    "sport",
-                    "surface",
-                    "lit"
+                    "address",
+                    "building_area",
+                    "opening_hours"
                 ],
                 "geometry": [
                     "point",
+                    "vertex",
                     "area"
                 ],
                 "tags": {
-                    "leisure": "pitch"
+                    "office": "administrative"
                 },
                 "terms": [],
-                "name": "Sport Pitch"
+                "name": "Administrative Office"
             },
-            "leisure/pitch/american_football": {
-                "icon": "america-football",
+            "office/architect": {
+                "icon": "commercial",
                 "fields": [
-                    "surface",
-                    "lit"
+                    "address",
+                    "building_area",
+                    "opening_hours"
                 ],
                 "geometry": [
                     "point",
+                    "vertex",
                     "area"
                 ],
                 "tags": {
-                    "leisure": "pitch",
-                    "sport": "american_football"
+                    "office": "architect"
                 },
                 "terms": [],
-                "name": "American Football Field"
+                "name": "Architect"
             },
-            "leisure/pitch/baseball": {
-                "icon": "baseball",
+            "office/company": {
+                "icon": "commercial",
                 "fields": [
-                    "lit"
+                    "address",
+                    "building_area",
+                    "opening_hours",
+                    "smoking"
                 ],
                 "geometry": [
                     "point",
+                    "vertex",
                     "area"
                 ],
                 "tags": {
-                    "leisure": "pitch",
-                    "sport": "baseball"
+                    "office": "company"
                 },
                 "terms": [],
-                "name": "Baseball Diamond"
+                "name": "Company Office"
             },
-            "leisure/pitch/basketball": {
-                "icon": "basketball",
+            "office/educational_institution": {
+                "icon": "commercial",
                 "fields": [
-                    "surface",
-                    "hoops",
-                    "lit"
+                    "address",
+                    "building_area",
+                    "opening_hours"
                 ],
                 "geometry": [
                     "point",
+                    "vertex",
                     "area"
                 ],
                 "tags": {
-                    "leisure": "pitch",
-                    "sport": "basketball"
+                    "office": "educational_institution"
                 },
                 "terms": [],
-                "name": "Basketball Court"
+                "name": "Educational Institution"
             },
-            "leisure/pitch/skateboard": {
-                "icon": "pitch",
+            "office/employment_agency": {
+                "icon": "commercial",
                 "fields": [
-                    "surface",
-                    "lit"
+                    "address",
+                    "building_area",
+                    "opening_hours"
                 ],
                 "geometry": [
                     "point",
+                    "vertex",
                     "area"
                 ],
                 "tags": {
-                    "leisure": "pitch",
-                    "sport": "skateboard"
+                    "office": "employment_agency"
                 },
-                "terms": [],
-                "name": "Skate Park"
+                "terms": [
+                    "job"
+                ],
+                "name": "Employment Agency"
             },
-            "leisure/pitch/soccer": {
-                "icon": "soccer",
+            "office/estate_agent": {
+                "icon": "commercial",
                 "fields": [
-                    "surface",
-                    "lit"
+                    "address",
+                    "building_area",
+                    "opening_hours"
                 ],
                 "geometry": [
                     "point",
+                    "vertex",
                     "area"
                 ],
                 "tags": {
-                    "leisure": "pitch",
-                    "sport": "soccer"
+                    "office": "estate_agent"
                 },
                 "terms": [],
-                "name": "Soccer Field"
+                "name": "Real Estate Office"
             },
-            "leisure/pitch/tennis": {
-                "icon": "tennis",
+            "office/financial": {
+                "icon": "commercial",
                 "fields": [
-                    "surface",
-                    "lit"
+                    "address",
+                    "building_area",
+                    "opening_hours"
                 ],
                 "geometry": [
                     "point",
+                    "vertex",
                     "area"
                 ],
                 "tags": {
-                    "leisure": "pitch",
-                    "sport": "tennis"
+                    "office": "financial"
                 },
                 "terms": [],
-                "name": "Tennis Court"
+                "name": "Financial Office"
             },
-            "leisure/pitch/volleyball": {
-                "icon": "pitch",
+            "office/government": {
+                "icon": "commercial",
                 "fields": [
-                    "surface",
-                    "lit"
+                    "address",
+                    "building_area",
+                    "opening_hours"
                 ],
                 "geometry": [
                     "point",
+                    "vertex",
                     "area"
                 ],
                 "tags": {
-                    "leisure": "pitch",
-                    "sport": "volleyball"
+                    "office": "government"
                 },
                 "terms": [],
-                "name": "Volleyball Court"
+                "name": "Government Office"
             },
-            "leisure/playground": {
-                "icon": "playground",
+            "office/insurance": {
+                "icon": "commercial",
+                "fields": [
+                    "address",
+                    "building_area",
+                    "opening_hours"
+                ],
                 "geometry": [
                     "point",
+                    "vertex",
                     "area"
                 ],
                 "tags": {
-                    "leisure": "playground"
+                    "office": "insurance"
                 },
-                "name": "Playground",
-                "terms": [
-                    "jungle gym",
-                    "play area"
-                ]
+                "terms": [],
+                "name": "Insurance Office"
             },
-            "leisure/slipway": {
+            "office/it": {
+                "icon": "commercial",
+                "fields": [
+                    "address",
+                    "building_area",
+                    "opening_hours"
+                ],
                 "geometry": [
                     "point",
-                    "line"
+                    "vertex",
+                    "area"
                 ],
                 "tags": {
-                    "leisure": "slipway"
+                    "office": "it"
                 },
-                "name": "Slipway"
+                "terms": [],
+                "name": "IT Office"
             },
-            "leisure/sports_center": {
-                "icon": "pitch",
+            "office/lawyer": {
+                "icon": "commercial",
+                "fields": [
+                    "address",
+                    "building_area",
+                    "opening_hours"
+                ],
                 "geometry": [
                     "point",
+                    "vertex",
                     "area"
                 ],
                 "tags": {
-                    "leisure": "sports_centre"
+                    "office": "lawyer"
                 },
-                "terms": [
-                    "gym"
-                ],
+                "terms": [],
+                "name": "Law Office"
+            },
+            "office/newspaper": {
+                "icon": "commercial",
                 "fields": [
-                    "sport"
+                    "address",
+                    "building_area",
+                    "opening_hours"
                 ],
-                "name": "Sports Center / Gym"
-            },
-            "leisure/stadium": {
-                "icon": "pitch",
                 "geometry": [
                     "point",
+                    "vertex",
                     "area"
                 ],
                 "tags": {
-                    "leisure": "stadium"
+                    "office": "newspaper"
                 },
-                "fields": [
-                    "sport"
-                ],
-                "name": "Stadium"
+                "terms": [],
+                "name": "Newspaper"
             },
-            "leisure/swimming_pool": {
+            "office/ngo": {
+                "icon": "commercial",
                 "fields": [
-                    "access_simple"
+                    "address",
+                    "building_area",
+                    "opening_hours",
+                    "smoking"
                 ],
                 "geometry": [
                     "point",
@@ -68631,268 +72592,326 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                     "area"
                 ],
                 "tags": {
-                    "leisure": "swimming_pool"
+                    "office": "ngo"
                 },
-                "icon": "swimming",
-                "name": "Swimming Pool"
+                "terms": [],
+                "name": "NGO Office"
             },
-            "leisure/track": {
-                "icon": "pitch",
+            "office/physician": {
+                "icon": "commercial",
                 "fields": [
-                    "surface",
-                    "lit",
-                    "width"
+                    "address",
+                    "building_area",
+                    "opening_hours"
                 ],
                 "geometry": [
                     "point",
-                    "line",
+                    "vertex",
                     "area"
                 ],
                 "tags": {
-                    "leisure": "track"
+                    "office": "physician"
                 },
-                "name": "Race Track"
-            },
-            "line": {
-                "name": "Line",
-                "tags": {},
-                "geometry": [
-                    "line"
-                ],
-                "matchScore": 0.1
+                "terms": [],
+                "name": "Physician"
             },
-            "man_made": {
+            "office/political_party": {
+                "icon": "commercial",
                 "fields": [
-                    "man_made"
+                    "address",
+                    "building_area",
+                    "opening_hours"
                 ],
                 "geometry": [
                     "point",
                     "vertex",
-                    "line",
                     "area"
                 ],
                 "tags": {
-                    "man_made": "*"
+                    "office": "political_party"
                 },
-                "name": "Man Made"
+                "terms": [],
+                "name": "Political Party"
             },
-            "man_made/breakwater": {
+            "office/research": {
+                "icon": "commercial",
+                "fields": [
+                    "address",
+                    "building_area",
+                    "opening_hours"
+                ],
                 "geometry": [
-                    "line",
+                    "point",
+                    "vertex",
                     "area"
                 ],
                 "tags": {
-                    "man_made": "breakwater"
+                    "office": "research"
                 },
-                "name": "Breakwater"
+                "terms": [],
+                "name": "Research Office"
             },
-            "man_made/cutline": {
-                "geometry": [
-                    "line"
+            "office/telecommunication": {
+                "icon": "commercial",
+                "fields": [
+                    "address",
+                    "building_area",
+                    "opening_hours"
                 ],
-                "tags": {
-                    "man_made": "cutline"
-                },
-                "name": "Cut line"
-            },
-            "man_made/embankment": {
                 "geometry": [
-                    "line"
+                    "point",
+                    "vertex",
+                    "area"
                 ],
                 "tags": {
-                    "man_made": "embankment"
+                    "office": "telecommunication"
                 },
-                "name": "Embankment",
-                "searchable": false
+                "terms": [],
+                "name": "Telecom Office"
             },
-            "man_made/flagpole": {
+            "office/therapist": {
+                "icon": "commercial",
+                "fields": [
+                    "address",
+                    "building_area",
+                    "opening_hours"
+                ],
                 "geometry": [
-                    "point"
+                    "point",
+                    "vertex",
+                    "area"
                 ],
                 "tags": {
-                    "man_made": "flagpole"
+                    "office": "therapist"
                 },
-                "name": "Flagpole",
-                "icon": "embassy"
+                "terms": [],
+                "name": "Therapist"
             },
-            "man_made/lighthouse": {
+            "office/travel_agent": {
+                "icon": "suitcase",
+                "fields": [
+                    "address",
+                    "building_area",
+                    "opening_hours"
+                ],
                 "geometry": [
                     "point",
+                    "vertex",
                     "area"
                 ],
                 "tags": {
-                    "man_made": "lighthouse"
+                    "office": "travel_agent"
                 },
-                "name": "Lighthouse",
-                "icon": "lighthouse"
+                "terms": [],
+                "name": "Travel Agency",
+                "searchable": false
             },
-            "man_made/observation": {
+            "piste": {
+                "icon": "skiing",
+                "fields": [
+                    "piste/type",
+                    "piste/difficulty",
+                    "piste/grooming",
+                    "oneway",
+                    "lit"
+                ],
                 "geometry": [
                     "point",
+                    "line",
                     "area"
                 ],
                 "terms": [
-                    "lookout tower",
-                    "fire tower"
+                    "ski",
+                    "sled",
+                    "sleigh",
+                    "snowboard",
+                    "nordic",
+                    "downhill",
+                    "snowmobile"
                 ],
                 "tags": {
-                    "man_made": "tower",
-                    "tower:type": "observation"
+                    "piste:type": "*"
                 },
-                "name": "Observation Tower"
+                "name": "Piste/Ski Trail"
             },
-            "man_made/pier": {
+            "place": {
+                "fields": [
+                    "place"
+                ],
                 "geometry": [
-                    "line",
+                    "point",
+                    "vertex",
                     "area"
                 ],
                 "tags": {
-                    "man_made": "pier"
+                    "place": "*"
                 },
-                "name": "Pier"
+                "name": "Place"
             },
-            "man_made/pipeline": {
-                "geometry": [
-                    "line"
-                ],
-                "tags": {
-                    "man_made": "pipeline"
-                },
+            "place/city": {
+                "icon": "city",
                 "fields": [
-                    "location",
-                    "operator"
+                    "population"
                 ],
-                "name": "Pipeline",
-                "icon": "pipeline"
-            },
-            "man_made/survey_point": {
-                "icon": "monument",
                 "geometry": [
                     "point",
-                    "vertex"
+                    "area"
                 ],
                 "tags": {
-                    "man_made": "survey_point"
+                    "place": "city"
                 },
+                "name": "City"
+            },
+            "place/hamlet": {
+                "icon": "triangle-stroked",
                 "fields": [
-                    "ref"
+                    "population"
                 ],
-                "name": "Survey Point"
-            },
-            "man_made/tower": {
                 "geometry": [
                     "point",
                     "area"
                 ],
                 "tags": {
-                    "man_made": "tower"
+                    "place": "hamlet"
                 },
-                "fields": [
-                    "towertype"
-                ],
-                "name": "Tower"
+                "name": "Hamlet"
             },
-            "man_made/wastewater_plant": {
-                "icon": "water",
+            "place/island": {
                 "geometry": [
                     "point",
                     "area"
                 ],
+                "terms": [
+                    "archipelago",
+                    "atoll",
+                    "bar",
+                    "cay",
+                    "isle",
+                    "islet",
+                    "key",
+                    "reef"
+                ],
                 "tags": {
-                    "man_made": "wastewater_plant"
+                    "place": "island"
                 },
-                "name": "Wastewater Plant",
-                "terms": [
-                    "sewage works",
-                    "sewage treatment plant",
-                    "water treatment plant",
-                    "reclamation plant"
-                ]
+                "name": "Island"
             },
-            "man_made/water_tower": {
-                "icon": "water",
+            "place/isolated_dwelling": {
                 "geometry": [
                     "point",
                     "area"
                 ],
                 "tags": {
-                    "man_made": "water_tower"
+                    "place": "isolated_dwelling"
                 },
-                "name": "Water Tower"
+                "name": "Isolated Dwelling"
             },
-            "man_made/water_well": {
+            "place/locality": {
+                "icon": "marker",
+                "fields": [
+                    "population"
+                ],
                 "geometry": [
                     "point",
                     "area"
                 ],
                 "tags": {
-                    "man_made": "water_well"
+                    "place": "locality"
                 },
-                "name": "Water well"
+                "name": "Locality"
             },
-            "man_made/water_works": {
-                "icon": "water",
+            "place/neighbourhood": {
+                "icon": "triangle-stroked",
+                "fields": [
+                    "population"
+                ],
                 "geometry": [
                     "point",
                     "area"
                 ],
                 "tags": {
-                    "man_made": "water_works"
+                    "place": "neighbourhood"
                 },
-                "name": "Water Works"
+                "terms": [
+                    "neighbourhood"
+                ],
+                "name": "Neighborhood"
             },
-            "military/airfield": {
+            "place/suburb": {
+                "icon": "triangle-stroked",
+                "fields": [
+                    "population"
+                ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "tags": {
-                    "military": "airfield"
+                    "place": "suburb"
                 },
-                "terms": [],
-                "name": "Airfield",
-                "icon": "airfield"
+                "terms": [
+                    "Boro",
+                    "Quarter"
+                ],
+                "name": "Borough"
             },
-            "military/barracks": {
+            "place/town": {
+                "icon": "town",
+                "fields": [
+                    "population"
+                ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "tags": {
-                    "military": "barracks"
+                    "place": "town"
                 },
-                "terms": [],
-                "name": "Barracks"
+                "name": "Town"
             },
-            "military/bunker": {
+            "place/village": {
+                "icon": "village",
+                "fields": [
+                    "population"
+                ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "tags": {
-                    "military": "bunker"
+                    "place": "village"
                 },
-                "terms": [],
-                "name": "Bunker"
+                "name": "Village"
             },
-            "military/range": {
+            "point": {
+                "name": "Point",
+                "tags": {},
+                "geometry": [
+                    "point"
+                ],
+                "matchScore": 0.1
+            },
+            "power": {
                 "geometry": [
                     "point",
                     "vertex",
+                    "line",
                     "area"
                 ],
                 "tags": {
-                    "military": "range"
+                    "power": "*"
                 },
-                "terms": [],
-                "name": "Military Range"
+                "fields": [
+                    "power"
+                ],
+                "name": "Power"
             },
-            "natural": {
+            "power/generator": {
                 "fields": [
-                    "natural"
+                    "operator",
+                    "generator/source",
+                    "generator/method",
+                    "generator/type"
                 ],
                 "geometry": [
                     "point",
@@ -68900,274 +72919,289 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                     "area"
                 ],
                 "tags": {
-                    "natural": "*"
+                    "power": "generator"
                 },
-                "name": "Natural"
+                "name": "Power Generator"
             },
-            "natural/bay": {
+            "power/line": {
                 "geometry": [
-                    "point",
-                    "area"
+                    "line"
                 ],
-                "terms": [],
                 "tags": {
-                    "natural": "bay"
+                    "power": "line"
                 },
-                "name": "Bay"
+                "name": "Power Line",
+                "icon": "power-line"
             },
-            "natural/beach": {
-                "fields": [
-                    "surface"
-                ],
+            "power/minor_line": {
                 "geometry": [
-                    "point",
-                    "area"
+                    "line"
                 ],
-                "terms": [],
                 "tags": {
-                    "natural": "beach"
+                    "power": "minor_line"
                 },
-                "name": "Beach"
+                "name": "Minor Power Line",
+                "icon": "power-line"
             },
-            "natural/cliff": {
+            "power/pole": {
                 "geometry": [
-                    "point",
-                    "vertex",
-                    "line",
-                    "area"
+                    "vertex"
                 ],
-                "terms": [],
                 "tags": {
-                    "natural": "cliff"
+                    "power": "pole"
                 },
-                "name": "Cliff"
+                "name": "Power Pole"
             },
-            "natural/coastline": {
-                "geometry": [
-                    "line"
+            "power/sub_station": {
+                "fields": [
+                    "operator",
+                    "building"
                 ],
-                "terms": [
-                    "shore"
+                "geometry": [
+                    "point",
+                    "area"
                 ],
                 "tags": {
-                    "natural": "coastline"
+                    "power": "sub_station"
                 },
-                "name": "Coastline"
+                "name": "Substation",
+                "searchable": false
             },
-            "natural/fell": {
+            "power/substation": {
+                "fields": [
+                    "operator",
+                    "building"
+                ],
                 "geometry": [
+                    "point",
                     "area"
                 ],
-                "terms": [],
                 "tags": {
-                    "natural": "fell"
+                    "power": "substation"
                 },
-                "name": "Fell"
+                "name": "Substation"
             },
-            "natural/glacier": {
+            "power/tower": {
                 "geometry": [
-                    "area"
+                    "vertex"
                 ],
-                "terms": [],
                 "tags": {
-                    "natural": "glacier"
+                    "power": "tower"
                 },
-                "name": "Glacier"
+                "name": "High-Voltage Tower"
             },
-            "natural/grassland": {
+            "power/transformer": {
                 "geometry": [
                     "point",
+                    "vertex",
                     "area"
                 ],
-                "terms": [],
                 "tags": {
-                    "natural": "grassland"
+                    "power": "transformer"
                 },
-                "name": "Grassland"
+                "name": "Transformer"
             },
-            "natural/heath": {
+            "public_transport/platform": {
+                "fields": [
+                    "ref",
+                    "operator",
+                    "network",
+                    "shelter"
+                ],
                 "geometry": [
+                    "point",
+                    "vertex",
+                    "line",
                     "area"
                 ],
-                "terms": [],
                 "tags": {
-                    "natural": "heath"
+                    "public_transport": "platform"
                 },
-                "name": "Heath"
+                "name": "Platform"
             },
-            "natural/peak": {
-                "icon": "triangle",
+            "public_transport/stop_position": {
+                "icon": "bus",
                 "fields": [
-                    "elevation"
+                    "ref",
+                    "operator",
+                    "network"
                 ],
                 "geometry": [
-                    "point",
                     "vertex"
                 ],
                 "tags": {
-                    "natural": "peak"
+                    "public_transport": "stop_position"
                 },
-                "terms": [
-                    "acme",
-                    "aiguille",
-                    "alp",
-                    "climax",
-                    "crest",
-                    "crown",
-                    "hill",
-                    "mount",
-                    "mountain",
-                    "pinnacle",
-                    "summit",
-                    "tip",
-                    "top"
-                ],
-                "name": "Peak"
+                "name": "Stop Position"
             },
-            "natural/scree": {
+            "railway": {
+                "fields": [
+                    "railway"
+                ],
                 "geometry": [
+                    "point",
+                    "vertex",
+                    "line",
                     "area"
                 ],
                 "tags": {
-                    "natural": "scree"
+                    "railway": "*"
                 },
-                "terms": [
-                    "loose rocks"
-                ],
-                "name": "Scree"
+                "name": "Railway"
             },
-            "natural/scrub": {
+            "railway/abandoned": {
+                "icon": "railway-abandoned",
                 "geometry": [
-                    "area"
+                    "line"
                 ],
                 "tags": {
-                    "natural": "scrub"
+                    "railway": "abandoned"
                 },
+                "fields": [
+                    "structure"
+                ],
                 "terms": [],
-                "name": "Scrub"
+                "name": "Abandoned Railway"
             },
-            "natural/spring": {
+            "railway/disused": {
+                "icon": "railway-disused",
                 "geometry": [
-                    "point",
-                    "vertex"
+                    "line"
                 ],
-                "terms": [],
                 "tags": {
-                    "natural": "spring"
+                    "railway": "disused"
                 },
-                "name": "Spring"
-            },
-            "natural/tree": {
                 "fields": [
-                    "tree_type",
-                    "denotation"
+                    "structure"
                 ],
-                "icon": "park",
+                "terms": [],
+                "name": "Disused Railway"
+            },
+            "railway/funicular": {
                 "geometry": [
-                    "point",
-                    "vertex"
+                    "line"
+                ],
+                "terms": [
+                    "venicular",
+                    "cliff railway",
+                    "cable car",
+                    "cable railway",
+                    "funicular railway"
+                ],
+                "fields": [
+                    "structure",
+                    "gauge"
                 ],
-                "terms": [],
                 "tags": {
-                    "natural": "tree"
+                    "railway": "funicular"
                 },
-                "name": "Tree"
+                "icon": "railway-rail",
+                "name": "Funicular"
             },
-            "natural/water": {
-                "fields": [
-                    "water"
-                ],
+            "railway/halt": {
+                "icon": "rail",
                 "geometry": [
-                    "area"
+                    "point",
+                    "vertex"
                 ],
                 "tags": {
-                    "natural": "water"
+                    "railway": "halt"
                 },
-                "icon": "water",
-                "name": "Water"
+                "name": "Railway Halt",
+                "terms": [
+                    "break",
+                    "interrupt",
+                    "rest",
+                    "wait",
+                    "interruption"
+                ]
             },
-            "natural/water/lake": {
+            "railway/level_crossing": {
+                "icon": "cross",
                 "geometry": [
-                    "area"
+                    "vertex"
                 ],
                 "tags": {
-                    "natural": "water",
-                    "water": "lake"
+                    "railway": "level_crossing"
                 },
                 "terms": [
-                    "lakelet",
-                    "loch",
-                    "mere"
+                    "crossing",
+                    "railroad crossing",
+                    "railway crossing",
+                    "grade crossing",
+                    "road through railroad",
+                    "train crossing"
                 ],
-                "icon": "water",
-                "name": "Lake"
+                "name": "Level Crossing"
             },
-            "natural/water/pond": {
+            "railway/monorail": {
+                "icon": "railway-monorail",
                 "geometry": [
-                    "area"
+                    "line"
                 ],
                 "tags": {
-                    "natural": "water",
-                    "water": "pond"
+                    "railway": "monorail"
                 },
-                "terms": [
-                    "lakelet",
-                    "millpond",
-                    "tarn",
-                    "pool",
-                    "mere"
+                "fields": [
+                    "structure",
+                    "electrified"
                 ],
-                "icon": "water",
-                "name": "Pond"
+                "terms": [],
+                "name": "Monorail"
             },
-            "natural/water/reservoir": {
+            "railway/narrow_gauge": {
+                "icon": "railway-rail",
                 "geometry": [
-                    "area"
+                    "line"
                 ],
                 "tags": {
-                    "natural": "water",
-                    "water": "reservoir"
+                    "railway": "narrow_gauge"
                 },
-                "icon": "water",
-                "name": "Reservoir"
-            },
-            "natural/wetland": {
-                "icon": "wetland",
                 "fields": [
-                    "wetland"
+                    "structure",
+                    "gauge",
+                    "electrified"
+                ],
+                "terms": [
+                    "narrow gauge railway",
+                    "narrow gauge railroad"
                 ],
+                "name": "Narrow Gauge Rail"
+            },
+            "railway/platform": {
                 "geometry": [
                     "point",
+                    "vertex",
+                    "line",
                     "area"
                 ],
                 "tags": {
-                    "natural": "wetland"
+                    "railway": "platform"
                 },
-                "terms": [],
-                "name": "Wetland"
+                "name": "Railway Platform"
             },
-            "natural/wood": {
-                "fields": [
-                    "wood"
-                ],
-                "icon": "park2",
+            "railway/rail": {
+                "icon": "railway-rail",
                 "geometry": [
-                    "point",
-                    "area"
+                    "line"
+                ],
+                "tags": {
+                    "railway": "rail"
+                },
+                "fields": [
+                    "structure",
+                    "gauge",
+                    "electrified"
                 ],
-                "tags": {
-                    "natural": "wood"
-                },
                 "terms": [],
-                "name": "Wood"
+                "name": "Rail"
             },
-            "office": {
-                "icon": "commercial",
+            "railway/station": {
+                "icon": "rail",
                 "fields": [
-                    "office",
+                    "operator",
                     "address",
-                    "opening_hours",
-                    "smoking"
+                    "building_area"
                 ],
                 "geometry": [
                     "point",
@@ -69175,2009 +73209,2075 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                     "area"
                 ],
                 "tags": {
-                    "office": "*"
+                    "railway": "station"
                 },
-                "terms": [],
-                "name": "Office"
+                "terms": [
+                    "train station",
+                    "station"
+                ],
+                "name": "Railway Station"
             },
-            "office/accountant": {
-                "icon": "commercial",
+            "railway/subway": {
+                "icon": "railway-subway",
                 "fields": [
-                    "address",
-                    "opening_hours"
+                    "structure",
+                    "gauge",
+                    "electrified"
                 ],
                 "geometry": [
-                    "point",
-                    "vertex",
-                    "area"
+                    "line"
                 ],
                 "tags": {
-                    "office": "accountant"
+                    "railway": "subway"
                 },
                 "terms": [],
-                "name": "Accountant"
+                "name": "Subway"
             },
-            "office/administrative": {
-                "icon": "commercial",
-                "fields": [
-                    "address",
-                    "opening_hours"
-                ],
+            "railway/subway_entrance": {
+                "icon": "rail-metro",
                 "geometry": [
-                    "point",
-                    "vertex",
-                    "area"
+                    "point"
                 ],
                 "tags": {
-                    "office": "administrative"
+                    "railway": "subway_entrance"
                 },
                 "terms": [],
-                "name": "Administrative Office"
+                "name": "Subway Entrance"
             },
-            "office/architect": {
-                "icon": "commercial",
-                "fields": [
-                    "address",
-                    "opening_hours"
-                ],
+            "railway/tram": {
+                "icon": "railway-light-rail",
                 "geometry": [
-                    "point",
-                    "vertex",
-                    "area"
+                    "line"
                 ],
                 "tags": {
-                    "office": "architect"
+                    "railway": "tram"
                 },
-                "terms": [],
-                "name": "Architect"
-            },
-            "office/company": {
-                "icon": "commercial",
                 "fields": [
-                    "address",
-                    "opening_hours",
-                    "smoking"
+                    "structure",
+                    "gauge",
+                    "electrified"
+                ],
+                "terms": [
+                    "streetcar"
                 ],
+                "name": "Tram"
+            },
+            "relation": {
+                "name": "Relation",
+                "icon": "relation",
+                "tags": {},
                 "geometry": [
-                    "point",
-                    "vertex",
-                    "area"
+                    "relation"
+                ],
+                "fields": [
+                    "relation"
+                ]
+            },
+            "route/ferry": {
+                "icon": "ferry",
+                "geometry": [
+                    "line"
                 ],
                 "tags": {
-                    "office": "company"
+                    "route": "ferry"
                 },
-                "terms": [],
-                "name": "Company Office"
+                "name": "Ferry Route"
             },
-            "office/educational_institution": {
-                "icon": "commercial",
+            "shop": {
+                "icon": "shop",
                 "fields": [
+                    "shop",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "tags": {
-                    "office": "educational_institution"
+                    "shop": "*"
                 },
                 "terms": [],
-                "name": "Educational Institution"
+                "name": "Shop"
             },
-            "office/employment_agency": {
-                "icon": "commercial",
+            "shop/alcohol": {
+                "icon": "alcohol-shop",
                 "fields": [
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
+                "terms": [
+                    "alcohol",
+                    "beer",
+                    "booze",
+                    "wine"
+                ],
                 "tags": {
-                    "office": "employment_agency"
+                    "shop": "alcohol"
                 },
-                "terms": [],
-                "name": "Employment Agency"
+                "name": "Liquor Store"
             },
-            "office/estate_agent": {
-                "icon": "commercial",
+            "shop/anime": {
+                "icon": "shop",
                 "fields": [
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "tags": {
-                    "office": "estate_agent"
+                    "shop": "anime"
                 },
-                "terms": [],
-                "name": "Real Estate Office"
+                "name": "Anime Shop"
             },
-            "office/financial": {
-                "icon": "commercial",
+            "shop/antiques": {
+                "icon": "shop",
                 "fields": [
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "tags": {
-                    "office": "financial"
+                    "shop": "antiques"
                 },
-                "terms": [],
-                "name": "Financial Office"
+                "name": "Antiques Shop"
             },
-            "office/government": {
-                "icon": "commercial",
+            "shop/art": {
+                "icon": "art-gallery",
                 "fields": [
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "tags": {
-                    "office": "government"
+                    "shop": "art"
                 },
-                "terms": [],
-                "name": "Government Office"
+                "name": "Art Gallery"
             },
-            "office/insurance": {
-                "icon": "commercial",
+            "shop/baby_goods": {
+                "icon": "shop",
                 "fields": [
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "tags": {
-                    "office": "insurance"
+                    "shop": "baby_goods"
                 },
-                "terms": [],
-                "name": "Insurance Office"
+                "name": "Baby Goods Store"
             },
-            "office/it": {
-                "icon": "commercial",
+            "shop/bag": {
+                "icon": "shop",
                 "fields": [
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
+                "terms": [
+                    "handbag",
+                    "purse"
+                ],
                 "tags": {
-                    "office": "it"
+                    "shop": "bag"
                 },
-                "terms": [],
-                "name": "IT Office"
+                "name": "Bag/Luggage Store"
             },
-            "office/lawyer": {
-                "icon": "commercial",
+            "shop/bakery": {
+                "icon": "bakery",
                 "fields": [
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "tags": {
-                    "office": "lawyer"
+                    "shop": "bakery"
                 },
-                "terms": [],
-                "name": "Law Office"
+                "name": "Bakery"
             },
-            "office/newspaper": {
-                "icon": "commercial",
+            "shop/bathroom_furnishing": {
+                "icon": "shop",
                 "fields": [
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "tags": {
-                    "office": "newspaper"
+                    "shop": "bathroom_furnishing"
                 },
-                "terms": [],
-                "name": "Newspaper"
+                "name": "Bathroom Furnishing Store"
             },
-            "office/ngo": {
-                "icon": "commercial",
+            "shop/beauty": {
+                "icon": "shop",
                 "fields": [
+                    "operator",
                     "address",
-                    "opening_hours",
-                    "smoking"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
+                "terms": [
+                    "nail spa",
+                    "spa",
+                    "salon",
+                    "tanning"
+                ],
                 "tags": {
-                    "office": "ngo"
+                    "shop": "beauty"
                 },
-                "terms": [],
-                "name": "NGO Office"
+                "name": "Beauty Shop"
             },
-            "office/physician": {
-                "icon": "commercial",
+            "shop/bed": {
+                "icon": "lodging",
                 "fields": [
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "tags": {
-                    "office": "physician"
+                    "shop": "bed"
                 },
-                "terms": [],
-                "name": "Physician"
+                "name": "Bedding/Mattress Store"
             },
-            "office/political_party": {
-                "icon": "commercial",
+            "shop/beverages": {
+                "icon": "shop",
                 "fields": [
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "tags": {
-                    "office": "political_party"
+                    "shop": "beverages"
                 },
-                "terms": [],
-                "name": "Political Party"
+                "name": "Beverage Store"
             },
-            "office/research": {
-                "icon": "commercial",
+            "shop/bicycle": {
+                "icon": "bicycle",
                 "fields": [
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "tags": {
-                    "office": "research"
+                    "shop": "bicycle"
                 },
-                "terms": [],
-                "name": "Research Office"
+                "name": "Bicycle Shop"
             },
-            "office/telecommunication": {
-                "icon": "commercial",
+            "shop/bookmaker": {
+                "icon": "shop",
                 "fields": [
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "tags": {
-                    "office": "telecommunication"
+                    "shop": "bookmaker"
                 },
-                "terms": [],
-                "name": "Telecom Office"
+                "name": "Bookmaker"
             },
-            "office/therapist": {
-                "icon": "commercial",
+            "shop/books": {
+                "icon": "shop",
                 "fields": [
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "tags": {
-                    "office": "therapist"
+                    "shop": "books"
                 },
-                "terms": [],
-                "name": "Therapist"
+                "name": "Book Store"
             },
-            "office/travel_agent": {
-                "icon": "suitcase",
+            "shop/boutique": {
+                "icon": "shop",
                 "fields": [
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "tags": {
-                    "office": "travel_agent"
+                    "shop": "boutique"
                 },
-                "terms": [],
-                "name": "Travel Agency",
-                "searchable": false
+                "name": "Boutique"
             },
-            "piste": {
-                "icon": "skiing",
+            "shop/butcher": {
+                "icon": "slaughterhouse",
                 "fields": [
-                    "piste/type",
-                    "piste/difficulty",
-                    "piste/grooming",
-                    "oneway",
-                    "lit"
+                    "operator",
+                    "address",
+                    "building_area",
+                    "opening_hours"
                 ],
                 "geometry": [
                     "point",
-                    "line",
                     "area"
                 ],
                 "terms": [
-                    "ski",
-                    "sled",
-                    "sleigh",
-                    "snowboard",
-                    "nordic",
-                    "downhill",
-                    "snowmobile"
+                    "meat"
                 ],
                 "tags": {
-                    "piste:type": "*"
+                    "shop": "butcher"
                 },
-                "name": "Piste/Ski Trail"
+                "name": "Butcher"
             },
-            "place": {
+            "shop/candles": {
+                "icon": "shop",
                 "fields": [
-                    "place"
+                    "operator",
+                    "address",
+                    "building_area",
+                    "opening_hours"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "tags": {
-                    "place": "*"
+                    "shop": "candles"
                 },
-                "name": "Place"
+                "name": "Candle Shop"
             },
-            "place/city": {
-                "icon": "city",
+            "shop/car": {
+                "icon": "car",
                 "fields": [
-                    "population"
+                    "operator",
+                    "address",
+                    "building_area",
+                    "opening_hours"
                 ],
                 "geometry": [
                     "point",
                     "area"
                 ],
+                "terms": [
+                    "auto"
+                ],
                 "tags": {
-                    "place": "city"
+                    "shop": "car"
                 },
-                "name": "City"
+                "name": "Car Dealership"
             },
-            "place/hamlet": {
-                "icon": "triangle-stroked",
+            "shop/car_parts": {
+                "icon": "car",
                 "fields": [
-                    "population"
-                ],
-                "geometry": [
-                    "point",
-                    "area"
+                    "operator",
+                    "address",
+                    "building_area",
+                    "opening_hours"
                 ],
-                "tags": {
-                    "place": "hamlet"
-                },
-                "name": "Hamlet"
-            },
-            "place/island": {
                 "geometry": [
                     "point",
                     "area"
                 ],
                 "terms": [
-                    "archipelago",
-                    "atoll",
-                    "bar",
-                    "cay",
-                    "isle",
-                    "islet",
-                    "key",
-                    "reef"
-                ],
-                "tags": {
-                    "place": "island"
-                },
-                "name": "Island"
-            },
-            "place/isolated_dwelling": {
-                "geometry": [
-                    "point",
-                    "area"
+                    "auto"
                 ],
                 "tags": {
-                    "place": "isolated_dwelling"
+                    "shop": "car_parts"
                 },
-                "name": "Isolated Dwelling"
+                "name": "Car Parts Store"
             },
-            "place/locality": {
-                "icon": "marker",
+            "shop/car_repair": {
+                "icon": "car",
                 "fields": [
-                    "population"
+                    "operator",
+                    "address",
+                    "building_area",
+                    "opening_hours"
                 ],
                 "geometry": [
                     "point",
                     "area"
                 ],
+                "terms": [
+                    "auto"
+                ],
                 "tags": {
-                    "place": "locality"
+                    "shop": "car_repair"
                 },
-                "name": "Locality"
+                "name": "Car Repair Shop"
             },
-            "place/neighbourhood": {
-                "icon": "triangle-stroked",
+            "shop/carpet": {
+                "icon": "shop",
                 "fields": [
-                    "population"
+                    "operator",
+                    "address",
+                    "building_area",
+                    "opening_hours"
                 ],
                 "geometry": [
                     "point",
                     "area"
                 ],
-                "tags": {
-                    "place": "neighbourhood"
-                },
                 "terms": [
-                    "neighbourhood"
-                ],
-                "name": "Neighborhood"
-            },
-            "place/suburb": {
-                "icon": "triangle-stroked",
-                "fields": [
-                    "population"
-                ],
-                "geometry": [
-                    "point",
-                    "area"
+                    "rug"
                 ],
                 "tags": {
-                    "place": "suburb"
+                    "shop": "carpet"
                 },
-                "terms": [
-                    "Boro",
-                    "Quarter"
-                ],
-                "name": "Borough"
+                "name": "Carpet Store"
             },
-            "place/town": {
-                "icon": "town",
+            "shop/cheese": {
+                "icon": "shop",
                 "fields": [
-                    "population"
+                    "operator",
+                    "address",
+                    "building_area",
+                    "opening_hours"
                 ],
                 "geometry": [
                     "point",
                     "area"
                 ],
                 "tags": {
-                    "place": "town"
+                    "shop": "cheese"
                 },
-                "name": "Town"
+                "name": "Cheese Store"
             },
-            "place/village": {
-                "icon": "village",
+            "shop/chemist": {
+                "icon": "chemist",
                 "fields": [
-                    "population"
+                    "operator",
+                    "address",
+                    "building_area",
+                    "opening_hours"
                 ],
                 "geometry": [
                     "point",
                     "area"
                 ],
                 "tags": {
-                    "place": "village"
+                    "shop": "chemist"
                 },
-                "name": "Village"
-            },
-            "point": {
-                "name": "Point",
-                "tags": {},
-                "geometry": [
-                    "point"
-                ],
-                "matchScore": 0.1
+                "name": "Chemist"
             },
-            "power": {
-                "geometry": [
-                    "point",
-                    "vertex",
-                    "line",
-                    "area"
-                ],
-                "tags": {
-                    "power": "*"
-                },
+            "shop/chocolate": {
+                "icon": "shop",
                 "fields": [
-                    "power"
+                    "operator",
+                    "address",
+                    "building_area",
+                    "opening_hours"
                 ],
-                "name": "Power"
-            },
-            "power/generator": {
-                "name": "Power Generator",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "tags": {
-                    "power": "generator"
-                },
-                "fields": [
-                    "generator/source",
-                    "generator/method",
-                    "generator/type"
-                ]
-            },
-            "power/line": {
-                "geometry": [
-                    "line"
-                ],
-                "tags": {
-                    "power": "line"
-                },
-                "name": "Power Line",
-                "icon": "power-line"
-            },
-            "power/minor_line": {
-                "geometry": [
-                    "line"
-                ],
-                "tags": {
-                    "power": "minor_line"
+                    "shop": "chocolate"
                 },
-                "name": "Minor Power Line",
-                "icon": "power-line"
+                "name": "Chocolate Store"
             },
-            "power/pole": {
+            "shop/clothes": {
+                "icon": "clothing-store",
+                "fields": [
+                    "operator",
+                    "address",
+                    "building_area",
+                    "opening_hours"
+                ],
                 "geometry": [
-                    "vertex"
+                    "point",
+                    "area"
                 ],
                 "tags": {
-                    "power": "pole"
+                    "shop": "clothes"
                 },
-                "name": "Power Pole"
+                "name": "Clothing Store"
             },
-            "power/sub_station": {
+            "shop/computer": {
+                "icon": "shop",
                 "fields": [
                     "operator",
-                    "building"
+                    "address",
+                    "building_area",
+                    "opening_hours"
                 ],
                 "geometry": [
                     "point",
                     "area"
                 ],
                 "tags": {
-                    "power": "sub_station"
+                    "shop": "computer"
                 },
-                "name": "Substation"
+                "name": "Computer Store"
             },
-            "power/tower": {
+            "shop/confectionery": {
+                "icon": "shop",
+                "fields": [
+                    "operator",
+                    "address",
+                    "building_area",
+                    "opening_hours"
+                ],
                 "geometry": [
-                    "vertex"
+                    "point",
+                    "area"
                 ],
                 "tags": {
-                    "power": "tower"
+                    "shop": "confectionery"
                 },
-                "name": "High-Voltage Tower"
+                "name": "Candy Store"
             },
-            "power/transformer": {
+            "shop/convenience": {
+                "icon": "shop",
+                "fields": [
+                    "operator",
+                    "address",
+                    "building_area",
+                    "opening_hours"
+                ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "tags": {
-                    "power": "transformer"
+                    "shop": "convenience"
                 },
-                "name": "Transformer"
+                "name": "Convenience Store"
             },
-            "public_transport/platform": {
+            "shop/copyshop": {
+                "icon": "shop",
                 "fields": [
-                    "ref",
                     "operator",
-                    "network",
-                    "shelter"
+                    "address",
+                    "building_area",
+                    "opening_hours"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
-                    "line",
                     "area"
                 ],
                 "tags": {
-                    "public_transport": "platform"
+                    "shop": "copyshop"
                 },
-                "name": "Platform"
+                "name": "Copy Store"
             },
-            "public_transport/stop_position": {
-                "icon": "bus",
+            "shop/cosmetics": {
+                "icon": "shop",
                 "fields": [
-                    "ref",
                     "operator",
-                    "network"
+                    "address",
+                    "building_area",
+                    "opening_hours"
                 ],
                 "geometry": [
-                    "vertex"
+                    "point",
+                    "area"
                 ],
                 "tags": {
-                    "public_transport": "stop_position"
+                    "shop": "cosmetics"
                 },
-                "name": "Stop Position"
+                "name": "Cosmetics Store"
             },
-            "railway": {
+            "shop/craft": {
+                "icon": "art-gallery",
                 "fields": [
-                    "railway"
+                    "operator",
+                    "address",
+                    "building_area",
+                    "opening_hours"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
-                    "line",
                     "area"
                 ],
                 "tags": {
-                    "railway": "*"
+                    "shop": "craft"
                 },
-                "name": "Railway"
+                "name": "Arts and Crafts Store"
             },
-            "railway/abandoned": {
-                "icon": "railway-abandoned",
+            "shop/curtain": {
+                "icon": "shop",
+                "fields": [
+                    "operator",
+                    "address",
+                    "building_area",
+                    "opening_hours"
+                ],
                 "geometry": [
-                    "line"
+                    "point",
+                    "area"
+                ],
+                "terms": [
+                    "drape*",
+                    "window"
                 ],
                 "tags": {
-                    "railway": "abandoned"
+                    "shop": "curtain"
                 },
+                "name": "Curtain Store"
+            },
+            "shop/dairy": {
+                "icon": "shop",
                 "fields": [
-                    "structure"
+                    "operator",
+                    "address",
+                    "building_area",
+                    "opening_hours"
                 ],
-                "terms": [],
-                "name": "Abandoned Railway"
-            },
-            "railway/disused": {
-                "icon": "railway-disused",
                 "geometry": [
-                    "line"
+                    "point",
+                    "area"
+                ],
+                "terms": [
+                    "milk",
+                    "egg",
+                    "cheese"
                 ],
                 "tags": {
-                    "railway": "disused"
+                    "shop": "dairy"
                 },
+                "name": "Dairy Store"
+            },
+            "shop/deli": {
+                "icon": "restaurant",
                 "fields": [
-                    "structure"
+                    "operator",
+                    "address",
+                    "building_area",
+                    "opening_hours"
                 ],
-                "terms": [],
-                "name": "Disused Railway"
-            },
-            "railway/funicular": {
                 "geometry": [
-                    "line"
+                    "point",
+                    "area"
                 ],
                 "terms": [
-                    "venicular",
-                    "cliff railway",
-                    "cable car",
-                    "cable railway",
-                    "funicular railway"
-                ],
-                "fields": [
-                    "structure",
-                    "gauge"
+                    "lunch",
+                    "meat",
+                    "sandwich"
                 ],
                 "tags": {
-                    "railway": "funicular"
+                    "shop": "deli"
                 },
-                "icon": "railway-rail",
-                "name": "Funicular"
+                "name": "Deli"
             },
-            "railway/halt": {
-                "icon": "rail",
+            "shop/department_store": {
+                "icon": "shop",
+                "fields": [
+                    "operator",
+                    "address",
+                    "building_area",
+                    "opening_hours"
+                ],
                 "geometry": [
                     "point",
-                    "vertex"
+                    "area"
                 ],
                 "tags": {
-                    "railway": "halt"
+                    "shop": "department_store"
                 },
-                "name": "Railway Halt",
-                "terms": [
-                    "break",
-                    "interrupt",
-                    "rest",
-                    "wait",
-                    "interruption"
-                ]
+                "name": "Department Store"
             },
-            "railway/level_crossing": {
-                "icon": "cross",
+            "shop/doityourself": {
+                "icon": "shop",
+                "fields": [
+                    "operator",
+                    "address",
+                    "building_area",
+                    "opening_hours"
+                ],
                 "geometry": [
-                    "vertex"
+                    "point",
+                    "area"
                 ],
                 "tags": {
-                    "railway": "level_crossing"
+                    "shop": "doityourself"
                 },
-                "terms": [
-                    "crossing",
-                    "railroad crossing",
-                    "railway crossing",
-                    "grade crossing",
-                    "road through railroad",
-                    "train crossing"
-                ],
-                "name": "Level Crossing"
+                "name": "DIY Store"
             },
-            "railway/monorail": {
-                "icon": "railway-monorail",
+            "shop/dry_cleaning": {
+                "icon": "shop",
+                "fields": [
+                    "operator",
+                    "address",
+                    "building_area",
+                    "opening_hours"
+                ],
                 "geometry": [
-                    "line"
+                    "point",
+                    "area"
                 ],
                 "tags": {
-                    "railway": "monorail"
+                    "shop": "dry_cleaning"
                 },
+                "name": "Dry Cleaner"
+            },
+            "shop/electronics": {
+                "icon": "shop",
                 "fields": [
-                    "structure",
-                    "electrified"
+                    "operator",
+                    "address",
+                    "building_area",
+                    "opening_hours"
                 ],
-                "terms": [],
-                "name": "Monorail"
-            },
-            "railway/narrow_gauge": {
-                "icon": "railway-rail",
                 "geometry": [
-                    "line"
+                    "point",
+                    "area"
+                ],
+                "terms": [
+                    "appliance",
+                    "audio",
+                    "computer",
+                    "tv"
                 ],
                 "tags": {
-                    "railway": "narrow_gauge"
+                    "shop": "electronics"
                 },
+                "name": "Electronics Store"
+            },
+            "shop/erotic": {
+                "icon": "shop",
                 "fields": [
-                    "structure",
-                    "gauge",
-                    "electrified"
+                    "operator",
+                    "address",
+                    "building_area",
+                    "opening_hours"
+                ],
+                "geometry": [
+                    "point",
+                    "area"
                 ],
                 "terms": [
-                    "narrow gauge railway",
-                    "narrow gauge railroad"
+                    "sex",
+                    "porn"
                 ],
-                "name": "Narrow Gauge Rail"
+                "tags": {
+                    "shop": "erotic"
+                },
+                "name": "Erotic Store"
             },
-            "railway/platform": {
+            "shop/fabric": {
+                "icon": "shop",
+                "fields": [
+                    "operator",
+                    "address",
+                    "building_area",
+                    "opening_hours"
+                ],
                 "geometry": [
                     "point",
-                    "vertex",
-                    "line",
                     "area"
                 ],
+                "terms": [
+                    "sew"
+                ],
                 "tags": {
-                    "railway": "platform"
+                    "shop": "fabric"
                 },
-                "name": "Railway Platform"
+                "name": "Fabric Store"
             },
-            "railway/rail": {
-                "icon": "railway-rail",
+            "shop/farm": {
+                "icon": "shop",
+                "fields": [
+                    "operator",
+                    "address",
+                    "building_area",
+                    "opening_hours"
+                ],
                 "geometry": [
-                    "line"
+                    "point",
+                    "area"
+                ],
+                "terms": [
+                    "farm shop",
+                    "farm stand"
                 ],
                 "tags": {
-                    "railway": "rail"
+                    "shop": "farm"
                 },
-                "fields": [
-                    "structure",
-                    "gauge",
-                    "electrified"
-                ],
-                "terms": [],
-                "name": "Rail"
+                "name": "Produce Stand"
             },
-            "railway/station": {
-                "icon": "rail",
+            "shop/fashion": {
+                "icon": "shop",
                 "fields": [
-                    "building_area"
+                    "operator",
+                    "address",
+                    "building_area",
+                    "opening_hours"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "tags": {
-                    "railway": "station"
+                    "shop": "fashion"
                 },
-                "terms": [
-                    "train station",
-                    "station"
-                ],
-                "name": "Railway Station"
+                "name": "Fashion Store"
             },
-            "railway/subway": {
-                "icon": "railway-subway",
+            "shop/fishmonger": {
+                "icon": "shop",
                 "fields": [
-                    "structure",
-                    "gauge",
-                    "electrified"
+                    "operator",
+                    "address",
+                    "building_area",
+                    "opening_hours"
                 ],
                 "geometry": [
-                    "line"
+                    "point",
+                    "area"
                 ],
                 "tags": {
-                    "railway": "subway"
+                    "shop": "fishmonger"
                 },
-                "terms": [],
-                "name": "Subway"
+                "name": "Fishmonger",
+                "searchable": false
             },
-            "railway/subway_entrance": {
-                "icon": "rail-metro",
+            "shop/florist": {
+                "icon": "shop",
+                "fields": [
+                    "operator",
+                    "address",
+                    "building_area",
+                    "opening_hours"
+                ],
                 "geometry": [
-                    "point"
+                    "point",
+                    "area"
+                ],
+                "terms": [
+                    "flower"
                 ],
                 "tags": {
-                    "railway": "subway_entrance"
+                    "shop": "florist"
                 },
-                "terms": [],
-                "name": "Subway Entrance"
+                "name": "Florist"
             },
-            "railway/tram": {
-                "icon": "railway-light-rail",
+            "shop/frame": {
+                "icon": "shop",
+                "fields": [
+                    "operator",
+                    "address",
+                    "building_area",
+                    "opening_hours"
+                ],
                 "geometry": [
-                    "line"
+                    "point",
+                    "area"
                 ],
                 "tags": {
-                    "railway": "tram"
+                    "shop": "frame"
                 },
+                "name": "Framing Shop"
+            },
+            "shop/funeral_directors": {
+                "icon": "cemetery",
                 "fields": [
-                    "structure",
-                    "gauge",
-                    "electrified"
-                ],
-                "terms": [
-                    "streetcar"
+                    "operator",
+                    "address",
+                    "building_area",
+                    "religion",
+                    "denomination"
                 ],
-                "name": "Tram"
-            },
-            "relation": {
-                "name": "Relation",
-                "icon": "relation",
-                "tags": {},
                 "geometry": [
-                    "relation"
+                    "point",
+                    "area"
                 ],
-                "fields": [
-                    "relation"
-                ]
-            },
-            "route/ferry": {
-                "icon": "ferry",
-                "geometry": [
-                    "line"
+                "terms": [
+                    "undertaker",
+                    "memorial home"
                 ],
                 "tags": {
-                    "route": "ferry"
+                    "shop": "funeral_directors"
                 },
-                "name": "Ferry Route"
+                "name": "Funeral Home"
             },
-            "shop": {
+            "shop/furnace": {
                 "icon": "shop",
                 "fields": [
-                    "shop",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
+                "terms": [
+                    "oven",
+                    "stove"
+                ],
                 "tags": {
-                    "shop": "*"
+                    "shop": "furnace"
                 },
-                "terms": [],
-                "name": "Shop"
+                "name": "Furnace Store"
             },
-            "shop/alcohol": {
-                "icon": "alcohol-shop",
+            "shop/furniture": {
+                "icon": "shop",
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
-                "tags": {
-                    "shop": "alcohol"
-                },
                 "terms": [
-                    "alcohol"
+                    "chair",
+                    "sofa",
+                    "table"
                 ],
-                "name": "Liquor Store"
+                "tags": {
+                    "shop": "furniture"
+                },
+                "name": "Furniture Store"
             },
-            "shop/art": {
-                "icon": "art-gallery",
+            "shop/garden_centre": {
+                "icon": "shop",
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "terms": [
-                    "art store",
-                    "art gallery"
+                    "landscape",
+                    "mulch",
+                    "shrub",
+                    "tree"
                 ],
                 "tags": {
-                    "shop": "art"
+                    "shop": "garden_centre"
                 },
-                "name": "Art Shop"
+                "name": "Garden Center"
             },
-            "shop/bakery": {
-                "icon": "bakery",
+            "shop/gift": {
+                "icon": "gift",
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "tags": {
-                    "shop": "bakery"
+                    "shop": "gift"
                 },
-                "name": "Bakery"
+                "name": "Gift Shop"
             },
-            "shop/beauty": {
+            "shop/greengrocer": {
                 "icon": "shop",
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "terms": [
-                    "nail spa",
-                    "spa",
-                    "salon",
-                    "tanning"
+                    "fruit",
+                    "vegetable"
                 ],
                 "tags": {
-                    "shop": "beauty"
+                    "shop": "greengrocer"
                 },
-                "name": "Beauty Shop"
+                "name": "Greengrocer"
             },
-            "shop/beverages": {
-                "icon": "shop",
+            "shop/hairdresser": {
+                "icon": "hairdresser",
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "tags": {
-                    "shop": "beverages"
+                    "shop": "hairdresser"
                 },
-                "name": "Beverage Store"
+                "name": "Hairdresser"
             },
-            "shop/bicycle": {
-                "icon": "bicycle",
+            "shop/hardware": {
+                "icon": "shop",
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "tags": {
-                    "shop": "bicycle"
+                    "shop": "hardware"
                 },
-                "name": "Bicycle Shop"
+                "name": "Hardware Store"
             },
-            "shop/bookmaker": {
+            "shop/hearing_aids": {
                 "icon": "shop",
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "tags": {
-                    "shop": "bookmaker"
+                    "shop": "hearing_aids"
                 },
-                "name": "Bookmaker"
+                "name": "Hearing Aids Store"
             },
-            "shop/books": {
+            "shop/herbalist": {
                 "icon": "shop",
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "tags": {
-                    "shop": "books"
+                    "shop": "herbalist"
                 },
-                "name": "Bookstore"
+                "name": "Herbalist"
             },
-            "shop/boutique": {
+            "shop/hifi": {
                 "icon": "shop",
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
+                "terms": [
+                    "stereo",
+                    "video"
+                ],
                 "tags": {
-                    "shop": "boutique"
+                    "shop": "hifi"
                 },
-                "name": "Boutique"
+                "name": "Hifi Store"
             },
-            "shop/butcher": {
-                "icon": "slaughterhouse",
+            "shop/interior_decoration": {
+                "icon": "shop",
                 "fields": [
+                    "operator",
+                    "address",
                     "building_area",
                     "opening_hours"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
-                "terms": [],
                 "tags": {
-                    "shop": "butcher"
+                    "shop": "interior_decoration"
                 },
-                "name": "Butcher"
+                "name": "Interior Decoration Store"
             },
-            "shop/car": {
-                "icon": "car",
+            "shop/jewelry": {
+                "icon": "shop",
                 "fields": [
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
+                "terms": [
+                    "diamond",
+                    "gem",
+                    "ring"
+                ],
                 "tags": {
-                    "shop": "car"
+                    "shop": "jewelry"
                 },
-                "name": "Car Dealership"
+                "name": "Jeweler"
             },
-            "shop/car_parts": {
-                "icon": "car",
+            "shop/kiosk": {
+                "icon": "shop",
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "tags": {
-                    "shop": "car_parts"
+                    "shop": "kiosk"
                 },
-                "name": "Car Parts Store"
+                "name": "News Kiosk"
             },
-            "shop/car_repair": {
-                "icon": "car",
+            "shop/kitchen": {
+                "icon": "shop",
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "tags": {
-                    "shop": "car_repair"
+                    "shop": "kitchen"
                 },
-                "name": "Car Repair Shop"
+                "name": "Kitchen Design Store"
             },
-            "shop/chemist": {
-                "icon": "chemist",
+            "shop/laundry": {
+                "icon": "laundry",
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "tags": {
-                    "shop": "chemist"
+                    "shop": "laundry"
                 },
-                "name": "Chemist"
+                "name": "Laundry"
             },
-            "shop/clothes": {
-                "icon": "clothing-store",
+            "shop/leather": {
+                "icon": "shop",
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "tags": {
-                    "shop": "clothes"
+                    "shop": "leather"
                 },
-                "name": "Clothing Store"
+                "name": "Leather Store"
             },
-            "shop/computer": {
+            "shop/locksmith": {
                 "icon": "shop",
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
+                "terms": [
+                    "key",
+                    "lockpick"
+                ],
                 "tags": {
-                    "shop": "computer"
+                    "shop": "locksmith"
                 },
-                "name": "Computer Store"
+                "name": "Locksmith"
             },
-            "shop/confectionery": {
+            "shop/lottery": {
                 "icon": "shop",
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "tags": {
-                    "shop": "confectionery"
+                    "shop": "lottery"
                 },
-                "name": "Confectionery"
+                "name": "Lottery Shop"
             },
-            "shop/convenience": {
+            "shop/mall": {
                 "icon": "shop",
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "tags": {
-                    "shop": "convenience"
+                    "shop": "mall"
                 },
-                "name": "Convenience Store"
+                "name": "Mall"
             },
-            "shop/deli": {
-                "icon": "restaurant",
+            "shop/massage": {
+                "icon": "shop",
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "tags": {
-                    "shop": "deli"
+                    "shop": "massage"
                 },
-                "name": "Deli"
+                "name": "Massage Shop"
             },
-            "shop/department_store": {
+            "shop/medical_supply": {
                 "icon": "shop",
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "tags": {
-                    "shop": "department_store"
+                    "shop": "medical_supply"
                 },
-                "name": "Department Store"
+                "name": "Medical Supply Store"
             },
-            "shop/doityourself": {
-                "icon": "shop",
+            "shop/mobile_phone": {
+                "icon": "mobilephone",
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "tags": {
-                    "shop": "doityourself"
+                    "shop": "mobile_phone"
                 },
-                "name": "DIY Store"
+                "name": "Mobile Phone Store"
             },
-            "shop/dry_cleaning": {
-                "icon": "shop",
+            "shop/money_lender": {
+                "icon": "bank",
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "tags": {
-                    "shop": "dry_cleaning"
+                    "shop": "money_lender"
                 },
-                "name": "Dry Cleaners"
+                "name": "Money Lender"
             },
-            "shop/electronics": {
-                "icon": "shop",
+            "shop/motorcycle": {
+                "icon": "scooter",
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "tags": {
-                    "shop": "electronics"
+                    "shop": "motorcycle"
                 },
-                "name": "Electronics Store"
+                "name": "Motorcycle Dealership"
             },
-            "shop/farm": {
-                "icon": "shop",
+            "shop/music": {
+                "icon": "music",
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
-                "tags": {
-                    "shop": "farm"
-                },
                 "terms": [
-                    "farm shop",
-                    "farm stand"
+                    "CD",
+                    "vinyl"
                 ],
-                "name": "Produce Stand"
+                "tags": {
+                    "shop": "music"
+                },
+                "name": "Music Store"
             },
-            "shop/fishmonger": {
-                "icon": "shop",
+            "shop/musical_instrument": {
+                "icon": "music",
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "tags": {
-                    "shop": "fishmonger"
+                    "shop": "musical_instrument"
                 },
-                "name": "Fishmonger",
-                "searchable": false
+                "name": "Musical Instrument Store"
             },
-            "shop/florist": {
+            "shop/newsagent": {
                 "icon": "shop",
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "tags": {
-                    "shop": "florist"
+                    "shop": "newsagent"
                 },
-                "name": "Florist"
+                "name": "Newspaper/Magazine Shop"
             },
-            "shop/funeral_directors": {
-                "icon": "cemetery",
+            "shop/optician": {
+                "icon": "shop",
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
-                    "religion",
-                    "denomination"
+                    "opening_hours"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
-                "tags": {
-                    "shop": "funeral_directors"
-                },
                 "terms": [
-                    "undertaker",
-                    "funeral parlour",
-                    "funeral parlor",
-                    "memorial home"
+                    "eye",
+                    "glasses"
                 ],
-                "name": "Funeral Home"
+                "tags": {
+                    "shop": "optician"
+                },
+                "name": "Optician"
             },
-            "shop/furniture": {
+            "shop/organic": {
                 "icon": "shop",
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "tags": {
-                    "shop": "furniture"
+                    "shop": "supermarket",
+                    "organic": "only"
                 },
-                "name": "Furniture Store"
+                "name": "Organic Goods Store"
             },
-            "shop/garden_centre": {
+            "shop/outdoor": {
                 "icon": "shop",
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "terms": [
-                    "garden centre"
+                    "camping",
+                    "climbing",
+                    "hiking"
                 ],
                 "tags": {
-                    "shop": "garden_centre"
+                    "shop": "outdoor"
                 },
-                "name": "Garden Center"
+                "name": "Outdoors Store"
             },
-            "shop/gift": {
-                "icon": "shop",
+            "shop/paint": {
+                "icon": "water",
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "tags": {
-                    "shop": "gift"
+                    "shop": "paint"
                 },
-                "name": "Gift Shop"
+                "name": "Paint Store"
             },
-            "shop/greengrocer": {
+            "shop/pawnbroker": {
                 "icon": "shop",
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "tags": {
-                    "shop": "greengrocer"
+                    "shop": "pawnbroker"
                 },
-                "name": "Greengrocer"
+                "name": "Pawn Shop"
             },
-            "shop/hairdresser": {
-                "icon": "hairdresser",
+            "shop/pet": {
+                "icon": "dog-park",
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
+                "terms": [
+                    "cat",
+                    "dog",
+                    "fish"
+                ],
                 "tags": {
-                    "shop": "hairdresser"
+                    "shop": "pet"
                 },
-                "name": "Hairdresser"
+                "name": "Pet Store"
             },
-            "shop/hardware": {
-                "icon": "shop",
+            "shop/photo": {
+                "icon": "camera",
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
+                "terms": [
+                    "camera",
+                    "film"
+                ],
                 "tags": {
-                    "shop": "hardware"
+                    "shop": "photo"
                 },
-                "name": "Hardware Store"
+                "name": "Photography Store"
             },
-            "shop/hifi": {
+            "shop/pyrotechnics": {
                 "icon": "shop",
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "tags": {
-                    "shop": "hifi"
+                    "shop": "pyrotechnics"
                 },
-                "name": "Hifi Store"
+                "name": "Fireworks Store"
             },
-            "shop/jewelry": {
+            "shop/radiotechnics": {
                 "icon": "shop",
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "tags": {
-                    "shop": "jewelry"
+                    "shop": "radiotechnics"
                 },
-                "name": "Jeweler"
+                "name": "Radio/Electronic Component Store"
             },
-            "shop/kiosk": {
+            "shop/religion": {
                 "icon": "shop",
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
-                    "opening_hours"
+                    "opening_hours",
+                    "religion",
+                    "denomination"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "tags": {
-                    "shop": "kiosk"
+                    "shop": "religion"
                 },
-                "name": "Kiosk"
+                "name": "Religious Store"
             },
-            "shop/laundry": {
-                "icon": "laundry",
+            "shop/scuba_diving": {
+                "icon": "swimming",
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "tags": {
-                    "shop": "laundry"
+                    "shop": "scuba_diving"
                 },
-                "name": "Laundry"
+                "name": "Scuba Diving Shop"
             },
-            "shop/locksmith": {
+            "shop/seafood": {
                 "icon": "shop",
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "terms": [
-                    "keys"
+                    "fishmonger"
                 ],
                 "tags": {
-                    "shop": "locksmith"
+                    "shop": "seafood"
                 },
-                "name": "Locksmith"
+                "name": "Seafood Shop"
             },
-            "shop/lottery": {
+            "shop/second_hand": {
                 "icon": "shop",
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
+                "terms": [
+                    "secondhand",
+                    "second hand",
+                    "resale",
+                    "thrift",
+                    "used"
+                ],
                 "tags": {
-                    "shop": "lottery"
+                    "shop": "second_hand"
                 },
-                "name": "Lottery Shop"
+                "name": "Consignment/Thrift Store"
             },
-            "shop/mall": {
+            "shop/shoes": {
                 "icon": "shop",
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "tags": {
-                    "shop": "mall"
+                    "shop": "shoes"
                 },
-                "name": "Mall"
+                "name": "Shoe Store"
             },
-            "shop/mobile_phone": {
-                "icon": "mobilephone",
+            "shop/sports": {
+                "icon": "shop",
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "tags": {
-                    "shop": "mobile_phone"
+                    "shop": "sports"
                 },
-                "name": "Mobile Phone Store"
+                "name": "Sporting Goods Store"
             },
-            "shop/motorcycle": {
-                "icon": "scooter",
+            "shop/stationery": {
+                "icon": "shop",
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
+                "terms": [
+                    "card",
+                    "paper"
+                ],
                 "tags": {
-                    "shop": "motorcycle"
+                    "shop": "stationery"
                 },
-                "name": "Motorcycle Dealership"
+                "name": "Stationery Store"
             },
-            "shop/music": {
-                "icon": "music",
+            "shop/supermarket": {
+                "icon": "grocery",
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
+                "terms": [
+                    "grocery",
+                    "store",
+                    "shop"
+                ],
                 "tags": {
-                    "shop": "music"
+                    "shop": "supermarket"
                 },
-                "name": "Music Store"
+                "name": "Supermarket"
             },
-            "shop/newsagent": {
-                "icon": "shop",
+            "shop/tailor": {
+                "icon": "clothing-store",
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
+                "terms": [
+                    "clothes",
+                    "suit"
+                ],
                 "tags": {
-                    "shop": "newsagent"
+                    "shop": "tailor"
                 },
-                "name": "Newsagent"
+                "name": "Tailor"
             },
-            "shop/optician": {
+            "shop/tattoo": {
                 "icon": "shop",
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "tags": {
-                    "shop": "optician"
+                    "shop": "tattoo"
                 },
-                "name": "Optician"
+                "name": "Tattoo Parlor"
             },
-            "shop/outdoor": {
-                "icon": "shop",
+            "shop/tea": {
+                "icon": "cafe",
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "tags": {
-                    "shop": "outdoor"
+                    "shop": "tea"
                 },
-                "name": "Outdoor Store"
+                "name": "Tea Store"
             },
-            "shop/pet": {
-                "icon": "dog-park",
+            "shop/ticket": {
+                "icon": "shop",
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "tags": {
-                    "shop": "pet"
+                    "shop": "ticket"
                 },
-                "name": "Pet Store"
+                "name": "Ticket Seller"
             },
-            "shop/photo": {
-                "icon": "camera",
+            "shop/tobacco": {
+                "icon": "shop",
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "tags": {
-                    "shop": "photo"
+                    "shop": "tobacco"
                 },
-                "name": "Photography Store"
+                "name": "Tobacco Shop"
             },
-            "shop/seafood": {
+            "shop/toys": {
                 "icon": "shop",
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "tags": {
-                    "shop": "seafood"
+                    "shop": "toys"
                 },
-                "terms": [
-                    "fishmonger"
-                ],
-                "name": "Seafood Shop"
+                "name": "Toy Store"
             },
-            "shop/shoes": {
-                "icon": "shop",
+            "shop/travel_agency": {
+                "icon": "suitcase",
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "tags": {
-                    "shop": "shoes"
+                    "shop": "travel_agency"
                 },
-                "name": "Shoe Store"
+                "name": "Travel Agency"
             },
-            "shop/sports": {
+            "shop/tyres": {
                 "icon": "shop",
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "tags": {
-                    "shop": "sports"
+                    "shop": "tyres"
                 },
-                "name": "Sporting Goods Store"
+                "name": "Tire Store"
             },
-            "shop/stationery": {
+            "shop/vacant": {
                 "icon": "shop",
                 "fields": [
                     "address",
-                    "building_area",
-                    "opening_hours"
+                    "building_area"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "tags": {
-                    "shop": "stationery"
+                    "shop": "vacant"
                 },
-                "name": "Stationery Store"
+                "name": "Vacant Shop",
+                "searchable": false
             },
-            "shop/supermarket": {
-                "icon": "grocery",
+            "shop/vacuum_cleaner": {
+                "icon": "shop",
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
-                "terms": [
-                    "bazaar",
-                    "boutique",
-                    "chain",
-                    "co-op",
-                    "cut-rate store",
-                    "discount store",
-                    "five-and-dime",
-                    "flea market",
-                    "galleria",
-                    "grocery store",
-                    "mall",
-                    "mart",
-                    "outlet",
-                    "outlet store",
-                    "shop",
-                    "shopping center",
-                    "shopping centre",
-                    "shopping plaza",
-                    "stand",
-                    "store",
-                    "supermarket",
-                    "thrift shop"
-                ],
                 "tags": {
-                    "shop": "supermarket"
+                    "shop": "vacuum_cleaner"
                 },
-                "name": "Supermarket"
+                "name": "Vacuum Cleaner Store"
             },
-            "shop/toys": {
+            "shop/variety_store": {
                 "icon": "shop",
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "tags": {
-                    "shop": "toys"
+                    "shop": "variety_store"
                 },
-                "name": "Toy Store"
+                "name": "Variety Store"
             },
-            "shop/travel_agency": {
-                "icon": "suitcase",
+            "shop/video": {
+                "icon": "shop",
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
+                "terms": [
+                    "DVD"
+                ],
                 "tags": {
-                    "shop": "travel_agency"
+                    "shop": "video"
                 },
-                "name": "Travel Agency"
+                "name": "Video Store"
             },
-            "shop/tyres": {
+            "shop/video_games": {
                 "icon": "shop",
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "tags": {
-                    "shop": "tyres"
+                    "shop": "video_games"
                 },
-                "name": "Tire Store"
+                "name": "Video Game Store"
             },
-            "shop/vacant": {
+            "shop/water_sports": {
                 "icon": "shop",
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "tags": {
-                    "shop": "vacant"
+                    "shop": "water_sports"
                 },
-                "name": "Vacant Shop"
+                "name": "Watersport/Swim Shop"
             },
-            "shop/variety_store": {
+            "shop/weapons": {
                 "icon": "shop",
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
+                "terms": [
+                    "ammo",
+                    "gun",
+                    "knife",
+                    "knives"
+                ],
                 "tags": {
-                    "shop": "variety_store"
+                    "shop": "weapons"
                 },
-                "name": "Variety Store"
+                "name": "Weapon Shop"
             },
-            "shop/video": {
+            "shop/window_blind": {
                 "icon": "shop",
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "tags": {
-                    "shop": "video"
+                    "shop": "window_blind"
                 },
-                "name": "Video Store"
+                "name": "Window Blind Store"
             },
             "shop/wine": {
                 "icon": "alcohol-shop",
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "tags": {
                     "shop": "wine"
                 },
-                "terms": [
-                    "winery"
-                ],
                 "name": "Wine Shop"
             },
             "tourism": {
@@ -71198,11 +75298,11 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "lodging",
                 "fields": [
                     "operator",
-                    "address"
+                    "address",
+                    "building_area"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "tags": {
@@ -71211,11 +75311,11 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "name": "Alpine Hut"
             },
             "tourism/artwork": {
+                "icon": "art-gallery",
                 "fields": [
                     "artwork_type",
                     "artist"
                 ],
-                "icon": "art-gallery",
                 "geometry": [
                     "point",
                     "vertex",
@@ -71251,17 +75351,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "campsite",
                 "fields": [
                     "operator",
-                    "address",
-                    "smoking"
+                    "address"
                 ],
                 "geometry": [
                     "point",
                     "vertex",
                     "area"
                 ],
-                "terms": [
-                    "camping"
-                ],
                 "tags": {
                     "tourism": "camp_site"
                 },
@@ -71287,13 +75383,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "lodging",
                 "fields": [
                     "operator",
-                    "building_area",
                     "address",
+                    "building_area",
                     "smoking"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "tags": {
@@ -71306,11 +75401,11 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "fields": [
                     "operator",
                     "address",
+                    "building_area",
                     "smoking"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "tags": {
@@ -71318,7 +75413,6 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 },
                 "terms": [
                     "B&B",
-                    "Bed & Breakfast",
                     "Bed and Breakfast"
                 ],
                 "name": "Guest House"
@@ -71327,13 +75421,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "lodging",
                 "fields": [
                     "operator",
-                    "building_area",
                     "address",
+                    "building_area",
                     "smoking"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "tags": {
@@ -71345,16 +75438,14 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "lodging",
                 "fields": [
                     "operator",
-                    "building_area",
                     "address",
+                    "building_area",
                     "smoking"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
-                "terms": [],
                 "tags": {
                     "tourism": "hotel"
                 },
@@ -71363,9 +75454,9 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
             "tourism/information": {
                 "fields": [
                     "information",
-                    "building_area",
+                    "operator",
                     "address",
-                    "operator"
+                    "building_area"
                 ],
                 "geometry": [
                     "point",
@@ -71381,13 +75472,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "lodging",
                 "fields": [
                     "operator",
-                    "building_area",
                     "address",
+                    "building_area",
                     "smoking"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "tags": {
@@ -71399,28 +75489,20 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "museum",
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "terms": [
                     "exhibition",
-                    "exhibits archive",
                     "foundation",
                     "gallery",
                     "hall",
-                    "institution",
-                    "library",
-                    "menagerie",
-                    "repository",
-                    "salon",
-                    "storehouse",
-                    "treasury",
-                    "vault"
+                    "institution"
                 ],
                 "tags": {
                     "tourism": "museum"
@@ -71439,7 +75521,9 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                     "vertex",
                     "area"
                 ],
-                "terms": [],
+                "terms": [
+                    "camp"
+                ],
                 "tags": {
                     "tourism": "picnic_site"
                 },
@@ -71448,11 +75532,11 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
             "tourism/theme_park": {
                 "fields": [
                     "operator",
-                    "address"
+                    "address",
+                    "opening_hours"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "tags": {
@@ -71474,11 +75558,11 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "zoo",
                 "fields": [
                     "operator",
-                    "address"
+                    "address",
+                    "opening_hours"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "tags": {
@@ -71486,6 +75570,67 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 },
                 "name": "Zoo"
             },
+            "traffic_calming/bump": {
+                "fields": [
+                    "surface"
+                ],
+                "geometry": [
+                    "vertex"
+                ],
+                "tags": {
+                    "traffic_calming": "bump"
+                },
+                "terms": [
+                    "speed hump"
+                ],
+                "name": "Speed Bump"
+            },
+            "traffic_calming/hump": {
+                "fields": [
+                    "surface"
+                ],
+                "geometry": [
+                    "vertex"
+                ],
+                "tags": {
+                    "traffic_calming": "hump"
+                },
+                "terms": [
+                    "speed bump"
+                ],
+                "name": "Speed Hump"
+            },
+            "traffic_calming/rumble_strip": {
+                "geometry": [
+                    "vertex"
+                ],
+                "tags": {
+                    "traffic_calming": "rumble_strip"
+                },
+                "terms": [
+                    "sleeper lines",
+                    "audible lines",
+                    "growlers"
+                ],
+                "name": "Rumble Strip"
+            },
+            "traffic_calming/table": {
+                "fields": [
+                    "surface"
+                ],
+                "geometry": [
+                    "vertex"
+                ],
+                "tags": {
+                    "highway": "crossing",
+                    "traffic_calming": "table"
+                },
+                "terms": [
+                    "speed table",
+                    "flat top hump"
+                ],
+                "name": "Raised Pedestrian Crossing"
+            },
             "type/boundary": {
                 "geometry": [
                     "relation"
@@ -71787,7 +75932,8 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "name": "Road Route",
                 "icon": "route-road",
                 "fields": [
-                    "ref"
+                    "ref",
+                    "network"
                 ]
             },
             "type/route/train": {
@@ -72011,13 +76157,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -72030,13 +76176,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -72049,13 +76195,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -72068,13 +76214,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -72087,13 +76233,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -72106,13 +76252,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -72125,13 +76271,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -72144,13 +76290,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -72163,13 +76309,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -72182,13 +76328,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -72201,13 +76347,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -72220,13 +76366,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -72239,13 +76385,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -72258,13 +76404,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -72277,13 +76423,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -72296,13 +76442,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -72315,13 +76461,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -72334,13 +76480,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -72353,13 +76499,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -72372,13 +76518,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -72391,13 +76537,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -72410,13 +76556,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -72429,13 +76575,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -72448,13 +76594,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -72467,13 +76613,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -72486,13 +76632,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -72505,13 +76651,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -72524,13 +76670,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -72543,13 +76689,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -72562,13 +76708,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -72581,13 +76727,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -72600,13 +76746,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -72619,13 +76765,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -72638,13 +76784,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -72657,13 +76803,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -72676,13 +76822,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -72695,13 +76841,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -72714,13 +76860,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -72733,13 +76879,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -72752,13 +76898,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -72771,13 +76917,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -72790,13 +76936,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -72809,13 +76955,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -72828,13 +76974,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -72847,13 +76993,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -72866,13 +77012,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -72885,13 +77031,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -72904,13 +77050,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -72923,13 +77069,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -72942,13 +77088,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -72961,13 +77107,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -72980,13 +77126,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -72999,13 +77145,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -73018,13 +77164,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -73037,13 +77183,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -73056,13 +77202,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -73075,13 +77221,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -73094,13 +77240,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -73113,13 +77259,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -73132,13 +77278,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -73151,13 +77297,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -73170,13 +77316,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -73189,13 +77335,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -73208,13 +77354,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -73227,13 +77373,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -73246,13 +77392,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -73265,13 +77411,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -73284,13 +77430,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -73303,13 +77449,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -73322,13 +77468,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -73341,13 +77487,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -73360,13 +77506,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -73379,13 +77525,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -73398,13 +77544,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -73417,13 +77563,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -73436,13 +77582,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -73455,13 +77601,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -73474,13 +77620,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -73493,13 +77639,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -73512,13 +77658,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -73531,13 +77677,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -73550,13 +77696,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -73569,13 +77715,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -73588,13 +77734,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -73607,13 +77753,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -73626,13 +77772,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -73645,13 +77791,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -73664,13 +77810,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -73683,13 +77829,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -73702,13 +77848,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -73721,13 +77867,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -73740,13 +77886,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -73759,13 +77905,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -73778,13 +77924,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -73797,13 +77943,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -73816,13 +77962,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -73835,13 +77981,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -73854,13 +78000,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -73873,13 +78019,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -73892,13 +78038,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -73911,13 +78057,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -73930,13 +78076,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -73949,13 +78095,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -73968,13 +78114,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -73987,13 +78133,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -74006,13 +78152,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -74025,13 +78171,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -74044,13 +78190,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -74063,13 +78209,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -74082,13 +78228,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -74101,13 +78247,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -74120,13 +78266,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -74139,13 +78285,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -74158,13 +78304,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -74177,13 +78323,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -74196,13 +78342,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -74215,13 +78361,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -74234,13 +78380,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -74253,13 +78399,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -74272,13 +78418,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -74291,13 +78437,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -74310,13 +78456,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -74329,13 +78475,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -74348,13 +78494,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -74367,13 +78513,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -74386,13 +78532,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -74405,13 +78551,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -74424,13 +78570,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -74443,13 +78589,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -74462,13 +78608,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -74481,13 +78627,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -74500,13 +78646,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -74519,13 +78665,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -74538,13 +78684,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -74557,13 +78703,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -74576,13 +78722,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -74595,13 +78741,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -74614,13 +78760,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -74633,13 +78779,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -74652,13 +78798,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -74672,13 +78818,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -74691,13 +78837,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -74710,13 +78856,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -74729,13 +78875,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -74748,13 +78894,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -74767,13 +78913,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -74786,13 +78932,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -74805,13 +78951,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -74824,13 +78970,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -74843,13 +78989,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -74862,13 +79008,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -74881,13 +79027,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -74900,13 +79046,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -74919,13 +79065,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -74938,13 +79084,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -74957,13 +79103,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -74976,13 +79122,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -74995,13 +79141,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -75014,13 +79160,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -75033,13 +79179,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -75052,13 +79198,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -75071,13 +79217,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -75090,13 +79236,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -75109,13 +79255,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -75128,13 +79274,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -75147,13 +79293,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -75166,13 +79312,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -75185,13 +79331,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -75204,13 +79350,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -75223,13 +79369,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -75242,12 +79388,11 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "beer",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -75262,12 +79407,11 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "beer",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -75282,12 +79426,11 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "beer",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -75302,12 +79445,11 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "beer",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -75322,12 +79464,11 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "beer",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -75342,12 +79483,11 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "beer",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -75362,12 +79502,11 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "beer",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -75382,12 +79521,11 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "beer",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -75402,12 +79540,11 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "beer",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -75422,12 +79559,11 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "beer",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -75442,12 +79578,11 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "beer",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -75462,12 +79597,11 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "beer",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -75482,12 +79616,11 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "beer",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -75502,12 +79635,11 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "beer",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -75522,12 +79654,11 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "beer",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -75542,12 +79673,11 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "beer",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -75562,12 +79692,11 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "beer",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -75582,12 +79711,11 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "beer",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -75602,12 +79730,11 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "beer",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -75622,12 +79749,11 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "beer",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -75642,12 +79768,11 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "beer",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -75662,12 +79787,11 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "beer",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -75682,12 +79806,11 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "beer",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -75702,12 +79825,11 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "beer",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -75722,12 +79844,11 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "beer",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -75742,12 +79863,11 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "beer",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -75762,12 +79882,11 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "beer",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -75782,12 +79901,11 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "beer",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -75802,12 +79920,11 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "beer",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -75822,12 +79939,11 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "beer",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -75842,12 +79958,11 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "beer",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -75862,12 +79977,11 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "beer",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -75882,12 +79996,11 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "beer",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -75902,12 +80015,11 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "beer",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -75922,12 +80034,11 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "beer",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -75942,12 +80053,11 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "beer",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -75962,12 +80072,11 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "beer",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -75982,12 +80091,11 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "beer",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -76002,12 +80110,11 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "beer",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -76022,12 +80129,11 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "beer",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -76042,12 +80148,11 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "beer",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -76062,12 +80167,11 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "beer",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -76082,12 +80186,11 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "beer",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -76102,12 +80205,11 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "beer",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -76122,12 +80224,11 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "beer",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -76142,13 +80243,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fast-food",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -76164,13 +80265,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fast-food",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -76186,13 +80287,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fast-food",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -76208,13 +80309,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fast-food",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -76229,13 +80330,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fast-food",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -76251,13 +80352,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fast-food",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -76272,13 +80373,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fast-food",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -76294,13 +80395,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fast-food",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -76316,13 +80417,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fast-food",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -76337,13 +80438,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fast-food",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -76358,13 +80459,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fast-food",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -76379,13 +80480,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fast-food",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -76400,13 +80501,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fast-food",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -76422,13 +80523,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fast-food",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -76443,13 +80544,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fast-food",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -76464,13 +80565,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fast-food",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -76486,13 +80587,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fast-food",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -76507,13 +80608,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fast-food",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -76528,13 +80629,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fast-food",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -76549,13 +80650,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fast-food",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -76570,13 +80671,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fast-food",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -76591,13 +80692,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fast-food",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -76612,13 +80713,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fast-food",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -76633,13 +80734,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fast-food",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -76654,13 +80755,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fast-food",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -76675,13 +80776,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fast-food",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -76697,13 +80798,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fast-food",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -76718,13 +80819,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fast-food",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -76739,13 +80840,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fast-food",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -76760,13 +80861,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fast-food",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -76781,13 +80882,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fast-food",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -76802,13 +80903,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fast-food",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -76824,13 +80925,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fast-food",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -76846,13 +80947,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fast-food",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -76867,13 +80968,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fast-food",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -76889,13 +80990,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fast-food",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -76910,13 +81011,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fast-food",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -76931,13 +81032,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fast-food",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -76953,13 +81054,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fast-food",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -76974,13 +81075,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fast-food",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -76995,13 +81096,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fast-food",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -77016,13 +81117,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fast-food",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -77038,13 +81139,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fast-food",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -77059,13 +81160,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fast-food",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -77080,13 +81181,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fast-food",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -77102,13 +81203,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fast-food",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -77125,13 +81226,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fast-food",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -77146,13 +81247,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fast-food",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -77167,13 +81268,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fast-food",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -77188,13 +81289,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fast-food",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -77209,13 +81310,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fast-food",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -77230,13 +81331,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fast-food",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -77253,13 +81354,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fast-food",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -77274,13 +81375,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fast-food",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -77295,13 +81396,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fast-food",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -77317,13 +81418,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fast-food",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -77338,13 +81439,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fast-food",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -77359,13 +81460,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fast-food",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -77380,13 +81481,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fast-food",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -77401,13 +81502,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fast-food",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -77422,13 +81523,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fast-food",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -77444,13 +81545,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fast-food",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -77465,13 +81566,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fast-food",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -77486,13 +81587,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fast-food",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -77507,13 +81608,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fast-food",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -77528,13 +81629,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fast-food",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -77549,13 +81650,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fast-food",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -77570,13 +81671,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fast-food",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -77591,13 +81692,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fast-food",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -77613,13 +81714,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fast-food",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -77634,13 +81735,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fast-food",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -77655,13 +81756,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fast-food",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -77676,13 +81777,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fast-food",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -77698,13 +81799,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fast-food",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -77720,13 +81821,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fast-food",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -77741,13 +81842,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fast-food",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -77762,13 +81863,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fast-food",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -77783,13 +81884,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "restaurant",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "capacity",
                     "smoking"
@@ -77805,13 +81905,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "restaurant",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "capacity",
                     "smoking"
@@ -77827,13 +81926,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "restaurant",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "capacity",
                     "smoking"
@@ -77849,13 +81947,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "restaurant",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "capacity",
                     "smoking"
@@ -77871,13 +81968,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "restaurant",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "capacity",
                     "smoking"
@@ -77893,13 +81989,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "restaurant",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "capacity",
                     "smoking"
@@ -77915,13 +82010,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "restaurant",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "capacity",
                     "smoking"
@@ -77937,13 +82031,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "restaurant",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "capacity",
                     "smoking"
@@ -77959,13 +82052,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "restaurant",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "capacity",
                     "smoking"
@@ -77981,13 +82073,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "restaurant",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "capacity",
                     "smoking"
@@ -78003,13 +82094,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "restaurant",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "capacity",
                     "smoking"
@@ -78025,13 +82115,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "restaurant",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "capacity",
                     "smoking"
@@ -78047,13 +82136,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "restaurant",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "capacity",
                     "smoking"
@@ -78069,13 +82157,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "restaurant",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "capacity",
                     "smoking"
@@ -78091,13 +82178,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "restaurant",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "capacity",
                     "smoking"
@@ -78113,13 +82199,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "restaurant",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "capacity",
                     "smoking"
@@ -78135,13 +82220,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "restaurant",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "capacity",
                     "smoking"
@@ -78157,13 +82241,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "restaurant",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "capacity",
                     "smoking"
@@ -78179,13 +82262,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "restaurant",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "capacity",
                     "smoking"
@@ -78201,13 +82283,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "restaurant",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "capacity",
                     "smoking"
@@ -78223,13 +82304,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "restaurant",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "capacity",
                     "smoking"
@@ -78245,13 +82325,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "restaurant",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "capacity",
                     "smoking"
@@ -78267,13 +82346,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "restaurant",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "capacity",
                     "smoking"
@@ -78289,13 +82367,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "restaurant",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "capacity",
                     "smoking"
@@ -78311,13 +82388,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "restaurant",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "capacity",
                     "smoking"
@@ -78333,13 +82409,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "restaurant",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "capacity",
                     "smoking"
@@ -78355,13 +82430,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "restaurant",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "capacity",
                     "smoking"
@@ -78377,13 +82451,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "restaurant",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "capacity",
                     "smoking"
@@ -78399,13 +82472,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "restaurant",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "capacity",
                     "smoking"
@@ -78421,13 +82493,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "restaurant",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "capacity",
                     "smoking"
@@ -78443,13 +82514,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "restaurant",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "capacity",
                     "smoking"
@@ -78465,13 +82535,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "restaurant",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "capacity",
                     "smoking"
@@ -78487,13 +82556,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "restaurant",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "capacity",
                     "smoking"
@@ -78509,13 +82577,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "restaurant",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "capacity",
                     "smoking"
@@ -78531,13 +82598,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "restaurant",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "capacity",
                     "smoking"
@@ -78553,13 +82619,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "restaurant",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "capacity",
                     "smoking"
@@ -78575,13 +82640,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "restaurant",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "capacity",
                     "smoking"
@@ -78597,13 +82661,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "restaurant",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "capacity",
                     "smoking"
@@ -78619,13 +82682,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "restaurant",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "capacity",
                     "smoking"
@@ -78641,13 +82703,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "restaurant",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "capacity",
                     "smoking"
@@ -78663,13 +82724,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "restaurant",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "capacity",
                     "smoking"
@@ -78685,13 +82745,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "restaurant",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "capacity",
                     "smoking"
@@ -78707,13 +82766,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "restaurant",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "capacity",
                     "smoking"
@@ -78729,13 +82787,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "restaurant",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "capacity",
                     "smoking"
@@ -78751,13 +82808,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "restaurant",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "capacity",
                     "smoking"
@@ -78773,13 +82829,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "restaurant",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "capacity",
                     "smoking"
@@ -78795,13 +82850,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "restaurant",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "capacity",
                     "smoking"
@@ -78817,13 +82871,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "restaurant",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "capacity",
                     "smoking"
@@ -78839,13 +82892,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "restaurant",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "capacity",
                     "smoking"
@@ -78861,13 +82913,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "restaurant",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "capacity",
                     "smoking"
@@ -78883,13 +82934,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "restaurant",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "capacity",
                     "smoking"
@@ -78905,13 +82955,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "restaurant",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "capacity",
                     "smoking"
@@ -78927,13 +82976,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "restaurant",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "capacity",
                     "smoking"
@@ -78949,13 +82997,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "restaurant",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "capacity",
                     "smoking"
@@ -78971,13 +83018,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "restaurant",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "capacity",
                     "smoking"
@@ -78993,13 +83039,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "restaurant",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "capacity",
                     "smoking"
@@ -79015,13 +83060,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "restaurant",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "capacity",
                     "smoking"
@@ -79037,13 +83081,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "restaurant",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "capacity",
                     "smoking"
@@ -79059,13 +83102,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "restaurant",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "capacity",
                     "smoking"
@@ -79081,13 +83123,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "restaurant",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "capacity",
                     "smoking"
@@ -79103,13 +83144,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "restaurant",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "capacity",
                     "smoking"
@@ -79125,13 +83165,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "restaurant",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "capacity",
                     "smoking"
@@ -79147,13 +83186,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "restaurant",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "capacity",
                     "smoking"
@@ -79169,13 +83207,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "restaurant",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "capacity",
                     "smoking"
@@ -79191,13 +83228,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "restaurant",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "capacity",
                     "smoking"
@@ -79213,13 +83249,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "restaurant",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "capacity",
                     "smoking"
@@ -79235,13 +83270,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "restaurant",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "capacity",
                     "smoking"
@@ -79257,13 +83291,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "restaurant",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "capacity",
                     "smoking"
@@ -79279,13 +83312,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "restaurant",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "capacity",
                     "smoking"
@@ -79301,13 +83333,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "restaurant",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "capacity",
                     "smoking"
@@ -79323,13 +83354,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "restaurant",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "capacity",
                     "smoking"
@@ -79345,13 +83375,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "restaurant",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "capacity",
                     "smoking"
@@ -79367,13 +83396,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "restaurant",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "capacity",
                     "smoking"
@@ -79389,13 +83417,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "restaurant",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "capacity",
                     "smoking"
@@ -79411,13 +83438,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "restaurant",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "capacity",
                     "smoking"
@@ -79433,13 +83459,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "restaurant",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "capacity",
                     "smoking"
@@ -79455,13 +83480,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "restaurant",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "capacity",
                     "smoking"
@@ -79477,13 +83501,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "restaurant",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "capacity",
                     "smoking"
@@ -79499,13 +83522,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "restaurant",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "capacity",
                     "smoking"
@@ -79521,13 +83543,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "restaurant",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "capacity",
                     "smoking"
@@ -79543,13 +83564,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "restaurant",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "capacity",
                     "smoking"
@@ -79565,13 +83585,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "restaurant",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "capacity",
                     "smoking"
@@ -79587,13 +83606,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "restaurant",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "capacity",
                     "smoking"
@@ -79609,13 +83627,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "restaurant",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "capacity",
                     "smoking"
@@ -79631,13 +83648,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "restaurant",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "capacity",
                     "smoking"
@@ -79653,13 +83669,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "restaurant",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "capacity",
                     "smoking"
@@ -79675,13 +83690,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "restaurant",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "capacity",
                     "smoking"
@@ -79697,13 +83711,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "restaurant",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "capacity",
                     "smoking"
@@ -79719,13 +83732,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "restaurant",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "capacity",
                     "smoking"
@@ -79741,13 +83753,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "restaurant",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "capacity",
                     "smoking"
@@ -79763,13 +83774,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "restaurant",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "capacity",
                     "smoking"
@@ -79785,13 +83795,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "restaurant",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "capacity",
                     "smoking"
@@ -79807,13 +83816,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "restaurant",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "capacity",
                     "smoking"
@@ -79829,13 +83837,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "restaurant",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "capacity",
                     "smoking"
@@ -79851,13 +83858,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "restaurant",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "capacity",
                     "smoking"
@@ -79873,13 +83879,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "restaurant",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "capacity",
                     "smoking"
@@ -79895,13 +83900,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "restaurant",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "capacity",
                     "smoking"
@@ -79917,13 +83921,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "restaurant",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "capacity",
                     "smoking"
@@ -79939,13 +83942,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "restaurant",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "capacity",
                     "smoking"
@@ -79961,13 +83963,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "restaurant",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "capacity",
                     "smoking"
@@ -79983,13 +83984,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "restaurant",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "capacity",
                     "smoking"
@@ -80005,13 +84005,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "restaurant",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "capacity",
                     "smoking"
@@ -80027,13 +84026,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "restaurant",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "capacity",
                     "smoking"
@@ -80050,13 +84048,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "restaurant",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "capacity",
                     "smoking"
@@ -80072,13 +84069,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "restaurant",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "capacity",
                     "smoking"
@@ -80094,13 +84090,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "restaurant",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "capacity",
                     "smoking"
@@ -80116,13 +84111,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "restaurant",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "capacity",
                     "smoking"
@@ -80138,13 +84132,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "restaurant",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "capacity",
                     "smoking"
@@ -80160,13 +84153,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "restaurant",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "capacity",
                     "smoking"
@@ -80182,13 +84174,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "restaurant",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "capacity",
                     "smoking"
@@ -80204,13 +84195,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "restaurant",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "capacity",
                     "smoking"
@@ -80226,13 +84216,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "restaurant",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "capacity",
                     "smoking"
@@ -80248,13 +84237,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "restaurant",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "capacity",
                     "smoking"
@@ -80270,13 +84258,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "restaurant",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "capacity",
                     "smoking"
@@ -80292,13 +84279,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "restaurant",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "capacity",
                     "smoking"
@@ -80314,13 +84300,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "restaurant",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "capacity",
                     "smoking"
@@ -80336,13 +84321,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "restaurant",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "capacity",
                     "smoking"
@@ -80358,13 +84342,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "restaurant",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "capacity",
                     "smoking"
@@ -80380,13 +84363,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "restaurant",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "capacity",
                     "smoking"
@@ -80402,13 +84384,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "restaurant",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "capacity",
                     "smoking"
@@ -80424,13 +84405,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "restaurant",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "capacity",
                     "smoking"
@@ -80446,13 +84426,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "restaurant",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "capacity",
                     "smoking"
@@ -80468,13 +84447,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "restaurant",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "capacity",
                     "smoking"
@@ -80490,13 +84468,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "restaurant",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "capacity",
                     "smoking"
@@ -80512,13 +84489,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "restaurant",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "capacity",
                     "smoking"
@@ -80534,13 +84510,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -80554,13 +84530,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -80574,13 +84550,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -80594,13 +84570,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -80614,13 +84590,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -80634,13 +84610,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -80654,13 +84630,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -80674,13 +84650,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -80694,13 +84670,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -80714,13 +84690,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -80734,13 +84710,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -80754,13 +84730,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -80774,13 +84750,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -80794,13 +84770,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -80814,13 +84790,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -80834,13 +84810,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -80854,13 +84830,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -80874,13 +84850,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -80894,13 +84870,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -80914,13 +84890,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -80934,13 +84910,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -80954,13 +84930,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -80974,13 +84950,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -80994,13 +84970,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -81014,13 +84990,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -81034,13 +85010,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -81054,13 +85030,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -81074,13 +85050,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -81094,13 +85070,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -81114,13 +85090,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -81134,13 +85110,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -81154,13 +85130,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -81174,13 +85150,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -81194,13 +85170,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -81214,13 +85190,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -81234,13 +85210,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -81254,13 +85230,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -81274,13 +85250,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -81294,13 +85270,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -81314,13 +85290,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -81334,13 +85310,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -81354,13 +85330,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -81374,13 +85350,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -81394,13 +85370,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -81414,13 +85390,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -81434,13 +85410,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -81454,13 +85430,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -81474,13 +85450,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -81494,13 +85470,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -81514,13 +85490,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -81534,13 +85510,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -81554,13 +85530,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -81574,13 +85550,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -81594,13 +85570,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -81614,13 +85590,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -81634,13 +85610,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -81654,13 +85630,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -81674,13 +85650,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -81694,13 +85670,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -81714,13 +85690,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -81734,13 +85710,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -81754,13 +85730,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -81774,13 +85750,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -81794,13 +85770,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -81814,13 +85790,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -81834,13 +85810,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -81854,13 +85830,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -81874,13 +85850,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -81894,13 +85870,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -81914,13 +85890,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -81934,13 +85910,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -81954,13 +85930,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -81974,13 +85950,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -81994,13 +85970,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -82014,13 +85990,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -82034,13 +86010,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -82054,13 +86030,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -82074,13 +86050,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -82094,13 +86070,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -82114,13 +86090,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -82134,13 +86110,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -82154,13 +86130,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -82174,13 +86150,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -82194,13 +86170,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -82214,13 +86190,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -82234,13 +86210,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -82254,13 +86230,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -82274,13 +86250,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -82294,13 +86270,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -82314,13 +86290,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -82334,13 +86310,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -82354,13 +86330,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -82374,13 +86350,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -82394,13 +86370,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -82414,13 +86390,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -82434,13 +86410,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -82454,13 +86430,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -82474,13 +86450,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -82494,13 +86470,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -82514,13 +86490,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -82534,13 +86510,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -82554,13 +86530,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -82574,13 +86550,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -82594,13 +86570,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -82614,13 +86590,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -82634,13 +86610,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -82654,13 +86630,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -82674,13 +86650,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -82694,13 +86670,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -82714,13 +86690,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -82734,13 +86710,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -82754,13 +86730,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -82774,13 +86750,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -82794,13 +86770,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -82814,13 +86790,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -82834,13 +86810,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -82854,13 +86830,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -82874,13 +86850,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -82894,13 +86870,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -82914,13 +86890,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -82934,13 +86910,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -82954,13 +86930,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -82974,13 +86950,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -82994,13 +86970,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -83014,13 +86990,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -83034,13 +87010,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -83054,13 +87030,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -83074,13 +87050,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -83094,13 +87070,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -83114,13 +87090,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -83134,13 +87110,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -83154,13 +87130,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -83174,13 +87150,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -83194,13 +87170,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -83214,13 +87190,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -83234,13 +87210,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -83254,13 +87230,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -83274,13 +87250,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -83294,13 +87270,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -83314,13 +87290,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -83334,13 +87310,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -83354,13 +87330,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -83374,13 +87350,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -83394,13 +87370,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -83414,13 +87390,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -83434,13 +87410,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -83454,13 +87430,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -83474,13 +87450,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -83494,13 +87470,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -83514,13 +87490,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -83534,13 +87510,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -83554,13 +87530,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -83574,13 +87550,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -83594,13 +87570,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -83614,13 +87590,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -83634,13 +87610,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -83654,13 +87630,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -83674,13 +87650,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -83694,13 +87670,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -83714,13 +87690,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -83734,13 +87710,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -83754,13 +87730,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -83774,13 +87750,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -83794,13 +87770,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -83814,13 +87790,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -83834,13 +87810,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -83854,13 +87830,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -83874,13 +87850,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -83894,13 +87870,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -83914,13 +87890,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -83934,13 +87910,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -83954,13 +87930,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -83974,13 +87950,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -83994,13 +87970,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -84014,13 +87990,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -84034,13 +88010,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -84054,13 +88030,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -84074,13 +88050,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -84094,13 +88070,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -84114,13 +88090,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -84134,13 +88110,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -84154,13 +88130,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -84174,13 +88150,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -84194,13 +88170,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -84214,13 +88190,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -84234,13 +88210,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -84254,13 +88230,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -84274,13 +88250,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -84294,13 +88270,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -84314,13 +88290,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -84334,13 +88310,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -84354,13 +88330,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -84374,13 +88350,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -84394,13 +88370,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -84414,13 +88390,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -84434,13 +88410,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -84454,13 +88430,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -84474,13 +88450,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -84494,13 +88470,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -84514,13 +88490,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -84534,13 +88510,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -84554,13 +88530,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -84574,13 +88550,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -84594,13 +88570,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -84614,13 +88590,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -84634,13 +88610,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -84654,13 +88630,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -84674,13 +88650,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -84694,13 +88670,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -84714,13 +88690,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -84734,13 +88710,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -84754,13 +88730,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -84775,13 +88751,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -84796,13 +88772,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -84817,13 +88793,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -84838,13 +88814,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -84859,13 +88835,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -84879,13 +88855,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -84899,13 +88875,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -84919,13 +88895,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -84939,13 +88915,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -84959,13 +88935,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -84979,13 +88955,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -84999,13 +88975,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -85020,13 +88996,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -85040,13 +89016,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -85060,13 +89036,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -85080,13 +89056,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -85100,13 +89076,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -85120,13 +89096,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -85140,13 +89116,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -85160,13 +89136,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -85180,13 +89156,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -85200,13 +89176,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -85220,13 +89196,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -85240,13 +89216,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -85260,13 +89236,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -85280,13 +89256,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -85300,13 +89276,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -85320,13 +89296,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -85340,13 +89316,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -85360,13 +89336,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -85380,13 +89356,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -85400,13 +89376,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -85421,13 +89397,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -85441,13 +89417,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -85461,13 +89437,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -85481,13 +89457,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -85501,13 +89477,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -85521,13 +89497,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -85541,13 +89517,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -85561,13 +89537,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -85693,13 +89669,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "pharmacy",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -85713,13 +89688,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "pharmacy",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -85733,13 +89707,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "pharmacy",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -85753,13 +89726,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "pharmacy",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -85773,13 +89745,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "pharmacy",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -85793,13 +89764,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "pharmacy",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -85813,13 +89783,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "pharmacy",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -85833,13 +89802,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "pharmacy",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -85853,13 +89821,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "pharmacy",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -85873,13 +89840,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "pharmacy",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -85893,13 +89859,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "pharmacy",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -85913,13 +89878,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "pharmacy",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -85933,13 +89897,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "pharmacy",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -85953,13 +89916,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "pharmacy",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -85973,13 +89935,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "pharmacy",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -85993,13 +89954,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "pharmacy",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -86013,13 +89973,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "pharmacy",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -86033,13 +89992,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "pharmacy",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -86053,13 +90011,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "pharmacy",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -86073,13 +90030,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "pharmacy",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -86093,13 +90049,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "pharmacy",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -86113,13 +90068,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "pharmacy",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -86133,13 +90087,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "pharmacy",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -86153,13 +90106,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "pharmacy",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -86173,13 +90125,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "pharmacy",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -86193,13 +90144,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "pharmacy",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -86213,13 +90163,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "pharmacy",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -86233,13 +90182,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "pharmacy",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -86253,13 +90201,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "pharmacy",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -86273,13 +90220,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "pharmacy",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -86293,13 +90239,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "pharmacy",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -86313,13 +90258,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "pharmacy",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -86333,13 +90277,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "pharmacy",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -86353,13 +90296,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "pharmacy",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -86373,13 +90315,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "pharmacy",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -86393,13 +90334,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "pharmacy",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -86413,13 +90353,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "pharmacy",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -86433,13 +90372,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "pharmacy",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -86453,13 +90391,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "pharmacy",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -86473,13 +90410,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "pharmacy",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -86493,13 +90429,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "pharmacy",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -86513,13 +90448,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "pharmacy",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -86533,13 +90467,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "pharmacy",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -86553,13 +90486,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "pharmacy",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -86573,13 +90505,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "pharmacy",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -86593,13 +90524,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "pharmacy",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -86613,13 +90543,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "pharmacy",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -86633,13 +90562,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "pharmacy",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -86653,13 +90581,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "pharmacy",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -86673,13 +90600,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "pharmacy",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -86693,13 +90619,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "pharmacy",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -86713,13 +90638,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "pharmacy",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -86733,13 +90657,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "pharmacy",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -86753,13 +90676,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "pharmacy",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -86773,13 +90695,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "pharmacy",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -86793,13 +90714,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "pharmacy",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -86813,13 +90733,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "pharmacy",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -86833,13 +90752,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "pharmacy",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -86853,13 +90771,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "pharmacy",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -86873,13 +90790,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "pharmacy",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -86893,13 +90809,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "pharmacy",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -86913,13 +90828,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "pharmacy",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -86933,13 +90847,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "pharmacy",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -86953,13 +90866,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "pharmacy",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -86973,13 +90885,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "pharmacy",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -86993,13 +90904,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "pharmacy",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -87013,13 +90923,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "pharmacy",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -87033,13 +90942,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "pharmacy",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -87053,13 +90961,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "pharmacy",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -87073,13 +90980,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "pharmacy",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -87093,13 +90999,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "pharmacy",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -87113,13 +91018,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "pharmacy",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -87133,13 +91037,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "pharmacy",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -87153,13 +91056,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "pharmacy",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -87174,14 +91076,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "cafe",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
                     "internet_access",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -87196,14 +91097,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "cafe",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
                     "internet_access",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -87218,14 +91118,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "cafe",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
                     "internet_access",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -87240,14 +91139,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "cafe",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
                     "internet_access",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -87262,14 +91160,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "cafe",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
                     "internet_access",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -87284,14 +91181,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "cafe",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
                     "internet_access",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -87306,14 +91202,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "cafe",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
                     "internet_access",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -87328,14 +91223,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "cafe",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
                     "internet_access",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -87351,14 +91245,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "cafe",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
                     "internet_access",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -87373,14 +91266,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "cafe",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
                     "internet_access",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -87395,14 +91287,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "cafe",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
                     "internet_access",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -87417,14 +91308,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "cafe",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
                     "internet_access",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -87439,14 +91329,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "cafe",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
                     "internet_access",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -87461,14 +91350,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "cafe",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
                     "internet_access",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -87484,14 +91372,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "cafe",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
                     "internet_access",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -87506,14 +91393,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "cafe",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
                     "internet_access",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -87528,14 +91414,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "cafe",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
                     "internet_access",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -87550,14 +91435,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "cafe",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
                     "internet_access",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -87573,14 +91457,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "cafe",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
                     "internet_access",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -87595,14 +91478,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "cafe",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
                     "internet_access",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -87617,14 +91499,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "cafe",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
                     "internet_access",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -87639,14 +91520,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "cafe",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
                     "internet_access",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -87661,14 +91541,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "cafe",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
                     "internet_access",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -87683,14 +91562,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "cafe",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
                     "internet_access",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -87705,14 +91583,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "cafe",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
                     "internet_access",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -87727,14 +91604,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "cafe",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
                     "internet_access",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -87750,14 +91626,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "cafe",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
                     "internet_access",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -87772,14 +91647,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "cafe",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
                     "internet_access",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -87794,13 +91668,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -87813,13 +91687,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -87832,13 +91706,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -87851,13 +91725,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -87870,13 +91744,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -87889,13 +91763,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -87908,13 +91782,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -87927,13 +91801,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -87946,13 +91820,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -87965,13 +91839,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -87984,13 +91858,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -88003,13 +91877,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -88022,13 +91896,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -88041,13 +91915,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -88060,13 +91934,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -88079,13 +91953,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -88098,13 +91972,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -88117,13 +91991,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -88136,13 +92010,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -88155,13 +92029,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -88174,13 +92048,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -88193,13 +92067,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -88212,13 +92086,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -88231,13 +92105,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -88250,13 +92124,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -88269,13 +92143,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -88288,13 +92162,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -88307,13 +92181,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -88326,13 +92200,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -88345,13 +92219,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -88364,13 +92238,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -88383,13 +92257,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -88402,13 +92276,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -88421,13 +92295,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -88440,13 +92314,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -88459,13 +92333,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -88478,13 +92352,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -88497,13 +92371,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -88516,13 +92390,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -88535,13 +92409,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -88554,13 +92428,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -88573,13 +92447,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -88592,13 +92466,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -88611,13 +92485,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -88630,13 +92504,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -88649,13 +92523,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -88668,13 +92542,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -88687,13 +92561,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -88706,13 +92580,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -88725,13 +92599,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -88744,13 +92618,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -88763,13 +92637,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -88782,13 +92656,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -88801,13 +92675,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -88820,13 +92694,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -88839,13 +92713,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -88858,13 +92732,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -88877,13 +92751,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -88896,13 +92770,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -88915,13 +92789,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -88934,13 +92808,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -88953,13 +92827,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -88972,13 +92846,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -88991,13 +92865,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -89010,13 +92884,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -89029,13 +92903,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -89048,13 +92922,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -89067,13 +92941,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -89086,13 +92960,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -89105,13 +92979,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -89124,13 +92998,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -89143,13 +93017,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -89162,13 +93036,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -89181,13 +93055,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -89200,13 +93074,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -89219,13 +93093,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -89238,13 +93112,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -89257,13 +93131,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -89276,13 +93150,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -89295,13 +93169,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -89314,13 +93188,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -89333,13 +93207,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -89352,13 +93226,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -89371,13 +93245,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -89390,13 +93264,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -89409,13 +93283,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -89428,13 +93302,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -89447,13 +93321,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -89466,13 +93340,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -89485,13 +93359,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -89504,13 +93378,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -89523,13 +93397,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -89542,13 +93416,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -89561,13 +93435,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -89580,13 +93454,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -89599,13 +93473,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -89618,13 +93492,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -89637,13 +93511,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -89656,13 +93530,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -89675,13 +93549,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -89694,13 +93568,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -89713,13 +93587,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -89732,13 +93606,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -89751,13 +93625,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -89770,13 +93644,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -89789,13 +93663,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -89808,13 +93682,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -89827,13 +93701,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -89846,13 +93720,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -89865,13 +93739,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -89884,13 +93758,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -89903,13 +93777,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -89922,13 +93796,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -89941,13 +93815,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -89960,13 +93834,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -89979,13 +93853,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -89998,13 +93872,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -90017,13 +93891,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -90036,13 +93910,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -90055,13 +93929,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -90074,13 +93948,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -90093,13 +93967,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -90112,13 +93986,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -90131,13 +94005,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -90150,13 +94024,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -90169,13 +94043,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -90188,13 +94062,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -90207,13 +94081,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -90226,13 +94100,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -90245,13 +94119,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -90264,13 +94138,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -90283,13 +94157,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -90302,13 +94176,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -90321,13 +94195,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -90340,13 +94214,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -90359,13 +94233,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -90378,13 +94252,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -90397,13 +94271,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -90416,13 +94290,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -90435,13 +94309,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -90454,13 +94328,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -90473,13 +94347,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -90492,13 +94366,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -90511,13 +94385,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -90530,13 +94404,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -90549,13 +94423,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -90568,13 +94442,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -90587,13 +94461,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -90606,13 +94480,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -90625,13 +94499,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -90644,13 +94518,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -90663,13 +94537,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -90682,13 +94556,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -90701,13 +94575,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -90720,13 +94594,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -90739,13 +94613,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -90758,13 +94632,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -90777,13 +94651,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -90796,13 +94670,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -90815,13 +94689,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -90834,13 +94708,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -90853,13 +94727,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -90872,13 +94746,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -90891,13 +94765,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -90910,13 +94784,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -90929,13 +94803,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -90948,13 +94822,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -90967,13 +94841,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -90986,13 +94860,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -91005,13 +94879,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -91024,13 +94898,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -91043,13 +94917,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -91062,13 +94936,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -91081,13 +94955,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -91100,13 +94974,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -91119,13 +94993,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -91138,13 +95012,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -91157,13 +95031,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -91176,13 +95050,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -91195,13 +95069,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -91214,13 +95088,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -91233,13 +95107,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -91252,13 +95126,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -91271,13 +95145,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -91290,13 +95164,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -91309,13 +95183,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -91328,13 +95202,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -91347,13 +95221,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -91366,13 +95240,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -91385,13 +95259,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -91404,13 +95278,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -91423,13 +95297,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -91442,13 +95316,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -91461,13 +95335,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -91480,13 +95354,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -91499,13 +95373,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -91518,13 +95392,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -91537,13 +95411,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -91556,13 +95430,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -91575,13 +95449,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -91594,13 +95468,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -91613,13 +95487,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -91632,13 +95506,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -91651,13 +95525,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -91670,13 +95544,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -91689,13 +95563,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -91708,13 +95582,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -91727,13 +95601,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -91746,13 +95620,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -91765,13 +95639,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -91784,13 +95658,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -91803,13 +95677,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -91822,13 +95696,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -91841,13 +95715,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -91860,13 +95734,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -91879,13 +95753,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -91898,13 +95772,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -91917,13 +95791,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -91936,13 +95810,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -91955,13 +95829,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -91974,13 +95848,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -91993,13 +95867,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -92012,13 +95886,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -92031,13 +95905,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -92050,13 +95924,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -92069,13 +95943,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -92088,13 +95962,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -92107,13 +95981,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -92126,13 +96000,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -92145,13 +96019,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -92164,13 +96038,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -92183,13 +96057,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -92202,10 +96076,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -92221,10 +96095,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -92240,10 +96114,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -92259,10 +96133,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -92278,10 +96152,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -92297,10 +96171,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -92316,10 +96190,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -92335,10 +96209,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -92354,10 +96228,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -92373,10 +96247,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -92392,10 +96266,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -92411,10 +96285,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -92430,10 +96304,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -92449,10 +96323,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -92468,10 +96342,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -92487,10 +96361,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -92506,10 +96380,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -92525,10 +96399,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -92544,10 +96418,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -92563,10 +96437,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -92582,10 +96456,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -92601,10 +96475,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -92620,10 +96494,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -92639,10 +96513,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -92658,10 +96532,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -92677,10 +96551,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -92696,10 +96570,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -92715,10 +96589,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -92735,10 +96609,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -92755,10 +96629,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -92774,10 +96648,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -92793,10 +96667,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -92812,10 +96686,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -92831,10 +96705,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -92850,10 +96724,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -92869,10 +96743,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -92888,10 +96762,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -92907,10 +96781,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -92926,10 +96800,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -92945,10 +96819,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -92964,10 +96838,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -92983,10 +96857,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -93002,10 +96876,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -93022,10 +96896,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -93042,10 +96916,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -93061,10 +96935,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -93080,10 +96954,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -93099,10 +96973,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -93118,10 +96992,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -93137,10 +97011,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -93156,10 +97030,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -93176,10 +97050,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -93195,10 +97069,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -93214,10 +97088,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -93233,10 +97107,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -93252,10 +97126,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -93271,10 +97145,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -93290,10 +97164,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -93309,10 +97183,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -93329,10 +97203,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -93348,10 +97222,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -93367,10 +97241,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -93386,10 +97260,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -93405,10 +97279,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -93424,10 +97298,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -93443,10 +97317,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -93462,10 +97336,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -93481,10 +97355,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -93500,10 +97374,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -93519,10 +97393,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -93538,10 +97412,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -93557,10 +97431,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -93576,10 +97450,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -93595,10 +97469,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -93614,10 +97488,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -93633,10 +97507,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -93652,10 +97526,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -93671,10 +97545,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -93690,10 +97564,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -93709,10 +97583,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -93728,10 +97602,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -93747,10 +97621,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -93766,10 +97640,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -93785,10 +97659,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -93804,10 +97678,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -93823,10 +97697,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -93842,10 +97716,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -93861,10 +97735,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -93880,10 +97754,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -93899,10 +97773,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -93918,10 +97792,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -93937,10 +97811,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -93956,10 +97830,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -93975,10 +97849,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -93994,10 +97868,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -94013,10 +97887,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -94032,10 +97906,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -94051,10 +97925,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -94070,10 +97944,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -94089,10 +97963,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -94108,10 +97982,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -94127,10 +98001,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -94146,10 +98020,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -94165,10 +98039,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -94184,10 +98058,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -94203,10 +98077,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -94222,10 +98096,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -94241,10 +98115,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -94260,10 +98134,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -94279,10 +98153,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -94298,10 +98172,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -94317,10 +98191,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -94336,10 +98210,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -94355,10 +98229,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -94374,10 +98248,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -94393,10 +98267,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -94412,10 +98286,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -94431,10 +98305,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -94450,10 +98324,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -94469,10 +98343,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "chemist",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -94488,10 +98362,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "chemist",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -94507,10 +98381,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "chemist",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -94526,10 +98400,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "chemist",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -94545,10 +98419,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "chemist",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -94564,10 +98438,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "chemist",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -94583,10 +98457,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "chemist",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -94602,10 +98476,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "chemist",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -94621,10 +98495,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "chemist",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -94640,10 +98514,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "chemist",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -94659,10 +98533,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "car",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -94678,10 +98552,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "car",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -94697,10 +98571,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "car",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -94716,10 +98590,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "car",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -94735,10 +98609,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "car",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -94754,10 +98628,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "car",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -94773,10 +98647,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "car",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -94792,10 +98666,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "car",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -94811,10 +98685,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "car",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -94830,10 +98704,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "car",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -94849,10 +98723,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "car",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -94868,10 +98742,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "car",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -94887,10 +98761,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "car",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -94906,10 +98780,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "car",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -94925,10 +98799,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "car",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -94944,10 +98818,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "car",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -94963,10 +98837,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "car",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -94982,10 +98856,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "car",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -95001,10 +98875,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "car",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -95020,10 +98894,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "car",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -95039,10 +98913,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -95058,10 +98932,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -95077,10 +98951,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -95096,10 +98970,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -95115,10 +98989,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -95134,10 +99008,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -95153,10 +99027,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -95172,10 +99046,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -95191,10 +99065,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -95210,10 +99084,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -95229,10 +99103,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -95248,10 +99122,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -95267,10 +99141,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -95286,10 +99160,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -95305,10 +99179,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -95324,10 +99198,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -95343,10 +99217,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -95362,10 +99236,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -95381,10 +99255,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -95400,10 +99274,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -95419,10 +99293,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -95438,10 +99312,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -95457,10 +99331,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -95476,10 +99350,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -95495,10 +99369,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -95514,10 +99388,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -95533,10 +99407,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -95552,10 +99426,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -95571,10 +99445,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -95590,10 +99464,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -95609,10 +99483,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -95628,10 +99502,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -95647,10 +99521,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -95666,10 +99540,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -95685,10 +99559,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -95704,10 +99578,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -95723,10 +99597,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -95742,10 +99616,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -95761,10 +99635,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -95780,10 +99654,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -95799,10 +99673,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -95818,10 +99692,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -95837,10 +99711,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -95856,10 +99730,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -95875,10 +99749,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -95894,10 +99768,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -95913,11 +99787,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "car",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -95931,11 +99806,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "car",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -95949,11 +99825,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "car",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -95967,11 +99844,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "car",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -95985,11 +99863,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "car",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -96003,11 +99882,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "car",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -96021,11 +99901,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "car",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -96039,11 +99920,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "car",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -96057,11 +99939,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "car",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -96075,11 +99958,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "car",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -96093,11 +99977,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "car",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -96111,11 +99996,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "car",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -96129,11 +100015,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "car",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -96147,11 +100034,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "car",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -96165,11 +100053,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "car",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -96183,11 +100072,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "car",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -96201,11 +100091,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "car",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -96219,11 +100110,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "car",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -96237,11 +100129,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "car",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -96255,11 +100148,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "car",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -96273,11 +100167,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "car",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -96291,11 +100186,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "car",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -96309,11 +100205,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "car",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -96327,10 +100224,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "clothing-store",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -96346,10 +100243,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "clothing-store",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -96365,10 +100262,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "clothing-store",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -96384,10 +100281,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "clothing-store",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -96403,10 +100300,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "clothing-store",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -96422,10 +100319,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "clothing-store",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -96441,10 +100338,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "clothing-store",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -96460,10 +100357,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "clothing-store",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -96479,10 +100376,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "clothing-store",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -96498,10 +100395,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "clothing-store",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -96517,10 +100414,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "clothing-store",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -96536,10 +100433,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "clothing-store",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -96555,10 +100452,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "clothing-store",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -96574,10 +100471,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "clothing-store",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -96593,10 +100490,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "clothing-store",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -96612,10 +100509,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "clothing-store",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -96631,10 +100528,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "clothing-store",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -96650,10 +100547,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "clothing-store",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -96669,10 +100566,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "clothing-store",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -96688,10 +100585,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "clothing-store",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -96707,10 +100604,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "clothing-store",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -96726,10 +100623,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "clothing-store",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -96745,10 +100642,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "clothing-store",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -96764,10 +100661,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "clothing-store",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -96783,10 +100680,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "clothing-store",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -96802,10 +100699,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "clothing-store",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -96821,10 +100718,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "clothing-store",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -96840,10 +100737,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "clothing-store",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -96859,10 +100756,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "clothing-store",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -96878,10 +100775,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "clothing-store",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -96897,10 +100794,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "clothing-store",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -96916,10 +100813,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "clothing-store",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -96935,10 +100832,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "clothing-store",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -96954,10 +100851,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "clothing-store",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -96973,10 +100870,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "clothing-store",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -96992,10 +100889,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "clothing-store",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -97011,10 +100908,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "clothing-store",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -97030,10 +100927,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "clothing-store",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -97049,10 +100946,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "clothing-store",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -97068,10 +100965,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "clothing-store",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -97087,10 +100984,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "clothing-store",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -97106,10 +101003,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "clothing-store",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -97125,10 +101022,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "clothing-store",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -97144,10 +101041,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "clothing-store",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -97163,10 +101060,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "clothing-store",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -97182,10 +101079,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "clothing-store",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -97201,10 +101098,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "clothing-store",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -97220,10 +101117,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "clothing-store",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -97239,10 +101136,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "clothing-store",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -97258,10 +101155,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "clothing-store",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -97277,10 +101174,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "clothing-store",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -97296,10 +101193,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "clothing-store",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -97315,10 +101212,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "clothing-store",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -97334,10 +101231,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "clothing-store",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -97353,10 +101250,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "clothing-store",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -97372,10 +101269,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "clothing-store",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -97391,10 +101288,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "clothing-store",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -97410,10 +101307,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "clothing-store",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -97429,10 +101326,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "clothing-store",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -97448,10 +101345,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "clothing-store",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -97467,10 +101364,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "clothing-store",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -97486,10 +101383,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "clothing-store",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -97505,10 +101402,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "clothing-store",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -97524,10 +101421,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "clothing-store",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -97543,10 +101440,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "clothing-store",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -97562,10 +101459,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "clothing-store",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -97581,10 +101478,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "clothing-store",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -97600,10 +101497,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "clothing-store",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -97619,10 +101516,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "clothing-store",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -97638,10 +101535,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "clothing-store",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -97657,10 +101554,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "clothing-store",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -97676,10 +101573,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "clothing-store",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -97695,10 +101592,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "clothing-store",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -97714,10 +101611,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "clothing-store",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -97733,10 +101630,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -97752,10 +101649,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -97771,10 +101668,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -97790,10 +101687,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -97809,10 +101706,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -97828,10 +101725,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -97847,10 +101744,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -97866,10 +101763,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -97885,10 +101782,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -97904,10 +101801,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -97923,10 +101820,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -97942,10 +101839,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -97961,10 +101858,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -97980,10 +101877,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -97999,10 +101896,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -98018,10 +101915,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -98037,10 +101934,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -98056,10 +101953,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -98075,10 +101972,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -98094,10 +101991,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -98113,10 +102010,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "alcohol-shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -98132,10 +102029,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "alcohol-shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -98151,10 +102048,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "alcohol-shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -98170,10 +102067,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "alcohol-shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -98189,10 +102086,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "alcohol-shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -98208,10 +102105,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "alcohol-shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -98227,10 +102124,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "alcohol-shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -98246,10 +102143,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "alcohol-shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -98265,10 +102162,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "alcohol-shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -98284,10 +102181,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "alcohol-shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -98303,10 +102200,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "alcohol-shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -98322,10 +102219,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "alcohol-shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -98341,10 +102238,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bakery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -98360,10 +102257,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bakery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -98379,10 +102276,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bakery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -98398,10 +102295,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bakery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -98417,10 +102314,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bakery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -98436,10 +102333,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bakery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -98455,10 +102352,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bakery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -98474,10 +102371,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bakery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -98493,10 +102390,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bakery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -98512,10 +102409,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bakery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -98531,10 +102428,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bakery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -98550,10 +102447,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bakery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -98569,10 +102466,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bakery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -98588,10 +102485,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bakery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -98607,10 +102504,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bakery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -98626,10 +102523,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bakery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -98645,10 +102542,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bakery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -98664,10 +102561,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bakery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -98683,10 +102580,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bakery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -98702,10 +102599,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bakery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -98721,10 +102618,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bakery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -98740,10 +102637,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bakery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -98759,10 +102656,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bakery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -98778,10 +102675,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bakery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -98797,10 +102694,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bakery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -98816,10 +102713,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bakery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -98835,10 +102732,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bakery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -98854,10 +102751,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bakery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -98873,10 +102770,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -98892,10 +102789,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -98911,10 +102808,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -98930,10 +102827,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -98949,10 +102846,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -98968,10 +102865,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -98987,10 +102884,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -99006,10 +102903,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -99025,10 +102922,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -99044,10 +102941,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -99063,10 +102960,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -99082,10 +102979,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "dog-park",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -99101,10 +102998,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "dog-park",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -99120,10 +103017,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "dog-park",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -99139,10 +103036,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "dog-park",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -99158,10 +103055,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "dog-park",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -99177,10 +103074,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "dog-park",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -99196,10 +103093,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -99215,10 +103112,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -99234,10 +103131,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -99253,10 +103150,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -99272,10 +103169,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -99291,10 +103188,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -99310,10 +103207,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -99329,10 +103226,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -99348,10 +103245,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -99367,10 +103264,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -99386,10 +103283,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -99405,10 +103302,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -99424,10 +103321,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -99443,10 +103340,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -99462,10 +103359,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -99481,10 +103378,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -99500,10 +103397,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -99519,10 +103416,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -99538,10 +103435,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -99557,10 +103454,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -99576,10 +103473,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -99595,10 +103492,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "suitcase",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -99614,10 +103511,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "suitcase",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -99633,10 +103530,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -99652,10 +103549,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -99671,10 +103568,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -99690,10 +103587,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -99709,10 +103606,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -99728,10 +103625,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -99747,10 +103644,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -99766,10 +103663,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -99785,10 +103682,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -99804,10 +103701,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -99823,10 +103720,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -99842,10 +103739,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -99861,10 +103758,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -99880,10 +103777,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -99899,10 +103796,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "mobilephone",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -99918,10 +103815,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "mobilephone",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -99937,10 +103834,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "mobilephone",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -99956,10 +103853,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "mobilephone",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -99975,10 +103872,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "mobilephone",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -99994,10 +103891,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "mobilephone",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -100013,10 +103910,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "mobilephone",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -100032,10 +103929,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "mobilephone",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -100051,10 +103948,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "mobilephone",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -100070,10 +103967,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "mobilephone",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -100089,10 +103986,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "mobilephone",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -100108,10 +104005,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "mobilephone",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -100127,10 +104024,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "mobilephone",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -100146,10 +104043,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "mobilephone",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -100165,10 +104062,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "mobilephone",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -100184,10 +104081,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "mobilephone",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -100203,10 +104100,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "mobilephone",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -100222,10 +104119,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "mobilephone",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -100241,10 +104138,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "mobilephone",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -100260,10 +104157,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "mobilephone",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -100279,10 +104176,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "mobilephone",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -100298,10 +104195,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -100317,10 +104214,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -100336,10 +104233,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "hairdresser",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -100355,10 +104252,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "hairdresser",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -100374,10 +104271,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "hairdresser",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -100393,10 +104290,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "hairdresser",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -100412,10 +104309,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "hairdresser",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -100431,10 +104328,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "hairdresser",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -100450,10 +104347,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "hairdresser",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -100469,10 +104366,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "hairdresser",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -100488,10 +104385,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "hairdresser",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -100507,10 +104404,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -100526,10 +104423,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -100545,10 +104442,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "scooter",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -100807,6 +104704,18 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 }
             },
             "access_simple": {
+                "key": "access",
+                "type": "combo",
+                "label": "Access",
+                "placeholder": "yes",
+                "options": [
+                    "permissive",
+                    "private",
+                    "customers",
+                    "no"
+                ]
+            },
+            "access_toilets": {
                 "key": "access",
                 "type": "combo",
                 "label": "Access",
@@ -100820,6 +104729,7 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
             "address": {
                 "type": "address",
                 "keys": [
+                    "addr:housename",
                     "addr:housenumber",
                     "addr:street",
                     "addr:city",
@@ -100833,10 +104743,19 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "label": "Address",
                 "strings": {
                     "placeholders": {
-                        "number": "123",
+                        "housename": "Housename",
+                        "housenumber": "123",
                         "street": "Street",
                         "city": "City",
-                        "postcode": "Postal code"
+                        "postcode": "Postcode",
+                        "place": "Place",
+                        "hamlet": "Hamlet",
+                        "suburb": "Suburb",
+                        "subdistrict": "Subdistrict",
+                        "district": "District",
+                        "province": "Province",
+                        "state": "State",
+                        "country": "Country"
                     }
                 }
             },
@@ -100853,12 +104772,14 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
             "aerialway/access": {
                 "key": "aerialway:access",
                 "type": "combo",
-                "options": [
-                    "entry",
-                    "exit",
-                    "both"
-                ],
-                "label": "Access"
+                "label": "Access",
+                "strings": {
+                    "options": {
+                        "entry": "Entry",
+                        "exit": "Exit",
+                        "both": "Both"
+                    }
+                }
             },
             "aerialway/bubble": {
                 "key": "aerialway:bubble",
@@ -100891,12 +104812,14 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
             "aerialway/summer/access": {
                 "key": "aerialway:summer:access",
                 "type": "combo",
-                "options": [
-                    "entry",
-                    "exit",
-                    "both"
-                ],
-                "label": "Access (summer)"
+                "label": "Access (summer)",
+                "strings": {
+                    "options": {
+                        "entry": "Entry",
+                        "exit": "Exit",
+                        "both": "Both"
+                    }
+                }
             },
             "aeroway": {
                 "key": "aeroway",
@@ -100964,32 +104887,31 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
             "cardinal_direction": {
                 "key": "direction",
                 "type": "combo",
-                "options": [
-                    "N",
-                    "E",
-                    "S",
-                    "W",
-                    "NE",
-                    "SE",
-                    "SW",
-                    "NNE",
-                    "ENE",
-                    "ESE",
-                    "SSE",
-                    "SSW",
-                    "WSW",
-                    "WNW",
-                    "NNW"
-                ],
-                "label": "Direction"
+                "label": "Direction",
+                "strings": {
+                    "options": {
+                        "N": "North",
+                        "E": "East",
+                        "S": "South",
+                        "W": "West",
+                        "NE": "Northeast",
+                        "SE": "Southeast",
+                        "SW": "Southwest",
+                        "NW": "Northwest",
+                        "NNE": "North-northeast",
+                        "ENE": "East-northeast",
+                        "ESE": "East-southeast",
+                        "SSE": "South-southeast",
+                        "SSW": "South-southwest",
+                        "WSW": "West-southwest",
+                        "WNW": "West-northwest",
+                        "NNW": "North-northwest"
+                    }
+                }
             },
             "clock_direction": {
                 "key": "direction",
                 "type": "combo",
-                "options": [
-                    "clockwise",
-                    "anticlockwise"
-                ],
                 "label": "Direction",
                 "strings": {
                     "options": {
@@ -101018,6 +104940,11 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "type": "check",
                 "label": "Covered"
             },
+            "craft": {
+                "key": "craft",
+                "type": "typeCombo",
+                "label": "Type"
+            },
             "crop": {
                 "key": "crop",
                 "type": "combo",
@@ -101031,7 +104958,6 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
             "cuisine": {
                 "key": "cuisine",
                 "type": "combo",
-                "indexed": true,
                 "label": "Cuisine"
             },
             "denomination": {
@@ -101053,12 +104979,15 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "key": "electrified",
                 "type": "combo",
                 "label": "Electrification",
-                "options": [
-                    "contact_line",
-                    "rail",
-                    "yes",
-                    "no"
-                ]
+                "placeholder": "Contact Line, Electrified Rail...",
+                "strings": {
+                    "options": {
+                        "contact_line": "Contact Line",
+                        "rail": "Electrified Rail",
+                        "yes": "Yes (unspecified)",
+                        "no": "No"
+                    }
+                }
             },
             "elevation": {
                 "key": "ele",
@@ -101096,13 +105025,15 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
             "fire_hydrant/type": {
                 "key": "fire_hydrant:type",
                 "type": "combo",
-                "options": [
-                    "pillar",
-                    "pond",
-                    "underground",
-                    "wall"
-                ],
-                "label": "Type"
+                "label": "Type",
+                "strings": {
+                    "options": {
+                        "pillar": "Pillar/Aboveground",
+                        "underground": "Underground",
+                        "wall": "Wall",
+                        "pond": "Pond"
+                    }
+                }
             },
             "fixme": {
                 "key": "fixme",
@@ -101230,13 +105161,6 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
             "internet_access": {
                 "key": "internet_access",
                 "type": "combo",
-                "options": [
-                    "yes",
-                    "no",
-                    "wlan",
-                    "wired",
-                    "terminal"
-                ],
                 "label": "Internet Access",
                 "strings": {
                     "options": {
@@ -101248,6 +105172,11 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                     }
                 }
             },
+            "lamp_type": {
+                "key": "lamp_type",
+                "type": "combo",
+                "label": "Type"
+            },
             "landuse": {
                 "key": "landuse",
                 "type": "typeCombo",
@@ -101301,6 +105230,54 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "label": "Speed Limit",
                 "placeholder": "40, 50, 60..."
             },
+            "mtb/scale": {
+                "key": "mtb:scale",
+                "type": "combo",
+                "label": "Mountain Biking Difficulty",
+                "placeholder": "0, 1, 2, 3...",
+                "strings": {
+                    "options": {
+                        "0": "0: Solid gravel/packed earth, no obstacles, wide curves",
+                        "1": "1: Some loose surface, small obstacles, wide curves",
+                        "2": "2: Much loose surface, large obstacles, easy hairpins",
+                        "3": "3: Slippery surface, large obstacles, tight hairpins",
+                        "4": "4: Loose surface or boulders, dangerous hairpins",
+                        "5": "5: Maximum difficulty, boulder fields, landslides",
+                        "6": "6: Not rideable except by the very best mountain bikers"
+                    }
+                }
+            },
+            "mtb/scale/imba": {
+                "key": "mtb:scale:imba",
+                "type": "combo",
+                "label": "IMBA Trail Difficulty",
+                "placeholder": "Easy, Medium, Difficult...",
+                "strings": {
+                    "options": {
+                        "0": "Easiest (white circle)",
+                        "1": "Easy (green circle)",
+                        "2": "Medium (blue square)",
+                        "3": "Difficult (black diamond)",
+                        "4": "Extremely Difficult (double black diamond)"
+                    }
+                }
+            },
+            "mtb/scale/uphill": {
+                "key": "mtb:scale:uphill",
+                "type": "combo",
+                "label": "Mountain Biking Uphill Difficulty",
+                "placeholder": "0, 1, 2, 3...",
+                "strings": {
+                    "options": {
+                        "0": "0: Avg. incline <10%, gravel/packed earth, no obstacles",
+                        "1": "1: Avg. incline <15%, gravel/packed earth, few small objects",
+                        "2": "2: Avg. incline <20%, stable surface, fistsize rocks/roots",
+                        "3": "3: Avg. incline <25%, variable surface, fistsize rocks/branches",
+                        "4": "4: Avg. incline <30%, poor condition, big rocks/branches",
+                        "5": "5: Very steep, bike generally needs to be pushed or carried"
+                    }
+                }
+            },
             "name": {
                 "key": "name",
                 "type": "localized",
@@ -101344,7 +105321,6 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
             "oneway_yes": {
                 "key": "oneway",
                 "type": "check",
-                "default": "yes",
                 "label": "One Way",
                 "strings": {
                     "options": {
@@ -101378,16 +105354,18 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
             "parking": {
                 "key": "parking",
                 "type": "combo",
-                "options": [
-                    "surface",
-                    "multi-storey",
-                    "underground",
-                    "sheds",
-                    "carports",
-                    "garage_boxes",
-                    "lane"
-                ],
-                "label": "Type"
+                "label": "Type",
+                "strings": {
+                    "options": {
+                        "surface": "Surface",
+                        "multi-storey": "Multilevel",
+                        "underground": "Underground",
+                        "sheds": "Sheds",
+                        "carports": "Carports",
+                        "garage_boxes": "Garage Boxes",
+                        "lane": "Roadside Lane"
+                    }
+                }
             },
             "phone": {
                 "key": "phone",
@@ -101400,17 +105378,52 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
             "piste/difficulty": {
                 "key": "piste:difficulty",
                 "type": "combo",
-                "label": "Difficulty"
+                "label": "Difficulty",
+                "placeholder": "Easy, Intermediate, Advanced...",
+                "strings": {
+                    "options": {
+                        "novice": "Novice (instructional)",
+                        "easy": "Easy (green circle)",
+                        "intermediate": "Intermediate (blue square)",
+                        "advanced": "Advanced (black diamond)",
+                        "expert": "Expert (double black diamond)",
+                        "freeride": "Freeride (off-piste)",
+                        "extreme": "Extreme (climbing equipment required)"
+                    }
+                }
             },
             "piste/grooming": {
                 "key": "piste:grooming",
                 "type": "combo",
-                "label": "Grooming"
+                "label": "Grooming",
+                "strings": {
+                    "options": {
+                        "classic": "Classic",
+                        "mogul": "Mogul",
+                        "backcountry": "Backcountry",
+                        "classic+skating": "Classic and Skating",
+                        "scooter": "Scooter/Snowmobile",
+                        "skating": "Skating"
+                    }
+                }
             },
             "piste/type": {
                 "key": "piste:type",
                 "type": "typeCombo",
-                "label": "Type"
+                "label": "Type",
+                "strings": {
+                    "options": {
+                        "downhill": "Downhill",
+                        "nordic": "Nordic",
+                        "skitour": "Skitour",
+                        "sled": "Sled",
+                        "hike": "Hike",
+                        "sleigh": "Sleigh",
+                        "ice_skate": "Ice Skate",
+                        "snow_park": "Snow Park",
+                        "playground": "Playground"
+                    }
+                }
             },
             "place": {
                 "key": "place",
@@ -101465,27 +105478,7 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
             "religion": {
                 "key": "religion",
                 "type": "combo",
-                "options": [
-                    "christian",
-                    "muslim",
-                    "buddhist",
-                    "jewish",
-                    "hindu",
-                    "shinto",
-                    "taoist"
-                ],
-                "label": "Religion",
-                "strings": {
-                    "options": {
-                        "christian": "Christian",
-                        "muslim": "Muslim",
-                        "buddhist": "Buddhist",
-                        "jewish": "Jewish",
-                        "hindu": "Hindu",
-                        "shinto": "Shinto",
-                        "taoist": "Taoist"
-                    }
-                }
+                "label": "Religion"
             },
             "restriction": {
                 "key": "restriction",
@@ -101514,7 +105507,18 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
             "sac_scale": {
                 "key": "sac_scale",
                 "type": "combo",
-                "label": "Path Difficulty"
+                "label": "Hiking Difficulty",
+                "placeholder": "Mountain Hiking, Alpine Hiking...",
+                "strings": {
+                    "options": {
+                        "hiking": "T1: Hiking",
+                        "mountain_hiking": "T2: Mountain Hiking",
+                        "demanding_mountain_hiking": "T3: Demanding Mountain Hiking",
+                        "alpine_hiking": "T4: Alpine Hiking",
+                        "demanding_alpine_hiking": "T5: Demanding Alpine Hiking",
+                        "difficult_alpine_hiking": "T6: Difficult Alpine Hiking"
+                    }
+                }
             },
             "seasonal": {
                 "key": "seasonal",
@@ -101524,14 +105528,14 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
             "service": {
                 "key": "service",
                 "type": "combo",
+                "label": "Type",
                 "options": [
                     "parking_aisle",
                     "driveway",
                     "alley",
-                    "drive-through",
-                    "emergency_access"
-                ],
-                "label": "Type"
+                    "emergency_access",
+                    "drive-through"
+                ]
             },
             "shelter": {
                 "key": "shelter",
@@ -101541,15 +105545,6 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
             "shelter_type": {
                 "key": "shelter_type",
                 "type": "combo",
-                "options": [
-                    "public_transport",
-                    "picnic_shelter",
-                    "weather_shelter",
-                    "lean_to",
-                    "basic_hut",
-                    "field_shelter",
-                    "rock_shelter"
-                ],
                 "label": "Type"
             },
             "shop": {
@@ -101565,13 +105560,36 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
             "smoking": {
                 "key": "smoking",
                 "type": "combo",
-                "options": [
-                    "no",
-                    "outside",
-                    "separated",
-                    "yes"
-                ],
-                "label": "Smoking"
+                "label": "Smoking",
+                "placeholder": "No, Separated, Yes...",
+                "strings": {
+                    "options": {
+                        "no": "No smoking anywhere",
+                        "separated": "In smoking areas, not physically isolated",
+                        "isolated": "In smoking areas, physically isolated",
+                        "outside": "Allowed outside",
+                        "yes": "Allowed everywhere",
+                        "dedicated": "Dedicated to smokers (e.g. smokers' club)"
+                    }
+                }
+            },
+            "smoothness": {
+                "key": "smoothness",
+                "type": "combo",
+                "label": "Smoothness",
+                "placeholder": "Thin Rollers, Wheels, Off-Road...",
+                "strings": {
+                    "options": {
+                        "excellent": "Thin Rollers: rollerblade, skateboard",
+                        "good": "Thin Wheels: racing bike",
+                        "intermediate": "Wheels: city bike, wheelchair, scooter",
+                        "bad": "Robust Wheels: trekking bike, car, rickshaw",
+                        "very_bad": "High Clearance: light duty off-road vehicle",
+                        "horrible": "Off-Road: heavy duty off-road vehicle",
+                        "very_horrible": "Specialized off-road: tractor, ATV",
+                        "impassible": "Impassible / No wheeled vehicle"
+                    }
+                }
             },
             "social_facility_for": {
                 "key": "social_facility:for",
@@ -101610,14 +105628,28 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
             "sport_ice": {
                 "key": "sport",
                 "type": "combo",
+                "label": "Sport",
                 "options": [
                     "skating",
                     "hockey",
                     "multi",
                     "curling",
                     "ice_stock"
-                ],
-                "label": "Sport"
+                ]
+            },
+            "sport_racing": {
+                "key": "sport",
+                "type": "combo",
+                "label": "Sport",
+                "options": [
+                    "cycling",
+                    "dog_racing",
+                    "horse_racing",
+                    "karting",
+                    "motor",
+                    "motocross",
+                    "running"
+                ]
             },
             "structure": {
                 "type": "radio",
@@ -101643,11 +105675,11 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
             "studio_type": {
                 "key": "type",
                 "type": "combo",
+                "label": "Type",
                 "options": [
                     "audio",
                     "video"
-                ],
-                "label": "Type"
+                ]
             },
             "supervised": {
                 "key": "supervised",
@@ -101667,7 +105699,15 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
             "toilets/disposal": {
                 "key": "toilets:disposal",
                 "type": "combo",
-                "label": "Disposal"
+                "label": "Disposal",
+                "strings": {
+                    "options": {
+                        "flush": "Flush",
+                        "pitlatrine": "Pit/Latrine",
+                        "chemical": "Chemical",
+                        "bucket": "Bucket"
+                    }
+                }
             },
             "tourism": {
                 "key": "tourism",
@@ -101682,22 +105722,43 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
             "tracktype": {
                 "key": "tracktype",
                 "type": "combo",
-                "label": "Type"
+                "label": "Track Type",
+                "placeholder": "Solid, Mostly Solid, Soft...",
+                "strings": {
+                    "options": {
+                        "grade1": "Solid: paved or heavily compacted hardcore surface",
+                        "grade2": "Mostly Solid: gravel/rock with some soft material mixed in",
+                        "grade3": "Even mixture of hard and soft materials",
+                        "grade4": "Mostly Soft: soil/sand/grass with some hard material mixed in",
+                        "grade5": "Soft: soil/sand/grass"
+                    }
+                }
             },
             "trail_visibility": {
                 "key": "trail_visibility",
                 "type": "combo",
-                "label": "Trail Visibility"
+                "label": "Trail Visibility",
+                "placeholder": "Excellent, Good, Bad...",
+                "strings": {
+                    "options": {
+                        "excellent": "Excellent: unambiguous path or markers everywhere",
+                        "good": "Good: markers visible, sometimes require searching",
+                        "intermediate": "Intermediate: few markers, path mostly visible",
+                        "bad": "Bad: no markers, path sometimes invisible/pathless",
+                        "horrible": "Horrible: often pathless, some orientation skills required",
+                        "no": "No: pathless, excellent orientation skills required"
+                    }
+                }
             },
             "tree_type": {
                 "key": "type",
                 "type": "combo",
+                "label": "Type",
                 "options": [
                     "broad_leaved",
                     "conifer",
                     "palm"
-                ],
-                "label": "Type"
+                ]
             },
             "trees": {
                 "key": "trees",
@@ -113240,6 +117301,34 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 528
             ]
         },
+        "gift": {
+            "12": [
+                258,
+                528
+            ],
+            "18": [
+                240,
+                528
+            ],
+            "24": [
+                216,
+                528
+            ]
+        },
+        "ice-cream": {
+            "12": [
+                42,
+                552
+            ],
+            "18": [
+                24,
+                552
+            ],
+            "24": [
+                0,
+                552
+            ]
+        },
         "highway-motorway": {
             "line": [
                 20,
@@ -113732,6 +117821,7 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
     "locales": [
         "af",
         "sq",
+        "sq-AL",
         "ar",
         "ar-AA",
         "hy",
@@ -113752,6 +117842,7 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
         "da",
         "nl",
         "en-GB",
+        "eo",
         "et",
         "fi",
         "fr",
@@ -113764,6 +117855,8 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
         "it",
         "ja",
         "kn",
+        "km",
+        "km-KH",
         "ko",
         "ko-KR",
         "lv",
@@ -113890,7 +117983,7 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
             },
             "delete": {
                 "title": "Delete",
-                "description": "Remove this from the map.",
+                "description": "Delete object permanently.",
                 "annotation": {
                     "point": "Deleted a point.",
                     "vertex": "Deleted a node from a way.",
@@ -113943,7 +118036,8 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                     "area": "Moved an area.",
                     "multiple": "Moved multiple objects."
                 },
-                "incomplete_relation": "This feature can't be moved because it hasn't been fully downloaded."
+                "incomplete_relation": "This feature can't be moved because it hasn't been fully downloaded.",
+                "too_large": "This can't be moved because not enough of it is currently visible."
             },
             "rotate": {
                 "title": "Rotate",
@@ -113952,7 +118046,8 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "annotation": {
                     "line": "Rotated a line.",
                     "area": "Rotated an area."
-                }
+                },
+                "too_large": "This can't be rotated because not enough of it is currently visible."
             },
             "reverse": {
                 "title": "Reverse",
@@ -114022,6 +118117,7 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
             "upload_explanation_with_user": "The changes you upload as {user} will be visible on all maps that use OpenStreetMap data.",
             "save": "Save",
             "cancel": "Cancel",
+            "changes": "{count} Changes",
             "warnings": "Warnings",
             "modified": "Modified",
             "deleted": "Deleted",
@@ -114092,6 +118188,7 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
             "help": "Save changes to OpenStreetMap, making them visible to other users.",
             "no_changes": "No changes to save.",
             "error": "An error occurred while trying to save",
+            "unknown_error_details": "Please ensure you are connected to the internet.",
             "uploading": "Uploading changes to OpenStreetMap.",
             "unsaved_changes": "You have unsaved changes"
         },
@@ -114129,7 +118226,9 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
             "untagged_area": "Untagged area",
             "many_deletions": "You're deleting {n} objects. Are you sure you want to do this? This will delete them from the map that everyone else sees on openstreetmap.org.",
             "tag_suggests_area": "The tag {tag} suggests line should be area, but it is not an area",
-            "untagged_tooltip": "Select a feature type that describes what this {geometry} is.",
+            "untagged_point_tooltip": "Select a feature type that describes what this point is.",
+            "untagged_line_tooltip": "Select a feature type that describes what this line is.",
+            "untagged_area_tooltip": "Select a feature type that describes what this area is.",
             "deprecated_tags": "Deprecated tags: {tags}"
         },
         "zoom": {
@@ -114143,6 +118242,11 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
             "zoom": "Zoom to GPX track",
             "browse": "Browse for a .gpx file"
         },
+        "mapillary": {
+            "tooltip": "Street-level photos from Mapillary",
+            "title": "Photo Overlay (Mapillary)",
+            "view_on_mapillary": "View this image on Mapillary"
+        },
         "help": {
             "title": "Help",
             "help": "# Help\n\nThis is an editor for [OpenStreetMap](http://www.openstreetmap.org/), the\nfree and editable map of the world. You can use it to add and update\ndata in your area, making an open-source and open-data map of the world\nbetter for everyone.\n\nEdits that you make on this map will be visible to everyone who uses\nOpenStreetMap. In order to make an edit, you'll need a\n[free OpenStreetMap account](https://www.openstreetmap.org/user/new).\n\nThe [iD editor](http://ideditor.com/) is a collaborative project with [source\ncode available on GitHub](https://github.com/openstreetmap/iD).\n",
@@ -114178,7 +118282,7 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
             },
             "areas": {
                 "title": "Areas",
-                "add": "Areas are a more detailed way to represent features. They provide information on the boundaries of the feature. Areas can be used for most feature types points can be used for, and are often preferred. **Click the Area button to add a new area.**",
+                "add": "Areas are used to show the boundaries of features like lakes, buildings, and residential areas. They can be also be used for more detailed mapping of many features you might normally map as points. **Click the Area button to add a new area.**",
                 "corner": "Areas are drawn by placing nodes that mark the boundary of the area. **Place the starting node on one of the corners of the playground.**",
                 "place": "Draw the area by placing more nodes. Finish the area by clicking on the starting node. **Draw an area for the playground.**",
                 "search": "**Search for '{name}'.**",
@@ -114276,15 +118380,28 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                     }
                 },
                 "access_simple": {
+                    "label": "Access",
+                    "placeholder": "yes"
+                },
+                "access_toilets": {
                     "label": "Access"
                 },
                 "address": {
                     "label": "Address",
                     "placeholders": {
-                        "number": "123",
+                        "housename": "Housename",
+                        "housenumber": "123",
                         "street": "Street",
                         "city": "City",
-                        "postcode": "Postal code"
+                        "postcode": "Postcode",
+                        "place": "Place",
+                        "hamlet": "Hamlet",
+                        "suburb": "Suburb",
+                        "subdistrict": "Subdistrict",
+                        "district": "District",
+                        "province": "Province",
+                        "state": "State",
+                        "country": "Country"
                     }
                 },
                 "admin_level": {
@@ -114294,7 +118411,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                     "label": "Type"
                 },
                 "aerialway/access": {
-                    "label": "Access"
+                    "label": "Access",
+                    "options": {
+                        "entry": "Entry",
+                        "exit": "Exit",
+                        "both": "Both"
+                    }
                 },
                 "aerialway/bubble": {
                     "label": "Bubble"
@@ -114315,7 +118437,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                     "placeholder": "2, 4, 8..."
                 },
                 "aerialway/summer/access": {
-                    "label": "Access (summer)"
+                    "label": "Access (summer)",
+                    "options": {
+                        "entry": "Entry",
+                        "exit": "Exit",
+                        "both": "Both"
+                    }
                 },
                 "aeroway": {
                     "label": "Type"
@@ -114355,7 +118482,25 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                     "placeholder": "50, 100, 200..."
                 },
                 "cardinal_direction": {
-                    "label": "Direction"
+                    "label": "Direction",
+                    "options": {
+                        "N": "North",
+                        "E": "East",
+                        "S": "South",
+                        "W": "West",
+                        "NE": "Northeast",
+                        "SE": "Southeast",
+                        "SW": "Southwest",
+                        "NW": "Northwest",
+                        "NNE": "North-northeast",
+                        "ENE": "East-northeast",
+                        "ESE": "East-southeast",
+                        "SSE": "South-southeast",
+                        "SSW": "South-southwest",
+                        "WSW": "West-southwest",
+                        "WNW": "West-northwest",
+                        "NNW": "North-northwest"
+                    }
                 },
                 "clock_direction": {
                     "label": "Direction",
@@ -114376,6 +118521,9 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "covered": {
                     "label": "Covered"
                 },
+                "craft": {
+                    "label": "Type"
+                },
                 "crop": {
                     "label": "Crop"
                 },
@@ -114395,7 +118543,14 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                     "label": "Description"
                 },
                 "electrified": {
-                    "label": "Electrification"
+                    "label": "Electrification",
+                    "placeholder": "Contact Line, Electrified Rail...",
+                    "options": {
+                        "contact_line": "Contact Line",
+                        "rail": "Electrified Rail",
+                        "yes": "Yes (unspecified)",
+                        "no": "No"
+                    }
                 },
                 "elevation": {
                     "label": "Elevation"
@@ -114417,7 +118572,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                     "label": "Fee"
                 },
                 "fire_hydrant/type": {
-                    "label": "Type"
+                    "label": "Type",
+                    "options": {
+                        "pillar": "Pillar/Aboveground",
+                        "underground": "Underground",
+                        "wall": "Wall",
+                        "pond": "Pond"
+                    }
                 },
                 "fixme": {
                     "label": "Fix Me"
@@ -114504,6 +118665,9 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                         "terminal": "Terminal"
                     }
                 },
+                "lamp_type": {
+                    "label": "Type"
+                },
                 "landuse": {
                     "label": "Type"
                 },
@@ -114537,6 +118701,42 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                     "label": "Speed Limit",
                     "placeholder": "40, 50, 60..."
                 },
+                "mtb/scale": {
+                    "label": "Mountain Biking Difficulty",
+                    "placeholder": "0, 1, 2, 3...",
+                    "options": {
+                        "0": "0: Solid gravel/packed earth, no obstacles, wide curves",
+                        "1": "1: Some loose surface, small obstacles, wide curves",
+                        "2": "2: Much loose surface, large obstacles, easy hairpins",
+                        "3": "3: Slippery surface, large obstacles, tight hairpins",
+                        "4": "4: Loose surface or boulders, dangerous hairpins",
+                        "5": "5: Maximum difficulty, boulder fields, landslides",
+                        "6": "6: Not rideable except by the very best mountain bikers"
+                    }
+                },
+                "mtb/scale/imba": {
+                    "label": "IMBA Trail Difficulty",
+                    "placeholder": "Easy, Medium, Difficult...",
+                    "options": {
+                        "0": "Easiest (white circle)",
+                        "1": "Easy (green circle)",
+                        "2": "Medium (blue square)",
+                        "3": "Difficult (black diamond)",
+                        "4": "Extremely Difficult (double black diamond)"
+                    }
+                },
+                "mtb/scale/uphill": {
+                    "label": "Mountain Biking Uphill Difficulty",
+                    "placeholder": "0, 1, 2, 3...",
+                    "options": {
+                        "0": "0: Avg. incline <10%, gravel/packed earth, no obstacles",
+                        "1": "1: Avg. incline <15%, gravel/packed earth, few small objects",
+                        "2": "2: Avg. incline <20%, stable surface, fistsize rocks/roots",
+                        "3": "3: Avg. incline <25%, variable surface, fistsize rocks/branches",
+                        "4": "4: Avg. incline <30%, poor condition, big rocks/branches",
+                        "5": "5: Very steep, bike generally needs to be pushed or carried"
+                    }
+                },
                 "name": {
                     "label": "Name",
                     "placeholder": "Common name (if any)"
@@ -114583,20 +118783,58 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                     "label": "Park and Ride"
                 },
                 "parking": {
-                    "label": "Type"
+                    "label": "Type",
+                    "options": {
+                        "surface": "Surface",
+                        "multi-storey": "Multilevel",
+                        "underground": "Underground",
+                        "sheds": "Sheds",
+                        "carports": "Carports",
+                        "garage_boxes": "Garage Boxes",
+                        "lane": "Roadside Lane"
+                    }
                 },
                 "phone": {
                     "label": "Phone",
                     "placeholder": "+31 42 123 4567"
                 },
                 "piste/difficulty": {
-                    "label": "Difficulty"
+                    "label": "Difficulty",
+                    "placeholder": "Easy, Intermediate, Advanced...",
+                    "options": {
+                        "novice": "Novice (instructional)",
+                        "easy": "Easy (green circle)",
+                        "intermediate": "Intermediate (blue square)",
+                        "advanced": "Advanced (black diamond)",
+                        "expert": "Expert (double black diamond)",
+                        "freeride": "Freeride (off-piste)",
+                        "extreme": "Extreme (climbing equipment required)"
+                    }
                 },
                 "piste/grooming": {
-                    "label": "Grooming"
+                    "label": "Grooming",
+                    "options": {
+                        "classic": "Classic",
+                        "mogul": "Mogul",
+                        "backcountry": "Backcountry",
+                        "classic+skating": "Classic and Skating",
+                        "scooter": "Scooter/Snowmobile",
+                        "skating": "Skating"
+                    }
                 },
                 "piste/type": {
-                    "label": "Type"
+                    "label": "Type",
+                    "options": {
+                        "downhill": "Downhill",
+                        "nordic": "Nordic",
+                        "skitour": "Skitour",
+                        "sled": "Sled",
+                        "hike": "Hike",
+                        "sleigh": "Sleigh",
+                        "ice_skate": "Ice Skate",
+                        "snow_park": "Snow Park",
+                        "playground": "Playground"
+                    }
                 },
                 "place": {
                     "label": "Type"
@@ -114629,16 +118867,7 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                     "label": "Type"
                 },
                 "religion": {
-                    "label": "Religion",
-                    "options": {
-                        "christian": "Christian",
-                        "muslim": "Muslim",
-                        "buddhist": "Buddhist",
-                        "jewish": "Jewish",
-                        "hindu": "Hindu",
-                        "shinto": "Shinto",
-                        "taoist": "Taoist"
-                    }
+                    "label": "Religion"
                 },
                 "restriction": {
                     "label": "Type"
@@ -114653,7 +118882,16 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                     "label": "Type"
                 },
                 "sac_scale": {
-                    "label": "Path Difficulty"
+                    "label": "Hiking Difficulty",
+                    "placeholder": "Mountain Hiking, Alpine Hiking...",
+                    "options": {
+                        "hiking": "T1: Hiking",
+                        "mountain_hiking": "T2: Mountain Hiking",
+                        "demanding_mountain_hiking": "T3: Demanding Mountain Hiking",
+                        "alpine_hiking": "T4: Alpine Hiking",
+                        "demanding_alpine_hiking": "T5: Demanding Alpine Hiking",
+                        "difficult_alpine_hiking": "T6: Difficult Alpine Hiking"
+                    }
                 },
                 "seasonal": {
                     "label": "Seasonal"
@@ -114674,7 +118912,30 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                     "label": "Sloped Curb"
                 },
                 "smoking": {
-                    "label": "Smoking"
+                    "label": "Smoking",
+                    "placeholder": "No, Separated, Yes...",
+                    "options": {
+                        "no": "No smoking anywhere",
+                        "separated": "In smoking areas, not physically isolated",
+                        "isolated": "In smoking areas, physically isolated",
+                        "outside": "Allowed outside",
+                        "yes": "Allowed everywhere",
+                        "dedicated": "Dedicated to smokers (e.g. smokers' club)"
+                    }
+                },
+                "smoothness": {
+                    "label": "Smoothness",
+                    "placeholder": "Thin Rollers, Wheels, Off-Road...",
+                    "options": {
+                        "excellent": "Thin Rollers: rollerblade, skateboard",
+                        "good": "Thin Wheels: racing bike",
+                        "intermediate": "Wheels: city bike, wheelchair, scooter",
+                        "bad": "Robust Wheels: trekking bike, car, rickshaw",
+                        "very_bad": "High Clearance: light duty off-road vehicle",
+                        "horrible": "Off-Road: heavy duty off-road vehicle",
+                        "very_horrible": "Specialized off-road: tractor, ATV",
+                        "impassible": "Impassible / No wheeled vehicle"
+                    }
                 },
                 "social_facility_for": {
                     "label": "People served",
@@ -114689,6 +118950,9 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "sport_ice": {
                     "label": "Sport"
                 },
+                "sport_racing": {
+                    "label": "Sport"
+                },
                 "structure": {
                     "label": "Structure",
                     "placeholder": "Unknown",
@@ -114713,7 +118977,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                     "label": "Tactile Paving"
                 },
                 "toilets/disposal": {
-                    "label": "Disposal"
+                    "label": "Disposal",
+                    "options": {
+                        "flush": "Flush",
+                        "pitlatrine": "Pit/Latrine",
+                        "chemical": "Chemical",
+                        "bucket": "Bucket"
+                    }
                 },
                 "tourism": {
                     "label": "Type"
@@ -114722,10 +118992,27 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                     "label": "Tower type"
                 },
                 "tracktype": {
-                    "label": "Type"
+                    "label": "Track Type",
+                    "placeholder": "Solid, Mostly Solid, Soft...",
+                    "options": {
+                        "grade1": "Solid: paved or heavily compacted hardcore surface",
+                        "grade2": "Mostly Solid: gravel/rock with some soft material mixed in",
+                        "grade3": "Even mixture of hard and soft materials",
+                        "grade4": "Mostly Soft: soil/sand/grass with some hard material mixed in",
+                        "grade5": "Soft: soil/sand/grass"
+                    }
                 },
                 "trail_visibility": {
-                    "label": "Trail Visibility"
+                    "label": "Trail Visibility",
+                    "placeholder": "Excellent, Good, Bad...",
+                    "options": {
+                        "excellent": "Excellent: unambiguous path or markers everywhere",
+                        "good": "Good: markers visible, sometimes require searching",
+                        "intermediate": "Intermediate: few markers, path mostly visible",
+                        "bad": "Bad: no markers, path sometimes invisible/pathless",
+                        "horrible": "Horrible: often pathless, some orientation skills required",
+                        "no": "No: pathless, excellent orientation skills required"
+                    }
                 },
                 "tree_type": {
                     "label": "Type"
@@ -114852,23 +119139,23 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 },
                 "amenity/arts_centre": {
                     "name": "Arts Center",
-                    "terms": "arts,arts centre"
+                    "terms": ""
                 },
                 "amenity/atm": {
                     "name": "ATM",
-                    "terms": ""
+                    "terms": "money,cash,machine"
                 },
                 "amenity/bank": {
                     "name": "Bank",
-                    "terms": "coffer,countinghouse,credit union,depository,exchequer,fund,hoard,investment firm,repository,reserve,reservoir,safe,savings,stock,stockpile,store,storehouse,thrift,treasury,trust company,vault"
+                    "terms": "credit union,check,deposit,fund,investment,repository,reserve,safe,savings,stock,treasury,trust,vault"
                 },
                 "amenity/bar": {
                     "name": "Bar",
-                    "terms": ""
+                    "terms": "dive,beer,bier,booze"
                 },
                 "amenity/bbq": {
                     "name": "Barbecue/Grill",
-                    "terms": "barbecue,bbq,grill"
+                    "terms": "bbq"
                 },
                 "amenity/bench": {
                     "name": "Bench",
@@ -114876,19 +119163,27 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 },
                 "amenity/bicycle_parking": {
                     "name": "Bicycle Parking",
-                    "terms": ""
+                    "terms": "bike"
                 },
                 "amenity/bicycle_rental": {
                     "name": "Bicycle Rental",
-                    "terms": ""
+                    "terms": "bike"
                 },
                 "amenity/boat_rental": {
                     "name": "Boat Rental",
                     "terms": ""
                 },
+                "amenity/bureau_de_change": {
+                    "name": "Currency Exchange",
+                    "terms": "bureau de change,money changer"
+                },
+                "amenity/bus_station": {
+                    "name": "Bus Station",
+                    "terms": ""
+                },
                 "amenity/cafe": {
                     "name": "Cafe",
-                    "terms": "coffee,tea,coffee shop"
+                    "terms": "coffee,tea"
                 },
                 "amenity/car_rental": {
                     "name": "Car Rental",
@@ -114907,24 +119202,28 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                     "terms": "EV,Electric Vehicle,Supercharger"
                 },
                 "amenity/childcare": {
-                    "name": "Childcare",
-                    "terms": "nursery,orphanage,playgroup"
+                    "name": "Nursery/Childcare",
+                    "terms": "daycare,orphanage,playgroup"
                 },
                 "amenity/cinema": {
                     "name": "Cinema",
-                    "terms": "big screen,bijou,cine,drive-in,film,flicks,motion pictures,movie house,movie theater,moving pictures,nabes,photoplay,picture show,pictures,playhouse,show,silver screen"
+                    "terms": "drive-in,film,flick,movie,theater,picture,show,screen"
                 },
                 "amenity/clinic": {
                     "name": "Clinic",
-                    "terms": "clinic,medical clinic"
+                    "terms": "medical,urgentcare"
                 },
                 "amenity/clock": {
                     "name": "Clock",
                     "terms": ""
                 },
                 "amenity/college": {
-                    "name": "College",
-                    "terms": ""
+                    "name": "College Grounds",
+                    "terms": "university"
+                },
+                "amenity/community_centre": {
+                    "name": "Community Center",
+                    "terms": "event,hall"
                 },
                 "amenity/compressed_air": {
                     "name": "Compressed Air",
@@ -114936,19 +119235,19 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 },
                 "amenity/dentist": {
                     "name": "Dentist",
-                    "terms": "dentist,dentist's office"
+                    "terms": "tooth,teeth"
                 },
                 "amenity/doctor": {
                     "name": "Doctor",
-                    "terms": "doctor,doctor's office"
+                    "terms": "medic*"
                 },
                 "amenity/dojo": {
                     "name": "Dojo / Martial Arts Academy",
-                    "terms": "martial arts,dojo,dojang"
+                    "terms": "martial arts,dojang"
                 },
                 "amenity/drinking_water": {
                     "name": "Drinking Water",
-                    "terms": "water fountain,potable water"
+                    "terms": "fountain,potable"
                 },
                 "amenity/embassy": {
                     "name": "Embassy",
@@ -114956,7 +119255,7 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 },
                 "amenity/fast_food": {
                     "name": "Fast Food",
-                    "terms": ""
+                    "terms": "restaurant"
                 },
                 "amenity/fire_station": {
                     "name": "Fire Station",
@@ -114976,15 +119275,15 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 },
                 "amenity/hospital": {
                     "name": "Hospital Grounds",
-                    "terms": "clinic,emergency room,health service,hospice,infirmary,institution,nursing home,rest home,sanatorium,sanitarium,sick bay,surgery,ward"
+                    "terms": "clinic,doctor,emergency room,health service,hospice,infirmary,institution,nursing home,sanatorium,sanitarium,sick,surgery,ward"
                 },
                 "amenity/kindergarten": {
-                    "name": "Kindergarten Grounds",
-                    "terms": "nursery,preschool"
+                    "name": "Preschool/Kindergarten Grounds",
+                    "terms": "kindergarden,pre-school"
                 },
                 "amenity/library": {
                     "name": "Library",
-                    "terms": ""
+                    "terms": "book"
                 },
                 "amenity/marketplace": {
                     "name": "Marketplace",
@@ -115004,7 +119303,7 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 },
                 "amenity/pharmacy": {
                     "name": "Pharmacy",
-                    "terms": ""
+                    "terms": "drug,medicine"
                 },
                 "amenity/place_of_worship": {
                     "name": "Place of Worship",
@@ -115016,31 +119315,31 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 },
                 "amenity/place_of_worship/christian": {
                     "name": "Church",
-                    "terms": "christian,abbey,basilica,bethel,cathedral,chancel,chantry,chapel,church,fold,house of God,house of prayer,house of worship,minster,mission,oratory,parish,sacellum,sanctuary,shrine,tabernacle,temple"
+                    "terms": "christian,abbey,basilica,bethel,cathedral,chancel,chantry,chapel,fold,house of God,house of prayer,house of worship,minster,mission,oratory,parish,sacellum,sanctuary,shrine,tabernacle,temple"
                 },
                 "amenity/place_of_worship/jewish": {
                     "name": "Synagogue",
-                    "terms": "jewish,synagogue"
+                    "terms": "jewish"
                 },
                 "amenity/place_of_worship/muslim": {
                     "name": "Mosque",
-                    "terms": "muslim,mosque"
+                    "terms": "muslim"
                 },
                 "amenity/police": {
                     "name": "Police",
-                    "terms": "badge,bear,blue,bluecoat,bobby,boy scout,bull,constable,constabulary,cop,copper,corps,county mounty,detective,fed,flatfoot,force,fuzz,gendarme,gumshoe,heat,law,law enforcement,man,narc,officers,patrolman,police"
+                    "terms": "badge,constable,constabulary,cop,detective,fed,law,enforcement,officer,patrol"
                 },
                 "amenity/post_box": {
                     "name": "Mailbox",
-                    "terms": "letter drop,letterbox,mail drop,mailbox,pillar box,postbox"
+                    "terms": "letter,post"
                 },
                 "amenity/post_office": {
                     "name": "Post Office",
-                    "terms": ""
+                    "terms": "letter,mail"
                 },
                 "amenity/pub": {
                     "name": "Pub",
-                    "terms": ""
+                    "terms": "dive,beer,bier,booze"
                 },
                 "amenity/ranger_station": {
                     "name": "Ranger Station",
@@ -115048,19 +119347,19 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 },
                 "amenity/recycling": {
                     "name": "Recycling",
-                    "terms": ""
+                    "terms": "can,bottle,garbage,scrap,trash"
                 },
                 "amenity/restaurant": {
                     "name": "Restaurant",
-                    "terms": "bar,cafeteria,café,canteen,chophouse,coffee shop,diner,dining room,dive*,doughtnut shop,drive-in,eatery,eating house,eating place,fast-food place,fish and chips,greasy spoon,grill,hamburger stand,hashery,hideaway,hotdog stand,inn,joint*,luncheonette,lunchroom,night club,outlet*,pizzeria,saloon,soda fountain,watering hole"
+                    "terms": "bar,breakfast,cafe,café,canteen,coffee,dine,dining,dinner,drive-in,eat,grill,lunch,table"
                 },
                 "amenity/school": {
                     "name": "School Grounds",
-                    "terms": "academy,alma mater,blackboard,college,department,discipline,establishment,faculty,hall,halls of ivy,institute,institution,jail*,schoolhouse,seminary,university"
+                    "terms": "academy,elementary school,middle school,high school"
                 },
                 "amenity/shelter": {
                     "name": "Shelter",
-                    "terms": "lean-to"
+                    "terms": "lean-to,gazebo,picnic"
                 },
                 "amenity/social_facility": {
                     "name": "Social Facility",
@@ -115071,8 +119370,8 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                     "terms": ""
                 },
                 "amenity/social_facility/group_home": {
-                    "name": "Group Home",
-                    "terms": "elderly,old,senior living"
+                    "name": "Elderly Group Home",
+                    "terms": "old,senior,living"
                 },
                 "amenity/social_facility/homeless_shelter": {
                     "name": "Homeless Shelter",
@@ -115080,7 +119379,7 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 },
                 "amenity/studio": {
                     "name": "Studio",
-                    "terms": "recording studio,studio,radio,radio studio,television,television studio"
+                    "terms": "recording,radio,television"
                 },
                 "amenity/swimming_pool": {
                     "name": "Swimming Pool",
@@ -115104,15 +119403,15 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 },
                 "amenity/townhall": {
                     "name": "Town Hall",
-                    "terms": "village hall,city government,courthouse,municipal building,municipal center,municipal centre"
+                    "terms": "village,city,government,courthouse,municipal"
                 },
                 "amenity/university": {
-                    "name": "University",
+                    "name": "University Grounds",
                     "terms": "college"
                 },
                 "amenity/vending_machine": {
                     "name": "Vending Machine",
-                    "terms": ""
+                    "terms": "snack,soda,ticket"
                 },
                 "amenity/veterinary": {
                     "name": "Veterinary",
@@ -115120,7 +119419,7 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 },
                 "amenity/waste_basket": {
                     "name": "Waste Basket",
-                    "terms": "rubbish bin,litter bin,trash can,garbage can"
+                    "terms": "rubbish,litter,trash,garbage"
                 },
                 "area": {
                     "name": "Area",
@@ -115230,6 +119529,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                     "name": "Church",
                     "terms": ""
                 },
+                "building/college": {
+                    "name": "College Building",
+                    "terms": "university"
+                },
                 "building/commercial": {
                     "name": "Commercial Building",
                     "terms": ""
@@ -115282,6 +119585,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                     "name": "Industrial Building",
                     "terms": ""
                 },
+                "building/kindergarten": {
+                    "name": "Preschool/Kindergarten Building",
+                    "terms": "kindergarden,pre-school"
+                },
                 "building/public": {
                     "name": "Public Building",
                     "terms": ""
@@ -115300,7 +119607,7 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 },
                 "building/school": {
                     "name": "School Building",
-                    "terms": ""
+                    "terms": "academy,elementary school,middle school,high school"
                 },
                 "building/shed": {
                     "name": "Shed",
@@ -115324,191 +119631,199 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 },
                 "building/university": {
                     "name": "University Building",
-                    "terms": ""
+                    "terms": "college"
                 },
                 "building/warehouse": {
                     "name": "Warehouse",
                     "terms": ""
                 },
+                "craft": {
+                    "name": "Craft",
+                    "terms": ""
+                },
                 "craft/basket_maker": {
                     "name": "Basket Maker",
-                    "terms": "basket,basketry,basket maker,basket weaver"
+                    "terms": ""
                 },
                 "craft/beekeeper": {
                     "name": "Beekeeper",
-                    "terms": "bees,beekeeper,bee box"
+                    "terms": ""
                 },
                 "craft/blacksmith": {
                     "name": "Blacksmith",
-                    "terms": "blacksmith"
+                    "terms": ""
                 },
                 "craft/boatbuilder": {
                     "name": "Boat Builder",
-                    "terms": "boat builder"
+                    "terms": ""
                 },
                 "craft/bookbinder": {
                     "name": "Bookbinder",
-                    "terms": "bookbinder,book repair"
+                    "terms": "book repair"
                 },
                 "craft/brewery": {
                     "name": "Brewery",
-                    "terms": "brewery"
+                    "terms": "beer,bier"
                 },
                 "craft/carpenter": {
                     "name": "Carpenter",
-                    "terms": "carpenter,woodworker"
+                    "terms": "woodworker"
                 },
                 "craft/carpet_layer": {
                     "name": "Carpet Layer",
-                    "terms": "carpet layer"
+                    "terms": ""
                 },
                 "craft/caterer": {
                     "name": "Caterer",
-                    "terms": "Caterer,Catering"
+                    "terms": ""
                 },
                 "craft/clockmaker": {
                     "name": "Clockmaker",
-                    "terms": "clock,clockmaker,clock repair"
+                    "terms": ""
                 },
                 "craft/confectionary": {
                     "name": "Confectionary",
-                    "terms": "confectionary,sweets,candy"
+                    "terms": "sweets,candy"
                 },
                 "craft/dressmaker": {
                     "name": "Dressmaker",
-                    "terms": "dress,dressmaker"
+                    "terms": "seamstress"
                 },
                 "craft/electrician": {
                     "name": "Electrician",
-                    "terms": "electrician"
+                    "terms": "power,wire"
                 },
                 "craft/gardener": {
                     "name": "Gardener",
-                    "terms": "gardener,landscaper,grounds keeper"
+                    "terms": "landscaper,grounds keeper"
                 },
                 "craft/glaziery": {
                     "name": "Glaziery",
-                    "terms": "glass,glass foundry,stained-glass,window"
+                    "terms": "glass,stained-glass,window"
                 },
                 "craft/handicraft": {
                     "name": "Handicraft",
-                    "terms": "handicraft"
+                    "terms": ""
                 },
                 "craft/hvac": {
                     "name": "HVAC",
-                    "terms": "heating,ventilating,air-conditioning,air conditioning"
+                    "terms": "heat*,vent*,air conditioning"
                 },
                 "craft/insulator": {
                     "name": "Insulator",
-                    "terms": "insulation,insulator"
+                    "terms": ""
                 },
                 "craft/jeweler": {
                     "name": "Jeweler",
-                    "terms": "jeweler,gem,diamond"
+                    "terms": ""
                 },
                 "craft/key_cutter": {
                     "name": "Key Cutter",
-                    "terms": "key,key cutter"
+                    "terms": ""
                 },
                 "craft/locksmith": {
                     "name": "Locksmith",
-                    "terms": "locksmith,lock"
+                    "terms": ""
                 },
                 "craft/metal_construction": {
                     "name": "Metal Construction",
-                    "terms": "metal construction"
+                    "terms": ""
                 },
                 "craft/optician": {
                     "name": "Optician",
-                    "terms": "glasses,optician"
+                    "terms": ""
                 },
                 "craft/painter": {
                     "name": "Painter",
-                    "terms": "painter"
+                    "terms": ""
                 },
                 "craft/photographer": {
                     "name": "Photographer",
-                    "terms": "photographer"
+                    "terms": ""
                 },
                 "craft/photographic_laboratory": {
                     "name": "Photographic Laboratory",
-                    "terms": "photographic laboratory,film developer"
+                    "terms": "film"
                 },
                 "craft/plasterer": {
                     "name": "Plasterer",
-                    "terms": "plasterer"
+                    "terms": ""
                 },
                 "craft/plumber": {
                     "name": "Plumber",
-                    "terms": "pumber"
+                    "terms": "pipe"
                 },
                 "craft/pottery": {
                     "name": "Pottery",
-                    "terms": "pottery,potter"
+                    "terms": "ceramic"
                 },
                 "craft/rigger": {
                     "name": "Rigger",
-                    "terms": "rigger"
+                    "terms": ""
                 },
                 "craft/roofer": {
                     "name": "Roofer",
-                    "terms": "roofer"
+                    "terms": ""
                 },
                 "craft/saddler": {
                     "name": "Saddler",
-                    "terms": "saddler"
+                    "terms": ""
                 },
                 "craft/sailmaker": {
                     "name": "Sailmaker",
-                    "terms": "sailmaker"
+                    "terms": ""
                 },
                 "craft/sawmill": {
                     "name": "Sawmill",
-                    "terms": "sawmill,lumber"
+                    "terms": "lumber"
                 },
                 "craft/scaffolder": {
                     "name": "Scaffolder",
-                    "terms": "scaffolder"
+                    "terms": ""
                 },
                 "craft/sculpter": {
                     "name": "Sculpter",
-                    "terms": "sculpter"
+                    "terms": ""
                 },
                 "craft/shoemaker": {
                     "name": "Shoemaker",
-                    "terms": "shoe repair,shoemaker"
+                    "terms": "cobbler"
                 },
                 "craft/stonemason": {
                     "name": "Stonemason",
-                    "terms": "stonemason,masonry"
+                    "terms": "masonry"
                 },
                 "craft/sweep": {
                     "name": "Chimney Sweep",
-                    "terms": "sweep,chimney sweep"
+                    "terms": ""
                 },
                 "craft/tailor": {
                     "name": "Tailor",
-                    "terms": "tailor,clothes"
+                    "terms": "clothes,suit"
                 },
                 "craft/tiler": {
                     "name": "Tiler",
-                    "terms": "tiler"
+                    "terms": ""
                 },
                 "craft/tinsmith": {
                     "name": "Tinsmith",
-                    "terms": "tinsmith"
+                    "terms": ""
                 },
                 "craft/upholsterer": {
                     "name": "Upholsterer",
-                    "terms": "upholsterer"
+                    "terms": ""
                 },
                 "craft/watchmaker": {
                     "name": "Watchmaker",
-                    "terms": "watch,watchmaker,watch repair"
+                    "terms": ""
                 },
                 "craft/window_construction": {
                     "name": "Window Construction",
-                    "terms": "window,window maker,window construction"
+                    "terms": "glass"
+                },
+                "craft/winery": {
+                    "name": "Winery",
+                    "terms": ""
                 },
                 "embankment": {
                     "name": "Embankment",
@@ -115516,7 +119831,7 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 },
                 "emergency/ambulance_station": {
                     "name": "Ambulance Station",
-                    "terms": ""
+                    "terms": "EMS,EMT,rescue"
                 },
                 "emergency/fire_hydrant": {
                     "name": "Fire Hydrant",
@@ -115536,7 +119851,7 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 },
                 "footway/crosswalk": {
                     "name": "Crosswalk",
-                    "terms": "crosswalk,zebra crossing"
+                    "terms": "zebra crossing"
                 },
                 "footway/sidewalk": {
                     "name": "Sidewalk",
@@ -115556,7 +119871,7 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 },
                 "golf/green": {
                     "name": "Putting Green",
-                    "terms": "putting green"
+                    "terms": ""
                 },
                 "golf/hole": {
                     "name": "Golf Hole",
@@ -115584,7 +119899,7 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 },
                 "highway/bridleway": {
                     "name": "Bridle Path",
-                    "terms": "bridleway,equestrian trail,horse riding path,bridle road,horse trail"
+                    "terms": "bridleway,equestrian,horse"
                 },
                 "highway/bus_stop": {
                     "name": "Bus Stop",
@@ -115596,15 +119911,15 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 },
                 "highway/crosswalk": {
                     "name": "Crosswalk",
-                    "terms": "crosswalk,zebra crossing"
+                    "terms": "zebra crossing"
                 },
                 "highway/cycleway": {
                     "name": "Cycle Path",
-                    "terms": ""
+                    "terms": "bike"
                 },
                 "highway/footway": {
                     "name": "Foot Path",
-                    "terms": "beaten path,boulevard,clearing,course,cut*,drag*,footpath,highway,lane,line,orbit,passage,pathway,rail,rails,road,roadway,route,street,thoroughfare,trackway,trail,trajectory,walk"
+                    "terms": "hike,hiking,trackway,trail,walk"
                 },
                 "highway/living_street": {
                     "name": "Living Street",
@@ -115628,7 +119943,7 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 },
                 "highway/path": {
                     "name": "Path",
-                    "terms": ""
+                    "terms": "hike,hiking,trackway,trail,walk"
                 },
                 "highway/pedestrian": {
                     "name": "Pedestrian",
@@ -115642,13 +119957,17 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                     "name": "Primary Link",
                     "terms": "ramp,on ramp,off ramp"
                 },
+                "highway/raceway": {
+                    "name": "Motor Raceway",
+                    "terms": "auto*,race*,nascar"
+                },
                 "highway/residential": {
                     "name": "Residential Road",
                     "terms": ""
                 },
                 "highway/rest_area": {
                     "name": "Rest Area",
-                    "terms": "rest stop,turnout,lay-by"
+                    "terms": "rest stop"
                 },
                 "highway/road": {
                     "name": "Unknown Road",
@@ -115698,6 +120017,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                     "name": "Stop Sign",
                     "terms": "stop sign"
                 },
+                "highway/street_lamp": {
+                    "name": "Street Lamp",
+                    "terms": "streetlight,street light,lamp,light,gaslight"
+                },
                 "highway/tertiary": {
                     "name": "Tertiary Road",
                     "terms": ""
@@ -115708,7 +120031,7 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 },
                 "highway/track": {
                     "name": "Track",
-                    "terms": ""
+                    "terms": "woods road,fire road"
                 },
                 "highway/traffic_signals": {
                     "name": "Traffic Signals",
@@ -115724,7 +120047,7 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 },
                 "highway/turning_circle": {
                     "name": "Turning Circle",
-                    "terms": ""
+                    "terms": "cul-de-sac"
                 },
                 "highway/unclassified": {
                     "name": "Unclassified Road",
@@ -115880,7 +120203,7 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 },
                 "leisure/marina": {
                     "name": "Marina",
-                    "terms": ""
+                    "terms": "boat"
                 },
                 "leisure/park": {
                     "name": "Park",
@@ -115888,11 +120211,11 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 },
                 "leisure/picnic_table": {
                     "name": "Picnic Table",
-                    "terms": "bench,table"
+                    "terms": "bench"
                 },
                 "leisure/pitch": {
                     "name": "Sport Pitch",
-                    "terms": ""
+                    "terms": "field"
                 },
                 "leisure/pitch/american_football": {
                     "name": "American Football Field",
@@ -115926,9 +120249,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                     "name": "Playground",
                     "terms": "jungle gym,play area"
                 },
+                "leisure/running_track": {
+                    "name": "Running Track",
+                    "terms": ""
+                },
                 "leisure/slipway": {
                     "name": "Slipway",
-                    "terms": ""
+                    "terms": "boat launch,boat ramp"
                 },
                 "leisure/sports_center": {
                     "name": "Sports Center / Gym",
@@ -115943,7 +120270,7 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                     "terms": ""
                 },
                 "leisure/track": {
-                    "name": "Race Track",
+                    "name": "Racetrack (non-Motorsport)",
                     "terms": ""
                 },
                 "line": {
@@ -115996,14 +120323,14 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 },
                 "man_made/wastewater_plant": {
                     "name": "Wastewater Plant",
-                    "terms": "sewage works,sewage treatment plant,water treatment plant,reclamation plant"
+                    "terms": "sewage*,water treatment plant,reclamation plant"
                 },
                 "man_made/water_tower": {
                     "name": "Water Tower",
                     "terms": ""
                 },
                 "man_made/water_well": {
-                    "name": "Water well",
+                    "name": "Water Well",
                     "terms": ""
                 },
                 "man_made/water_works": {
@@ -116132,7 +120459,7 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 },
                 "office/employment_agency": {
                     "name": "Employment Agency",
-                    "terms": ""
+                    "terms": "job"
                 },
                 "office/estate_agent": {
                     "name": "Real Estate Office",
@@ -116262,6 +120589,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                     "name": "Substation",
                     "terms": ""
                 },
+                "power/substation": {
+                    "name": "Substation",
+                    "terms": ""
+                },
                 "power/tower": {
                     "name": "High-Voltage Tower",
                     "terms": ""
@@ -116348,20 +120679,44 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 },
                 "shop/alcohol": {
                     "name": "Liquor Store",
-                    "terms": "alcohol"
+                    "terms": "alcohol,beer,booze,wine"
+                },
+                "shop/anime": {
+                    "name": "Anime Shop",
+                    "terms": ""
+                },
+                "shop/antiques": {
+                    "name": "Antiques Shop",
+                    "terms": ""
                 },
                 "shop/art": {
-                    "name": "Art Shop",
-                    "terms": "art store,art gallery"
+                    "name": "Art Gallery",
+                    "terms": ""
+                },
+                "shop/baby_goods": {
+                    "name": "Baby Goods Store",
+                    "terms": ""
+                },
+                "shop/bag": {
+                    "name": "Bag/Luggage Store",
+                    "terms": "handbag,purse"
                 },
                 "shop/bakery": {
                     "name": "Bakery",
                     "terms": ""
                 },
+                "shop/bathroom_furnishing": {
+                    "name": "Bathroom Furnishing Store",
+                    "terms": ""
+                },
                 "shop/beauty": {
                     "name": "Beauty Shop",
                     "terms": "nail spa,spa,salon,tanning"
                 },
+                "shop/bed": {
+                    "name": "Bedding/Mattress Store",
+                    "terms": ""
+                },
                 "shop/beverages": {
                     "name": "Beverage Store",
                     "terms": ""
@@ -116375,7 +120730,7 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                     "terms": ""
                 },
                 "shop/books": {
-                    "name": "Bookstore",
+                    "name": "Book Store",
                     "terms": ""
                 },
                 "shop/boutique": {
@@ -116384,24 +120739,40 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 },
                 "shop/butcher": {
                     "name": "Butcher",
+                    "terms": "meat"
+                },
+                "shop/candles": {
+                    "name": "Candle Shop",
                     "terms": ""
                 },
                 "shop/car": {
                     "name": "Car Dealership",
-                    "terms": ""
+                    "terms": "auto"
                 },
                 "shop/car_parts": {
                     "name": "Car Parts Store",
-                    "terms": ""
+                    "terms": "auto"
                 },
                 "shop/car_repair": {
                     "name": "Car Repair Shop",
+                    "terms": "auto"
+                },
+                "shop/carpet": {
+                    "name": "Carpet Store",
+                    "terms": "rug"
+                },
+                "shop/cheese": {
+                    "name": "Cheese Store",
                     "terms": ""
                 },
                 "shop/chemist": {
                     "name": "Chemist",
                     "terms": ""
                 },
+                "shop/chocolate": {
+                    "name": "Chocolate Store",
+                    "terms": ""
+                },
                 "shop/clothes": {
                     "name": "Clothing Store",
                     "terms": ""
@@ -116411,16 +120782,36 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                     "terms": ""
                 },
                 "shop/confectionery": {
-                    "name": "Confectionery",
+                    "name": "Candy Store",
                     "terms": ""
                 },
                 "shop/convenience": {
                     "name": "Convenience Store",
                     "terms": ""
                 },
+                "shop/copyshop": {
+                    "name": "Copy Store",
+                    "terms": ""
+                },
+                "shop/cosmetics": {
+                    "name": "Cosmetics Store",
+                    "terms": ""
+                },
+                "shop/craft": {
+                    "name": "Arts and Crafts Store",
+                    "terms": ""
+                },
+                "shop/curtain": {
+                    "name": "Curtain Store",
+                    "terms": "drape*,window"
+                },
+                "shop/dairy": {
+                    "name": "Dairy Store",
+                    "terms": "milk,egg,cheese"
+                },
                 "shop/deli": {
                     "name": "Deli",
-                    "terms": ""
+                    "terms": "lunch,meat,sandwich"
                 },
                 "shop/department_store": {
                     "name": "Department Store",
@@ -116431,36 +120822,56 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                     "terms": ""
                 },
                 "shop/dry_cleaning": {
-                    "name": "Dry Cleaners",
+                    "name": "Dry Cleaner",
                     "terms": ""
                 },
                 "shop/electronics": {
                     "name": "Electronics Store",
-                    "terms": ""
+                    "terms": "appliance,audio,computer,tv"
+                },
+                "shop/erotic": {
+                    "name": "Erotic Store",
+                    "terms": "sex,porn"
+                },
+                "shop/fabric": {
+                    "name": "Fabric Store",
+                    "terms": "sew"
                 },
                 "shop/farm": {
                     "name": "Produce Stand",
                     "terms": "farm shop,farm stand"
                 },
+                "shop/fashion": {
+                    "name": "Fashion Store",
+                    "terms": ""
+                },
                 "shop/fishmonger": {
                     "name": "Fishmonger",
                     "terms": ""
                 },
                 "shop/florist": {
                     "name": "Florist",
+                    "terms": "flower"
+                },
+                "shop/frame": {
+                    "name": "Framing Shop",
                     "terms": ""
                 },
                 "shop/funeral_directors": {
                     "name": "Funeral Home",
-                    "terms": "undertaker,funeral parlour,funeral parlor,memorial home"
+                    "terms": "undertaker,memorial home"
+                },
+                "shop/furnace": {
+                    "name": "Furnace Store",
+                    "terms": "oven,stove"
                 },
                 "shop/furniture": {
                     "name": "Furniture Store",
-                    "terms": ""
+                    "terms": "chair,sofa,table"
                 },
                 "shop/garden_centre": {
                     "name": "Garden Center",
-                    "terms": "garden centre"
+                    "terms": "landscape,mulch,shrub,tree"
                 },
                 "shop/gift": {
                     "name": "Gift Shop",
@@ -116468,7 +120879,7 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 },
                 "shop/greengrocer": {
                     "name": "Greengrocer",
-                    "terms": ""
+                    "terms": "fruit,vegetable"
                 },
                 "shop/hairdresser": {
                     "name": "Hairdresser",
@@ -116478,25 +120889,45 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                     "name": "Hardware Store",
                     "terms": ""
                 },
+                "shop/hearing_aids": {
+                    "name": "Hearing Aids Store",
+                    "terms": ""
+                },
+                "shop/herbalist": {
+                    "name": "Herbalist",
+                    "terms": ""
+                },
                 "shop/hifi": {
                     "name": "Hifi Store",
+                    "terms": "stereo,video"
+                },
+                "shop/interior_decoration": {
+                    "name": "Interior Decoration Store",
                     "terms": ""
                 },
                 "shop/jewelry": {
                     "name": "Jeweler",
-                    "terms": ""
+                    "terms": "diamond,gem,ring"
                 },
                 "shop/kiosk": {
-                    "name": "Kiosk",
+                    "name": "News Kiosk",
+                    "terms": ""
+                },
+                "shop/kitchen": {
+                    "name": "Kitchen Design Store",
                     "terms": ""
                 },
                 "shop/laundry": {
                     "name": "Laundry",
                     "terms": ""
                 },
+                "shop/leather": {
+                    "name": "Leather Store",
+                    "terms": ""
+                },
                 "shop/locksmith": {
                     "name": "Locksmith",
-                    "terms": "keys"
+                    "terms": "key,lockpick"
                 },
                 "shop/lottery": {
                     "name": "Lottery Shop",
@@ -116506,42 +120937,90 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                     "name": "Mall",
                     "terms": ""
                 },
+                "shop/massage": {
+                    "name": "Massage Shop",
+                    "terms": ""
+                },
+                "shop/medical_supply": {
+                    "name": "Medical Supply Store",
+                    "terms": ""
+                },
                 "shop/mobile_phone": {
                     "name": "Mobile Phone Store",
                     "terms": ""
                 },
+                "shop/money_lender": {
+                    "name": "Money Lender",
+                    "terms": ""
+                },
                 "shop/motorcycle": {
                     "name": "Motorcycle Dealership",
                     "terms": ""
                 },
                 "shop/music": {
                     "name": "Music Store",
+                    "terms": "CD,vinyl"
+                },
+                "shop/musical_instrument": {
+                    "name": "Musical Instrument Store",
                     "terms": ""
                 },
                 "shop/newsagent": {
-                    "name": "Newsagent",
+                    "name": "Newspaper/Magazine Shop",
                     "terms": ""
                 },
                 "shop/optician": {
                     "name": "Optician",
+                    "terms": "eye,glasses"
+                },
+                "shop/organic": {
+                    "name": "Organic Goods Store",
                     "terms": ""
                 },
                 "shop/outdoor": {
-                    "name": "Outdoor Store",
+                    "name": "Outdoors Store",
+                    "terms": "camping,climbing,hiking"
+                },
+                "shop/paint": {
+                    "name": "Paint Store",
+                    "terms": ""
+                },
+                "shop/pawnbroker": {
+                    "name": "Pawn Shop",
                     "terms": ""
                 },
                 "shop/pet": {
                     "name": "Pet Store",
-                    "terms": ""
+                    "terms": "cat,dog,fish"
                 },
                 "shop/photo": {
                     "name": "Photography Store",
+                    "terms": "camera,film"
+                },
+                "shop/pyrotechnics": {
+                    "name": "Fireworks Store",
+                    "terms": ""
+                },
+                "shop/radiotechnics": {
+                    "name": "Radio/Electronic Component Store",
+                    "terms": ""
+                },
+                "shop/religion": {
+                    "name": "Religious Store",
+                    "terms": ""
+                },
+                "shop/scuba_diving": {
+                    "name": "Scuba Diving Shop",
                     "terms": ""
                 },
                 "shop/seafood": {
                     "name": "Seafood Shop",
                     "terms": "fishmonger"
                 },
+                "shop/second_hand": {
+                    "name": "Consignment/Thrift Store",
+                    "terms": "secondhand,second hand,resale,thrift,used"
+                },
                 "shop/shoes": {
                     "name": "Shoe Store",
                     "terms": ""
@@ -116552,11 +121031,31 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 },
                 "shop/stationery": {
                     "name": "Stationery Store",
-                    "terms": ""
+                    "terms": "card,paper"
                 },
                 "shop/supermarket": {
                     "name": "Supermarket",
-                    "terms": "bazaar,boutique,chain,co-op,cut-rate store,discount store,five-and-dime,flea market,galleria,grocery store,mall,mart,outlet,outlet store,shop,shopping center,shopping centre,shopping plaza,stand,store,supermarket,thrift shop"
+                    "terms": "grocery,store,shop"
+                },
+                "shop/tailor": {
+                    "name": "Tailor",
+                    "terms": "clothes,suit"
+                },
+                "shop/tattoo": {
+                    "name": "Tattoo Parlor",
+                    "terms": ""
+                },
+                "shop/tea": {
+                    "name": "Tea Store",
+                    "terms": ""
+                },
+                "shop/ticket": {
+                    "name": "Ticket Seller",
+                    "terms": ""
+                },
+                "shop/tobacco": {
+                    "name": "Tobacco Shop",
+                    "terms": ""
                 },
                 "shop/toys": {
                     "name": "Toy Store",
@@ -116574,17 +121073,37 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                     "name": "Vacant Shop",
                     "terms": ""
                 },
+                "shop/vacuum_cleaner": {
+                    "name": "Vacuum Cleaner Store",
+                    "terms": ""
+                },
                 "shop/variety_store": {
                     "name": "Variety Store",
                     "terms": ""
                 },
                 "shop/video": {
                     "name": "Video Store",
+                    "terms": "DVD"
+                },
+                "shop/video_games": {
+                    "name": "Video Game Store",
+                    "terms": ""
+                },
+                "shop/water_sports": {
+                    "name": "Watersport/Swim Shop",
+                    "terms": ""
+                },
+                "shop/weapons": {
+                    "name": "Weapon Shop",
+                    "terms": "ammo,gun,knife,knives"
+                },
+                "shop/window_blind": {
+                    "name": "Window Blind Store",
                     "terms": ""
                 },
                 "shop/wine": {
                     "name": "Wine Shop",
-                    "terms": "winery"
+                    "terms": ""
                 },
                 "tourism": {
                     "name": "Tourism",
@@ -116604,7 +121123,7 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 },
                 "tourism/camp_site": {
                     "name": "Camp Site",
-                    "terms": "camping"
+                    "terms": ""
                 },
                 "tourism/caravan_site": {
                     "name": "RV Park",
@@ -116616,7 +121135,7 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 },
                 "tourism/guest_house": {
                     "name": "Guest House",
-                    "terms": "B&B,Bed & Breakfast,Bed and Breakfast"
+                    "terms": "B&B,Bed and Breakfast"
                 },
                 "tourism/hostel": {
                     "name": "Hostel",
@@ -116636,11 +121155,11 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 },
                 "tourism/museum": {
                     "name": "Museum",
-                    "terms": "exhibition,exhibits archive,foundation,gallery,hall,institution,library,menagerie,repository,salon,storehouse,treasury,vault"
+                    "terms": "exhibition,foundation,gallery,hall,institution"
                 },
                 "tourism/picnic_site": {
                     "name": "Picnic Site",
-                    "terms": ""
+                    "terms": "camp"
                 },
                 "tourism/theme_park": {
                     "name": "Theme Park",
@@ -116654,6 +121173,22 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                     "name": "Zoo",
                     "terms": ""
                 },
+                "traffic_calming/bump": {
+                    "name": "Speed Bump",
+                    "terms": "speed hump"
+                },
+                "traffic_calming/hump": {
+                    "name": "Speed Hump",
+                    "terms": "speed bump"
+                },
+                "traffic_calming/rumble_strip": {
+                    "name": "Rumble Strip",
+                    "terms": "sleeper lines,audible lines,growlers"
+                },
+                "traffic_calming/table": {
+                    "name": "Raised Pedestrian Crossing",
+                    "terms": "speed table,flat top hump"
+                },
                 "type/boundary": {
                     "name": "Boundary",
                     "terms": ""
@@ -121628,5 +126163,183 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 }
             }
         }
-    }
+    },
+    "addressFormats": [
+        {
+            "format": [
+                [
+                    "housenumber",
+                    "street"
+                ],
+                [
+                    "city",
+                    "postcode"
+                ]
+            ]
+        },
+        {
+            "countryCodes": [
+                "gb"
+            ],
+            "format": [
+                [
+                    "housename"
+                ],
+                [
+                    "housenumber",
+                    "street"
+                ],
+                [
+                    "city",
+                    "postcode"
+                ]
+            ]
+        },
+        {
+            "countryCodes": [
+                "ie"
+            ],
+            "format": [
+                [
+                    "housename"
+                ],
+                [
+                    "housenumber",
+                    "street"
+                ],
+                [
+                    "city"
+                ]
+            ]
+        },
+        {
+            "countryCodes": [
+                "ad",
+                "at",
+                "ba",
+                "be",
+                "ch",
+                "cz",
+                "de",
+                "dk",
+                "es",
+                "fi",
+                "gr",
+                "hr",
+                "is",
+                "it",
+                "li",
+                "nl",
+                "no",
+                "pl",
+                "pt",
+                "se",
+                "si",
+                "sk",
+                "sm",
+                "va"
+            ],
+            "format": [
+                [
+                    "street",
+                    "housenumber"
+                ],
+                [
+                    "postcode",
+                    "city"
+                ]
+            ]
+        },
+        {
+            "countryCodes": [
+                "fr",
+                "lu",
+                "mo"
+            ],
+            "format": [
+                [
+                    "housenumber",
+                    "street"
+                ],
+                [
+                    "postcode",
+                    "city"
+                ]
+            ]
+        },
+        {
+            "countryCodes": [
+                "br"
+            ],
+            "format": [
+                [
+                    "street"
+                ],
+                [
+                    "housenumber",
+                    "suburb"
+                ],
+                [
+                    "city",
+                    "postcode"
+                ]
+            ]
+        },
+        {
+            "countryCodes": [
+                "vn"
+            ],
+            "format": [
+                [
+                    "housenumber",
+                    "street"
+                ],
+                [
+                    "subdistrict"
+                ],
+                [
+                    "district"
+                ],
+                [
+                    "city"
+                ],
+                [
+                    "province",
+                    "postcode"
+                ]
+            ]
+        },
+        {
+            "countryCodes": [
+                "us"
+            ],
+            "format": [
+                [
+                    "housenumber",
+                    "street"
+                ],
+                [
+                    "city",
+                    "state",
+                    "postcode"
+                ]
+            ]
+        },
+        {
+            "countryCodes": [
+                "ca"
+            ],
+            "format": [
+                [
+                    "housenumber",
+                    "street"
+                ],
+                [
+                    "city",
+                    "province",
+                    "postcode"
+                ]
+            ]
+        }
+    ]
 };
\ No newline at end of file