]> git.openstreetmap.org Git - rails.git/blobdiff - vendor/assets/iD/iD.js
Merge pull request #24 from zerebubuth/routing-merge
[rails.git] / vendor / assets / iD / iD.js
index 85e8adcef4ae0f92b485638c68ded08a622f5779..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 ,
@@ -14184,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);
@@ -14206,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();
         }
 
@@ -14239,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++) {
@@ -14249,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
@@ -14275,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),
@@ -14322,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;
@@ -14334,9 +14336,7 @@ rbush.prototype = {
                 node = parent.children[i];
                 goingUp = false;
 
-            } else { // nothing found
-                node = null;
-            }
+            } else node = null; // nothing found
         }
 
         return this;
@@ -14357,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;
         }
 
@@ -14389,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;
     },
@@ -14428,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) {
@@ -14458,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);
@@ -14499,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) {
@@ -14528,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) {
@@ -14556,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
@@ -14574,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];
-    },
+                } else this.clear();
 
-    _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]));
-    },
-
-    _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)
 
@@ -14702,20 +14627,116 @@ 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);
 }
 
-})();
-(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;
+// 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;
@@ -16407,7 +16428,7 @@ window.iD = function () {
     return d3.rebind(context, dispatch, 'on');
 };
 
-iD.version = '1.5.2';
+iD.version = '1.6.2';
 
 (function() {
     var detected = {};
@@ -16567,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,
@@ -16719,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]));
@@ -17087,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) {
@@ -17115,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) {
@@ -17126,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]));
     },
@@ -17306,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
@@ -18576,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
@@ -18639,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: [
@@ -19381,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);
         }
 
@@ -19405,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;
         }
@@ -19662,7 +19710,7 @@ iD.behavior.Hash = function(context) {
             center = map.center(),
             zoom = map.zoom(),
             precision = Math.max(0, Math.ceil(Math.log(zoom) / Math.LN2)),
-            q = iD.util.stringQs(location.hash.substring(1)),
+            q = _.omit(iD.util.stringQs(location.hash.substring(1)), 'comment'),
             newParams = {};
 
         if (mode && mode.id === 'browse') {
@@ -19710,6 +19758,7 @@ iD.behavior.Hash = function(context) {
         if (location.hash) {
             var q = iD.util.stringQs(location.hash.substring(1));
             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;
         }
@@ -20823,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);
@@ -21563,6 +21612,7 @@ iD.areaKeys = {
         "atm": true,
         "bbq": true,
         "bench": true,
+        "bureau_de_change": true,
         "clock": true,
         "drinking_water": true,
         "parking_entrance": true,
@@ -21602,6 +21652,7 @@ iD.areaKeys = {
     "landuse": {},
     "leisure": {
         "picnic_table": true,
+        "track": true,
         "slipway": true
     },
     "man_made": {
@@ -21716,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;
     }
@@ -21726,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;
     }
@@ -21737,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;
@@ -21749,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)
             });
         },
@@ -21760,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)
             });
@@ -21771,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)
             });
@@ -21907,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);
@@ -23074,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;
         });
     },
 
@@ -23319,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);
         });
@@ -23342,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;
     };
@@ -23361,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;
 
@@ -23372,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) {
@@ -23407,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;
         });
     },
 
@@ -23611,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);
             }
@@ -23639,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) {
@@ -23726,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) {
@@ -23737,6 +23796,7 @@ iD.Background = function(context) {
     background.dimensions = function(_) {
         baseLayer.dimensions(_);
         gpxLayer.dimensions(_);
+        mapillaryLayer.dimensions(_);
 
         overlayLayers.forEach(function(layer) {
             layer.dimensions(_);
@@ -23784,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()));
+            }
         }
     };
 
@@ -23794,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') ||
@@ -24154,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')
@@ -24173,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;
         });
@@ -24418,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) {
@@ -24523,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(),
@@ -24594,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)));
@@ -24817,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]])) {
@@ -24859,11 +25101,28 @@ iD.svg.Areas = function(projection) {
         });
 
         var data = {
+            clip: areas.filter(clip),
             shadow: strokes,
             stroke: strokes,
             fill: areas
         };
 
+        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')
@@ -24902,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);
                 }
@@ -25679,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();
@@ -25772,6 +26045,11 @@ 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(['areas', 'lines', 'hit', 'halo', 'label']);
 
@@ -26501,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())
@@ -26548,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();
@@ -26688,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')
@@ -26782,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);
@@ -26863,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);
@@ -26955,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')
@@ -26975,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')
@@ -29293,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;
             }
@@ -29594,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);
@@ -29626,7 +29934,7 @@ iD.ui.Save = function(context) {
 };
 iD.ui.Scale = function(context) {
     var projection = context.projection,
-        imperial = (iD.detect().locale === 'en-us'),
+        imperial = (iD.detect().locale.toLowerCase() === 'en-us'),
         maxLength = 180,
         tickHeight = 8;
 
@@ -30343,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);
@@ -30557,6 +30870,7 @@ iD.ui.preset.address = function(field, context) {
         housenumber: 1/3,
         street: 2/3,
         city: 2/3,
+        state: 1/4,
         postcode: 1/3
     };
 
@@ -30841,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) {
@@ -30849,44 +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;
             }));
 
+            placeholders = strs.length > 1 ? strs : keys;
             input.attr('placeholder', field.placeholder() ||
-                (opts.length < 3 ? '' : opts.slice(0, 3).join(', ') + '...'));
+                (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';
 
@@ -30896,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);
     };
 
@@ -31492,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));
                 }
 
@@ -36997,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",
@@ -42302,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",
@@ -42734,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,
@@ -42980,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/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",
+            "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
+                    ]
+                ],
+                [
+                    [
+                        -8.6710698,
+                        57.8769896
                     ],
                     [
-                        -3.817639,
-                        57.7968899
+                        -8.4673234,
+                        57.8897332
                     ],
                     [
-                        -3.6853753,
-                        57.7989429
+                        -8.4467775,
+                        57.7907
                     ],
                     [
-                        -3.6892276,
-                        57.8891567
-                    ],
+                        -8.6510947,
+                        57.7779213
+                    ]
+                ],
+                [
                     [
-                        -3.9383458,
-                        57.8877915
+                        -5.2395519,
+                        50.3530581
                     ],
                     [
-                        -3.9421981,
-                        57.9750592
+                        -5.7920073,
+                        50.3384899
                     ],
                     [
-                        -3.6943641,
-                        57.9784638
+                        -5.760047,
+                        49.9317027
                     ],
                     [
-                        -3.6969323,
-                        58.0695865
+                        -4.6551363,
+                        49.9581461
                     ],
                     [
-                        -4.0372226,
-                        58.0641528
+                        -4.677965,
+                        50.2860073
                     ],
                     [
-                        -4.0346543,
-                        57.9730163
+                        -4.244219,
+                        50.2801723
                     ],
                     [
-                        -4.2003051,
-                        57.9702923
+                        -4.2487848,
+                        50.2042525
                     ],
                     [
-                        -4.1832772,
-                        57.7012869
+                        -3.3812929,
+                        50.2042525
                     ],
                     [
-                        -4.518752,
-                        57.6951111
+                        -3.4223846,
+                        50.5188201
                     ],
                     [
-                        -4.5122925,
-                        57.6050682
+                        -3.1164796,
+                        50.5246258
                     ],
                     [
-                        -4.6789116,
-                        57.6016628
+                        -3.1210453,
+                        50.6579592
                     ],
                     [
-                        -4.666022,
-                        57.4218334
+                        -2.6736357,
+                        50.6619495
                     ],
                     [
-                        -3.6677696,
-                        57.4394729
+                        -2.5953453,
+                        50.6394325
                     ],
                     [
-                        -3.671282,
-                        57.5295384
+                        -2.5905026,
+                        50.5728419
                     ],
                     [
-                        -3.3384979,
-                        57.5331943
+                        -2.4791203,
+                        50.5733545
                     ],
                     [
-                        -3.3330498,
-                        57.4438859
+                        -2.4758919,
+                        50.5066704
                     ],
                     [
-                        -2.8336466,
-                        57.4485275
+                        -2.3967943,
+                        50.5056438
                     ],
                     [
-                        -2.8236396,
-                        56.9992706
+                        -2.401637,
+                        50.5723293
                     ],
                     [
-                        -2.3305398,
-                        57.0006693
+                        -1.0400296,
+                        50.5718167
                     ],
                     [
-                        -2.3298977,
-                        56.9113932
+                        -1.0335726,
+                        50.7059289
                     ],
                     [
-                        -2.6579889,
-                        56.9092901
+                        -0.549302,
+                        50.7038843
                     ],
                     [
-                        -2.6559637,
-                        56.8198406
+                        -0.5460736,
+                        50.7886618
                     ],
                     [
-                        -2.8216747,
-                        56.8188467
+                        -0.0924734,
+                        50.7856002
                     ],
                     [
-                        -2.8184967,
-                        56.7295397
+                        -0.0876307,
+                        50.7181949
                     ],
                     [
-                        -3.1449248,
-                        56.7265508
+                        0.4789659,
+                        50.7120623
                     ],
                     [
-                        -3.1435628,
-                        56.6362749
+                        0.487037,
+                        50.8182467
                     ],
                     [
-                        -3.4679089,
-                        56.6350265
+                        0.9761503,
+                        50.8049868
                     ],
                     [
-                        -3.474265,
-                        56.7238108
+                        0.9922927,
+                        51.0126311
                     ],
                     [
-                        -3.8011471,
-                        56.7188284
+                        1.4491213,
+                        51.0004424
                     ],
                     [
-                        -3.785711,
-                        56.4493026
+                        1.4781775,
+                        51.4090372
                     ],
                     [
-                        -3.946428,
-                        56.4457896
+                        1.0229632,
+                        51.4271576
                     ],
                     [
-                        -3.9428873,
-                        56.2659777
+                        1.035877,
+                        51.7640881
                     ],
                     [
-                        -4.423146,
-                        56.2588459
+                        1.6105448,
+                        51.7500992
                     ],
                     [
-                        -4.4141572,
-                        56.0815506
+                        1.646058,
+                        52.1560003
                     ],
                     [
-                        -4.8944159,
-                        56.0708008
+                        1.7267698,
+                        52.1540195
                     ],
                     [
-                        -4.8791072,
-                        55.8896994
+                        1.749369,
+                        52.4481811
                     ],
                     [
-                        -5.1994158,
-                        55.8821374
+                        1.7870672,
+                        52.4811624
                     ],
                     [
-                        -5.1852906,
-                        55.7023791
+                        1.759102,
+                        52.522505
                     ],
                     [
-                        -5.0273445,
-                        55.7067203
+                        1.7933451,
+                        52.9602749
                     ],
                     [
-                        -5.0222081,
-                        55.6879046
+                        0.3798147,
+                        52.9958468
                     ],
                     [
-                        -4.897649,
-                        55.6907999
+                        0.3895238,
+                        53.2511239
                     ],
                     [
-                        -4.8880181,
-                        55.6002822
+                        0.3478614,
+                        53.2511239
                     ],
                     [
-                        -4.7339244,
-                        55.6046348
+                        0.3238912,
+                        53.282186
                     ],
                     [
-                        -4.7275038,
-                        55.5342082
+                        0.3461492,
+                        53.6538501
                     ],
                     [
-                        -4.773732,
-                        55.5334815
+                        0.128487,
+                        53.6575466
                     ],
                     [
-                        -4.7685955,
-                        55.4447227
+                        0.116582,
+                        53.6674703
                     ],
                     [
-                        -4.8494947,
-                        55.4418092
+                        0.1350586,
+                        54.0655731
                     ],
                     [
-                        -4.8405059,
-                        55.3506535
+                        -0.0609831,
+                        54.065908
                     ],
                     [
-                        -4.8700405,
-                        55.3513836
+                        -0.0414249,
+                        54.4709448
                     ],
                     [
-                        -4.8649041,
-                        55.2629462
+                        -0.5662701,
+                        54.4771794
                     ],
                     [
-                        -4.9920314,
-                        55.2592875
+                        -0.5592078,
+                        54.6565127
                     ],
                     [
-                        -4.9907473,
-                        55.1691779
+                        -1.1665638,
+                        54.6623485
                     ],
                     [
-                        -5.0600894,
-                        55.1655105
+                        -1.1637389,
+                        54.842611
                     ],
                     [
-                        -5.0575212,
-                        55.0751884
+                        -1.3316194,
+                        54.843909
                     ],
                     [
-                        -5.2141831,
-                        55.0722477
+                        -1.3257065,
+                        55.2470842
                     ],
                     [
-                        -5.1991766,
-                        54.8020337
+                        -1.529453,
+                        55.2487108
                     ],
                     [
-                        -5.0466316,
-                        54.8062205
+                        -1.524178,
+                        55.6540122
                     ],
                     [
-                        -5.0502636,
-                        54.7244996
+                        -1.7638798,
+                        55.6540122
                     ],
                     [
-                        -4.9703591,
-                        54.7203043
+                        -1.7733693,
+                        55.9719116
                     ],
                     [
-                        -4.9776232,
-                        54.6215905
+                        -2.1607858,
+                        55.9682981
                     ],
                     [
-                        -4.796022,
-                        54.6342056
+                        -2.1543289,
+                        56.0621387
                     ],
                     [
-                        -4.796022,
-                        54.7307917
+                        -2.4578051,
+                        56.0585337
                     ],
                     [
-                        -4.8977186,
-                        54.7265971
+                        -2.4190635,
+                        56.641717
                     ],
                     [
-                        -4.9086147,
-                        54.8145928
+                        -2.0962164,
+                        56.641717
                     ],
                     [
-                        -4.8069181,
-                        54.8166856
+                        -2.0833025,
+                        57.0021322
                     ],
                     [
-                        -4.8105501,
-                        54.7915648
+                        -1.9283359,
+                        57.0126802
                     ],
                     [
-                        -4.6943253,
-                        54.7978465
+                        -1.9180966,
+                        57.3590895
                     ],
                     [
-                        -4.6761652,
-                        54.7244996
+                        -1.7502161,
+                        57.3625721
                     ],
                     [
-                        -4.5744686,
-                        54.7244996
+                        -1.7695869,
+                        57.7608634
                     ],
                     [
-                        -4.5599405,
-                        54.6426135
+                        -3.6937554,
+                        57.7574187
                     ],
                     [
-                        -4.3093309,
-                        54.6384098
+                        -3.7066693,
+                        57.9806386
                     ],
                     [
-                        -4.3333262,
-                        54.8229889
+                        -3.5969013,
+                        57.9772149
                     ],
                     [
-                        -4.2626999,
-                        54.8274274
+                        -3.6033582,
+                        58.1207277
                     ],
                     [
-                        -4.2549952,
-                        54.7348587
+                        -3.0222335,
+                        58.1309566
                     ],
                     [
-                        -3.8338058,
-                        54.7400481
+                        -3.0286905,
+                        58.5410788
                     ],
                     [
-                        -3.836374,
-                        54.8141105
+                        -2.8478961,
+                        58.530968
                     ],
                     [
-                        -3.7118149,
-                        54.8133706
+                        -2.86081,
+                        58.8430508
                     ],
                     [
-                        -3.7143831,
-                        54.8318654
+                        -2.679624,
+                        58.8414991
                     ],
                     [
-                        -3.5346072,
-                        54.8355633
+                        -2.6841897,
+                        58.885175
                     ],
                     [
-                        -3.5271039,
-                        54.9066228
+                        -2.6339665,
+                        58.9052239
                     ],
                     [
-                        -3.4808758,
-                        54.9084684
+                        -2.679624,
+                        58.9335083
                     ],
                     [
-                        -3.4776655,
-                        54.7457328
+                        -2.6887555,
+                        59.0229231
                     ],
                     [
-                        -3.5874573,
-                        54.744621
+                        -2.3668703,
+                        59.0229231
                     ],
                     [
-                        -3.5836049,
-                        54.6546166
+                        -2.3702946,
+                        59.2652861
                     ],
                     [
-                        -3.7107322,
-                        54.6531308
+                        -2.3429001,
+                        59.2821989
                     ],
                     [
-                        -3.6991752,
-                        54.4550407
+                        -2.3714361,
+                        59.2996861
                     ],
                     [
-                        -3.5746161,
-                        54.4572801
+                        -2.3737189,
+                        59.3707083
                     ],
                     [
-                        -3.5759002,
-                        54.3863042
+                        -2.3429001,
+                        59.385825
                     ],
                     [
-                        -3.539945,
-                        54.3855564
+                        -2.3725775,
+                        59.400354
                     ],
                     [
-                        -3.5386609,
-                        54.297224
+                        -2.3714361,
+                        59.4259098
                     ],
                     [
-                        -3.46033,
-                        54.2957252
+                        -3.0734196,
+                        59.4230067
                     ],
                     [
-                        -3.4590458,
-                        54.2079507
+                        -3.0711368,
+                        59.3433649
                     ],
                     [
-                        -3.3807149,
-                        54.2102037
+                        -3.103097,
+                        59.3311405
                     ],
                     [
-                        -3.381999,
-                        54.1169788
+                        -3.0745611,
+                        59.3136695
                     ],
                     [
-                        -3.302878,
-                        54.1160656
+                        -3.0722782,
+                        59.232603
                     ],
                     [
-                        -3.300154,
-                        54.0276224
+                        -3.3850319,
+                        59.1484167
                     ],
                     [
-                        -3.1013007,
-                        54.0292224
+                        -3.3747589,
+                        58.9352753
                     ],
                     [
-                        -3.093596,
-                        53.6062158
+                        -3.5653789,
+                        58.9323303
                     ],
                     [
-                        -3.2065981,
-                        53.6016441
+                        -3.554829,
+                        58.69759
                     ],
                     [
-                        -3.2091663,
-                        53.4917753
+                        -5.2808579,
+                        58.6667732
                     ],
                     [
-                        -3.2451215,
-                        53.4887193
+                        -5.2534159,
+                        58.3514125
                     ],
                     [
-                        -3.2348486,
-                        53.4045934
+                        -5.5068508,
+                        58.3437887
                     ],
                     [
-                        -3.5276266,
-                        53.3999999
+                        -5.4761804,
+                        58.0323557
                     ],
                     [
-                        -3.5343966,
-                        53.328481
+                        -5.8974958,
+                        58.0212436
                     ],
                     [
-                        -3.6488053,
-                        53.3252272
+                        -5.8522972,
+                        57.6171758
                     ],
                     [
-                        -3.6527308,
-                        53.3057716
+                        -6.1396311,
+                        57.6137174
                     ],
                     [
-                        -3.7271873,
-                        53.3046865
+                        -6.1541592,
+                        57.7423183
                     ],
                     [
-                        -3.7315003,
-                        53.3945257
+                        -6.2913692,
+                        57.7380102
                     ],
                     [
-                        -3.9108315,
-                        53.3912769
+                        -6.3365678,
+                        58.1398784
                     ],
                     [
-                        -3.9071995,
-                        53.3023804
+                        -6.1121891,
+                        58.1466944
                     ],
                     [
-                        -3.9521457,
-                        53.3015665
+                        -6.1473778,
+                        58.5106285
                     ],
                     [
-                        -3.9566724,
-                        53.3912183
+                        -6.2934817,
+                        58.5416182
                     ],
                     [
-                        -4.1081979,
-                        53.3889209
+                        -6.8413713,
+                        58.2977321
                     ],
                     [
-                        -4.1081979,
-                        53.4072967
+                        -7.0057382,
+                        58.2929331
                     ],
                     [
-                        -4.2622916,
-                        53.4065312
+                        -7.1016189,
+                        58.2064403
                     ],
                     [
-                        -4.2635757,
-                        53.4753707
+                        -7.2573132,
+                        58.1793148
                     ],
                     [
-                        -4.638537,
-                        53.4677274
+                        -7.2531092,
+                        58.1004928
                     ],
                     [
-                        -4.6346847,
-                        53.3812621
+                        -7.4070698,
+                        58.0905566
                     ],
                     [
-                        -4.7091633,
-                        53.3774321
+                        -7.391347,
+                        57.7911354
                     ],
                     [
-                        -4.7001745,
-                        53.1954965
+                        -7.790991,
+                        57.7733151
                     ],
                     [
-                        -4.5499332,
-                        53.1962658
+                        -7.7624215,
+                        57.5444165
                     ],
                     [
-                        -4.5435126,
-                        53.1092488
+                        -7.698501,
+                        57.1453194
                     ],
                     [
-                        -4.3919871,
-                        53.1100196
+                        -7.7943817,
+                        57.1304547
                     ],
                     [
-                        -4.3855666,
-                        53.0236002
+                        -7.716764,
+                        56.7368628
                     ],
                     [
-                        -4.6115707,
-                        53.0205105
-                    ],
-                    [
-                        -4.603866,
-                        52.9284932
-                    ],
-                    [
-                        -4.7566756,
-                        52.9261709
-                    ],
-                    [
-                        -4.7476868,
-                        52.8370555
-                    ],
-                    [
-                        -4.8208813,
-                        52.8331768
-                    ],
-                    [
-                        -4.8208813,
-                        52.7446476
-                    ],
-                    [
-                        -4.3701572,
-                        52.7539749
-                    ],
-                    [
-                        -4.3765778,
-                        52.8401583
-                    ],
-                    [
-                        -4.2314728,
-                        52.8455875
-                    ],
-                    [
-                        -4.2237682,
-                        52.7586379
-                    ],
-                    [
-                        -4.1056297,
-                        52.7570836
-                    ],
-                    [
-                        -4.1015192,
-                        52.6714874
-                    ],
-                    [
-                        -4.1487355,
-                        52.6703862
-                    ],
-                    [
-                        -4.1305754,
-                        52.4008596
-                    ],
-                    [
-                        -4.1995838,
-                        52.3986435
-                    ],
-                    [
-                        -4.2050319,
-                        52.3110195
-                    ],
-                    [
-                        -4.3466808,
-                        52.303247
-                    ],
-                    [
-                        -4.3484968,
-                        52.2365693
-                    ],
-                    [
-                        -4.4901457,
-                        52.2332328
-                    ],
-                    [
-                        -4.4883297,
-                        52.2098702
-                    ],
-                    [
-                        -4.6572188,
-                        52.2098702
+                        -7.0122067,
+                        56.7654359
                     ],
                     [
-                        -4.6590348,
-                        52.1385939
+                        -6.979922,
+                        56.5453858
                     ],
                     [
-                        -4.7788916,
-                        52.13525
+                        -7.0638622,
+                        56.5453858
                     ],
                     [
-                        -4.7807076,
-                        52.1162967
+                        -7.0444914,
+                        56.3562587
                     ],
                     [
-                        -4.9259885,
-                        52.1140663
+                        -6.500676,
+                        56.3812917
                     ],
                     [
-                        -4.9187245,
-                        52.0392855
+                        -6.4491433,
+                        55.9793649
                     ],
                     [
-                        -5.2365265,
-                        52.0314653
+                        -6.563287,
+                        55.9691456
                     ],
                     [
-                        -5.2347105,
-                        51.9442339
+                        -6.5393742,
+                        55.7030135
                     ],
                     [
-                        -5.3473032,
-                        51.9408755
+                        -6.5595521,
+                        55.6907321
                     ],
                     [
-                        -5.3473032,
-                        51.9195995
+                        -6.5345315,
+                        55.6761713
                     ],
                     [
-                        -5.4925842,
-                        51.9162392
+                        -6.5216176,
+                        55.5704434
                     ],
                     [
-                        -5.4853201,
-                        51.8265386
+                        -5.8912587,
+                        55.5923416
                     ],
                     [
-                        -5.1983903,
-                        51.8321501
+                        -5.8560127,
+                        55.2320733
                     ],
                     [
-                        -5.1893102,
-                        51.7625177
+                        -5.2293639,
+                        55.2515958
                     ],
                     [
-                        -5.335825,
-                        51.7589528
+                        -5.1837064,
+                        54.6254139
                     ],
                     [
-                        -5.3281204,
-                        51.6686495
+                        -3.6655956,
+                        54.6518373
                     ],
                     [
-                        -5.1836575,
-                        51.6730296
+                        -3.6496155,
+                        54.4320023
                     ],
                     [
-                        -5.1836575,
-                        51.6539134
+                        -3.5400375,
+                        54.4306744
                     ],
                     [
-                        -5.0674452,
-                        51.6578966
+                        -3.530906,
+                        54.0290181
                     ],
                     [
-                        -5.0603825,
-                        51.5677905
+                        -3.0697656,
+                        54.030359
                     ],
                     [
-                        -4.5974594,
-                        51.5809588
+                        -3.0675737,
+                        53.8221388
                     ],
                     [
-                        -4.60388,
-                        51.6726314
+                        -3.0804876,
+                        53.7739911
                     ],
                     [
-                        -4.345773,
-                        51.6726314
+                        -3.0619239,
+                        53.7477488
                     ],
                     [
-                        -4.3355001,
-                        51.4962964
+                        -3.0611168,
+                        53.6737049
                     ],
                     [
-                        -3.9528341,
-                        51.5106841
+                        -3.2144691,
+                        53.6708361
                     ],
                     [
-                        -3.9425611,
-                        51.5905333
+                        -3.2057699,
+                        53.4226163
                     ],
                     [
-                        -3.8809237,
-                        51.5953198
+                        -3.2799632,
+                        53.355224
                     ],
                     [
-                        -3.8706508,
-                        51.5074872
+                        -3.2896655,
+                        53.3608441
                     ],
                     [
-                        -3.7679216,
-                        51.4978952
+                        -3.3327547,
+                        53.364931
                     ],
                     [
-                        -3.7550805,
-                        51.4242895
+                        -3.3761293,
+                        53.3540318
                     ],
                     [
-                        -3.5855774,
-                        51.41468
+                        -4.0888976,
+                        53.3433102
                     ],
                     [
-                        -3.5778727,
-                        51.3329177
+                        -4.0945474,
+                        53.4612036
                     ],
                     [
-                        -3.0796364,
-                        51.3329177
+                        -4.697412,
+                        53.4448624
                     ],
                     [
-                        -3.0770682,
-                        51.2494018
+                        -4.6882805,
+                        53.3318598
                     ],
                     [
-                        -3.7216935,
-                        51.2381477
+                        -4.7202407,
+                        53.2895771
                     ],
                     [
-                        -3.7216935,
-                        51.2558315
+                        -4.6837148,
+                        53.2486184
                     ],
                     [
-                        -3.8706508,
-                        51.2558315
+                        -4.6768661,
+                        53.1542644
                     ],
                     [
-                        -3.8680825,
-                        51.2365398
+                        -4.8480816,
+                        53.1446807
                     ],
                     [
-                        -4.2944084,
-                        51.2252825
+                        -4.8178336,
+                        52.7440299
                     ],
                     [
-                        -4.289272,
-                        51.0496352
+                        -4.2545751,
+                        52.7558939
                     ],
                     [
-                        -4.5692089,
-                        51.0431767
+                        -4.228876,
+                        52.254876
                     ],
                     [
-                        -4.5624122,
-                        50.9497388
+                        -4.2607571,
+                        52.2536408
                     ],
                     [
-                        -4.5905604,
-                        50.9520269
+                        -4.2724603,
+                        52.2432637
                     ],
                     [
-                        -4.5896524,
-                        50.8627065
+                        -4.8136263,
+                        52.230095
                     ],
                     [
-                        -4.6296046,
-                        50.8592677
+                        -4.8079191,
+                        52.1138892
                     ],
                     [
-                        -4.6226411,
-                        50.7691513
+                        -5.3889104,
+                        52.0991668
                     ],
                     [
-                        -4.6952816,
-                        50.7680028
+                        -5.3717888,
+                        51.9129667
                     ],
                     [
-                        -4.6934655,
-                        50.6967379
+                        -5.4208706,
+                        51.9101502
                     ],
                     [
-                        -4.8342064,
-                        50.6938621
+                        -5.414022,
+                        51.8453218
                     ],
                     [
-                        -4.8296664,
-                        50.6046231
+                        -5.3683645,
+                        51.8474373
                     ],
                     [
-                        -4.9676833,
-                        50.6000126
+                        -5.3466772,
+                        51.5595332
                     ],
                     [
-                        -4.9685913,
-                        50.5821427
+                        -4.773676,
+                        51.5758518
                     ],
                     [
-                        -5.1084242,
-                        50.5786832
+                        -4.7656859,
+                        51.4885146
                     ],
                     [
-                        -5.1029762,
-                        50.4892254
+                        -4.1915432,
+                        51.4970427
                     ],
                     [
-                        -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
                     ]
                 ]
             ],
@@ -45989,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
@@ -45999,16671 +46664,18614 @@ 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
+                    ]
+                ],
+                [
+                    [
+                        -6.46676,
+                        49.9943621
                     ],
                     [
-                        -2.6635459,
-                        55.2192808
+                        -6.1889102,
+                        50.004868
                     ],
                     [
-                        -2.6460364,
-                        55.2188891
+                        -6.1789222,
+                        49.8967815
                     ],
                     [
-                        -2.629042,
-                        55.2233933
+                        -6.3169391,
+                        49.8915171
                     ],
                     [
-                        -2.6317886,
-                        55.2287781
+                        -6.312399,
+                        49.8200979
                     ],
                     [
-                        -2.6235488,
-                        55.2446345
-                    ],
+                        -6.4504159,
+                        49.8159968
+                    ]
+                ],
+                [
                     [
-                        -2.6197723,
-                        55.2454663
+                        -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": [
-                [
-                    [
-                        -124.7617886,
-                        48.4130148
+                        -4.7788916,
+                        52.13525
                     ],
                     [
-                        -124.6059492,
-                        45.90245
+                        -4.7807076,
+                        52.1162967
                     ],
                     [
-                        -124.9934269,
-                        40.0557614
+                        -4.9259885,
+                        52.1140663
                     ],
                     [
-                        -122.5369737,
-                        36.8566086
+                        -4.9187245,
+                        52.0392855
                     ],
                     [
-                        -119.9775867,
-                        33.0064099
+                        -5.2365265,
+                        52.0314653
                     ],
                     [
-                        -117.675935,
-                        32.4630223
+                        -5.2347105,
+                        51.9442339
                     ],
                     [
-                        -114.8612307,
-                        32.4799891
+                        -5.3473032,
+                        51.9408755
                     ],
                     [
-                        -111.0089311,
-                        31.336015
+                        -5.3473032,
+                        51.9195995
                     ],
                     [
-                        -108.1992687,
-                        31.3260016
+                        -5.4925842,
+                        51.9162392
                     ],
                     [
-                        -108.1871123,
-                        31.7755116
+                        -5.4853201,
+                        51.8265386
                     ],
                     [
-                        -106.5307225,
-                        31.7820947
+                        -5.1983903,
+                        51.8321501
                     ],
                     [
-                        -106.4842052,
-                        31.7464455
+                        -5.1893102,
+                        51.7625177
                     ],
                     [
-                        -106.429317,
-                        31.7520583
+                        -5.335825,
+                        51.7589528
                     ],
                     [
-                        -106.2868855,
-                        31.5613291
+                        -5.3281204,
+                        51.6686495
                     ],
                     [
-                        -106.205248,
-                        31.446704
+                        -5.1836575,
+                        51.6730296
                     ],
                     [
-                        -105.0205259,
-                        30.5360988
+                        -5.1836575,
+                        51.6539134
                     ],
                     [
-                        -104.5881916,
-                        29.6997856
+                        -5.0674452,
+                        51.6578966
                     ],
                     [
-                        -103.2518856,
-                        28.8908685
+                        -5.0603825,
+                        51.5677905
                     ],
                     [
-                        -102.7173632,
-                        29.3920567
+                        -4.5974594,
+                        51.5809588
                     ],
                     [
-                        -102.1513983,
-                        29.7475702
+                        -4.60388,
+                        51.6726314
                     ],
                     [
-                        -101.2552871,
-                        29.4810523
+                        -4.345773,
+                        51.6726314
                     ],
                     [
-                        -100.0062436,
-                        28.0082173
+                        -4.3355001,
+                        51.4962964
                     ],
                     [
-                        -99.2351068,
-                        26.4475962
+                        -3.9528341,
+                        51.5106841
                     ],
                     [
-                        -98.0109067,
-                        25.9928035
+                        -3.9425611,
+                        51.5905333
                     ],
                     [
-                        -97.435024,
-                        25.8266009
+                        -3.8809237,
+                        51.5953198
                     ],
                     [
-                        -96.9555259,
-                        25.9821589
+                        -3.8706508,
+                        51.5074872
                     ],
                     [
-                        -96.8061741,
-                        27.7978168
+                        -3.7679216,
+                        51.4978952
                     ],
                     [
-                        -95.5563349,
-                        28.5876066
+                        -3.7550805,
+                        51.4242895
                     ],
                     [
-                        -93.7405308,
-                        29.4742093
+                        -3.5855774,
+                        51.41468
                     ],
                     [
-                        -90.9028456,
-                        28.8564513
+                        -3.5778727,
+                        51.3329177
                     ],
                     [
-                        -88.0156706,
-                        28.9944338
+                        -3.0796364,
+                        51.3329177
                     ],
                     [
-                        -88.0162494,
-                        30.0038862
+                        -3.0770682,
+                        51.2494018
                     ],
                     [
-                        -86.0277506,
-                        30.0047454
+                        -3.7216935,
+                        51.2381477
                     ],
                     [
-                        -84.0187909,
-                        28.9961781
+                        -3.7216935,
+                        51.2558315
                     ],
                     [
-                        -81.9971976,
-                        25.9826768
+                        -3.8706508,
+                        51.2558315
                     ],
                     [
-                        -81.9966618,
-                        25.0134917
+                        -3.8680825,
+                        51.2365398
                     ],
                     [
-                        -84.0165592,
-                        25.0125783
+                        -4.2944084,
+                        51.2252825
                     ],
                     [
-                        -84.0160068,
-                        24.0052745
+                        -4.289272,
+                        51.0496352
                     ],
                     [
-                        -80.0199985,
-                        24.007096
+                        -4.5692089,
+                        51.0431767
                     ],
                     [
-                        -79.8901116,
-                        26.8550713
+                        -4.5624122,
+                        50.9497388
                     ],
                     [
-                        -80.0245309,
-                        32.0161282
+                        -4.5905604,
+                        50.9520269
                     ],
                     [
-                        -75.4147385,
-                        35.0531894
+                        -4.5896524,
+                        50.8627065
                     ],
                     [
-                        -74.0211163,
-                        39.5727927
+                        -4.6296046,
+                        50.8592677
                     ],
                     [
-                        -72.002019,
-                        40.9912464
+                        -4.6226411,
+                        50.7691513
                     ],
                     [
-                        -69.8797398,
-                        40.9920457
+                        -4.6952816,
+                        50.7680028
                     ],
                     [
-                        -69.8489304,
-                        43.2619916
+                        -4.6934655,
+                        50.6967379
                     ],
                     [
-                        -66.9452845,
-                        44.7104937
+                        -4.8342064,
+                        50.6938621
                     ],
                     [
-                        -67.7596632,
-                        47.0990024
+                        -4.8296664,
+                        50.6046231
                     ],
                     [
-                        -69.2505131,
-                        47.5122328
+                        -4.9676833,
+                        50.6000126
                     ],
                     [
-                        -70.4614886,
-                        46.2176574
+                        -4.9685913,
+                        50.5821427
                     ],
                     [
-                        -71.412273,
-                        45.254878
+                        -5.1084242,
+                        50.5786832
                     ],
                     [
-                        -72.0222508,
-                        45.0059846
+                        -5.1029762,
+                        50.4892254
                     ],
                     [
-                        -75.0798841,
-                        44.9802854
+                        -5.1311244,
+                        50.48807
                     ],
                     [
-                        -76.9023061,
-                        43.8024568
+                        -5.1274923,
+                        50.4163798
                     ],
                     [
-                        -78.7623935,
-                        43.6249578
+                        -5.2664172,
+                        50.4117509
                     ],
                     [
-                        -79.15798,
-                        43.4462589
+                        -5.2609692,
+                        50.3034214
                     ],
                     [
-                        -79.0060087,
-                        42.8005317
+                        -5.5124868,
+                        50.2976214
                     ],
                     [
-                        -82.662475,
-                        41.6889458
+                        -5.5061308,
+                        50.2256428
                     ],
                     [
-                        -82.1761642,
-                        43.588535
+                        -5.6468717,
+                        50.2209953
+                    ]
+                ],
+                [
+                    [
+                        -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
-                    ]
-                ],
-                [
-                    [
-                        -6.2787732,
-                        59.2025744
+                        -1.190628,
+                        59.7964199
                     ],
                     [
-                        -6.2787732,
-                        59.0227769
+                        -1.1862046,
+                        59.9695391
                     ],
                     [
-                        -5.6650612,
-                        59.0227769
+                        -1.0078652,
+                        59.9683948
                     ],
                     [
-                        -5.6650612,
-                        59.2025744
-                    ]
-                ],
-                [
-                    [
-                        -8.7163482,
-                        57.9440556
+                        -1.0041233,
+                        60.114145
                     ],
                     [
-                        -8.7163482,
-                        57.7305936
+                        -0.8360832,
+                        60.1130715
                     ],
                     [
-                        -8.3592926,
-                        57.7305936
+                        -0.834574,
+                        60.1716772
                     ],
                     [
-                        -8.3592926,
-                        57.9440556
-                    ]
-                ],
-                [
+                        -1.0074262,
+                        60.1727795
+                    ],
                     [
-                        -7.6077005,
-                        50.4021026
+                        -1.0052165,
+                        60.2583924
                     ],
                     [
-                        -7.6077005,
-                        50.2688657
+                        -0.8299659,
+                        60.2572778
                     ],
                     [
-                        -7.3907205,
-                        50.2688657
+                        -0.826979,
+                        60.3726551
                     ],
                     [
-                        -7.3907205,
-                        50.4021026
-                    ]
-                ],
-                [
+                        -0.6507514,
+                        60.3715381
+                    ],
                     [
-                        -7.7304303,
-                        58.3579902
+                        -0.6477198,
+                        60.4882292
                     ],
                     [
-                        -7.7304303,
-                        58.248313
+                        -0.9984896,
+                        60.4904445
                     ],
                     [
-                        -7.5134503,
-                        58.248313
+                        -0.9970279,
+                        60.546555
                     ],
                     [
-                        -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.6425288,
+                        60.5443201
+                    ],
                     [
-                        -7.8,
-                        54.5
+                        -0.6394896,
+                        60.6606792
                     ],
                     [
-                        -7.8,
-                        61.1
+                        -0.8148133,
+                        60.6617806
                     ],
                     [
-                        -1.1,
-                        61.1
+                        -0.8132987,
+                        60.7196112
                     ],
                     [
-                        -1.1,
-                        54.5
+                        -0.6383298,
+                        60.7185141
                     ],
                     [
-                        -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.635467,
+                        60.8275393
+                    ],
                     [
-                        -2.14039404,
-                        57.11218789
+                        -0.797568,
+                        60.8285523
                     ],
                     [
-                        -2.14064752,
-                        57.17894161
+                        -0.9941426,
+                        60.8297807
                     ],
                     [
-                        -2.04501987,
-                        57.17901252
+                        -0.9954966,
+                        60.7782667
                     ],
                     [
-                        -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.1670282,
+                        60.7793403
+                    ],
                     [
-                        -3.99291738,
-                        55.86408041
+                        -1.1700357,
+                        60.6646181
                     ],
                     [
-                        -3.99338933,
-                        55.87329115
+                        -1.5222599,
+                        60.6668304
                     ],
                     [
-                        -3.9691085,
-                        55.87368212
+                        -1.5237866,
+                        60.6084426
                     ],
                     [
-                        -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.6975673,
+                        60.609536
+                    ],
                     [
-                        -4.58973571,
-                        55.97536707
+                        -1.7021271,
+                        60.4345249
                     ],
                     [
-                        -4.59104461,
-                        55.99493153
+                        -1.5260578,
+                        60.4334111
                     ],
                     [
-                        -4.55985072,
-                        55.99558348
+                        -1.5275203,
+                        60.3770719
                     ],
                     [
-                        -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": [
-                [
+                        -1.8751127,
+                        60.3792746
+                    ],
                     [
-                        -3.81166061,
-                        56.09864363
+                        -1.8781372,
+                        60.2624647
                     ],
                     [
-                        -3.81274448,
-                        56.12169929
+                        -1.7019645,
+                        60.2613443
                     ],
                     [
-                        -3.7804609,
-                        56.12216898
+                        -1.7049134,
+                        60.1470532
                     ],
                     [
-                        -3.77939631,
-                        56.09911292
+                        -1.528659,
+                        60.1459283
                     ]
-                ]
-            ],
-            "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
+                        -0.9847667,
+                        60.8943762
                     ],
                     [
-                        -3.27960062,
-                        54.9946601
+                        -0.9860347,
+                        60.8361105
                     ],
                     [
-                        -3.24866331,
-                        54.99498165
+                        -0.8078362,
+                        60.8351904
                     ],
                     [
-                        -3.24828642,
-                        54.98284297
+                        -0.8065683,
+                        60.8934578
                     ]
-                ]
-            ],
-            "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": [
+                ],
                 [
                     [
-                        -2.60716469,
-                        56.53995105
+                        -7.7696901,
+                        56.8788231
                     ],
                     [
-                        -2.60764981,
-                        56.57022426
+                        -7.7614504,
+                        56.7608274
                     ],
                     [
-                        -2.56498708,
-                        56.57042549
+                        -7.6009049,
+                        56.7641903
                     ],
                     [
-                        -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.5972473,
+                        56.819332
+                    ],
                     [
-                        -4.66768105,
-                        55.43748864
+                        -7.4479894,
+                        56.8203948
                     ],
                     [
-                        -4.67080057,
-                        55.48363961
+                        -7.4489319,
+                        56.8794098
                     ],
                     [
-                        -4.60609844,
-                        55.48503484
+                        -7.2841369,
+                        56.8794098
                     ],
                     [
-                        -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": [
-                [
+                        -7.2813904,
+                        57.0471152
+                    ],
                     [
-                        -2.02117487,
-                        55.75577627
+                        -7.1303283,
+                        57.0515969
                     ],
                     [
-                        -2.02118763,
-                        55.77904118
+                        -7.1330749,
+                        57.511801
                     ],
                     [
-                        -1.98976956,
-                        55.77904265
+                        -6.96828,
+                        57.5147514
                     ],
                     [
-                        -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.9765198,
+                        57.6854668
+                    ],
                     [
-                        -2.67480248,
-                        56.71456775
+                        -6.8062317,
+                        57.6913392
                     ],
                     [
-                        -2.67521172,
-                        56.73739937
+                        -6.8089782,
+                        57.8041985
                     ],
                     [
-                        -2.64319679,
-                        56.73756872
+                        -6.6496765,
+                        57.8071252
                     ],
                     [
-                        -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.6441833,
+                        57.8612267
+                    ],
                     [
-                        -3.24879624,
-                        56.04240046
+                        -6.3200866,
+                        57.8626878
                     ],
                     [
-                        -3.2495182,
-                        56.06472996
+                        -6.3200866,
+                        58.1551617
                     ],
                     [
-                        -3.21830572,
-                        56.06504207
+                        -6.1607849,
+                        58.1522633
                     ],
                     [
-                        -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.1552917,
+                        58.20874
+                    ],
                     [
-                        -5.62345307,
-                        55.40255998
+                        -5.9850036,
+                        58.2101869
                     ],
                     [
-                        -5.62631353,
-                        55.43375303
+                        -5.9904968,
+                        58.2680163
                     ],
                     [
-                        -5.58276654,
-                        55.43503753
+                        -6.1497986,
+                        58.2665717
                     ],
                     [
-                        -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.1415588,
+                        58.5557514
+                    ],
                     [
-                        -4.05035921,
-                        55.84648689
+                        -6.3173401,
+                        58.5557514
                     ],
                     [
-                        -4.05157062,
-                        55.86947193
+                        -6.3091003,
+                        58.4983923
                     ],
                     [
-                        -4.01953905,
-                        55.87000186
+                        -6.4876282,
+                        58.4955218
                     ],
                     [
-                        -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.4876282,
+                        58.4423768
+                    ],
                     [
-                        -3.04765872,
-                        56.28653177
+                        -6.6606628,
+                        58.4395018
                     ],
                     [
-                        -3.04890965,
-                        56.332192
+                        -6.6469299,
+                        58.3819525
                     ],
                     [
-                        -2.98498515,
-                        56.33271677
+                        -6.8117248,
+                        58.3805125
                     ],
                     [
-                        -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": [
-                [
+                        -6.8117248,
+                        58.3286357
+                    ],
                     [
-                        -3.0327697,
-                        56.30243657
+                        -6.9792663,
+                        58.3286357
                     ],
                     [
-                        -3.03338443,
-                        56.32520139
+                        -6.9710266,
+                        58.2694608
                     ],
                     [
-                        -3.00146629,
-                        56.32546356
+                        -7.1413147,
+                        58.2680163
                     ],
                     [
-                        -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.1403816,
+                        58.0358742
+                    ],
                     [
-                        -3.07862465,
-                        55.88900264
+                        -7.3020636,
+                        58.0351031
                     ],
                     [
-                        -3.0790381,
-                        55.90389729
+                        -7.3030347,
+                        57.9774797
                     ],
                     [
-                        -3.05835611,
-                        55.90407681
+                        -7.1379539,
+                        57.9777372
                     ],
                     [
-                        -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.1413526,
+                        57.9202792
+                    ],
                     [
-                        -3.08600192,
-                        55.87936087
+                        -7.1398961,
+                        57.8640206
                     ],
                     [
-                        -3.08658588,
-                        55.90025926
+                        -7.3020636,
+                        57.862471
                     ],
                     [
-                        -3.0436473,
-                        55.90063074
+                        -7.298484,
+                        57.7442293
                     ],
                     [
-                        -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.4509193,
+                        57.7456951
+                    ],
                     [
-                        -4.58559982,
-                        55.92742578
+                        -7.4550392,
+                        57.6899522
                     ],
                     [
-                        -4.58714245,
-                        55.95056014
+                        -7.6186131,
+                        57.6906048
                     ],
                     [
-                        -4.55463269,
-                        55.95123882
+                        -7.6198341,
+                        57.7456951
                     ],
                     [
-                        -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.7901222,
+                        57.7442293
+                    ],
                     [
-                        -3.63928076,
-                        55.03715991
+                        -7.7873756,
+                        57.6855477
                     ],
                     [
-                        -3.64116352,
-                        55.08319002
+                        -7.6222332,
+                        57.6853817
                     ],
                     [
-                        -3.57823183,
-                        55.08402202
+                        -7.6173779,
+                        57.5712602
                     ],
                     [
-                        -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.788285,
+                        57.5709998
+                    ],
                     [
-                        -3.63179081,
-                        55.04150111
+                        -7.7892561,
+                        57.512109
                     ],
                     [
-                        -3.63330662,
-                        55.07873429
+                        -7.7038025,
+                        57.5115874
                     ],
                     [
-                        -3.58259012,
-                        55.07940411
+                        -7.6999183,
+                        57.4546902
                     ],
                     [
-                        -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.5367796,
+                        57.4552126
+                    ],
                     [
-                        -3.02584468,
-                        56.44879161
+                        -7.5348375,
+                        57.5126306
                     ],
                     [
-                        -3.02656969,
-                        56.47566815
+                        -7.4581235,
+                        57.5131521
                     ],
                     [
-                        -2.94710317,
-                        56.47629984
+                        -7.4552103,
+                        57.2824165
                     ],
                     [
-                        -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": [
-                [
+                        -7.6115515,
+                        57.2845158
+                    ],
                     [
-                        -3.03399945,
-                        56.448497
+                        -7.6144647,
+                        57.2272651
                     ],
                     [
-                        -3.03497463,
-                        56.48435238
+                        -7.451326,
+                        57.2256881
                     ],
                     [
-                        -2.92352705,
-                        56.48523137
+                        -7.451326,
+                        57.1103873
                     ],
                     [
-                        -2.92265681,
-                        56.4493748
+                        -7.6164068,
+                        57.1088053
+                    ],
+                    [
+                        -7.603783,
+                        56.8792358
                     ]
-                ]
-            ],
-            "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": [
+                ],
                 [
                     [
-                        -3.49045481,
-                        56.0605979
+                        -1.7106618,
+                        59.5626284
                     ],
                     [
-                        -3.49116489,
-                        56.07898822
+                        -1.5417509,
+                        59.562215
                     ],
                     [
-                        -3.44374075,
-                        56.07955208
+                        -1.5423082,
+                        59.5037224
                     ],
                     [
-                        -3.44305323,
-                        56.06116138
+                        -1.7112191,
+                        59.5041365
                     ]
                 ]
             ],
-            "terms_url": "http://maps.nls.uk/townplans/dunfermline_1.html",
-            "terms_text": "National Library of Scotland - Dunfermline 1854"
+            "terms_url": "http://geo.nls.uk/maps/",
+            "terms_text": "National Library of Scotland Historic Maps"
         },
         {
-            "name": "OS Town Plans, Dunfermline 1894 (NLS)",
+            "name": "New & Misaligned TIGER Roads",
             "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",
+            "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.48284159,
-                        56.05198219
+                        -124.7617886,
+                        48.4130148
                     ],
                     [
-                        -3.48399434,
-                        56.08198924
+                        -124.6059492,
+                        45.90245
                     ],
                     [
-                        -3.44209721,
-                        56.08248587
+                        -124.9934269,
+                        40.0557614
                     ],
                     [
-                        -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": [
-                [
+                        -122.5369737,
+                        36.8566086
+                    ],
                     [
-                        -3.2361048,
-                        55.921366
+                        -119.9775867,
+                        33.0064099
                     ],
                     [
-                        -3.23836397,
-                        55.99217223
+                        -117.675935,
+                        32.4630223
                     ],
                     [
-                        -3.14197035,
-                        55.99310288
+                        -114.8612307,
+                        32.4799891
                     ],
                     [
-                        -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": [
-                [
+                        -111.0089311,
+                        31.336015
+                    ],
                     [
-                        -3.24740498,
-                        55.92116518
+                        -108.1992687,
+                        31.3260016
                     ],
                     [
-                        -3.24989581,
-                        55.99850896
+                        -108.1871123,
+                        31.7755116
                     ],
                     [
-                        -3.13061127,
-                        55.99966059
+                        -106.5307225,
+                        31.7820947
                     ],
                     [
-                        -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": [
-                [
+                        -106.4842052,
+                        31.7464455
+                    ],
                     [
-                        -3.26111081,
-                        55.89555387
+                        -106.429317,
+                        31.7520583
                     ],
                     [
-                        -3.26450423,
-                        55.9997912
+                        -106.2868855,
+                        31.5613291
                     ],
                     [
-                        -3.11970824,
-                        56.00119128
+                        -106.205248,
+                        31.446704
                     ],
                     [
-                        -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": [
-                [
+                        -105.0205259,
+                        30.5360988
+                    ],
                     [
-                        -3.33665196,
-                        57.62879017
+                        -104.5881916,
+                        29.6997856
                     ],
                     [
-                        -3.33776583,
-                        57.65907381
+                        -103.2518856,
+                        28.8908685
                     ],
                     [
-                        -3.29380859,
-                        57.65953111
+                        -102.7173632,
+                        29.3920567
                     ],
                     [
-                        -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": [
-                [
+                        -102.1513983,
+                        29.7475702
+                    ],
                     [
-                        -3.79587441,
-                        55.99343101
+                        -101.2552871,
+                        29.4810523
                     ],
                     [
-                        -3.79697783,
-                        56.01720281
+                        -100.0062436,
+                        28.0082173
                     ],
                     [
-                        -3.76648151,
-                        56.01764348
+                        -99.2351068,
+                        26.4475962
                     ],
                     [
-                        -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": [
-                [
+                        -98.0109067,
+                        25.9928035
+                    ],
                     [
-                        -2.90326183,
-                        56.6289471
+                        -97.435024,
+                        25.8266009
                     ],
                     [
-                        -2.90378797,
-                        56.65095013
+                        -96.9555259,
+                        25.9821589
                     ],
                     [
-                        -2.87228457,
-                        56.65117489
+                        -96.8061741,
+                        27.7978168
                     ],
                     [
-                        -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": [
-                [
+                        -95.5563349,
+                        28.5876066
+                    ],
                     [
-                        -3.63516795,
-                        57.58887872
+                        -93.7405308,
+                        29.4742093
                     ],
                     [
-                        -3.63647637,
-                        57.618002
+                        -90.9028456,
+                        28.8564513
                     ],
                     [
-                        -3.57751453,
-                        57.61875171
+                        -88.0156706,
+                        28.9944338
                     ],
                     [
-                        -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": [
-                [
+                        -88.0162494,
+                        30.0038862
+                    ],
                     [
-                        -2.82918609,
-                        55.59586303
+                        -86.0277506,
+                        30.0047454
                     ],
                     [
-                        -2.82981273,
-                        55.62554026
+                        -84.0187909,
+                        28.9961781
                     ],
                     [
-                        -2.78895254,
-                        55.62580992
+                        -81.9971976,
+                        25.9826768
                     ],
                     [
-                        -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": [
-                [
+                        -81.9966618,
+                        25.0134917
+                    ],
                     [
-                        -4.87424251,
-                        55.22679729
+                        -84.0165592,
+                        25.0125783
                     ],
                     [
-                        -4.87587895,
-                        55.24945946
+                        -84.0160068,
+                        24.0052745
                     ],
                     [
-                        -4.84447382,
-                        55.25019598
+                        -80.0199985,
+                        24.007096
                     ],
                     [
-                        -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": [
-                [
+                        -79.8901116,
+                        26.8550713
+                    ],
                     [
-                        -4.31575491,
-                        55.82072009
+                        -80.0245309,
+                        32.0161282
                     ],
                     [
-                        -4.319683,
-                        55.88667625
+                        -75.4147385,
+                        35.0531894
                     ],
                     [
-                        -4.1771319,
-                        55.88928081
+                        -74.0211163,
+                        39.5727927
                     ],
                     [
-                        -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": [
-                [
+                        -72.002019,
+                        40.9912464
+                    ],
                     [
-                        -4.3465357,
-                        55.81456228
+                        -69.8797398,
+                        40.9920457
                     ],
                     [
-                        -4.35157646,
-                        55.89806268
+                        -69.8489304,
+                        43.2619916
                     ],
                     [
-                        -4.17788765,
-                        55.9012587
+                        -66.9452845,
+                        44.7104937
                     ],
                     [
-                        -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": [
-                [
+                        -67.7596632,
+                        47.0990024
+                    ],
                     [
-                        -4.78108857,
-                        55.92617865
+                        -69.2505131,
+                        47.5122328
                     ],
                     [
-                        -4.78382957,
-                        55.96437481
+                        -70.4614886,
+                        46.2176574
                     ],
                     [
-                        -4.7302257,
-                        55.96557475
+                        -71.412273,
+                        45.254878
                     ],
                     [
-                        -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": [
-                [
+                        -72.0222508,
+                        45.0059846
+                    ],
                     [
-                        -2.78855542,
-                        55.9451862
+                        -75.0798841,
+                        44.9802854
                     ],
                     [
-                        -2.78888196,
-                        55.96124194
+                        -76.9023061,
+                        43.8024568
                     ],
                     [
-                        -2.76674325,
-                        55.9613817
+                        -78.7623935,
+                        43.6249578
                     ],
                     [
-                        -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": [
-                [
+                        -79.15798,
+                        43.4462589
+                    ],
                     [
-                        -2.80152293,
-                        55.93428734
+                        -79.0060087,
+                        42.8005317
                     ],
                     [
-                        -2.80214693,
-                        55.96447189
+                        -82.662475,
+                        41.6889458
                     ],
                     [
-                        -2.76038069,
-                        55.9647367
+                        -82.1761642,
+                        43.588535
                     ],
                     [
-                        -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": [
-                [
+                        -83.2813977,
+                        46.138853
+                    ],
                     [
-                        -4.06721642,
-                        55.74877265
+                        -87.5064535,
+                        48.0142702
                     ],
                     [
-                        -4.06924047,
-                        55.78698508
+                        -88.3492194,
+                        48.2963271
                     ],
                     [
-                        -4.01679233,
-                        55.78785698
+                        -89.4353148,
+                        47.9837822
                     ],
                     [
-                        -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": [
-                [
+                        -93.9981078,
+                        49.0067142
+                    ],
                     [
-                        -2.80130149,
-                        55.4102516
+                        -95.1105379,
+                        49.412004
                     ],
                     [
-                        -2.80176329,
-                        55.43304638
+                        -96.0131199,
+                        49.0060547
                     ],
                     [
-                        -2.7708832,
-                        55.43324489
+                        -123.3228926,
+                        49.0042878
                     ],
                     [
-                        -2.77043917,
-                        55.41044995
+                        -123.2275233,
+                        48.1849927
                     ]
-                ]
-            ],
-            "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": [
+                ],
                 [
                     [
-                        -4.25481758,
-                        57.45916363
+                        -160.5787616,
+                        22.5062947
                     ],
                     [
-                        -4.25752308,
-                        57.50302387
+                        -160.5782192,
+                        21.4984647
                     ],
                     [
-                        -4.19713638,
-                        57.50409032
+                        -158.7470604,
+                        21.2439843
                     ],
                     [
-                        -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": [
-                [
+                        -157.5083185,
+                        20.995803
+                    ],
                     [
-                        -4.67540402,
-                        55.60649957
+                        -155.9961942,
+                        18.7790194
                     ],
                     [
-                        -4.67643252,
-                        55.62159024
+                        -154.6217803,
+                        18.7586966
                     ],
                     [
-                        -4.65537888,
-                        55.62204812
+                        -154.6890176,
+                        19.8805722
                     ],
                     [
-                        -4.65435844,
-                        55.60695719
+                        -156.2927622,
+                        21.2225888
+                    ],
+                    [
+                        -157.5047384,
+                        21.9984962
+                    ],
+                    [
+                        -159.0093692,
+                        22.5070181
                     ]
-                ]
-            ],
-            "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": [
+                ],
                 [
                     [
-                        -2.56332521,
-                        55.47105448
+                        -167.1571546,
+                        68.721974
                     ],
                     [
-                        -2.56355503,
-                        55.48715562
+                        -164.8553982,
+                        67.0255078
                     ],
                     [
-                        -2.54168193,
-                        55.48725438
+                        -168.002195,
+                        66.0017503
                     ],
                     [
-                        -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": [
-                [
-                    [
-                        -2.44924544,
-                        55.58390848
+                        -169.0087448,
+                        66.001546
                     ],
                     [
-                        -2.44949757,
-                        55.6059582
+                        -169.0075381,
+                        64.9987675
                     ],
                     [
-                        -2.41902085,
-                        55.60606617
+                        -172.5143281,
+                        63.8767267
                     ],
                     [
-                        -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": [
-                [
-                    [
-                        -4.51746876,
-                        55.58950933
+                        -173.8197023,
+                        59.74014
                     ],
                     [
-                        -4.5194347,
-                        55.62017114
+                        -162.5018149,
+                        58.0005815
                     ],
                     [
-                        -4.47675652,
-                        55.62104083
+                        -160.0159024,
+                        58.0012389
                     ],
                     [
-                        -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": [
-                [
-                    [
-                        -3.17455285,
-                        56.09518942
+                        -160.0149725,
+                        57.000035
                     ],
                     [
-                        -3.17554995,
-                        56.12790251
+                        -160.5054788,
+                        56.9999017
                     ],
                     [
-                        -3.12991402,
-                        56.12832843
+                        -165.8092575,
+                        54.824847
                     ],
                     [
-                        -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": [
-                [
-                    [
-                        -3.17460426,
-                        56.09513375
+                        -178.000097,
+                        52.2446469
                     ],
                     [
-                        -3.17560428,
-                        56.12794116
+                        -177.9992996,
+                        51.2554252
                     ],
                     [
-                        -3.12989512,
-                        56.12836777
+                        -171.4689067,
+                        51.8215329
                     ],
                     [
-                        -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": [
-                [
+                        -162.40251,
+                        53.956664
+                    ],
                     [
-                        -4.06154334,
-                        54.82586314
+                        -159.0075717,
+                        55.002502
                     ],
                     [
-                        -4.0623081,
-                        54.84086061
+                        -158.0190709,
+                        55.0027849
                     ],
                     [
-                        -4.0420219,
-                        54.84120364
+                        -151.9963213,
+                        55.9991902
                     ],
                     [
-                        -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": [
-                [
+                        -151.500341,
+                        57.9987853
+                    ],
                     [
-                        -4.06001868,
-                        54.82720122
+                        -151.5012894,
+                        58.9919816
                     ],
                     [
-                        -4.06079036,
-                        54.84234455
+                        -138.5159989,
+                        58.9953194
                     ],
                     [
-                        -4.04025067,
-                        54.84269158
+                        -138.5150471,
+                        57.9986434
                     ],
                     [
-                        -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": [
-                [
+                        -133.9948193,
+                        54.0031685
+                    ],
                     [
-                        -4.16664222,
-                        55.93124287
+                        -130.0044418,
+                        54.0043387
                     ],
                     [
-                        -4.16748402,
-                        55.94631265
+                        -130.0070826,
+                        57.0000507
                     ],
                     [
-                        -4.14637318,
-                        55.94668235
+                        -131.975877,
+                        56.9995156
                     ],
                     [
-                        -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": [
-                [
+                        -135.1229873,
+                        59.756601
+                    ],
                     [
-                        -3.01255744,
-                        56.65896044
+                        -138.0071813,
+                        59.991805
                     ],
                     [
-                        -3.01302683,
-                        56.67645382
+                        -139.1715881,
+                        60.4127229
                     ],
                     [
-                        -2.98815879,
-                        56.67665366
+                        -140.9874011,
+                        61.0118551
                     ],
                     [
-                        -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": [
-                [
+                        -140.9683975,
+                        69.9535069
+                    ],
                     [
-                        -3.78642584,
-                        55.66308804
+                        -156.176891,
+                        71.5633329
                     ],
                     [
-                        -3.78710605,
-                        55.67800854
+                        -160.413634,
+                        70.7397728
                     ],
                     [
-                        -3.76632876,
-                        55.67830935
+                        -163.0218273,
+                        69.9707435
                     ],
                     [
-                        -3.76565645,
-                        55.66338868
+                        -164.9717003,
+                        68.994689
                     ]
                 ]
             ],
-            "terms_url": "http://maps.nls.uk/townplans/lanark.html",
-            "terms_text": "National Library of Scotland - Lanark 1858"
+            "overlay": true
         },
         {
-            "name": "OS Town Plans, Linlithgow 1856 (NLS)",
+            "name": "OS 1:25k historic (OSM)",
             "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",
+            "template": "http://ooc.openstreetmap.org/os1/{zoom}/{x}/{y}.jpg",
             "scaleExtent": [
-                13,
-                20
+                6,
+                17
             ],
             "polygon": [
                 [
                     [
-                        -3.61908334,
-                        55.95549561
+                        -9,
+                        49.8
                     ],
                     [
-                        -3.62033259,
-                        55.98538615
+                        -9,
+                        61.1
                     ],
                     [
-                        -3.57838447,
-                        55.98593047
+                        1.9,
+                        61.1
                     ],
                     [
-                        -3.57716753,
-                        55.95603932
+                        1.9,
+                        49.8
+                    ],
+                    [
+                        -9,
+                        49.8
                     ]
                 ]
-            ],
-            "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)",
+            "name": "OS New Popular Edition historic",
             "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
-            ],
+            "template": "http://ooc.openstreetmap.org/npe/{zoom}/{x}/{y}.png",
             "polygon": [
                 [
                     [
-                        -4.69086378,
-                        55.34340178
+                        -5.8,
+                        49.8
                     ],
                     [
-                        -4.6918884,
-                        55.35849731
+                        -5.8,
+                        55.8
                     ],
                     [
-                        -4.67089656,
-                        55.35895813
+                        1.9,
+                        55.8
                     ],
                     [
-                        -4.6698799,
-                        55.34386234
+                        1.9,
+                        49.8
+                    ],
+                    [
+                        -5.8,
+                        49.8
                     ]
                 ]
-            ],
-            "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)",
+            "name": "OS OpenData Locator",
             "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
-            ],
+            "template": "http://tiles.itoworld.com/os_locator/{zoom}/{x}/{y}.png",
             "polygon": [
                 [
                     [
-                        -2.4859324,
-                        56.69645192
+                        -9,
+                        49.8
                     ],
                     [
-                        -2.4862257,
-                        56.71918799
+                        -9,
+                        61.1
                     ],
                     [
-                        -2.45405417,
-                        56.71930941
+                        1.9,
+                        61.1
                     ],
                     [
-                        -2.45378027,
-                        56.69657324
+                        1.9,
+                        49.8
+                    ],
+                    [
+                        -9,
+                        49.8
                     ]
                 ]
             ],
-            "terms_url": "http://maps.nls.uk/townplans/montrose.html",
-            "terms_text": "National Library of Scotland - Montrose 1861-1862"
+            "overlay": true
         },
         {
-            "name": "OS Town Plans, Musselburgh 1853 (NLS)",
+            "name": "OS OpenData StreetView",
             "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",
+            "template": "http://os.openstreetmap.org/sv/{zoom}/{x}/{y}.png",
             "scaleExtent": [
-                13,
-                20
+                1,
+                18
             ],
             "polygon": [
                 [
                     [
-                        -3.07888558,
-                        55.93371953
+                        -5.8292886,
+                        50.0229734
                     ],
                     [
-                        -3.07954151,
-                        55.95729781
+                        -5.8292886,
+                        50.254819
                     ],
                     [
-                        -3.03240684,
-                        55.95770177
+                        -5.373356,
+                        50.254819
                     ],
                     [
-                        -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": [
-                [
-                    [
-                        -3.07017621,
-                        55.92694102
+                        -5.373356,
+                        50.3530588
                     ],
                     [
-                        -3.07078961,
-                        55.94917624
+                        -5.1756021,
+                        50.3530588
                     ],
                     [
-                        -3.03988228,
-                        55.94944099
+                        -5.1756021,
+                        50.5925406
                     ],
                     [
-                        -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": [
-                [
+                        -4.9970743,
+                        50.5925406
+                    ],
                     [
-                        -3.88433907,
-                        57.57899149
+                        -4.9970743,
+                        50.6935617
                     ],
                     [
-                        -3.88509905,
-                        57.5936822
+                        -4.7965738,
+                        50.6935617
                     ],
                     [
-                        -3.85931017,
-                        57.59406441
+                        -4.7965738,
+                        50.7822112
                     ],
                     [
-                        -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": [
-                [
-                    [
-                        -5.49548449,
-                        56.39080407
+                        -4.6949503,
+                        50.7822112
                     ],
                     [
-                        -5.49836627,
-                        56.42219039
+                        -4.6949503,
+                        50.9607371
                     ],
                     [
-                        -5.45383984,
-                        56.42343933
+                        -4.6043131,
+                        50.9607371
                     ],
                     [
-                        -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": [
-                [
+                        -4.6043131,
+                        51.0692066
+                    ],
                     [
-                        -3.20921287,
-                        55.63635834
+                        -4.3792215,
+                        51.0692066
                     ],
                     [
-                        -3.20990288,
-                        55.65873817
+                        -4.3792215,
+                        51.2521782
                     ],
                     [
-                        -3.17896372,
-                        55.65903935
+                        -3.9039346,
+                        51.2521782
                     ],
                     [
-                        -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": [
-                [
+                        -3.9039346,
+                        51.2916998
+                    ],
                     [
-                        -3.45302495,
-                        56.37794226
+                        -3.7171671,
+                        51.2916998
                     ],
                     [
-                        -3.45416664,
-                        56.40789908
+                        -3.7171671,
+                        51.2453014
                     ],
                     [
-                        -3.41187528,
-                        56.40838777
+                        -3.1486246,
+                        51.2453014
                     ],
                     [
-                        -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": [
-                [
+                        -3.1486246,
+                        51.362067
+                    ],
                     [
-                        -1.80513747,
-                        57.48046916
+                        -3.7446329,
+                        51.362067
                     ],
                     [
-                        -1.80494005,
-                        57.51755411
+                        -3.7446329,
+                        51.4340386
                     ],
                     [
-                        -1.75135366,
-                        57.51746003
+                        -3.8297769,
+                        51.4340386
                     ],
                     [
-                        -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": [
-                [
+                        -3.8297769,
+                        51.5298246
+                    ],
                     [
-                        -4.70063209,
-                        55.91995983
+                        -4.0852091,
+                        51.5298246
                     ],
                     [
-                        -4.70222026,
-                        55.9427679
+                        -4.0852091,
+                        51.4939284
                     ],
                     [
-                        -4.67084958,
-                        55.94345237
+                        -4.3792215,
+                        51.4939284
                     ],
                     [
-                        -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": [
-                [
+                        -4.3792215,
+                        51.5427168
+                    ],
                     [
-                        -3.12437919,
-                        55.93846889
+                        -5.1444195,
+                        51.5427168
                     ],
                     [
-                        -3.1250234,
-                        55.96068605
+                        -5.1444195,
+                        51.6296003
                     ],
                     [
-                        -3.09394827,
-                        55.96096586
+                        -5.7387103,
+                        51.6296003
                     ],
                     [
-                        -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": [
-                [
+                        -5.7387103,
+                        51.774037
+                    ],
                     [
-                        -5.06449893,
-                        55.82864114
+                        -5.5095393,
+                        51.774037
                     ],
                     [
-                        -5.06569719,
-                        55.84385927
+                        -5.5095393,
+                        51.9802596
                     ],
                     [
-                        -5.04413114,
-                        55.84439519
+                        -5.198799,
+                        51.9802596
                     ],
                     [
-                        -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": [
-                [
+                        -5.198799,
+                        52.0973358
+                    ],
                     [
-                        -2.85998582,
-                        55.53499576
+                        -4.8880588,
+                        52.0973358
                     ],
                     [
-                        -2.86063259,
-                        55.56459732
+                        -4.8880588,
+                        52.1831557
                     ],
                     [
-                        -2.82003242,
-                        55.56487574
+                        -4.4957492,
+                        52.1831557
                     ],
                     [
-                        -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": [
-                [
+                        -4.4957492,
+                        52.2925739
+                    ],
                     [
-                        -2.81342686,
-                        56.32097352
+                        -4.3015365,
+                        52.2925739
                     ],
                     [
-                        -2.81405804,
-                        56.3506222
+                        -4.3015365,
+                        52.3685318
                     ],
                     [
-                        -2.77243712,
-                        56.35088865
+                        -4.1811246,
+                        52.3685318
                     ],
                     [
-                        -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": [
-                [
+                        -4.1811246,
+                        52.7933685
+                    ],
                     [
-                        -2.81545583,
-                        56.31861733
+                        -4.4413696,
+                        52.7933685
                     ],
                     [
-                        -2.81609919,
-                        56.3487653
+                        -4.4413696,
+                        52.7369614
                     ],
                     [
-                        -2.77387785,
-                        56.34903619
+                        -4.8569847,
+                        52.7369614
                     ],
                     [
-                        -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": [
-                [
+                        -4.8569847,
+                        52.9317255
+                    ],
                     [
-                        -3.95768489,
-                        56.10754239
+                        -4.7288044,
+                        52.9317255
                     ],
                     [
-                        -3.95882978,
-                        56.13007142
+                        -4.7288044,
+                        53.5038599
                     ],
                     [
-                        -3.92711024,
-                        56.13057046
+                        -4.1578191,
+                        53.5038599
                     ],
                     [
-                        -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": [
-                [
+                        -4.1578191,
+                        53.4113498
+                    ],
                     [
-                        -2.220167,
-                        56.9565098
+                        -3.3110518,
+                        53.4113498
                     ],
                     [
-                        -2.2202543,
-                        56.97129283
+                        -3.3110518,
+                        53.5038599
                     ],
                     [
-                        -2.19924399,
-                        56.9713281
+                        -3.2333667,
+                        53.5038599
                     ],
                     [
-                        -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": [
-                [
+                        -3.2333667,
+                        54.0159169
+                    ],
                     [
-                        -5.04859743,
-                        54.8822997
+                        -3.3926211,
+                        54.0159169
                     ],
                     [
-                        -5.0508954,
-                        54.91268061
+                        -3.3926211,
+                        54.1980953
                     ],
                     [
-                        -5.0095373,
-                        54.91371278
+                        -3.559644,
+                        54.1980953
                     ],
                     [
-                        -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": [
-                [
+                        -3.559644,
+                        54.433732
+                    ],
                     [
-                        -5.04877289,
-                        54.88228699
+                        -3.7188984,
+                        54.433732
                     ],
                     [
-                        -5.05107324,
-                        54.9126976
+                        -3.7188984,
+                        54.721897
                     ],
                     [
-                        -5.00947337,
-                        54.91373582
+                        -4.3015365,
+                        54.721897
                     ],
                     [
-                        -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": [
-                [
+                        -4.3015365,
+                        54.6140739
+                    ],
                     [
-                        -5.04418424,
-                        54.89773858
+                        -5.0473132,
+                        54.6140739
                     ],
                     [
-                        -5.04511026,
-                        54.90999885
+                        -5.0473132,
+                        54.7532915
                     ],
                     [
-                        -5.0140499,
-                        54.91077389
+                        -5.2298731,
+                        54.7532915
                     ],
                     [
-                        -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": [
-                [
-                    [
-                        -4.06914872,
-                        55.67242091
+                        -5.2298731,
+                        55.2190799
                     ],
                     [
-                        -4.06954357,
-                        55.67989707
+                        -5.6532567,
+                        55.2190799
                     ],
                     [
-                        -4.05917487,
-                        55.6800715
+                        -5.6532567,
+                        55.250088
                     ],
                     [
-                        -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
+                        -5.8979647,
+                        55.250088
                     ],
                     [
-                        -3.11588837,
-                        58.45101446
+                        -5.8979647,
+                        55.4822462
                     ],
                     [
-                        -3.05949843,
-                        58.45149284
+                        -6.5933212,
+                        55.4822462
                     ],
                     [
-                        -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
+                        -6.5933212,
+                        56.3013441
                     ],
                     [
-                        -4.45327284,
-                        54.87232603
+                        -7.1727691,
+                        56.3013441
                     ],
                     [
-                        -4.43254469,
-                        54.87274317
+                        -7.1727691,
+                        56.5601822
                     ],
                     [
-                        -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
+                        -6.8171722,
+                        56.5601822
                     ],
                     [
-                        -4.45325423,
-                        54.87236807
+                        -6.8171722,
+                        56.6991713
                     ],
                     [
-                        -4.43257837,
-                        54.87278416
+                        -6.5315276,
+                        56.6991713
                     ],
                     [
-                        -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.5315276,
+                        56.9066964
+                    ],
                     [
-                        6.4901072,
-                        53.665658
+                        -6.811679,
+                        56.9066964
                     ],
                     [
-                        8.5665347,
-                        53.9848257
+                        -6.811679,
+                        57.3716613
                     ],
                     [
-                        8.1339457,
-                        54.709715
+                        -6.8721038,
+                        57.3716613
                     ],
                     [
-                        8.317796,
-                        55.0952362
+                        -6.8721038,
+                        57.5518893
                     ],
                     [
-                        10.1887438,
-                        54.7783834
+                        -7.0973235,
+                        57.5518893
                     ],
                     [
-                        10.6321475,
-                        54.4778841
+                        -7.0973235,
+                        57.2411085
                     ],
                     [
-                        11.2702164,
-                        54.6221504
+                        -7.1742278,
+                        57.2411085
                     ],
                     [
-                        11.681176,
-                        54.3709243
+                        -7.1742278,
+                        56.9066964
                     ],
                     [
-                        12.0272473,
-                        54.3898199
+                        -7.3719817,
+                        56.9066964
                     ],
                     [
-                        13.3250145,
-                        54.8531617
+                        -7.3719817,
+                        56.8075885
                     ],
                     [
-                        13.9198245,
-                        54.6972173
+                        -7.5202972,
+                        56.8075885
                     ],
                     [
-                        14.2118221,
-                        54.1308273
+                        -7.5202972,
+                        56.7142479
                     ],
                     [
-                        14.493005,
-                        53.2665063
+                        -7.8306806,
+                        56.7142479
                     ],
                     [
-                        14.1577485,
-                        52.8766495
+                        -7.8306806,
+                        56.8994605
                     ],
                     [
-                        14.7525584,
-                        52.5819369
+                        -7.6494061,
+                        56.8994605
                     ],
                     [
-                        15.0986297,
-                        51.0171541
+                        -7.6494061,
+                        57.4739617
                     ],
                     [
-                        14.9364088,
-                        50.8399279
+                        -7.8306806,
+                        57.4739617
                     ],
                     [
-                        14.730929,
-                        50.7920977
+                        -7.8306806,
+                        57.7915584
                     ],
                     [
-                        14.4389313,
-                        50.8808862
+                        -7.4736249,
+                        57.7915584
                     ],
                     [
-                        12.9573138,
-                        50.3939044
+                        -7.4736249,
+                        58.086063
                     ],
                     [
-                        12.51391,
-                        50.3939044
+                        -7.1879804,
+                        58.086063
                     ],
                     [
-                        12.3084302,
-                        50.1173237
+                        -7.1879804,
+                        58.367197
                     ],
                     [
-                        12.6112425,
-                        49.9088337
+                        -6.8034589,
+                        58.367197
                     ],
                     [
-                        12.394948,
-                        49.7344006
+                        -6.8034589,
+                        58.4155786
                     ],
                     [
-                        12.7734634,
-                        49.4047626
+                        -6.638664,
+                        58.4155786
                     ],
                     [
-                        14.1469337,
-                        48.6031036
+                        -6.638664,
+                        58.4673277
                     ],
                     [
-                        14.6768553,
-                        48.6531391
+                        -6.5178143,
+                        58.4673277
                     ],
                     [
-                        15.0661855,
-                        49.0445497
+                        -6.5178143,
+                        58.5625632
                     ],
                     [
-                        16.2666202,
-                        48.7459305
+                        -6.0536224,
+                        58.5625632
                     ],
                     [
-                        16.4937294,
-                        48.8741286
+                        -6.0536224,
+                        58.1568843
                     ],
                     [
-                        16.904689,
-                        48.7173975
+                        -6.1470062,
+                        58.1568843
                     ],
                     [
-                        16.9371332,
-                        48.5315383
+                        -6.1470062,
+                        58.1105865
                     ],
                     [
-                        16.8384693,
-                        48.3823161
+                        -6.2799798,
+                        58.1105865
                     ],
                     [
-                        17.2017097,
-                        48.010204
+                        -6.2799798,
+                        57.7122664
                     ],
                     [
-                        17.1214145,
-                        47.6997605
+                        -6.1591302,
+                        57.7122664
                     ],
                     [
-                        16.777292,
-                        47.6585709
+                        -6.1591302,
+                        57.6667563
                     ],
                     [
-                        16.6090543,
-                        47.7460598
+                        -5.9339104,
+                        57.6667563
                     ],
                     [
-                        16.410228,
-                        47.6637214
+                        -5.9339104,
+                        57.8892524
                     ],
                     [
-                        16.7352326,
-                        47.6147714
+                        -5.80643,
+                        57.8892524
                     ],
                     [
-                        16.5555242,
-                        47.3589738
+                        -5.80643,
+                        57.9621767
                     ],
                     [
-                        16.4790525,
-                        46.9768539
+                        -5.6141692,
+                        57.9621767
                     ],
                     [
-                        16.0355168,
-                        46.8096295
+                        -5.6141692,
+                        58.0911236
                     ],
                     [
-                        16.0508112,
-                        46.6366332
+                        -5.490819,
+                        58.0911236
                     ],
                     [
-                        14.9572663,
-                        46.6313822
+                        -5.490819,
+                        58.3733281
                     ],
                     [
-                        14.574908,
-                        46.3892866
+                        -5.3199118,
+                        58.3733281
                     ],
                     [
-                        12.3954655,
-                        46.6891149
+                        -5.3199118,
+                        58.75015
                     ],
                     [
-                        12.1507562,
-                        47.0550608
+                        -3.5719977,
+                        58.75015
                     ],
                     [
-                        11.1183887,
-                        46.9142058
+                        -3.5719977,
+                        59.2091788
                     ],
                     [
-                        11.0342699,
-                        46.7729797
+                        -3.1944501,
+                        59.2091788
                     ],
                     [
-                        10.4836739,
-                        46.8462544
+                        -3.1944501,
+                        59.4759216
                     ],
                     [
-                        10.4607324,
-                        46.5472973
+                        -2.243583,
+                        59.4759216
                     ],
                     [
-                        10.1013156,
-                        46.5735879
+                        -2.243583,
+                        59.1388749
                     ],
                     [
-                        10.2007287,
-                        46.1831867
+                        -2.4611012,
+                        59.1388749
                     ],
                     [
-                        9.8948421,
-                        46.3629068
+                        -2.4611012,
+                        58.8185938
                     ],
                     [
-                        9.5966026,
-                        46.2889758
+                        -2.7407675,
+                        58.8185938
                     ],
                     [
-                        9.2983631,
-                        46.505206
+                        -2.7407675,
+                        58.5804743
                     ],
                     [
-                        9.2830687,
-                        46.2572605
+                        -2.9116746,
+                        58.5804743
                     ],
                     [
-                        9.0536537,
-                        45.7953255
+                        -2.9116746,
+                        58.1157523
                     ],
                     [
-                        8.4265861,
-                        46.2466846
+                        -3.4865441,
+                        58.1157523
                     ],
                     [
-                        8.4418804,
-                        46.4736161
+                        -3.4865441,
+                        57.740386
                     ],
                     [
-                        7.8759901,
-                        45.9284607
+                        -1.7153245,
+                        57.740386
                     ],
                     [
-                        7.0959791,
-                        45.8645956
+                        -1.7153245,
+                        57.2225558
                     ],
                     [
-                        6.7747981,
-                        46.1620044
+                        -1.9794538,
+                        57.2225558
                     ],
                     [
-                        6.8206811,
-                        46.4051083
+                        -1.9794538,
+                        56.8760742
                     ],
                     [
-                        6.5453831,
-                        46.4578142
+                        -2.1658979,
+                        56.8760742
                     ],
                     [
-                        6.3312624,
-                        46.3840116
+                        -2.1658979,
+                        56.6333186
                     ],
                     [
-                        6.3847926,
-                        46.2466846
+                        -2.3601106,
+                        56.6333186
                     ],
                     [
-                        5.8953739,
-                        46.0878021
+                        -2.3601106,
+                        56.0477521
                     ],
                     [
-                        6.1171418,
-                        46.3681838
+                        -1.9794538,
+                        56.0477521
                     ],
                     [
-                        6.0942003,
-                        46.5998657
+                        -1.9794538,
+                        55.8650949
                     ],
                     [
-                        6.4383228,
-                        46.7782169
+                        -1.4745008,
+                        55.8650949
                     ],
                     [
-                        6.4306756,
-                        46.9298747
+                        -1.4745008,
+                        55.2499926
                     ],
                     [
-                        7.0806847,
-                        47.3460216
+                        -1.3221997,
+                        55.2499926
                     ],
                     [
-                        6.8436226,
-                        47.3719227
+                        -1.3221997,
+                        54.8221737
                     ],
                     [
-                        6.9965659,
-                        47.5012373
+                        -1.0550014,
+                        54.8221737
                     ],
                     [
-                        7.1800979,
-                        47.5064033
+                        -1.0550014,
+                        54.6746628
                     ],
                     [
-                        7.2336281,
-                        47.439206
+                        -0.6618765,
+                        54.6746628
                     ],
                     [
-                        7.4553959,
-                        47.4805683
+                        -0.6618765,
+                        54.5527463
                     ],
                     [
-                        7.7842241,
-                        48.645735
+                        -0.3247617,
+                        54.5527463
                     ],
                     [
-                        8.1971711,
-                        49.0282701
+                        -0.3247617,
+                        54.2865195
                     ],
                     [
-                        7.6006921,
-                        49.0382974
+                        0.0092841,
+                        54.2865195
                     ],
                     [
-                        7.4477487,
-                        49.1634679
+                        0.0092841,
+                        53.7938518
                     ],
                     [
-                        7.2030394,
-                        49.1034255
+                        0.2081962,
+                        53.7938518
                     ],
                     [
-                        6.6677378,
-                        49.1634679
+                        0.2081962,
+                        53.5217726
                     ],
                     [
-                        6.6371491,
-                        49.3331933
+                        0.4163548,
+                        53.5217726
                     ],
                     [
-                        6.3542039,
-                        49.4576194
+                        0.4163548,
+                        53.0298851
                     ],
                     [
-                        6.5453831,
-                        49.8043366
+                        1.4273388,
+                        53.0298851
                     ],
                     [
-                        6.2471436,
-                        49.873384
+                        1.4273388,
+                        52.92021
                     ],
                     [
-                        6.0789059,
-                        50.1534883
+                        1.8333912,
+                        52.92021
                     ],
                     [
-                        6.3618511,
-                        50.3685934
+                        1.8333912,
+                        52.042488
                     ],
                     [
-                        6.0865531,
-                        50.7039632
+                        1.5235504,
+                        52.042488
                     ],
                     [
-                        5.8800796,
-                        51.0513752
+                        1.5235504,
+                        51.8261335
                     ],
                     [
-                        6.1247889,
-                        51.1618085
+                        1.2697049,
+                        51.8261335
                     ],
                     [
-                        6.1936134,
-                        51.491527
+                        1.2697049,
+                        51.6967453
                     ],
                     [
-                        5.9641984,
-                        51.7526501
+                        1.116651,
+                        51.6967453
                     ],
                     [
-                        6.0253758,
-                        51.8897286
+                        1.116651,
+                        51.440346
                     ],
                     [
-                        6.4536171,
-                        51.8661241
+                        1.5235504,
+                        51.440346
                     ],
                     [
-                        6.8436226,
-                        51.9557552
+                        1.5235504,
+                        51.3331831
                     ],
                     [
-                        6.6906793,
-                        52.0499105
+                        1.4507565,
+                        51.3331831
                     ],
                     [
-                        7.0042131,
-                        52.2282603
+                        1.4507565,
+                        51.0207553
                     ],
                     [
-                        7.0195074,
-                        52.4525245
+                        1.0699883,
+                        51.0207553
                     ],
                     [
-                        6.6983264,
-                        52.4665032
+                        1.0699883,
+                        50.9008416
                     ],
                     [
-                        6.6906793,
-                        52.6524628
+                        0.7788126,
+                        50.9008416
                     ],
                     [
-                        7.0348017,
-                        52.6385432
+                        0.7788126,
+                        50.729843
                     ],
                     [
-                        7.0730376,
-                        52.8330151
+                        -0.7255952,
+                        50.729843
                     ],
                     [
-                        7.2183337,
-                        52.9852064
+                        -0.7255952,
+                        50.7038437
                     ],
                     [
-                        7.1953922,
-                        53.3428087
+                        -1.0074383,
+                        50.7038437
                     ],
                     [
-                        7.0042131,
-                        53.3291098
-                    ]
-                ]
-            ],
-            "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
+                        -1.0074383,
+                        50.5736307
                     ],
                     [
-                        120.445995,
-                        15.984
+                        -2.3625252,
+                        50.5736307
                     ],
                     [
-                        120.446134,
-                        15.974459
+                        -2.3625252,
+                        50.4846421
                     ],
                     [
-                        120.476464,
-                        15.974592
+                        -2.4987805,
+                        50.4846421
                     ],
                     [
-                        120.594247,
-                        15.946832
+                        -2.4987805,
+                        50.5736307
                     ],
                     [
-                        120.598064,
-                        16.090795
+                        -3.4096378,
+                        50.5736307
                     ],
                     [
-                        120.596537,
-                        16.197999
+                        -3.4096378,
+                        50.2057837
                     ],
                     [
-                        120.368537,
-                        16.218527
+                        -3.6922446,
+                        50.2057837
                     ],
                     [
-                        120.347576,
-                        16.042308
+                        -3.6922446,
+                        50.1347737
                     ],
                     [
-                        120.336593,
-                        15.985768
-                    ]
-                ],
-                [
-                    [
-                        120.8268,
-                        15.3658
+                        -5.005468,
+                        50.1347737
                     ],
                     [
-                        121.2684,
-                        15.2602
+                        -5.005468,
+                        49.9474456
                     ],
                     [
-                        121.2699,
-                        14.7025
+                        -5.2839506,
+                        49.9474456
                     ],
                     [
-                        120.695,
-                        14.8423
+                        -5.2839506,
+                        50.0229734
                     ]
-                ]
-            ]
-        },
-        {
-            "name": "Slovakia EEA CORINE 2006",
-            "type": "tms",
-            "template": "http://www.freemap.sk/tms/clc/{zoom}/{x}/{y}.png",
-            "polygon": [
+                ],
                 [
                     [
-                        19.83682,
-                        49.25529
+                        -6.4580707,
+                        49.8673563
                     ],
                     [
-                        19.80075,
-                        49.42385
+                        -6.4580707,
+                        49.9499935
                     ],
                     [
-                        19.60437,
-                        49.48058
+                        -6.3978807,
+                        49.9499935
                     ],
                     [
-                        19.49179,
-                        49.63961
+                        -6.3978807,
+                        50.0053797
                     ],
                     [
-                        19.21831,
-                        49.52604
+                        -6.1799606,
+                        50.0053797
                     ],
                     [
-                        19.16778,
-                        49.42521
+                        -6.1799606,
+                        49.9168614
                     ],
                     [
-                        19.00308,
-                        49.42236
+                        -6.2540201,
+                        49.9168614
                     ],
                     [
-                        18.97611,
-                        49.5308
-                    ],
+                        -6.2540201,
+                        49.8673563
+                    ]
+                ],
+                [
                     [
-                        18.54685,
-                        49.51425
+                        -5.8343165,
+                        49.932156
                     ],
                     [
-                        18.31432,
-                        49.33818
+                        -5.8343165,
+                        49.9754641
                     ],
                     [
-                        18.15913,
-                        49.2961
+                        -5.7683254,
+                        49.9754641
                     ],
                     [
-                        18.05564,
-                        49.11134
+                        -5.7683254,
+                        49.932156
+                    ]
+                ],
+                [
+                    [
+                        -1.9483797,
+                        60.6885737
                     ],
                     [
-                        17.56396,
-                        48.84938
+                        -1.9483797,
+                        60.3058841
                     ],
                     [
-                        17.17929,
-                        48.88816
+                        -1.7543149,
+                        60.3058841
                     ],
                     [
-                        17.058,
-                        48.81105
+                        -1.7543149,
+                        60.1284428
                     ],
                     [
-                        16.90426,
-                        48.61947
+                        -1.5754914,
+                        60.1284428
                     ],
                     [
-                        16.79685,
-                        48.38561
+                        -1.5754914,
+                        59.797917
                     ],
                     [
-                        17.06762,
-                        48.01116
+                        -1.0316959,
+                        59.797917
                     ],
                     [
-                        17.32787,
-                        47.97749
+                        -1.0316959,
+                        60.0354518
                     ],
                     [
-                        17.51699,
-                        47.82535
+                        -0.6626918,
+                        60.0354518
                     ],
                     [
-                        17.74776,
-                        47.73093
+                        -0.6626918,
+                        60.9103862
                     ],
                     [
-                        18.29515,
-                        47.72075
+                        -1.1034395,
+                        60.9103862
                     ],
                     [
-                        18.67959,
-                        47.75541
+                        -1.1034395,
+                        60.8040022
                     ],
                     [
-                        18.89755,
-                        47.81203
+                        -1.3506319,
+                        60.8040022
                     ],
                     [
-                        18.79463,
-                        47.88245
+                        -1.3506319,
+                        60.6885737
+                    ]
+                ],
+                [
+                    [
+                        -2.203381,
+                        60.1968568
                     ],
                     [
-                        18.84318,
-                        48.04046
+                        -2.203381,
+                        60.0929443
                     ],
                     [
-                        19.46212,
-                        48.05333
+                        -1.9864011,
+                        60.0929443
                     ],
                     [
-                        19.62064,
-                        48.22938
+                        -1.9864011,
+                        60.1968568
+                    ]
+                ],
+                [
+                    [
+                        -1.7543149,
+                        59.5698289
                     ],
                     [
-                        19.89585,
-                        48.09387
+                        -1.7543149,
+                        59.4639383
                     ],
                     [
-                        20.33766,
-                        48.2643
+                        -1.5373349,
+                        59.4639383
                     ],
                     [
-                        20.55395,
-                        48.52358
+                        -1.5373349,
+                        59.5698289
+                    ]
+                ],
+                [
+                    [
+                        -4.5585981,
+                        59.1370518
                     ],
                     [
-                        20.82335,
-                        48.55714
+                        -4.5585981,
+                        58.9569099
                     ],
                     [
-                        21.10271,
-                        48.47096
+                        -4.2867004,
+                        58.9569099
                     ],
                     [
-                        21.45863,
-                        48.55513
+                        -4.2867004,
+                        59.1370518
+                    ]
+                ],
+                [
+                    [
+                        -6.2787732,
+                        59.2025744
                     ],
                     [
-                        21.74536,
-                        48.31435
+                        -6.2787732,
+                        59.0227769
                     ],
                     [
-                        22.15293,
-                        48.37179
+                        -5.6650612,
+                        59.0227769
                     ],
                     [
-                        22.61255,
-                        49.08914
+                        -5.6650612,
+                        59.2025744
+                    ]
+                ],
+                [
+                    [
+                        -8.7163482,
+                        57.9440556
                     ],
                     [
-                        22.09997,
-                        49.23814
+                        -8.7163482,
+                        57.7305936
                     ],
                     [
-                        21.9686,
-                        49.36363
+                        -8.3592926,
+                        57.7305936
                     ],
                     [
-                        21.6244,
-                        49.46989
+                        -8.3592926,
+                        57.9440556
+                    ]
+                ],
+                [
+                    [
+                        -7.6077005,
+                        50.4021026
                     ],
                     [
-                        21.06873,
-                        49.46402
+                        -7.6077005,
+                        50.2688657
                     ],
                     [
-                        20.94336,
-                        49.31088
+                        -7.3907205,
+                        50.2688657
                     ],
                     [
-                        20.73052,
-                        49.44006
+                        -7.3907205,
+                        50.4021026
+                    ]
+                ],
+                [
+                    [
+                        -7.7304303,
+                        58.3579902
                     ],
                     [
-                        20.22804,
-                        49.41714
+                        -7.7304303,
+                        58.248313
                     ],
                     [
-                        20.05234,
-                        49.23052
+                        -7.5134503,
+                        58.248313
                     ],
                     [
-                        19.83682,
-                        49.25529
+                        -7.5134503,
+                        58.3579902
                     ]
                 ]
-            ],
-            "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",
+            "name": "OS Scottish Popular historic",
             "type": "tms",
-            "template": "http://www.freemap.sk/tms/urbanatlas/{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
+                        -7.8,
+                        54.5
                     ],
                     [
-                        19.60437,
-                        49.48058
+                        -7.8,
+                        61.1
                     ],
                     [
-                        19.49179,
-                        49.63961
+                        -1.1,
+                        61.1
                     ],
                     [
-                        19.21831,
-                        49.52604
+                        -1.1,
+                        54.5
                     ],
                     [
-                        19.16778,
-                        49.42521
-                    ],
+                        -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": [
+                [
                     [
-                        19.00308,
-                        49.42236
+                        -2.14039404,
+                        57.11218789
                     ],
                     [
-                        18.97611,
-                        49.5308
+                        -2.14064752,
+                        57.17894161
                     ],
                     [
-                        18.54685,
-                        49.51425
+                        -2.04501987,
+                        57.17901252
                     ],
                     [
-                        18.31432,
-                        49.33818
-                    ],
+                        -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.15913,
-                        49.2961
+                        -3.99291738,
+                        55.86408041
                     ],
                     [
-                        18.05564,
-                        49.11134
+                        -3.99338933,
+                        55.87329115
                     ],
                     [
-                        17.56396,
-                        48.84938
+                        -3.9691085,
+                        55.87368212
                     ],
                     [
-                        17.17929,
-                        48.88816
-                    ],
+                        -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": [
+                [
                     [
-                        17.058,
-                        48.81105
+                        -4.58973571,
+                        55.97536707
                     ],
                     [
-                        16.90426,
-                        48.61947
+                        -4.59104461,
+                        55.99493153
                     ],
                     [
-                        16.79685,
-                        48.38561
+                        -4.55985072,
+                        55.99558348
                     ],
                     [
-                        17.06762,
-                        48.01116
-                    ],
+                        -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": [
+                [
                     [
-                        17.32787,
-                        47.97749
+                        -3.81166061,
+                        56.09864363
                     ],
                     [
-                        17.51699,
-                        47.82535
+                        -3.81274448,
+                        56.12169929
                     ],
                     [
-                        17.74776,
-                        47.73093
+                        -3.7804609,
+                        56.12216898
                     ],
                     [
-                        18.29515,
-                        47.72075
-                    ],
+                        -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": [
+                [
                     [
-                        18.67959,
-                        47.75541
+                        -3.27921439,
+                        54.98252155
                     ],
                     [
-                        18.89755,
-                        47.81203
+                        -3.27960062,
+                        54.9946601
                     ],
                     [
-                        18.79463,
-                        47.88245
+                        -3.24866331,
+                        54.99498165
                     ],
                     [
-                        18.84318,
-                        48.04046
-                    ],
+                        -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": [
+                [
                     [
-                        19.46212,
-                        48.05333
+                        -2.60716469,
+                        56.53995105
                     ],
                     [
-                        19.62064,
-                        48.22938
+                        -2.60764981,
+                        56.57022426
                     ],
                     [
-                        19.89585,
-                        48.09387
+                        -2.56498708,
+                        56.57042549
                     ],
                     [
-                        20.33766,
-                        48.2643
-                    ],
+                        -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.55395,
-                        48.52358
+                        -4.66768105,
+                        55.43748864
                     ],
                     [
-                        20.82335,
-                        48.55714
+                        -4.67080057,
+                        55.48363961
                     ],
                     [
-                        21.10271,
-                        48.47096
+                        -4.60609844,
+                        55.48503484
                     ],
                     [
-                        21.45863,
-                        48.55513
-                    ],
+                        -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": [
+                [
                     [
-                        21.74536,
-                        48.31435
+                        -2.02117487,
+                        55.75577627
                     ],
                     [
-                        22.15293,
-                        48.37179
+                        -2.02118763,
+                        55.77904118
                     ],
                     [
-                        22.61255,
-                        49.08914
+                        -1.98976956,
+                        55.77904265
                     ],
                     [
-                        22.09997,
-                        49.23814
-                    ],
+                        -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": [
+                [
                     [
-                        21.9686,
-                        49.36363
+                        -2.67480248,
+                        56.71456775
                     ],
                     [
-                        21.6244,
-                        49.46989
+                        -2.67521172,
+                        56.73739937
                     ],
                     [
-                        21.06873,
-                        49.46402
+                        -2.64319679,
+                        56.73756872
                     ],
                     [
-                        20.94336,
-                        49.31088
-                    ],
+                        -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": [
+                [
                     [
-                        20.73052,
-                        49.44006
+                        -3.24879624,
+                        56.04240046
                     ],
                     [
-                        20.22804,
-                        49.41714
+                        -3.2495182,
+                        56.06472996
                     ],
                     [
-                        20.05234,
-                        49.23052
+                        -3.21830572,
+                        56.06504207
                     ],
                     [
-                        19.83682,
-                        49.25529
+                        -3.21760179,
+                        56.0427123
                     ]
                 ]
             ],
-            "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/burntisland.html",
+            "terms_text": "National Library of Scotland - Burntisland 1894"
         },
         {
-            "name": "Slovakia Historic Maps",
+            "name": "OS Town Plans, Campbelton 1865 (NLS)",
             "type": "tms",
-            "template": "http://tms.freemap.sk/historicke/{zoom}/{x}/{y}.png",
+            "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": [
-                0,
-                12
+                13,
+                20
             ],
             "polygon": [
                 [
                     [
-                        16.8196949,
-                        47.4927236
-                    ],
-                    [
-                        16.8196949,
-                        49.5030322
+                        -5.62345307,
+                        55.40255998
                     ],
                     [
-                        22.8388318,
-                        49.5030322
+                        -5.62631353,
+                        55.43375303
                     ],
                     [
-                        22.8388318,
-                        47.4927236
+                        -5.58276654,
+                        55.43503753
                     ],
                     [
-                        16.8196949,
-                        47.4927236
+                        -5.57994024,
+                        55.40384299
                     ]
                 ]
-            ]
+            ],
+            "terms_url": "http://maps.nls.uk/townplans/campbelton.html",
+            "terms_text": "National Library of Scotland - Campbelton 1865"
         },
         {
-            "name": "South Africa CD:NGI Aerial",
+            "name": "OS Town Plans, Coatbridge 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 Coatbridge 1858, courtesy of National Library of Scotland.",
+            "template": "http://geo.nls.uk/maps/towns/coatbridge/{zoom}/{x}/{-y}.png",
             "scaleExtent": [
-                1,
-                22
+                13,
+                20
             ],
             "polygon": [
                 [
                     [
-                        17.8396817,
-                        -32.7983384
-                    ],
-                    [
-                        17.8893509,
-                        -32.6972835
-                    ],
-                    [
-                        18.00364,
-                        -32.6982187
+                        -4.05035921,
+                        55.84648689
                     ],
                     [
-                        18.0991679,
-                        -32.7485251
+                        -4.05157062,
+                        55.86947193
                     ],
                     [
-                        18.2898747,
-                        -32.5526645
+                        -4.01953905,
+                        55.87000186
                     ],
                     [
-                        18.2930182,
-                        -32.0487089
-                    ],
+                        -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.105455,
-                        -31.6454966
+                        -3.04765872,
+                        56.28653177
                     ],
                     [
-                        17.8529257,
-                        -31.3443951
+                        -3.04890965,
+                        56.332192
                     ],
                     [
-                        17.5480046,
-                        -30.902171
+                        -2.98498515,
+                        56.33271677
                     ],
                     [
-                        17.4044506,
-                        -30.6374731
-                    ],
+                        -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": [
+                [
                     [
-                        17.2493704,
-                        -30.3991663
+                        -3.0327697,
+                        56.30243657
                     ],
                     [
-                        16.9936977,
-                        -29.6543552
+                        -3.03338443,
+                        56.32520139
                     ],
                     [
-                        16.7987996,
-                        -29.19437
+                        -3.00146629,
+                        56.32546356
                     ],
                     [
-                        16.5494139,
-                        -28.8415949
-                    ],
+                        -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": [
+                [
                     [
-                        16.4498691,
-                        -28.691876
+                        -3.07862465,
+                        55.88900264
                     ],
                     [
-                        16.4491046,
-                        -28.5515766
+                        -3.0790381,
+                        55.90389729
                     ],
                     [
-                        16.6002551,
-                        -28.4825663
+                        -3.05835611,
+                        55.90407681
                     ],
                     [
-                        16.7514057,
-                        -28.4486958
-                    ],
+                        -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": [
+                [
                     [
-                        16.7462192,
-                        -28.2458973
+                        -3.08600192,
+                        55.87936087
                     ],
                     [
-                        16.8855148,
-                        -28.04729
+                        -3.08658588,
+                        55.90025926
                     ],
                     [
-                        16.9929502,
-                        -28.0244005
+                        -3.0436473,
+                        55.90063074
                     ],
                     [
-                        17.0529659,
-                        -28.0257086
-                    ],
+                        -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": [
+                [
                     [
-                        17.1007562,
-                        -28.0338839
+                        -4.58559982,
+                        55.92742578
                     ],
                     [
-                        17.2011527,
-                        -28.0930546
+                        -4.58714245,
+                        55.95056014
                     ],
                     [
-                        17.2026346,
-                        -28.2328424
+                        -4.55463269,
+                        55.95123882
                     ],
                     [
-                        17.2474611,
-                        -28.2338215
-                    ],
+                        -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": [
+                [
                     [
-                        17.2507953,
-                        -28.198892
+                        -3.63928076,
+                        55.03715991
                     ],
                     [
-                        17.3511919,
-                        -28.1975861
+                        -3.64116352,
+                        55.08319002
                     ],
                     [
-                        17.3515624,
-                        -28.2442655
+                        -3.57823183,
+                        55.08402202
                     ],
                     [
-                        17.4015754,
-                        -28.2452446
-                    ],
+                        -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": [
+                [
                     [
-                        17.4149122,
-                        -28.3489751
+                        -3.63179081,
+                        55.04150111
                     ],
                     [
-                        17.4008345,
-                        -28.547997
+                        -3.63330662,
+                        55.07873429
                     ],
                     [
-                        17.4526999,
-                        -28.5489733
+                        -3.58259012,
+                        55.07940411
                     ],
                     [
-                        17.4512071,
-                        -28.6495106
-                    ],
+                        -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": [
+                [
                     [
-                        17.4983599,
-                        -28.6872054
+                        -3.02584468,
+                        56.44879161
                     ],
                     [
-                        17.6028204,
-                        -28.6830048
+                        -3.02656969,
+                        56.47566815
                     ],
                     [
-                        17.6499732,
-                        -28.6967928
+                        -2.94710317,
+                        56.47629984
                     ],
                     [
-                        17.6525928,
-                        -28.7381457
-                    ],
+                        -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": [
+                [
                     [
-                        17.801386,
-                        -28.7381457
+                        -3.03399945,
+                        56.448497
                     ],
                     [
-                        17.9994276,
-                        -28.7560602
+                        -3.03497463,
+                        56.48435238
                     ],
                     [
-                        18.0002748,
-                        -28.7956172
+                        -2.92352705,
+                        56.48523137
                     ],
                     [
-                        18.1574507,
-                        -28.8718055
-                    ],
+                        -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": [
+                [
                     [
-                        18.5063811,
-                        -28.8718055
+                        -3.49045481,
+                        56.0605979
                     ],
                     [
-                        18.6153564,
-                        -28.8295875
+                        -3.49116489,
+                        56.07898822
                     ],
                     [
-                        18.9087513,
-                        -28.8277516
+                        -3.44374075,
+                        56.07955208
                     ],
                     [
-                        19.1046973,
-                        -28.9488548
-                    ],
+                        -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": [
+                [
                     [
-                        19.1969071,
-                        -28.9378513
+                        -3.48284159,
+                        56.05198219
                     ],
                     [
-                        19.243012,
-                        -28.8516164
+                        -3.48399434,
+                        56.08198924
                     ],
                     [
-                        19.2314858,
-                        -28.802963
+                        -3.44209721,
+                        56.08248587
                     ],
                     [
-                        19.2587296,
-                        -28.7009928
-                    ],
+                        -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": [
+                [
                     [
-                        19.4431493,
-                        -28.6973163
+                        -3.2361048,
+                        55.921366
                     ],
                     [
-                        19.5500289,
-                        -28.4958332
+                        -3.23836397,
+                        55.99217223
                     ],
                     [
-                        19.6967264,
-                        -28.4939914
+                        -3.14197035,
+                        55.99310288
                     ],
                     [
-                        19.698822,
-                        -28.4479358
-                    ],
+                        -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": [
+                [
                     [
-                        19.8507587,
-                        -28.4433291
+                        -3.24740498,
+                        55.92116518
                     ],
                     [
-                        19.8497109,
-                        -28.4027818
+                        -3.24989581,
+                        55.99850896
                     ],
                     [
-                        19.9953605,
-                        -28.399095
+                        -3.13061127,
+                        55.99966059
                     ],
                     [
-                        19.9893671,
-                        -24.7497859
-                    ],
+                        -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": [
+                [
                     [
-                        20.2916682,
-                        -24.9192346
+                        -3.26111081,
+                        55.89555387
                     ],
                     [
-                        20.4724562,
-                        -25.1501701
+                        -3.26450423,
+                        55.9997912
                     ],
                     [
-                        20.6532441,
-                        -25.4529449
+                        -3.11970824,
+                        56.00119128
                     ],
                     [
-                        20.733265,
-                        -25.6801957
-                    ],
+                        -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": [
+                [
                     [
-                        20.8281046,
-                        -25.8963498
+                        -3.33665196,
+                        57.62879017
                     ],
                     [
-                        20.8429232,
-                        -26.215851
+                        -3.33776583,
+                        57.65907381
                     ],
                     [
-                        20.6502804,
-                        -26.4840868
+                        -3.29380859,
+                        57.65953111
                     ],
                     [
-                        20.6532441,
-                        -26.8204869
-                    ],
+                        -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": [
+                [
                     [
-                        21.0889134,
-                        -26.846933
+                        -3.79587441,
+                        55.99343101
                     ],
                     [
-                        21.6727695,
-                        -26.8389998
+                        -3.79697783,
+                        56.01720281
                     ],
                     [
-                        21.7765003,
-                        -26.6696268
+                        -3.76648151,
+                        56.01764348
                     ],
                     [
-                        21.9721069,
-                        -26.6431395
-                    ],
+                        -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": [
+                [
                     [
-                        22.2803355,
-                        -26.3274702
+                        -2.90326183,
+                        56.6289471
                     ],
                     [
-                        22.5707817,
-                        -26.1333967
+                        -2.90378797,
+                        56.65095013
                     ],
                     [
-                        22.7752795,
-                        -25.6775246
+                        -2.87228457,
+                        56.65117489
                     ],
                     [
-                        23.0005235,
-                        -25.2761948
-                    ],
+                        -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": [
+                [
                     [
-                        23.4658301,
-                        -25.2735148
+                        -3.63516795,
+                        57.58887872
                     ],
                     [
-                        23.883717,
-                        -25.597366
+                        -3.63647637,
+                        57.618002
                     ],
                     [
-                        24.2364017,
-                        -25.613402
+                        -3.57751453,
+                        57.61875171
                     ],
                     [
-                        24.603905,
-                        -25.7896563
-                    ],
+                        -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": [
+                [
                     [
-                        25.110704,
-                        -25.7389432
+                        -2.82918609,
+                        55.59586303
                     ],
                     [
-                        25.5078447,
-                        -25.6855376
+                        -2.82981273,
+                        55.62554026
                     ],
                     [
-                        25.6441766,
-                        -25.4823781
+                        -2.78895254,
+                        55.62580992
                     ],
                     [
-                        25.8419267,
-                        -24.7805437
-                    ],
+                        -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": [
+                [
                     [
-                        25.846641,
-                        -24.7538456
+                        -4.87424251,
+                        55.22679729
                     ],
                     [
-                        26.3928487,
-                        -24.6332894
+                        -4.87587895,
+                        55.24945946
                     ],
                     [
-                        26.4739066,
-                        -24.5653312
+                        -4.84447382,
+                        55.25019598
                     ],
                     [
-                        26.5089966,
-                        -24.4842437
-                    ],
-                    [
-                        26.5861946,
-                        -24.4075775
-                    ],
+                        -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": [
+                [
                     [
-                        26.7300635,
-                        -24.3014458
+                        -4.31575491,
+                        55.82072009
                     ],
                     [
-                        26.8567384,
-                        -24.2499463
+                        -4.319683,
+                        55.88667625
                     ],
                     [
-                        26.8574402,
-                        -24.1026901
+                        -4.1771319,
+                        55.88928081
                     ],
                     [
-                        26.9215471,
-                        -23.8990957
-                    ],
+                        -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": [
+                [
                     [
-                        26.931831,
-                        -23.8461891
+                        -4.3465357,
+                        55.81456228
                     ],
                     [
-                        26.9714827,
-                        -23.6994344
+                        -4.35157646,
+                        55.89806268
                     ],
                     [
-                        27.0006074,
-                        -23.6367644
+                        -4.17788765,
+                        55.9012587
                     ],
                     [
-                        27.0578041,
-                        -23.6052574
-                    ],
+                        -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": [
+                [
                     [
-                        27.1360547,
-                        -23.5203437
+                        -4.78108857,
+                        55.92617865
                     ],
                     [
-                        27.3339623,
-                        -23.3973792
+                        -4.78382957,
+                        55.96437481
                     ],
                     [
-                        27.5144057,
-                        -23.3593929
+                        -4.7302257,
+                        55.96557475
                     ],
                     [
-                        27.5958145,
-                        -23.2085465
-                    ],
+                        -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": [
+                [
                     [
-                        27.8098634,
-                        -23.0994957
+                        -2.78855542,
+                        55.9451862
                     ],
                     [
-                        27.8828506,
-                        -23.0620496
+                        -2.78888196,
+                        55.96124194
                     ],
                     [
-                        27.9382928,
-                        -22.9496487
+                        -2.76674325,
+                        55.9613817
                     ],
                     [
-                        28.0407556,
-                        -22.8255118
-                    ],
+                        -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": [
+                [
                     [
-                        28.2056786,
-                        -22.6552861
+                        -2.80152293,
+                        55.93428734
                     ],
                     [
-                        28.3397223,
-                        -22.5639374
+                        -2.80214693,
+                        55.96447189
                     ],
                     [
-                        28.4906093,
-                        -22.560697
+                        -2.76038069,
+                        55.9647367
                     ],
                     [
-                        28.6108769,
-                        -22.5400248
-                    ],
+                        -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": [
+                [
                     [
-                        28.828175,
-                        -22.4550173
+                        -4.06721642,
+                        55.74877265
                     ],
                     [
-                        28.9285324,
-                        -22.4232328
+                        -4.06924047,
+                        55.78698508
                     ],
                     [
-                        28.9594116,
-                        -22.3090081
+                        -4.01679233,
+                        55.78785698
                     ],
                     [
-                        29.0162574,
-                        -22.208335
-                    ],
+                        -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": [
+                [
                     [
-                        29.2324117,
-                        -22.1693453
+                        -2.80130149,
+                        55.4102516
                     ],
                     [
-                        29.3531213,
-                        -22.1842926
+                        -2.80176329,
+                        55.43304638
                     ],
                     [
-                        29.6548952,
-                        -22.1186426
+                        -2.7708832,
+                        55.43324489
                     ],
                     [
-                        29.7777102,
-                        -22.1361956
-                    ],
+                        -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": [
+                [
                     [
-                        29.9292989,
-                        -22.1849425
+                        -4.25481758,
+                        57.45916363
                     ],
                     [
-                        30.1166795,
-                        -22.2830348
+                        -4.25752308,
+                        57.50302387
                     ],
                     [
-                        30.2563377,
-                        -22.2914767
+                        -4.19713638,
+                        57.50409032
                     ],
                     [
-                        30.3033582,
-                        -22.3395204
-                    ],
+                        -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": [
+                [
                     [
-                        30.5061784,
-                        -22.3057617
+                        -4.67540402,
+                        55.60649957
                     ],
                     [
-                        30.8374279,
-                        -22.284983
+                        -4.67643252,
+                        55.62159024
                     ],
                     [
-                        31.0058599,
-                        -22.3077095
+                        -4.65537888,
+                        55.62204812
                     ],
                     [
-                        31.1834152,
-                        -22.3232913
-                    ],
+                        -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": [
+                [
                     [
-                        31.2930586,
-                        -22.3674647
+                        -2.56332521,
+                        55.47105448
                     ],
                     [
-                        31.5680579,
-                        -23.1903385
+                        -2.56355503,
+                        55.48715562
                     ],
                     [
-                        31.5568311,
-                        -23.4430809
+                        -2.54168193,
+                        55.48725438
                     ],
                     [
-                        31.6931122,
-                        -23.6175209
-                    ],
+                        -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": [
+                [
                     [
-                        31.7119696,
-                        -23.741136
+                        -2.44924544,
+                        55.58390848
                     ],
                     [
-                        31.7774743,
-                        -23.8800628
+                        -2.44949757,
+                        55.6059582
                     ],
                     [
-                        31.8886337,
-                        -23.9481098
+                        -2.41902085,
+                        55.60606617
                     ],
                     [
-                        31.9144386,
-                        -24.1746736
-                    ],
+                        -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": [
+                [
                     [
-                        31.9948307,
-                        -24.3040878
+                        -4.51746876,
+                        55.58950933
                     ],
                     [
-                        32.0166656,
-                        -24.4405988
+                        -4.5194347,
+                        55.62017114
                     ],
                     [
-                        32.0077331,
-                        -24.6536578
+                        -4.47675652,
+                        55.62104083
                     ],
                     [
-                        32.019643,
-                        -24.9140701
-                    ],
+                        -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": [
+                [
                     [
-                        32.035523,
-                        -25.0849767
+                        -3.17455285,
+                        56.09518942
                     ],
                     [
-                        32.019643,
-                        -25.3821442
+                        -3.17554995,
+                        56.12790251
                     ],
                     [
-                        31.9928457,
-                        -25.4493771
+                        -3.12991402,
+                        56.12832843
                     ],
                     [
-                        31.9997931,
-                        -25.5165725
-                    ],
+                        -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": [
+                [
                     [
-                        32.0057481,
-                        -25.6078978
+                        -3.17460426,
+                        56.09513375
                     ],
                     [
-                        32.0057481,
-                        -25.6624806
+                        -3.17560428,
+                        56.12794116
                     ],
                     [
-                        31.9362735,
-                        -25.8403721
+                        -3.12989512,
+                        56.12836777
                     ],
                     [
-                        31.9809357,
-                        -25.9546537
-                    ],
+                        -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": [
+                [
                     [
-                        31.8687838,
-                        -26.0037251
+                        -4.06154334,
+                        54.82586314
                     ],
                     [
-                        31.4162062,
-                        -25.7277683
+                        -4.0623081,
+                        54.84086061
                     ],
                     [
-                        31.3229117,
-                        -25.7438611
+                        -4.0420219,
+                        54.84120364
                     ],
                     [
-                        31.2504595,
-                        -25.8296526
-                    ],
+                        -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": [
+                [
                     [
-                        31.1393001,
-                        -25.9162746
+                        -4.06001868,
+                        54.82720122
                     ],
                     [
-                        31.1164727,
-                        -25.9912361
+                        -4.06079036,
+                        54.84234455
                     ],
                     [
-                        30.9656135,
-                        -26.2665756
+                        -4.04025067,
+                        54.84269158
                     ],
                     [
-                        30.8921689,
-                        -26.3279703
-                    ],
+                        -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.8534616,
-                        -26.4035568
+                        -4.16664222,
+                        55.93124287
                     ],
                     [
-                        30.8226943,
-                        -26.4488849
+                        -4.16748402,
+                        55.94631265
                     ],
                     [
-                        30.8022583,
-                        -26.5240694
+                        -4.14637318,
+                        55.94668235
                     ],
                     [
-                        30.8038369,
-                        -26.8082089
-                    ],
+                        -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": [
+                [
                     [
-                        30.9020939,
-                        -26.7807451
+                        -3.01255744,
+                        56.65896044
                     ],
                     [
-                        30.9100338,
-                        -26.8489495
+                        -3.01302683,
+                        56.67645382
                     ],
                     [
-                        30.9824859,
-                        -26.9082627
+                        -2.98815879,
+                        56.67665366
                     ],
                     [
-                        30.976531,
-                        -27.0029222
-                    ],
+                        -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.0034434,
-                        -27.0441587
+                        -3.78642584,
+                        55.66308804
                     ],
                     [
-                        31.1543322,
-                        -27.1980416
+                        -3.78710605,
+                        55.67800854
                     ],
                     [
-                        31.5015607,
-                        -27.311117
+                        -3.76632876,
+                        55.67830935
                     ],
                     [
-                        31.9700183,
-                        -27.311117
-                    ],
+                        -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.9700183,
-                        -27.120472
+                        -3.61908334,
+                        55.95549561
                     ],
                     [
-                        31.9769658,
-                        -27.050664
+                        -3.62033259,
+                        55.98538615
                     ],
                     [
-                        32.0002464,
-                        -26.7983892
+                        -3.57838447,
+                        55.98593047
                     ],
                     [
-                        32.1069826,
-                        -26.7984645
-                    ],
+                        -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.3114546,
-                        -26.8479493
+                        -4.69086378,
+                        55.34340178
                     ],
                     [
-                        32.899986,
-                        -26.8516059
+                        -4.6918884,
+                        55.35849731
                     ],
                     [
-                        32.886091,
-                        -26.9816971
+                        -4.67089656,
+                        55.35895813
                     ],
                     [
-                        32.709427,
-                        -27.4785436
-                    ],
+                        -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": [
+                [
                     [
-                        32.6240724,
-                        -27.7775144
+                        -2.4859324,
+                        56.69645192
                     ],
                     [
-                        32.5813951,
-                        -28.07479
+                        -2.4862257,
+                        56.71918799
                     ],
                     [
-                        32.5387178,
-                        -28.2288046
+                        -2.45405417,
+                        56.71930941
                     ],
                     [
-                        32.4275584,
-                        -28.5021568
-                    ],
+                        -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": [
+                [
                     [
-                        32.3640388,
-                        -28.5945699
+                        -3.07888558,
+                        55.93371953
                     ],
                     [
-                        32.0702603,
-                        -28.8469827
+                        -3.07954151,
+                        55.95729781
                     ],
                     [
-                        31.9878832,
-                        -28.9069497
+                        -3.03240684,
+                        55.95770177
                     ],
                     [
-                        31.7764818,
-                        -28.969487
-                    ],
+                        -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.4638459,
-                        -29.2859343
+                        -3.07017621,
+                        55.92694102
                     ],
                     [
-                        31.359634,
-                        -29.3854348
+                        -3.07078961,
+                        55.94917624
                     ],
                     [
-                        31.1680825,
-                        -29.6307408
+                        -3.03988228,
+                        55.94944099
                     ],
                     [
-                        31.064863,
-                        -29.7893535
-                    ],
+                        -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": [
+                [
                     [
-                        31.0534493,
-                        -29.8470469
+                        -3.88433907,
+                        57.57899149
                     ],
                     [
-                        31.0669933,
-                        -29.8640319
+                        -3.88509905,
+                        57.5936822
                     ],
                     [
-                        31.0455459,
-                        -29.9502017
+                        -3.85931017,
+                        57.59406441
                     ],
                     [
-                        30.9518556,
-                        -30.0033946
-                    ],
+                        -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.8651833,
-                        -30.1024093
+                        -5.49548449,
+                        56.39080407
                     ],
                     [
-                        30.7244725,
-                        -30.392502
+                        -5.49836627,
+                        56.42219039
                     ],
                     [
-                        30.3556256,
-                        -30.9308873
+                        -5.45383984,
+                        56.42343933
                     ],
                     [
-                        30.0972364,
-                        -31.2458274
-                    ],
+                        -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": [
+                [
                     [
-                        29.8673136,
-                        -31.4304296
+                        -3.20921287,
+                        55.63635834
                     ],
                     [
-                        29.7409393,
-                        -31.5014699
+                        -3.20990288,
+                        55.65873817
                     ],
                     [
-                        29.481312,
-                        -31.6978686
+                        -3.17896372,
+                        55.65903935
                     ],
                     [
-                        28.8943171,
-                        -32.2898903
-                    ],
+                        -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": [
+                [
                     [
-                        28.5497137,
-                        -32.5894641
+                        -3.45302495,
+                        56.37794226
                     ],
                     [
-                        28.1436499,
-                        -32.8320732
+                        -3.45416664,
+                        56.40789908
                     ],
                     [
-                        28.0748735,
-                        -32.941689
+                        -3.41187528,
+                        56.40838777
                     ],
                     [
-                        27.8450942,
-                        -33.082869
-                    ],
+                        -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": [
+                [
                     [
-                        27.3757956,
-                        -33.3860685
+                        -1.80513747,
+                        57.48046916
                     ],
                     [
-                        26.8805407,
-                        -33.6458951
+                        -1.80494005,
+                        57.51755411
                     ],
                     [
-                        26.5916871,
-                        -33.7480756
+                        -1.75135366,
+                        57.51746003
                     ],
                     [
-                        26.4527308,
-                        -33.7935795
-                    ],
+                        -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": [
+                [
                     [
-                        26.206754,
-                        -33.7548943
+                        -4.70063209,
+                        55.91995983
                     ],
                     [
-                        26.0077897,
-                        -33.7223961
+                        -4.70222026,
+                        55.9427679
                     ],
                     [
-                        25.8055494,
-                        -33.7524272
+                        -4.67084958,
+                        55.94345237
                     ],
                     [
-                        25.7511073,
-                        -33.8006512
-                    ],
+                        -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": [
+                [
                     [
-                        25.6529079,
-                        -33.8543597
+                        -3.12437919,
+                        55.93846889
                     ],
                     [
-                        25.6529079,
-                        -33.9469768
+                        -3.1250234,
+                        55.96068605
                     ],
                     [
-                        25.7195789,
-                        -34.0040115
+                        -3.09394827,
+                        55.96096586
                     ],
                     [
-                        25.7202807,
-                        -34.0511235
-                    ],
+                        -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": [
+                [
                     [
-                        25.5508915,
-                        -34.063151
+                        -5.06449893,
+                        55.82864114
                     ],
                     [
-                        25.3504571,
-                        -34.0502627
+                        -5.06569719,
+                        55.84385927
                     ],
                     [
-                        25.2810609,
-                        -34.0020322
+                        -5.04413114,
+                        55.84439519
                     ],
                     [
-                        25.0476316,
-                        -33.9994588
-                    ],
+                        -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": [
+                [
                     [
-                        24.954724,
-                        -34.0043594
+                        -2.85998582,
+                        55.53499576
                     ],
                     [
-                        24.9496586,
-                        -34.1010363
+                        -2.86063259,
+                        55.56459732
                     ],
                     [
-                        24.8770358,
-                        -34.1506456
+                        -2.82003242,
+                        55.56487574
                     ],
                     [
-                        24.8762914,
-                        -34.2005281
-                    ],
+                        -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": [
+                [
                     [
-                        24.8532574,
-                        -34.2189562
+                        -2.81342686,
+                        56.32097352
                     ],
                     [
-                        24.7645287,
-                        -34.2017946
+                        -2.81405804,
+                        56.3506222
                     ],
                     [
-                        24.5001356,
-                        -34.2003254
+                        -2.77243712,
+                        56.35088865
                     ],
                     [
-                        24.3486733,
-                        -34.1163824
-                    ],
+                        -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": [
+                [
                     [
-                        24.1988819,
-                        -34.1019039
+                        -2.81545583,
+                        56.31861733
                     ],
                     [
-                        23.9963377,
-                        -34.0514443
+                        -2.81609919,
+                        56.3487653
                     ],
                     [
-                        23.8017509,
-                        -34.0524332
+                        -2.77387785,
+                        56.34903619
                     ],
                     [
-                        23.7493589,
-                        -34.0111855
-                    ],
+                        -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": [
+                [
                     [
-                        23.4973536,
-                        -34.009014
+                        -3.95768489,
+                        56.10754239
                     ],
                     [
-                        23.4155191,
-                        -34.0434586
+                        -3.95882978,
+                        56.13007142
                     ],
                     [
-                        23.4154284,
-                        -34.1140433
+                        -3.92711024,
+                        56.13057046
                     ],
                     [
-                        22.9000853,
-                        -34.0993009
-                    ],
+                        -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": [
+                [
                     [
-                        22.8412418,
-                        -34.0547911
+                        -2.220167,
+                        56.9565098
                     ],
                     [
-                        22.6470321,
-                        -34.0502627
+                        -2.2202543,
+                        56.97129283
                     ],
                     [
-                        22.6459843,
-                        -34.0072768
+                        -2.19924399,
+                        56.9713281
                     ],
                     [
-                        22.570016,
-                        -34.0064081
-                    ],
+                        -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": [
+                [
                     [
-                        22.5050499,
-                        -34.0645866
+                        -5.04859743,
+                        54.8822997
                     ],
                     [
-                        22.2519968,
-                        -34.0645866
+                        -5.0508954,
+                        54.91268061
                     ],
                     [
-                        22.2221334,
-                        -34.1014701
+                        -5.0095373,
+                        54.91371278
                     ],
                     [
-                        22.1621197,
-                        -34.1057019
-                    ],
+                        -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": [
+                [
                     [
-                        22.1712431,
-                        -34.1521766
+                        -5.04877289,
+                        54.88228699
                     ],
                     [
-                        22.1576913,
-                        -34.2180897
+                        -5.05107324,
+                        54.9126976
                     ],
                     [
-                        22.0015632,
-                        -34.2172232
+                        -5.00947337,
+                        54.91373582
                     ],
                     [
-                        21.9496952,
-                        -34.3220009
-                    ],
+                        -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": [
+                [
                     [
-                        21.8611528,
-                        -34.4007145
+                        -5.04418424,
+                        54.89773858
                     ],
                     [
-                        21.5614708,
-                        -34.4020114
+                        -5.04511026,
+                        54.90999885
                     ],
                     [
-                        21.5468011,
-                        -34.3661242
+                        -5.0140499,
+                        54.91077389
                     ],
                     [
-                        21.501744,
-                        -34.3669892
-                    ],
+                        -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": [
+                [
                     [
-                        21.5006961,
-                        -34.4020114
+                        -4.06914872,
+                        55.67242091
                     ],
                     [
-                        21.4194886,
-                        -34.4465247
+                        -4.06954357,
+                        55.67989707
                     ],
                     [
-                        21.1978706,
-                        -34.4478208
+                        -4.05917487,
+                        55.6800715
                     ],
                     [
-                        21.0988193,
-                        -34.3991325
-                    ],
+                        -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": [
+                [
                     [
-                        21.0033746,
-                        -34.3753872
+                        -3.11470001,
+                        58.41344839
                     ],
                     [
-                        20.893192,
-                        -34.3997115
+                        -3.11588837,
+                        58.45101446
                     ],
                     [
-                        20.8976647,
-                        -34.4854003
+                        -3.05949843,
+                        58.45149284
                     ],
                     [
-                        20.7446802,
-                        -34.4828092
-                    ],
+                        -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": [
+                [
                     [
-                        20.5042011,
-                        -34.486264
+                        -4.45235587,
+                        54.8572296
                     ],
                     [
-                        20.2527197,
-                        -34.701477
+                        -4.45327284,
+                        54.87232603
                     ],
                     [
-                        20.0803502,
-                        -34.8361855
+                        -4.43254469,
+                        54.87274317
                     ],
                     [
-                        19.9923317,
-                        -34.8379056
-                    ],
+                        -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": [
+                [
                     [
-                        19.899074,
-                        -34.8275845
+                        -4.45233361,
+                        54.85721131
                     ],
                     [
-                        19.8938348,
-                        -34.7936018
+                        -4.45325423,
+                        54.87236807
                     ],
                     [
-                        19.5972963,
-                        -34.7961833
+                        -4.43257837,
+                        54.87278416
                     ],
                     [
-                        19.3929677,
-                        -34.642015
+                        -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
                     ],
                     [
-                        19.2877095,
-                        -34.6404784
+                        8.5665347,
+                        53.9848257
                     ],
                     [
-                        19.2861377,
-                        -34.5986563
+                        8.1339457,
+                        54.709715
                     ],
                     [
-                        19.3474363,
-                        -34.5244458
+                        8.317796,
+                        55.0952362
                     ],
                     [
-                        19.3285256,
-                        -34.4534372
+                        10.1887438,
+                        54.7783834
                     ],
                     [
-                        19.098001,
-                        -34.449981
-                    ],
-                    [
-                        19.0725583,
-                        -34.3802371
-                    ],
-                    [
-                        19.0023531,
-                        -34.3525593
-                    ],
-                    [
-                        18.9520568,
-                        -34.3949373
-                    ],
-                    [
-                        18.7975006,
-                        -34.3936403
-                    ],
-                    [
-                        18.7984174,
-                        -34.1016376
-                    ],
-                    [
-                        18.501748,
-                        -34.1015292
+                        10.6321475,
+                        54.4778841
                     ],
                     [
-                        18.4999545,
-                        -34.3616945
+                        11.2702164,
+                        54.6221504
                     ],
                     [
-                        18.4477325,
-                        -34.3620007
+                        11.681176,
+                        54.3709243
                     ],
                     [
-                        18.4479944,
-                        -34.3522691
+                        12.0272473,
+                        54.3898199
                     ],
                     [
-                        18.3974362,
-                        -34.3514041
+                        13.3250145,
+                        54.8531617
                     ],
                     [
-                        18.3971742,
-                        -34.3022959
+                        13.9198245,
+                        54.6972173
                     ],
                     [
-                        18.3565705,
-                        -34.3005647
+                        14.2118221,
+                        54.1308273
                     ],
                     [
-                        18.3479258,
-                        -34.2020436
+                        14.493005,
+                        53.2665063
                     ],
                     [
-                        18.2972095,
-                        -34.1950274
+                        14.1577485,
+                        52.8766495
                     ],
                     [
-                        18.2951139,
-                        -33.9937138
+                        14.7525584,
+                        52.5819369
                     ],
                     [
-                        18.3374474,
-                        -33.9914079
+                        15.0986297,
+                        51.0171541
                     ],
                     [
-                        18.3476638,
-                        -33.8492427
+                        14.9364088,
+                        50.8399279
                     ],
                     [
-                        18.3479258,
-                        -33.781555
+                        14.730929,
+                        50.7920977
                     ],
                     [
-                        18.4124718,
-                        -33.7448849
+                        14.4389313,
+                        50.8808862
                     ],
                     [
-                        18.3615477,
-                        -33.6501624
+                        12.9573138,
+                        50.3939044
                     ],
                     [
-                        18.2992013,
-                        -33.585591
+                        12.51391,
+                        50.3939044
                     ],
                     [
-                        18.2166839,
-                        -33.448872
+                        12.3084302,
+                        50.1173237
                     ],
                     [
-                        18.1389858,
-                        -33.3974083
+                        12.6112425,
+                        49.9088337
                     ],
                     [
-                        17.9473472,
-                        -33.1602647
+                        12.394948,
+                        49.7344006
                     ],
                     [
-                        17.8855247,
-                        -33.0575732
+                        12.7734634,
+                        49.4047626
                     ],
                     [
-                        17.8485884,
-                        -32.9668505
+                        14.1469337,
+                        48.6031036
                     ],
                     [
-                        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
+                        14.6768553,
+                        48.6531391
                     ],
                     [
-                        10.373383,
-                        47.098175
+                        15.0661855,
+                        49.0445497
                     ],
                     [
-                        12.482758,
-                        47.098175
+                        16.2666202,
+                        48.7459305
                     ],
                     [
-                        12.482758,
-                        46.213553
+                        16.4937294,
+                        48.8741286
                     ],
                     [
-                        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
+                        16.904689,
+                        48.7173975
                     ],
                     [
-                        10.373383,
-                        47.098175
+                        16.9371332,
+                        48.5315383
                     ],
                     [
-                        12.482758,
-                        47.098175
+                        16.8384693,
+                        48.3823161
                     ],
                     [
-                        12.482758,
-                        46.213553
+                        17.2017097,
+                        48.010204
                     ],
                     [
-                        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
+                        17.1214145,
+                        47.6997605
                     ],
                     [
-                        8.6,
-                        47.39
+                        16.777292,
+                        47.6585709
                     ],
                     [
-                        8.77,
-                        47.39
+                        16.6090543,
+                        47.7460598
                     ],
                     [
-                        8.77,
-                        47.31
+                        16.410228,
+                        47.6637214
                     ],
                     [
-                        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": [
-                [
-                    [
-                        12.0913942,
-                        55.3491574
+                        16.7352326,
+                        47.6147714
                     ],
                     [
-                        12.0943104,
-                        55.3842256
+                        16.5555242,
+                        47.3589738
                     ],
                     [
-                        12.1573875,
-                        55.3833103
+                        16.4790525,
+                        46.9768539
                     ],
                     [
-                        12.1587287,
-                        55.4013326
+                        16.0355168,
+                        46.8096295
                     ],
                     [
-                        12.1903468,
-                        55.400558
+                        16.0508112,
+                        46.6366332
                     ],
                     [
-                        12.1931411,
-                        55.4364665
+                        14.9572663,
+                        46.6313822
                     ],
                     [
-                        12.2564251,
-                        55.4347995
+                        14.574908,
+                        46.3892866
                     ],
                     [
-                        12.2547073,
-                        55.4168882
+                        12.3954655,
+                        46.6891149
                     ],
                     [
-                        12.3822489,
-                        55.4134349
+                        12.1507562,
+                        47.0550608
                     ],
                     [
-                        12.3795942,
-                        55.3954143
+                        11.1183887,
+                        46.9142058
                     ],
                     [
-                        12.4109213,
-                        55.3946958
+                        11.0342699,
+                        46.7729797
                     ],
                     [
-                        12.409403,
-                        55.3766417
+                        10.4836739,
+                        46.8462544
                     ],
                     [
-                        12.4407807,
-                        55.375779
+                        10.4607324,
+                        46.5472973
                     ],
                     [
-                        12.4394142,
-                        55.3578314
+                        10.1013156,
+                        46.5735879
                     ],
                     [
-                        12.4707413,
-                        55.3569971
+                        10.2007287,
+                        46.1831867
                     ],
                     [
-                        12.4629475,
-                        55.2672214
+                        9.8948421,
+                        46.3629068
                     ],
                     [
-                        12.4315633,
-                        55.2681491
+                        9.5966026,
+                        46.2889758
                     ],
                     [
-                        12.430045,
-                        55.2502103
+                        9.2983631,
+                        46.505206
                     ],
                     [
-                        12.3672011,
-                        55.2519673
+                        9.2830687,
+                        46.2572605
                     ],
                     [
-                        12.3656858,
-                        55.2340267
+                        9.0536537,
+                        45.7953255
                     ],
                     [
-                        12.2714604,
-                        55.2366031
+                        8.4265861,
+                        46.2466846
                     ],
                     [
-                        12.2744467,
-                        55.272476
+                        8.4418804,
+                        46.4736161
                     ],
                     [
-                        12.2115654,
-                        55.2741475
+                        7.8759901,
+                        45.9284607
                     ],
                     [
-                        12.2130078,
-                        55.2920322
+                        7.0959791,
+                        45.8645956
                     ],
                     [
-                        12.1815665,
-                        55.2928638
+                        6.7747981,
+                        46.1620044
                     ],
                     [
-                        12.183141,
-                        55.3107091
+                        6.8206811,
+                        46.4051083
                     ],
                     [
-                        12.2144897,
-                        55.3100981
+                        6.5453831,
+                        46.4578142
                     ],
                     [
-                        12.2159927,
-                        55.3279764
+                        6.3312624,
+                        46.3840116
                     ],
                     [
-                        12.1214458,
-                        55.3303379
+                        6.3847926,
+                        46.2466846
                     ],
                     [
-                        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.752478,
-                        51.0821941
+                        5.8953739,
+                        46.0878021
                     ],
                     [
-                        -0.7595183,
-                        51.0856254
+                        6.1171418,
+                        46.3681838
                     ],
                     [
-                        -0.8014342,
-                        51.1457917
+                        6.0942003,
+                        46.5998657
                     ],
                     [
-                        -0.8398864,
-                        51.1440686
+                        6.4383228,
+                        46.7782169
                     ],
                     [
-                        -0.8357665,
-                        51.1802397
+                        6.4306756,
+                        46.9298747
                     ],
                     [
-                        -0.8529549,
-                        51.2011266
+                        7.0806847,
+                        47.3460216
                     ],
                     [
-                        -0.8522683,
-                        51.2096231
+                        6.8436226,
+                        47.3719227
                     ],
                     [
-                        -0.8495217,
-                        51.217903
+                        6.9965659,
+                        47.5012373
                     ],
                     [
-                        -0.8266907,
-                        51.2403696
+                        7.1800979,
+                        47.5064033
                     ],
                     [
-                        -0.8120995,
-                        51.2469248
+                        7.2336281,
+                        47.439206
                     ],
                     [
-                        -0.7736474,
-                        51.2459577
+                        7.4553959,
+                        47.4805683
                     ],
                     [
-                        -0.7544213,
-                        51.2381127
+                        7.7842241,
+                        48.645735
                     ],
                     [
-                        -0.754078,
-                        51.233921
+                        8.1971711,
+                        49.0282701
                     ],
                     [
-                        -0.7446366,
-                        51.2333836
+                        7.6006921,
+                        49.0382974
                     ],
                     [
-                        -0.7430693,
-                        51.2847178
+                        7.4477487,
+                        49.1634679
                     ],
                     [
-                        -0.751503,
-                        51.3069524
+                        7.2030394,
+                        49.1034255
                     ],
                     [
-                        -0.7664376,
-                        51.3121032
+                        6.6677378,
+                        49.1634679
                     ],
                     [
-                        -0.7820588,
-                        51.3270157
+                        6.6371491,
+                        49.3331933
                     ],
                     [
-                        -0.7815438,
-                        51.3388135
+                        6.3542039,
+                        49.4576194
                     ],
                     [
-                        -0.7374268,
-                        51.3720456
+                        6.5453831,
+                        49.8043366
                     ],
                     [
-                        -0.7192307,
-                        51.3769748
+                        6.2471436,
+                        49.873384
                     ],
                     [
-                        -0.6795769,
-                        51.3847961
+                        6.0789059,
+                        50.1534883
                     ],
                     [
-                        -0.6807786,
-                        51.3901523
+                        6.3618511,
+                        50.3685934
                     ],
                     [
-                        -0.6531411,
-                        51.3917591
+                        6.0865531,
+                        50.7039632
                     ],
                     [
-                        -0.6301385,
-                        51.3905808
+                        5.8800796,
+                        51.0513752
                     ],
                     [
-                        -0.6291085,
-                        51.3970074
+                        6.1247889,
+                        51.1618085
                     ],
                     [
-                        -0.6234437,
-                        51.3977572
+                        6.1936134,
+                        51.491527
                     ],
                     [
-                        -0.613144,
-                        51.4295552
+                        5.9641984,
+                        51.7526501
                     ],
                     [
-                        -0.6002471,
-                        51.4459121
+                        6.0253758,
+                        51.8897286
                     ],
                     [
-                        -0.5867081,
-                        51.4445365
+                        6.4536171,
+                        51.8661241
                     ],
                     [
-                        -0.5762368,
-                        51.453202
+                        6.8436226,
+                        51.9557552
                     ],
                     [
-                        -0.5626755,
-                        51.4523462
+                        6.6906793,
+                        52.0499105
                     ],
                     [
-                        -0.547741,
-                        51.4469972
+                        7.0042131,
+                        52.2282603
                     ],
                     [
-                        -0.5372697,
-                        51.4448575
+                        7.0195074,
+                        52.4525245
                     ],
                     [
-                        -0.537098,
-                        51.4526671
+                        6.6983264,
+                        52.4665032
                     ],
                     [
-                        -0.5439644,
-                        51.4545926
+                        6.6906793,
+                        52.6524628
                     ],
                     [
-                        -0.5405312,
-                        51.4698865
+                        7.0348017,
+                        52.6385432
                     ],
                     [
-                        -0.5309182,
-                        51.4760881
+                        7.0730376,
+                        52.8330151
                     ],
                     [
-                        -0.5091172,
-                        51.4744843
+                        7.2183337,
+                        52.9852064
                     ],
                     [
-                        -0.5086022,
-                        51.4695657
+                        7.1953922,
+                        53.3428087
                     ],
                     [
-                        -0.4900628,
-                        51.4682825
-                    ],
+                        7.0042131,
+                        53.3291098
+                    ]
+                ]
+            ],
+            "terms_url": "http://openstreetmap.org/",
+            "terms_text": "© OpenStreetMap contributors, CC-BY-SA"
+        },
+        {
+            "name": "OpenStreetMap (Mapnik)",
+            "type": "tms",
+            "description": "The default OpenStreetMap layer.",
+            "template": "http://{switch:a,b,c}.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": [
+                [
                     [
-                        -0.4526406,
-                        51.4606894
+                        120.336593,
+                        15.985768
                     ],
                     [
-                        -0.4486924,
-                        51.4429316
+                        120.445995,
+                        15.984
                     ],
                     [
-                        -0.4414826,
-                        51.4418616
+                        120.446134,
+                        15.974459
                     ],
                     [
-                        -0.4418259,
-                        51.4369394
+                        120.476464,
+                        15.974592
                     ],
                     [
-                        -0.4112702,
-                        51.4380095
+                        120.594247,
+                        15.946832
                     ],
                     [
-                        -0.4014855,
-                        51.4279498
+                        120.598064,
+                        16.090795
                     ],
                     [
-                        -0.3807145,
-                        51.4262372
+                        120.596537,
+                        16.197999
                     ],
                     [
-                        -0.3805428,
-                        51.4161749
+                        120.368537,
+                        16.218527
                     ],
                     [
-                        -0.3491288,
-                        51.4138195
+                        120.347576,
+                        16.042308
                     ],
                     [
-                        -0.3274994,
-                        51.4037544
-                    ],
+                        120.336593,
+                        15.985768
+                    ]
+                ],
+                [
                     [
-                        -0.3039818,
-                        51.3990424
+                        120.8268,
+                        15.3658
                     ],
                     [
-                        -0.3019219,
-                        51.3754747
+                        121.2684,
+                        15.2602
                     ],
                     [
-                        -0.309475,
-                        51.369688
+                        121.2699,
+                        14.7025
                     ],
                     [
-                        -0.3111916,
-                        51.3529669
-                    ],
+                        120.695,
+                        14.8423
+                    ]
+                ]
+            ]
+        },
+        {
+            "name": "Slovakia EEA CORINE 2006",
+            "type": "tms",
+            "template": "http://www.freemap.sk/tms/clc/{zoom}/{x}/{y}.png",
+            "polygon": [
+                [
                     [
-                        -0.2955704,
-                        51.3541462
+                        19.83682,
+                        49.25529
                     ],
                     [
-                        -0.2923089,
-                        51.3673303
+                        19.80075,
+                        49.42385
                     ],
                     [
-                        -0.2850991,
-                        51.3680805
+                        19.60437,
+                        49.48058
                     ],
                     [
-                        -0.2787476,
-                        51.3771891
+                        19.49179,
+                        49.63961
                     ],
                     [
-                        -0.2655297,
-                        51.3837247
+                        19.21831,
+                        49.52604
                     ],
                     [
-                        -0.2411538,
-                        51.3847961
+                        19.16778,
+                        49.42521
                     ],
                     [
-                        -0.2123147,
-                        51.3628288
+                        19.00308,
+                        49.42236
                     ],
                     [
-                        -0.2107697,
-                        51.3498578
+                        18.97611,
+                        49.5308
                     ],
                     [
-                        -0.190857,
-                        51.3502867
+                        18.54685,
+                        49.51425
                     ],
                     [
-                        -0.1542931,
-                        51.3338802
+                        18.31432,
+                        49.33818
                     ],
                     [
-                        -0.1496583,
-                        51.3057719
+                        18.15913,
+                        49.2961
                     ],
                     [
-                        -0.1074296,
-                        51.2966491
+                        18.05564,
+                        49.11134
                     ],
                     [
-                        -0.0887185,
-                        51.3099571
+                        17.56396,
+                        48.84938
                     ],
                     [
-                        -0.0878602,
-                        51.3220811
+                        17.17929,
+                        48.88816
                     ],
                     [
-                        -0.0652009,
-                        51.3215448
+                        17.058,
+                        48.81105
                     ],
                     [
-                        -0.0641709,
-                        51.3264793
+                        16.90426,
+                        48.61947
                     ],
                     [
-                        -0.0519829,
-                        51.3263721
+                        16.79685,
+                        48.38561
                     ],
                     [
-                        -0.0528412,
-                        51.334631
+                        17.06762,
+                        48.01116
                     ],
                     [
-                        -0.0330779,
-                        51.3430876
+                        17.32787,
+                        47.97749
                     ],
                     [
-                        0.0019187,
-                        51.3376339
+                        17.51699,
+                        47.82535
                     ],
                     [
-                        0.0118751,
-                        51.3281956
+                        17.74776,
+                        47.73093
                     ],
                     [
-                        0.013935,
-                        51.2994398
+                        18.29515,
+                        47.72075
                     ],
                     [
-                        0.0202865,
-                        51.2994398
+                        18.67959,
+                        47.75541
                     ],
                     [
-                        0.0240631,
-                        51.3072743
+                        18.89755,
+                        47.81203
                     ],
                     [
-                        0.0331611,
-                        51.3086694
+                        18.79463,
+                        47.88245
                     ],
                     [
-                        0.0455207,
-                        51.30545
+                        18.84318,
+                        48.04046
                     ],
                     [
-                        0.0523872,
-                        51.2877392
+                        19.46212,
+                        48.05333
                     ],
                     [
-                        0.0616569,
-                        51.2577764
+                        19.62064,
+                        48.22938
                     ],
                     [
-                        0.0640602,
-                        51.2415518
+                        19.89585,
+                        48.09387
                     ],
                     [
-                        0.0462074,
-                        51.2126342
+                        20.33766,
+                        48.2643
                     ],
                     [
-                        0.0407142,
-                        51.2109136
+                        20.55395,
+                        48.52358
                     ],
                     [
-                        0.0448341,
-                        51.1989753
+                        20.82335,
+                        48.55714
                     ],
                     [
-                        0.0494689,
-                        51.1997283
+                        21.10271,
+                        48.47096
                     ],
                     [
-                        0.0558204,
-                        51.1944573
+                        21.45863,
+                        48.55513
                     ],
                     [
-                        0.0611419,
-                        51.1790713
+                        21.74536,
+                        48.31435
                     ],
                     [
-                        0.0623435,
-                        51.1542061
+                        22.15293,
+                        48.37179
                     ],
                     [
-                        0.0577087,
-                        51.1417146
+                        22.61255,
+                        49.08914
                     ],
                     [
-                        0.0204582,
-                        51.1365447
+                        22.09997,
+                        49.23814
                     ],
                     [
-                        -0.0446015,
-                        51.1336364
+                        21.9686,
+                        49.36363
                     ],
                     [
-                        -0.1566964,
-                        51.1352522
+                        21.6244,
+                        49.46989
                     ],
                     [
-                        -0.1572114,
-                        51.1290043
+                        21.06873,
+                        49.46402
                     ],
                     [
-                        -0.2287942,
-                        51.1183379
+                        20.94336,
+                        49.31088
                     ],
                     [
-                        -0.2473336,
-                        51.1183379
+                        20.73052,
+                        49.44006
                     ],
                     [
-                        -0.2500802,
-                        51.1211394
+                        20.22804,
+                        49.41714
                     ],
                     [
-                        -0.299347,
-                        51.1137042
+                        20.05234,
+                        49.23052
                     ],
                     [
-                        -0.3221779,
-                        51.1119799
-                    ],
+                        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.3223496,
-                        51.1058367
+                        19.83682,
+                        49.25529
                     ],
                     [
-                        -0.3596001,
-                        51.1019563
+                        19.80075,
+                        49.42385
                     ],
                     [
-                        -0.3589135,
-                        51.1113333
+                        19.60437,
+                        49.48058
                     ],
                     [
-                        -0.3863793,
-                        51.1117644
+                        19.49179,
+                        49.63961
                     ],
                     [
-                        -0.3869014,
-                        51.1062516
+                        19.21831,
+                        49.52604
                     ],
                     [
-                        -0.4281001,
-                        51.0947174
+                        19.16778,
+                        49.42521
                     ],
                     [
-                        -0.4856784,
-                        51.0951554
+                        19.00308,
+                        49.42236
                     ],
                     [
-                        -0.487135,
-                        51.0872266
+                        18.97611,
+                        49.5308
                     ],
                     [
-                        -0.5297404,
-                        51.0865404
+                        18.54685,
+                        49.51425
                     ],
                     [
-                        -0.5302259,
-                        51.0789914
+                        18.31432,
+                        49.33818
                     ],
                     [
-                        -0.61046,
-                        51.076551
+                        18.15913,
+                        49.2961
                     ],
                     [
-                        -0.6099745,
-                        51.080669
+                        18.05564,
+                        49.11134
                     ],
                     [
-                        -0.6577994,
-                        51.0792202
+                        17.56396,
+                        48.84938
                     ],
                     [
-                        -0.6582849,
-                        51.0743394
+                        17.17929,
+                        48.88816
                     ],
                     [
-                        -0.6836539,
-                        51.0707547
+                        17.058,
+                        48.81105
                     ],
                     [
-                        -0.6997979,
-                        51.070831
+                        16.90426,
+                        48.61947
                     ],
                     [
-                        -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
+                        16.79685,
+                        48.38561
                     ],
                     [
-                        1.2015377,
-                        43.6329729
+                        17.06762,
+                        48.01116
                     ],
                     [
-                        1.2011107,
-                        43.6554932
+                        17.32787,
+                        47.97749
                     ],
                     [
-                        1.2227985,
-                        43.6557029
+                        17.51699,
+                        47.82535
                     ],
                     [
-                        1.2226231,
-                        43.6653353
+                        17.74776,
+                        47.73093
                     ],
                     [
-                        1.2275341,
-                        43.6653849
+                        18.29515,
+                        47.72075
                     ],
                     [
-                        1.2275417,
-                        43.6656387
+                        18.67959,
+                        47.75541
                     ],
                     [
-                        1.2337568,
-                        43.6656883
+                        18.89755,
+                        47.81203
                     ],
                     [
-                        1.2337644,
-                        43.6650153
+                        18.79463,
+                        47.88245
                     ],
                     [
-                        1.2351218,
-                        43.6650319
+                        18.84318,
+                        48.04046
                     ],
                     [
-                        1.2350913,
-                        43.6670729
+                        19.46212,
+                        48.05333
                     ],
                     [
-                        1.2443566,
-                        43.6671556
+                        19.62064,
+                        48.22938
                     ],
                     [
-                        1.2441584,
-                        43.6743925
+                        19.89585,
+                        48.09387
                     ],
                     [
-                        1.2493973,
-                        43.6744256
+                        20.33766,
+                        48.2643
                     ],
                     [
-                        1.2493973,
-                        43.6746628
+                        20.55395,
+                        48.52358
                     ],
                     [
-                        1.2555666,
-                        43.6747234
+                        20.82335,
+                        48.55714
                     ],
                     [
-                        1.2555742,
-                        43.6744532
+                        21.10271,
+                        48.47096
                     ],
                     [
-                        1.2569545,
-                        43.6744697
+                        21.45863,
+                        48.55513
                     ],
                     [
-                        1.2568782,
-                        43.678529
+                        21.74536,
+                        48.31435
                     ],
                     [
-                        1.2874873,
-                        43.6788257
+                        22.15293,
+                        48.37179
                     ],
                     [
-                        1.2870803,
-                        43.7013229
+                        22.61255,
+                        49.08914
                     ],
                     [
-                        1.3088219,
-                        43.7014632
+                        22.09997,
+                        49.23814
                     ],
                     [
-                        1.3086493,
-                        43.7127673
+                        21.9686,
+                        49.36363
                     ],
                     [
-                        1.3303262,
-                        43.7129544
+                        21.6244,
+                        49.46989
                     ],
                     [
-                        1.3300242,
-                        43.7305221
+                        21.06873,
+                        49.46402
                     ],
                     [
-                        1.3367106,
-                        43.7305845
+                        20.94336,
+                        49.31088
                     ],
                     [
-                        1.3367322,
-                        43.7312235
+                        20.73052,
+                        49.44006
                     ],
                     [
-                        1.3734338,
-                        43.7310456
+                        20.22804,
+                        49.41714
                     ],
                     [
-                        1.3735848,
-                        43.7245772
+                        20.05234,
+                        49.23052
                     ],
                     [
-                        1.4604504,
-                        43.7252947
-                    ],
+                        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": [
+                [
                     [
-                        1.4607783,
-                        43.7028034
+                        16.8196949,
+                        47.4927236
                     ],
                     [
-                        1.4824875,
-                        43.7029516
+                        16.8196949,
+                        49.5030322
                     ],
                     [
-                        1.4829828,
-                        43.6692071
+                        22.8388318,
+                        49.5030322
                     ],
                     [
-                        1.5046832,
-                        43.6693616
+                        22.8388318,
+                        47.4927236
                     ],
                     [
-                        1.5048383,
-                        43.6581174
-                    ],
+                        16.8196949,
+                        47.4927236
+                    ]
+                ]
+            ]
+        },
+        {
+            "name": "South Africa CD:NGI Aerial",
+            "type": "tms",
+            "template": "http://{switch:a,b,c}.aerial.openstreetmap.org.za/ngi-aerial/{zoom}/{x}/{y}.jpg",
+            "scaleExtent": [
+                1,
+                22
+            ],
+            "polygon": [
+                [
                     [
-                        1.5265475,
-                        43.6582656
+                        17.8396817,
+                        -32.7983384
                     ],
                     [
-                        1.5266945,
-                        43.6470298
+                        17.8893509,
+                        -32.6972835
                     ],
                     [
-                        1.548368,
-                        43.6471633
+                        18.00364,
+                        -32.6982187
                     ],
                     [
-                        1.5485357,
-                        43.6359385
+                        18.0991679,
+                        -32.7485251
                     ],
                     [
-                        1.5702172,
-                        43.636082
+                        18.2898747,
+                        -32.5526645
                     ],
                     [
-                        1.5705123,
-                        43.6135777
+                        18.2930182,
+                        -32.0487089
                     ],
                     [
-                        1.5488166,
-                        43.6134276
+                        18.105455,
+                        -31.6454966
                     ],
                     [
-                        1.549097,
-                        43.5909479
+                        17.8529257,
+                        -31.3443951
                     ],
                     [
-                        1.5707695,
-                        43.5910694
+                        17.5480046,
+                        -30.902171
                     ],
                     [
-                        1.5709373,
-                        43.5798341
+                        17.4044506,
+                        -30.6374731
                     ],
                     [
-                        1.5793714,
-                        43.5798894
+                        17.2493704,
+                        -30.3991663
                     ],
                     [
-                        1.5794782,
-                        43.5737682
+                        16.9936977,
+                        -29.6543552
                     ],
                     [
-                        1.5809119,
-                        43.5737792
+                        16.7987996,
+                        -29.19437
                     ],
                     [
-                        1.5810859,
-                        43.5573794
+                        16.5494139,
+                        -28.8415949
                     ],
                     [
-                        1.5712334,
-                        43.5573131
+                        16.4498691,
+                        -28.691876
                     ],
                     [
-                        1.5716504,
-                        43.5235497
+                        16.4491046,
+                        -28.5515766
                     ],
                     [
-                        1.3984804,
-                        43.5222618
+                        16.6002551,
+                        -28.4825663
                     ],
                     [
-                        1.3986509,
-                        43.5110113
+                        16.7514057,
+                        -28.4486958
                     ],
                     [
-                        1.3120959,
-                        43.5102543
+                        16.7462192,
+                        -28.2458973
                     ],
                     [
-                        1.3118968,
-                        43.5215192
+                        16.8855148,
+                        -28.04729
                     ],
                     [
-                        1.2902569,
-                        43.5213126
+                        16.9929502,
+                        -28.0244005
                     ],
                     [
-                        1.2898637,
-                        43.5438168
+                        17.0529659,
+                        -28.0257086
                     ],
                     [
-                        1.311517,
-                        43.5440133
+                        17.1007562,
+                        -28.0338839
                     ],
                     [
-                        1.3113271,
-                        43.5552596
+                        17.2011527,
+                        -28.0930546
                     ],
                     [
-                        1.3036924,
-                        43.5551924
+                        17.2026346,
+                        -28.2328424
                     ],
                     [
-                        1.3036117,
-                        43.5595099
+                        17.2474611,
+                        -28.2338215
                     ],
                     [
-                        1.2955449,
-                        43.5594317
+                        17.2507953,
+                        -28.198892
                     ],
                     [
-                        1.2955449,
-                        43.5595489
+                        17.3511919,
+                        -28.1975861
                     ],
                     [
-                        1.2895595,
-                        43.5594473
+                        17.3515624,
+                        -28.2442655
                     ],
                     [
-                        1.2892899,
-                        43.5775366
+                        17.4015754,
+                        -28.2452446
                     ],
                     [
-                        1.2675698,
-                        43.5773647
+                        17.4149122,
+                        -28.3489751
                     ],
                     [
-                        1.2673973,
-                        43.5886141
+                        17.4008345,
+                        -28.547997
                     ],
                     [
-                        1.25355,
-                        43.5885047
+                        17.4526999,
+                        -28.5489733
                     ],
                     [
-                        1.2533774,
-                        43.5956282
+                        17.4512071,
+                        -28.6495106
                     ],
                     [
-                        1.2518029,
-                        43.5956282
+                        17.4983599,
+                        -28.6872054
                     ],
                     [
-                        1.2518029,
-                        43.5949409
+                        17.6028204,
+                        -28.6830048
                     ],
                     [
-                        1.2350437,
-                        43.5947847
+                        17.6499732,
+                        -28.6967928
                     ],
                     [
-                        1.2350437,
-                        43.5945972
+                        17.6525928,
+                        -28.7381457
                     ],
                     [
-                        1.2239572,
-                        43.5945972
+                        17.801386,
+                        -28.7381457
                     ],
                     [
-                        1.2239357,
-                        43.5994708
+                        17.9994276,
+                        -28.7560602
                     ],
                     [
-                        1.2139708,
-                        43.599299
+                        18.0002748,
+                        -28.7956172
                     ],
                     [
-                        1.2138845,
-                        43.6046408
+                        18.1574507,
+                        -28.8718055
                     ],
                     [
-                        1.2020647,
-                        43.6044846
+                        18.5063811,
+                        -28.8718055
                     ],
                     [
-                        1.2019464,
-                        43.61048
+                        18.6153564,
+                        -28.8295875
                     ],
                     [
-                        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
+                        18.9087513,
+                        -28.8277516
                     ],
                     [
-                        1.1351836,
-                        43.6870842
+                        19.1046973,
+                        -28.9488548
                     ],
                     [
-                        1.1348907,
-                        43.6983471
+                        19.1969071,
+                        -28.9378513
                     ],
                     [
-                        1.1782867,
-                        43.6990338
+                        19.243012,
+                        -28.8516164
                     ],
                     [
-                        1.1779903,
-                        43.7102786
+                        19.2314858,
+                        -28.802963
                     ],
                     [
-                        1.1996591,
-                        43.7106144
+                        19.2587296,
+                        -28.7009928
                     ],
                     [
-                        1.1993387,
-                        43.7218722
+                        19.4431493,
+                        -28.6973163
                     ],
                     [
-                        1.2427356,
-                        43.7225269
+                        19.5500289,
+                        -28.4958332
                     ],
                     [
-                        1.2424336,
-                        43.7337491
+                        19.6967264,
+                        -28.4939914
                     ],
                     [
-                        1.2641536,
-                        43.734092
+                        19.698822,
+                        -28.4479358
                     ],
                     [
-                        1.2638301,
-                        43.7453588
+                        19.8507587,
+                        -28.4433291
                     ],
                     [
-                        1.2855285,
-                        43.7456548
+                        19.8497109,
+                        -28.4027818
                     ],
                     [
-                        1.2852481,
-                        43.756935
+                        19.9953605,
+                        -28.399095
                     ],
                     [
-                        1.306925,
-                        43.757231
+                        19.9893671,
+                        -24.7497859
                     ],
                     [
-                        1.3066446,
-                        43.7684779
+                        20.2916682,
+                        -24.9192346
                     ],
                     [
-                        1.3283431,
-                        43.7687894
+                        20.4724562,
+                        -25.1501701
                     ],
                     [
-                        1.3280842,
-                        43.780034
+                        20.6532441,
+                        -25.4529449
                     ],
                     [
-                        1.4367275,
-                        43.7815757
+                        20.733265,
+                        -25.6801957
                     ],
                     [
-                        1.4373098,
-                        43.7591004
+                        20.8281046,
+                        -25.8963498
                     ],
                     [
-                        1.4590083,
-                        43.7593653
+                        20.8429232,
+                        -26.215851
                     ],
                     [
-                        1.4593318,
-                        43.7481479
+                        20.6502804,
+                        -26.4840868
                     ],
                     [
-                        1.4810303,
-                        43.7483972
+                        20.6532441,
+                        -26.8204869
                     ],
                     [
-                        1.4813322,
-                        43.7371777
+                        21.0889134,
+                        -26.846933
                     ],
                     [
-                        1.5030307,
-                        43.7374115
+                        21.6727695,
+                        -26.8389998
                     ],
                     [
-                        1.5035915,
-                        43.7149664
+                        21.7765003,
+                        -26.6696268
                     ],
                     [
-                        1.5253115,
-                        43.7151846
+                        21.9721069,
+                        -26.6431395
                     ],
                     [
-                        1.5256135,
-                        43.7040057
+                        22.2803355,
+                        -26.3274702
                     ],
                     [
-                        1.5472688,
-                        43.7042552
+                        22.5707817,
+                        -26.1333967
                     ],
                     [
-                        1.5475708,
-                        43.6930431
+                        22.7752795,
+                        -25.6775246
                     ],
                     [
-                        1.5692045,
-                        43.6932926
+                        23.0005235,
+                        -25.2761948
                     ],
                     [
-                        1.5695712,
-                        43.6820316
+                        23.4658301,
+                        -25.2735148
                     ],
                     [
-                        1.5912049,
-                        43.6822656
+                        23.883717,
+                        -25.597366
                     ],
                     [
-                        1.5917441,
-                        43.6597998
+                        24.2364017,
+                        -25.613402
                     ],
                     [
-                        1.613421,
-                        43.6600339
+                        24.603905,
+                        -25.7896563
                     ],
                     [
-                        1.613723,
-                        43.6488291
+                        25.110704,
+                        -25.7389432
                     ],
                     [
-                        1.6353783,
-                        43.6490788
+                        25.5078447,
+                        -25.6855376
                     ],
                     [
-                        1.6384146,
-                        43.5140731
+                        25.6441766,
+                        -25.4823781
                     ],
                     [
-                        1.2921649,
-                        43.5094658
+                        25.8419267,
+                        -24.7805437
                     ],
                     [
-                        1.2918629,
-                        43.5206966
+                        25.846641,
+                        -24.7538456
                     ],
                     [
-                        1.2702076,
-                        43.5203994
+                        26.3928487,
+                        -24.6332894
                     ],
                     [
-                        1.2698841,
-                        43.5316437
+                        26.4739066,
+                        -24.5653312
                     ],
                     [
-                        1.2482288,
-                        43.531331
+                        26.5089966,
+                        -24.4842437
                     ],
                     [
-                        1.2476048,
-                        43.5537788
+                        26.5861946,
+                        -24.4075775
                     ],
                     [
-                        1.2259628,
-                        43.5534914
+                        26.7300635,
+                        -24.3014458
                     ],
                     [
-                        1.2256819,
-                        43.564716
+                        26.8567384,
+                        -24.2499463
                     ],
                     [
-                        1.2039835,
-                        43.564419
+                        26.8574402,
+                        -24.1026901
                     ],
                     [
-                        1.2033148,
-                        43.5869049
+                        26.9215471,
+                        -23.8990957
                     ],
                     [
-                        1.1816164,
-                        43.5865611
+                        26.931831,
+                        -23.8461891
                     ],
                     [
-                        1.1810237,
-                        43.6090368
+                        26.9714827,
+                        -23.6994344
                     ],
                     [
-                        1.1592821,
-                        43.6086932
+                        27.0006074,
+                        -23.6367644
                     ],
                     [
-                        1.1589585,
-                        43.6199523
+                        27.0578041,
+                        -23.6052574
                     ],
                     [
-                        1.1372601,
-                        43.6196244
+                        27.1360547,
+                        -23.5203437
                     ],
                     [
-                        1.1365933,
-                        43.642094
+                        27.3339623,
+                        -23.3973792
                     ],
                     [
-                        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
+                        27.5144057,
+                        -23.3593929
                     ],
                     [
-                        0.54585,
-                        47.4608163
+                        27.5958145,
+                        -23.2085465
                     ],
                     [
-                        0.5392188,
-                        47.4606983
+                        27.8098634,
+                        -23.0994957
                     ],
                     [
-                        0.5393484,
-                        47.456243
+                        27.8828506,
+                        -23.0620496
                     ],
                     [
-                        0.5327959,
-                        47.4561003
+                        27.9382928,
+                        -22.9496487
                     ],
                     [
-                        0.5329011,
-                        47.451565
+                        28.0407556,
+                        -22.8255118
                     ],
                     [
-                        0.52619,
-                        47.4514013
+                        28.2056786,
+                        -22.6552861
                     ],
                     [
-                        0.5265854,
-                        47.4424884
+                        28.3397223,
+                        -22.5639374
                     ],
                     [
-                        0.5000941,
-                        47.4420739
+                        28.4906093,
+                        -22.560697
                     ],
                     [
-                        0.5002357,
-                        47.4375835
+                        28.6108769,
+                        -22.5400248
                     ],
                     [
-                        0.4936014,
-                        47.4374324
+                        28.828175,
+                        -22.4550173
                     ],
                     [
-                        0.4937,
-                        47.4329285
+                        28.9285324,
+                        -22.4232328
                     ],
                     [
-                        0.4606141,
-                        47.4324593
+                        28.9594116,
+                        -22.3090081
                     ],
                     [
-                        0.4607248,
-                        47.4279827
+                        29.0162574,
+                        -22.208335
                     ],
                     [
-                        0.4541016,
-                        47.4278125
+                        29.2324117,
+                        -22.1693453
                     ],
                     [
-                        0.454932,
-                        47.4053921
+                        29.3531213,
+                        -22.1842926
                     ],
                     [
-                        0.4615431,
-                        47.4054476
+                        29.6548952,
+                        -22.1186426
                     ],
                     [
-                        0.4619097,
-                        47.3964924
+                        29.7777102,
+                        -22.1361956
                     ],
                     [
-                        0.4684346,
-                        47.3966005
+                        29.9292989,
+                        -22.1849425
                     ],
                     [
-                        0.4691319,
-                        47.3786415
+                        30.1166795,
+                        -22.2830348
                     ],
                     [
-                        0.4757125,
-                        47.3787609
+                        30.2563377,
+                        -22.2914767
                     ],
                     [
-                        0.4762116,
-                        47.3652018
+                        30.3033582,
+                        -22.3395204
                     ],
                     [
-                        0.4828297,
-                        47.3653499
+                        30.5061784,
+                        -22.3057617
                     ],
                     [
-                        0.4832223,
-                        47.3518574
+                        30.8374279,
+                        -22.284983
                     ],
                     [
-                        0.5097927,
-                        47.3522592
+                        31.0058599,
+                        -22.3077095
                     ],
                     [
-                        0.5095688,
-                        47.3567713
+                        31.1834152,
+                        -22.3232913
                     ],
                     [
-                        0.5227698,
-                        47.3569785
+                        31.2930586,
+                        -22.3674647
                     ],
                     [
-                        0.5226429,
-                        47.3614867
+                        31.5680579,
+                        -23.1903385
                     ],
                     [
-                        0.5490721,
-                        47.3618878
+                        31.5568311,
+                        -23.4430809
                     ],
                     [
-                        0.5489087,
-                        47.3663307
+                        31.6931122,
+                        -23.6175209
                     ],
                     [
-                        0.5555159,
-                        47.3664985
+                        31.7119696,
+                        -23.741136
                     ],
                     [
-                        0.5559105,
-                        47.3575522
+                        31.7774743,
+                        -23.8800628
                     ],
                     [
-                        0.6152789,
-                        47.358407
+                        31.8886337,
+                        -23.9481098
                     ],
                     [
-                        0.6152963,
-                        47.362893
+                        31.9144386,
+                        -24.1746736
                     ],
                     [
-                        0.6285093,
-                        47.3630936
+                        31.9948307,
+                        -24.3040878
                     ],
                     [
-                        0.6288256,
-                        47.353987
+                        32.0166656,
+                        -24.4405988
                     ],
                     [
-                        0.6155012,
-                        47.3538823
+                        32.0077331,
+                        -24.6536578
                     ],
                     [
-                        0.6157682,
-                        47.3493424
+                        32.019643,
+                        -24.9140701
                     ],
                     [
-                        0.6090956,
-                        47.3492991
+                        32.035523,
+                        -25.0849767
                     ],
                     [
-                        0.6094735,
-                        47.3402962
+                        32.019643,
+                        -25.3821442
                     ],
                     [
-                        0.6160477,
-                        47.3404448
+                        31.9928457,
+                        -25.4493771
                     ],
                     [
-                        0.616083,
-                        47.3369074
+                        31.9997931,
+                        -25.5165725
                     ],
                     [
-                        0.77497,
-                        47.3388218
+                        32.0057481,
+                        -25.6078978
                     ],
                     [
-                        0.7745786,
-                        47.351628
+                        32.0057481,
+                        -25.6624806
                     ],
                     [
-                        0.7680363,
-                        47.3515901
+                        31.9362735,
+                        -25.8403721
                     ],
                     [
-                        0.767589,
-                        47.3605298
+                        31.9809357,
+                        -25.9546537
                     ],
                     [
-                        0.7742443,
-                        47.3606238
+                        31.8687838,
+                        -26.0037251
                     ],
                     [
-                        0.7733465,
-                        47.3921266
+                        31.4162062,
+                        -25.7277683
                     ],
                     [
-                        0.7667434,
-                        47.3920195
+                        31.3229117,
+                        -25.7438611
                     ],
                     [
-                        0.7664411,
-                        47.4010837
+                        31.2504595,
+                        -25.8296526
                     ],
                     [
-                        0.7730647,
-                        47.4011115
+                        31.1393001,
+                        -25.9162746
                     ],
                     [
-                        0.7728868,
-                        47.4101297
+                        31.1164727,
+                        -25.9912361
                     ],
                     [
-                        0.7661849,
-                        47.4100226
+                        30.9656135,
+                        -26.2665756
                     ],
                     [
-                        0.7660267,
-                        47.4145044
+                        30.8921689,
+                        -26.3279703
                     ],
                     [
-                        0.7527613,
-                        47.4143038
+                        30.8534616,
+                        -26.4035568
                     ],
                     [
-                        0.7529788,
-                        47.4098086
+                        30.8226943,
+                        -26.4488849
                     ],
                     [
-                        0.7462373,
-                        47.4097016
+                        30.8022583,
+                        -26.5240694
                     ],
                     [
-                        0.7459424,
-                        47.4232208
+                        30.8038369,
+                        -26.8082089
                     ],
                     [
-                        0.7392324,
-                        47.4231451
+                        30.9020939,
+                        -26.7807451
                     ],
                     [
-                        0.738869,
-                        47.4366116
+                        30.9100338,
+                        -26.8489495
                     ],
                     [
-                        0.7323267,
-                        47.4365171
+                        30.9824859,
+                        -26.9082627
                     ],
                     [
-                        0.7321869,
-                        47.4410556
+                        30.976531,
+                        -27.0029222
                     ],
                     [
-                        0.7255048,
-                        47.44098
+                        31.0034434,
+                        -27.0441587
                     ],
                     [
-                        0.7254209,
-                        47.4453479
+                        31.1543322,
+                        -27.1980416
                     ],
                     [
-                        0.7318793,
-                        47.4454803
+                        31.5015607,
+                        -27.311117
                     ],
                     [
-                        0.7318514,
-                        47.4501126
+                        31.9700183,
+                        -27.311117
                     ],
                     [
-                        0.7384496,
-                        47.450226
+                        31.9700183,
+                        -27.120472
                     ],
                     [
-                        0.7383098,
-                        47.454631
+                        31.9769658,
+                        -27.050664
                     ],
                     [
-                        0.7449359,
-                        47.4547444
+                        32.0002464,
+                        -26.7983892
                     ],
                     [
-                        0.7443209,
-                        47.4771985
+                        32.1069826,
+                        -26.7984645
                     ],
                     [
-                        0.7310685,
-                        47.4769717
+                        32.3114546,
+                        -26.8479493
                     ],
                     [
-                        0.7309008,
-                        47.4815445
+                        32.899986,
+                        -26.8516059
                     ],
                     [
-                        0.7176205,
-                        47.4812611
+                        32.886091,
+                        -26.9816971
                     ],
                     [
-                        0.7177883,
-                        47.4768394
+                        32.709427,
+                        -27.4785436
                     ],
                     [
-                        0.69777,
-                        47.4764993
+                        32.6240724,
+                        -27.7775144
                     ],
                     [
-                        0.6980496,
-                        47.4719827
+                        32.5813951,
+                        -28.07479
                     ],
                     [
-                        0.6914514,
-                        47.4718882
+                        32.5387178,
+                        -28.2288046
                     ],
                     [
-                        0.6917309,
-                        47.4630241
+                        32.4275584,
+                        -28.5021568
                     ],
                     [
-                        0.6851048,
-                        47.4629295
+                        32.3640388,
+                        -28.5945699
                     ],
                     [
-                        0.684937,
-                        47.4673524
+                        32.0702603,
+                        -28.8469827
                     ],
                     [
-                        0.678255,
-                        47.4673335
+                        31.9878832,
+                        -28.9069497
                     ],
                     [
-                        0.6779754,
-                        47.4762158
+                        31.7764818,
+                        -28.969487
                     ],
                     [
-                        0.6714051,
-                        47.4761592
+                        31.4638459,
+                        -29.2859343
                     ],
                     [
-                        0.6710417,
-                        47.4881952
+                        31.359634,
+                        -29.3854348
                     ],
                     [
-                        0.6577334,
-                        47.4879685
+                        31.1680825,
+                        -29.6307408
                     ],
                     [
-                        0.6578173,
-                        47.48504
+                        31.064863,
+                        -29.7893535
                     ],
                     [
-                        0.6511911,
-                        47.4848322
+                        31.0534493,
+                        -29.8470469
                     ],
                     [
-                        0.6514707,
-                        47.4758568
+                        31.0669933,
+                        -29.8640319
                     ],
                     [
-                        0.6448166,
-                        47.4757245
+                        31.0455459,
+                        -29.9502017
                     ],
                     [
-                        0.6449284,
-                        47.4712646
+                        30.9518556,
+                        -30.0033946
                     ],
                     [
-                        0.6117976,
-                        47.4707543
+                        30.8651833,
+                        -30.1024093
                     ],
                     [
-                        0.6118815,
-                        47.4663129
+                        30.7244725,
+                        -30.392502
                     ],
                     [
-                        0.6052833,
-                        47.4661239
+                        30.3556256,
+                        -30.9308873
                     ],
                     [
-                        0.6054231,
-                        47.4616631
+                        30.0972364,
+                        -31.2458274
                     ],
                     [
-                        0.5988808,
-                        47.4615497
+                        29.8673136,
+                        -31.4304296
                     ],
                     [
-                        0.5990206,
-                        47.4570886
+                        29.7409393,
+                        -31.5014699
                     ],
                     [
-                        0.572488,
-                        47.4566916
+                        29.481312,
+                        -31.6978686
                     ],
                     [
-                        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
+                        28.8943171,
+                        -32.2898903
                     ],
                     [
-                        0.54585,
-                        47.4608163
+                        28.5497137,
+                        -32.5894641
                     ],
                     [
-                        0.5392188,
-                        47.4606983
+                        28.1436499,
+                        -32.8320732
                     ],
                     [
-                        0.5393484,
-                        47.456243
+                        28.0748735,
+                        -32.941689
                     ],
                     [
-                        0.5327959,
-                        47.4561003
+                        27.8450942,
+                        -33.082869
                     ],
                     [
-                        0.5329011,
-                        47.451565
+                        27.3757956,
+                        -33.3860685
                     ],
                     [
-                        0.52619,
-                        47.4514013
+                        26.8805407,
+                        -33.6458951
                     ],
                     [
-                        0.5265854,
-                        47.4424884
+                        26.5916871,
+                        -33.7480756
                     ],
                     [
-                        0.5000941,
-                        47.4420739
+                        26.4527308,
+                        -33.7935795
                     ],
                     [
-                        0.5002357,
-                        47.4375835
+                        26.206754,
+                        -33.7548943
                     ],
                     [
-                        0.4936014,
-                        47.4374324
+                        26.0077897,
+                        -33.7223961
                     ],
                     [
-                        0.4937,
-                        47.4329285
+                        25.8055494,
+                        -33.7524272
                     ],
                     [
-                        0.4606141,
-                        47.4324593
+                        25.7511073,
+                        -33.8006512
                     ],
                     [
-                        0.4607248,
-                        47.4279827
+                        25.6529079,
+                        -33.8543597
                     ],
                     [
-                        0.4541016,
-                        47.4278125
+                        25.6529079,
+                        -33.9469768
                     ],
                     [
-                        0.454932,
-                        47.4053921
+                        25.7195789,
+                        -34.0040115
                     ],
                     [
-                        0.4615431,
-                        47.4054476
+                        25.7202807,
+                        -34.0511235
                     ],
                     [
-                        0.4619097,
-                        47.3964924
+                        25.5508915,
+                        -34.063151
                     ],
                     [
-                        0.4684346,
-                        47.3966005
+                        25.3504571,
+                        -34.0502627
                     ],
                     [
-                        0.4691319,
-                        47.3786415
+                        25.2810609,
+                        -34.0020322
                     ],
                     [
-                        0.4757125,
-                        47.3787609
+                        25.0476316,
+                        -33.9994588
                     ],
                     [
-                        0.4762116,
-                        47.3652018
+                        24.954724,
+                        -34.0043594
                     ],
                     [
-                        0.4828297,
-                        47.3653499
+                        24.9496586,
+                        -34.1010363
                     ],
                     [
-                        0.4829611,
-                        47.3608321
+                        24.8770358,
+                        -34.1506456
                     ],
                     [
-                        0.4763543,
-                        47.360743
+                        24.8762914,
+                        -34.2005281
                     ],
                     [
-                        0.476654,
-                        47.3517263
+                        24.8532574,
+                        -34.2189562
                     ],
                     [
-                        0.4700497,
-                        47.3516186
+                        24.7645287,
+                        -34.2017946
                     ],
                     [
-                        0.4701971,
-                        47.3471313
+                        24.5001356,
+                        -34.2003254
                     ],
                     [
-                        0.4637503,
-                        47.3470104
+                        24.3486733,
+                        -34.1163824
                     ],
                     [
-                        0.4571425,
-                        47.3424146
+                        24.1988819,
+                        -34.1019039
                     ],
                     [
-                        0.4572922,
-                        47.3379061
+                        23.9963377,
+                        -34.0514443
                     ],
                     [
-                        0.4506741,
-                        47.3378081
+                        23.8017509,
+                        -34.0524332
                     ],
                     [
-                        0.4508379,
-                        47.3333051
+                        23.7493589,
+                        -34.0111855
                     ],
                     [
-                        0.4442212,
-                        47.3332032
+                        23.4973536,
+                        -34.009014
                     ],
                     [
-                        0.4443809,
-                        47.328711
+                        23.4155191,
+                        -34.0434586
                     ],
                     [
-                        0.4311392,
-                        47.3284977
+                        23.4154284,
+                        -34.1140433
                     ],
                     [
-                        0.4316262,
-                        47.3150004
+                        22.9000853,
+                        -34.0993009
                     ],
                     [
-                        0.4382432,
-                        47.3151136
+                        22.8412418,
+                        -34.0547911
                     ],
                     [
-                        0.4383815,
-                        47.3106174
+                        22.6470321,
+                        -34.0502627
                     ],
                     [
-                        0.4714487,
-                        47.3111374
+                        22.6459843,
+                        -34.0072768
                     ],
                     [
-                        0.4713096,
-                        47.3156565
+                        22.570016,
+                        -34.0064081
                     ],
                     [
-                        0.477888,
-                        47.3157542
+                        22.5050499,
+                        -34.0645866
                     ],
                     [
-                        0.4780733,
-                        47.3112802
+                        22.2519968,
+                        -34.0645866
                     ],
                     [
-                        0.4846826,
-                        47.3113639
+                        22.2221334,
+                        -34.1014701
                     ],
                     [
-                        0.4848576,
-                        47.3068686
+                        22.1621197,
+                        -34.1057019
                     ],
                     [
-                        0.4914359,
-                        47.3069803
+                        22.1712431,
+                        -34.1521766
                     ],
                     [
-                        0.491745,
-                        47.2979733
+                        22.1576913,
+                        -34.2180897
                     ],
                     [
-                        0.4851578,
-                        47.2978722
+                        22.0015632,
+                        -34.2172232
                     ],
                     [
-                        0.4854269,
-                        47.2888744
+                        21.9496952,
+                        -34.3220009
                     ],
                     [
-                        0.4788485,
-                        47.2887697
+                        21.8611528,
+                        -34.4007145
                     ],
                     [
-                        0.4791574,
-                        47.2797818
+                        21.5614708,
+                        -34.4020114
                     ],
                     [
-                        0.4857769,
-                        47.2799005
+                        21.5468011,
+                        -34.3661242
                     ],
                     [
-                        0.4859107,
-                        47.2753885
+                        21.501744,
+                        -34.3669892
                     ],
                     [
-                        0.492539,
-                        47.2755029
+                        21.5006961,
+                        -34.4020114
                     ],
                     [
-                        0.4926669,
-                        47.2710127
+                        21.4194886,
+                        -34.4465247
                     ],
                     [
-                        0.4992986,
-                        47.2711066
+                        21.1978706,
+                        -34.4478208
                     ],
                     [
-                        0.4994296,
-                        47.2666116
+                        21.0988193,
+                        -34.3991325
                     ],
                     [
-                        0.5192658,
-                        47.2669245
+                        21.0033746,
+                        -34.3753872
                     ],
                     [
-                        0.5194225,
-                        47.2624231
+                        20.893192,
+                        -34.3997115
                     ],
                     [
-                        0.5260186,
-                        47.2625205
+                        20.8976647,
+                        -34.4854003
                     ],
                     [
-                        0.5258735,
-                        47.2670183
+                        20.7446802,
+                        -34.4828092
                     ],
                     [
-                        0.5456972,
-                        47.2673383
+                        20.5042011,
+                        -34.486264
                     ],
                     [
-                        0.5455537,
-                        47.2718283
+                        20.2527197,
+                        -34.701477
                     ],
                     [
-                        0.5587737,
-                        47.2720366
+                        20.0803502,
+                        -34.8361855
                     ],
                     [
-                        0.5586259,
-                        47.2765185
+                        19.9923317,
+                        -34.8379056
                     ],
                     [
-                        0.5652252,
-                        47.2766278
+                        19.899074,
+                        -34.8275845
                     ],
                     [
-                        0.5650848,
-                        47.2811206
+                        19.8938348,
+                        -34.7936018
                     ],
                     [
-                        0.5716753,
-                        47.2812285
+                        19.5972963,
+                        -34.7961833
                     ],
                     [
-                        0.5715223,
-                        47.2857217
+                        19.3929677,
+                        -34.642015
                     ],
                     [
-                        0.5781436,
-                        47.2858299
+                        19.2877095,
+                        -34.6404784
                     ],
                     [
-                        0.5779914,
-                        47.2903294
+                        19.2861377,
+                        -34.5986563
                     ],
                     [
-                        0.5846023,
-                        47.2904263
+                        19.3474363,
+                        -34.5244458
                     ],
                     [
-                        0.5843076,
-                        47.2994231
+                        19.3285256,
+                        -34.4534372
                     ],
                     [
-                        0.597499,
-                        47.2996094
+                        19.098001,
+                        -34.449981
                     ],
                     [
-                        0.5976637,
-                        47.2951375
+                        19.0725583,
+                        -34.3802371
                     ],
                     [
-                        0.6571596,
-                        47.2960036
+                        19.0023531,
+                        -34.3525593
                     ],
                     [
-                        0.6572988,
-                        47.2915091
+                        18.9520568,
+                        -34.3949373
                     ],
                     [
-                        0.6705019,
-                        47.2917186
+                        18.7975006,
+                        -34.3936403
                     ],
                     [
-                        0.6703475,
-                        47.2962082
+                        18.7984174,
+                        -34.1016376
                     ],
                     [
-                        0.6836175,
-                        47.2963688
+                        18.501748,
+                        -34.1015292
                     ],
                     [
-                        0.6834322,
-                        47.3008929
+                        18.4999545,
+                        -34.3616945
                     ],
                     [
-                        0.690062,
-                        47.3009558
+                        18.4477325,
+                        -34.3620007
                     ],
                     [
-                        0.6899241,
-                        47.3054703
+                        18.4479944,
+                        -34.3522691
                     ],
                     [
-                        0.7362019,
-                        47.3061157
+                        18.3974362,
+                        -34.3514041
                     ],
                     [
-                        0.7360848,
-                        47.3106063
+                        18.3971742,
+                        -34.3022959
                     ],
                     [
-                        0.7559022,
-                        47.3108935
+                        18.3565705,
+                        -34.3005647
                     ],
                     [
-                        0.7557718,
-                        47.315392
+                        18.3479258,
+                        -34.2020436
                     ],
                     [
-                        0.7623755,
-                        47.3154716
+                        18.2972095,
+                        -34.1950274
                     ],
                     [
-                        0.7622314,
-                        47.3199941
+                        18.2951139,
+                        -33.9937138
                     ],
                     [
-                        0.7754911,
-                        47.3201546
+                        18.3374474,
+                        -33.9914079
                     ],
                     [
-                        0.77497,
-                        47.3388218
+                        18.3476638,
+                        -33.8492427
                     ],
                     [
-                        0.7745786,
-                        47.351628
+                        18.3479258,
+                        -33.781555
                     ],
                     [
-                        0.7680363,
-                        47.3515901
+                        18.4124718,
+                        -33.7448849
                     ],
                     [
-                        0.767589,
-                        47.3605298
+                        18.3615477,
+                        -33.6501624
                     ],
                     [
-                        0.7742443,
-                        47.3606238
+                        18.2992013,
+                        -33.585591
                     ],
                     [
-                        0.7733465,
-                        47.3921266
+                        18.2166839,
+                        -33.448872
                     ],
                     [
-                        0.7667434,
-                        47.3920195
+                        18.1389858,
+                        -33.3974083
                     ],
                     [
-                        0.7664411,
-                        47.4010837
+                        17.9473472,
+                        -33.1602647
                     ],
                     [
-                        0.7730647,
-                        47.4011115
+                        17.8855247,
+                        -33.0575732
                     ],
                     [
-                        0.7728868,
-                        47.4101297
+                        17.8485884,
+                        -32.9668505
                     ],
                     [
-                        0.7661849,
-                        47.4100226
+                        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
                     ],
                     [
-                        0.7660267,
-                        47.4145044
+                        10.373383,
+                        47.098175
                     ],
                     [
-                        0.7527613,
-                        47.4143038
+                        12.482758,
+                        47.098175
                     ],
                     [
-                        0.7529788,
-                        47.4098086
+                        12.482758,
+                        46.213553
                     ],
                     [
-                        0.7462373,
-                        47.4097016
+                        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
                     ],
                     [
-                        0.7459424,
-                        47.4232208
+                        10.373383,
+                        47.098175
                     ],
                     [
-                        0.7392324,
-                        47.4231451
+                        12.482758,
+                        47.098175
                     ],
                     [
-                        0.738869,
-                        47.4366116
+                        12.482758,
+                        46.213553
                     ],
                     [
-                        0.7323267,
-                        47.4365171
+                        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
                     ],
                     [
-                        0.7321869,
-                        47.4410556
+                        8.6,
+                        47.39
                     ],
                     [
-                        0.7255048,
-                        47.44098
+                        8.77,
+                        47.39
                     ],
                     [
-                        0.7254209,
-                        47.4453479
+                        8.77,
+                        47.31
                     ],
                     [
-                        0.7318793,
-                        47.4454803
+                        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": [
+                [
+                    [
+                        8.4441,
+                        47.3141
                     ],
                     [
-                        0.7318514,
-                        47.4501126
+                        8.4441,
+                        47.4411
                     ],
                     [
-                        0.7384496,
-                        47.450226
+                        8.6284,
+                        47.4411
                     ],
                     [
-                        0.7383098,
-                        47.454631
+                        8.6284,
+                        47.3141
                     ],
                     [
-                        0.7449359,
-                        47.4547444
+                        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": [
+                [
+                    [
+                        12.0913942,
+                        55.3491574
                     ],
                     [
-                        0.7443209,
-                        47.4771985
+                        12.0943104,
+                        55.3842256
                     ],
                     [
-                        0.7310685,
-                        47.4769717
+                        12.1573875,
+                        55.3833103
                     ],
                     [
-                        0.7309008,
-                        47.4815445
+                        12.1587287,
+                        55.4013326
                     ],
                     [
-                        0.7176205,
-                        47.4812611
+                        12.1903468,
+                        55.400558
                     ],
                     [
-                        0.7177883,
-                        47.4768394
+                        12.1931411,
+                        55.4364665
                     ],
                     [
-                        0.69777,
-                        47.4764993
+                        12.2564251,
+                        55.4347995
                     ],
                     [
-                        0.6980496,
-                        47.4719827
+                        12.2547073,
+                        55.4168882
                     ],
                     [
-                        0.6914514,
-                        47.4718882
+                        12.3822489,
+                        55.4134349
                     ],
                     [
-                        0.6917309,
-                        47.4630241
+                        12.3795942,
+                        55.3954143
                     ],
                     [
-                        0.6851048,
-                        47.4629295
+                        12.4109213,
+                        55.3946958
                     ],
                     [
-                        0.684937,
-                        47.4673524
+                        12.409403,
+                        55.3766417
                     ],
                     [
-                        0.678255,
-                        47.4673335
+                        12.4407807,
+                        55.375779
                     ],
                     [
-                        0.6779754,
-                        47.4762158
+                        12.4394142,
+                        55.3578314
                     ],
                     [
-                        0.6714051,
-                        47.4761592
+                        12.4707413,
+                        55.3569971
                     ],
                     [
-                        0.6710417,
-                        47.4881952
+                        12.4629475,
+                        55.2672214
                     ],
                     [
-                        0.6577334,
-                        47.4879685
+                        12.4315633,
+                        55.2681491
                     ],
                     [
-                        0.6578173,
-                        47.48504
+                        12.430045,
+                        55.2502103
                     ],
                     [
-                        0.6511911,
-                        47.4848322
+                        12.3672011,
+                        55.2519673
                     ],
                     [
-                        0.6514707,
-                        47.4758568
+                        12.3656858,
+                        55.2340267
                     ],
                     [
-                        0.6448166,
-                        47.4757245
+                        12.2714604,
+                        55.2366031
                     ],
                     [
-                        0.6449284,
-                        47.4712646
+                        12.2744467,
+                        55.272476
                     ],
                     [
-                        0.6117976,
-                        47.4707543
+                        12.2115654,
+                        55.2741475
                     ],
                     [
-                        0.6118815,
-                        47.4663129
+                        12.2130078,
+                        55.2920322
                     ],
                     [
-                        0.6052833,
-                        47.4661239
+                        12.1815665,
+                        55.2928638
                     ],
                     [
-                        0.6054231,
-                        47.4616631
+                        12.183141,
+                        55.3107091
                     ],
                     [
-                        0.5988808,
-                        47.4615497
+                        12.2144897,
+                        55.3100981
                     ],
                     [
-                        0.5990206,
-                        47.4570886
+                        12.2159927,
+                        55.3279764
                     ],
                     [
-                        0.572488,
-                        47.4566916
+                        12.1214458,
+                        55.3303379
                     ],
                     [
-                        0.5721805,
-                        47.4656513
+                        12.1229489,
+                        55.3483291
                     ]
                 ]
             ],
-            "terms_url": "http://wiki.openstreetmap.org/wiki/Tours/Orthophoto",
-            "terms_text": "Orthophoto Tour(s) Plus 2008"
+            "terms_text": "Stevns Kommune"
         },
         {
-            "name": "USGS Large Scale Imagery",
+            "name": "Surrey Air Survey",
             "type": "tms",
-            "template": "http://{switch:a,b,c}.tile.openstreetmap.us/usgs_large_scale/{zoom}/{x}/{y}.jpg",
+            "template": "http://gravitystorm.dev.openstreetmap.org/surrey/{zoom}/{x}/{y}.png",
             "scaleExtent": [
-                12,
-                20
+                8,
+                19
             ],
             "polygon": [
                 [
                     [
-                        -123.2549305,
-                        48.7529029
+                        -0.752478,
+                        51.0821941
                     ],
                     [
-                        -123.2549305,
-                        48.5592263
+                        -0.7595183,
+                        51.0856254
                     ],
                     [
-                        -123.192224,
-                        48.5592263
+                        -0.8014342,
+                        51.1457917
                     ],
                     [
-                        -123.192224,
-                        48.4348366
+                        -0.8398864,
+                        51.1440686
                     ],
                     [
-                        -122.9419646,
-                        48.4348366
+                        -0.8357665,
+                        51.1802397
                     ],
                     [
-                        -122.9419646,
-                        48.3720812
+                        -0.8529549,
+                        51.2011266
                     ],
                     [
-                        -122.8806229,
-                        48.3720812
+                        -0.8522683,
+                        51.2096231
                     ],
                     [
-                        -122.8806229,
-                        48.3094763
+                        -0.8495217,
+                        51.217903
                     ],
                     [
-                        -122.8167566,
-                        48.3094763
+                        -0.8266907,
+                        51.2403696
                     ],
                     [
-                        -122.8167566,
-                        48.1904587
+                        -0.8120995,
+                        51.2469248
                     ],
                     [
-                        -123.0041133,
-                        48.1904587
+                        -0.7736474,
+                        51.2459577
                     ],
                     [
-                        -123.0041133,
-                        48.1275918
+                        -0.7544213,
+                        51.2381127
                     ],
                     [
-                        -123.058416,
-                        48.1275918
+                        -0.754078,
+                        51.233921
                     ],
                     [
-                        -123.058416,
-                        48.190514
+                        -0.7446366,
+                        51.2333836
                     ],
                     [
-                        -123.254113,
-                        48.190514
+                        -0.7430693,
+                        51.2847178
                     ],
                     [
-                        -123.254113,
-                        48.1274982
+                        -0.751503,
+                        51.3069524
                     ],
                     [
-                        -123.3706593,
-                        48.1274982
+                        -0.7664376,
+                        51.3121032
                     ],
                     [
-                        -123.3706593,
-                        48.1908403
+                        -0.7820588,
+                        51.3270157
                     ],
                     [
-                        -124.0582632,
-                        48.1908403
+                        -0.7815438,
+                        51.3388135
                     ],
                     [
-                        -124.0582632,
-                        48.253442
+                        -0.7374268,
+                        51.3720456
                     ],
                     [
-                        -124.1815163,
-                        48.253442
+                        -0.7192307,
+                        51.3769748
                     ],
                     [
-                        -124.1815163,
-                        48.3164666
+                        -0.6795769,
+                        51.3847961
                     ],
                     [
-                        -124.4319117,
-                        48.3164666
+                        -0.6807786,
+                        51.3901523
                     ],
                     [
-                        -124.4319117,
-                        48.3782613
+                        -0.6531411,
+                        51.3917591
                     ],
                     [
-                        -124.5564618,
-                        48.3782613
+                        -0.6301385,
+                        51.3905808
                     ],
                     [
-                        -124.5564618,
-                        48.4408305
+                        -0.6291085,
+                        51.3970074
                     ],
                     [
-                        -124.7555107,
-                        48.4408305
+                        -0.6234437,
+                        51.3977572
                     ],
                     [
-                        -124.7555107,
-                        48.1914986
+                        -0.613144,
+                        51.4295552
                     ],
                     [
-                        -124.8185282,
-                        48.1914986
+                        -0.6002471,
+                        51.4459121
                     ],
                     [
-                        -124.8185282,
-                        48.1228381
+                        -0.5867081,
+                        51.4445365
                     ],
                     [
-                        -124.7552951,
-                        48.1228381
+                        -0.5762368,
+                        51.453202
                     ],
                     [
-                        -124.7552951,
-                        47.5535253
+                        -0.5626755,
+                        51.4523462
                     ],
                     [
-                        -124.3812108,
-                        47.5535253
+                        -0.547741,
+                        51.4469972
                     ],
                     [
-                        -124.3812108,
-                        47.1218696
+                        -0.5372697,
+                        51.4448575
                     ],
                     [
-                        -124.1928897,
-                        47.1218696
+                        -0.537098,
+                        51.4526671
                     ],
                     [
-                        -124.1928897,
-                        43.7569431
+                        -0.5439644,
+                        51.4545926
                     ],
                     [
-                        -124.4443382,
-                        43.7569431
+                        -0.5405312,
+                        51.4698865
                     ],
                     [
-                        -124.4443382,
-                        43.1425556
+                        -0.5309182,
+                        51.4760881
                     ],
                     [
-                        -124.6398855,
-                        43.1425556
+                        -0.5091172,
+                        51.4744843
                     ],
                     [
-                        -124.6398855,
-                        42.6194503
+                        -0.5086022,
+                        51.4695657
                     ],
                     [
-                        -124.4438525,
-                        42.6194503
+                        -0.4900628,
+                        51.4682825
                     ],
                     [
-                        -124.4438525,
-                        39.8080662
+                        -0.4526406,
+                        51.4606894
                     ],
                     [
-                        -123.8815685,
-                        39.8080662
+                        -0.4486924,
+                        51.4429316
                     ],
                     [
-                        -123.8815685,
-                        39.1102825
+                        -0.4414826,
+                        51.4418616
                     ],
                     [
-                        -123.75805,
-                        39.1102825
+                        -0.4418259,
+                        51.4369394
                     ],
                     [
-                        -123.75805,
-                        38.4968799
+                        -0.4112702,
+                        51.4380095
                     ],
                     [
-                        -123.2702803,
-                        38.4968799
+                        -0.4014855,
+                        51.4279498
                     ],
                     [
-                        -123.2702803,
-                        37.9331905
+                        -0.3807145,
+                        51.4262372
                     ],
                     [
-                        -122.8148084,
-                        37.9331905
+                        -0.3805428,
+                        51.4161749
                     ],
                     [
-                        -122.8148084,
-                        37.8019606
+                        -0.3491288,
+                        51.4138195
                     ],
                     [
-                        -122.5664316,
-                        37.8019606
+                        -0.3274994,
+                        51.4037544
                     ],
                     [
-                        -122.5664316,
-                        36.9319611
+                        -0.3039818,
+                        51.3990424
                     ],
                     [
-                        -121.8784026,
-                        36.9319611
+                        -0.3019219,
+                        51.3754747
                     ],
                     [
-                        -121.8784026,
-                        36.6897596
+                        -0.309475,
+                        51.369688
                     ],
                     [
-                        -122.0034748,
-                        36.6897596
+                        -0.3111916,
+                        51.3529669
                     ],
                     [
-                        -122.0034748,
-                        36.4341056
+                        -0.2955704,
+                        51.3541462
                     ],
                     [
-                        -121.9414159,
-                        36.4341056
+                        -0.2923089,
+                        51.3673303
                     ],
                     [
-                        -121.9414159,
-                        35.9297636
+                        -0.2850991,
+                        51.3680805
                     ],
                     [
-                        -121.5040977,
-                        35.9297636
+                        -0.2787476,
+                        51.3771891
                     ],
                     [
-                        -121.5040977,
-                        35.8100273
+                        -0.2655297,
+                        51.3837247
                     ],
                     [
-                        -121.3790276,
-                        35.8100273
+                        -0.2411538,
+                        51.3847961
                     ],
                     [
-                        -121.3790276,
-                        35.4239164
+                        -0.2123147,
+                        51.3628288
                     ],
                     [
-                        -120.9426515,
-                        35.4239164
+                        -0.2107697,
+                        51.3498578
                     ],
                     [
-                        -120.9426515,
-                        35.1849683
+                        -0.190857,
+                        51.3502867
                     ],
                     [
-                        -120.8171978,
-                        35.1849683
+                        -0.1542931,
+                        51.3338802
                     ],
                     [
-                        -120.8171978,
-                        35.1219894
+                        -0.1496583,
+                        51.3057719
                     ],
                     [
-                        -120.6918447,
-                        35.1219894
+                        -0.1074296,
+                        51.2966491
                     ],
                     [
-                        -120.6918447,
-                        34.4966794
+                        -0.0887185,
+                        51.3099571
                     ],
                     [
-                        -120.5045898,
-                        34.4966794
+                        -0.0878602,
+                        51.3220811
                     ],
                     [
-                        -120.5045898,
-                        34.4339651
+                        -0.0652009,
+                        51.3215448
                     ],
                     [
-                        -120.0078775,
-                        34.4339651
+                        -0.0641709,
+                        51.3264793
                     ],
                     [
-                        -120.0078775,
-                        34.3682626
+                        -0.0519829,
+                        51.3263721
                     ],
                     [
-                        -119.5283517,
-                        34.3682626
+                        -0.0528412,
+                        51.334631
                     ],
                     [
-                        -119.5283517,
-                        34.0576434
+                        -0.0330779,
+                        51.3430876
                     ],
                     [
-                        -119.0060985,
-                        34.0576434
+                        0.0019187,
+                        51.3376339
                     ],
                     [
-                        -119.0060985,
-                        33.9975267
+                        0.0118751,
+                        51.3281956
                     ],
                     [
-                        -118.5046259,
-                        33.9975267
+                        0.013935,
+                        51.2994398
                     ],
                     [
-                        -118.5046259,
-                        33.8694631
+                        0.0202865,
+                        51.2994398
                     ],
                     [
-                        -118.4413209,
-                        33.8694631
+                        0.0240631,
+                        51.3072743
                     ],
                     [
-                        -118.4413209,
-                        33.6865253
+                        0.0331611,
+                        51.3086694
                     ],
                     [
-                        -118.066912,
-                        33.6865253
+                        0.0455207,
+                        51.30545
                     ],
                     [
-                        -118.066912,
-                        33.3063832
+                        0.0523872,
+                        51.2877392
                     ],
                     [
-                        -117.5030045,
-                        33.3063832
+                        0.0616569,
+                        51.2577764
                     ],
                     [
-                        -117.5030045,
-                        33.0500337
+                        0.0640602,
+                        51.2415518
                     ],
                     [
-                        -117.3188195,
-                        33.0500337
+                        0.0462074,
+                        51.2126342
                     ],
                     [
-                        -117.3188195,
-                        32.6205888
+                        0.0407142,
+                        51.2109136
                     ],
                     [
-                        -117.1917023,
-                        32.6205888
+                        0.0448341,
+                        51.1989753
                     ],
                     [
-                        -117.1917023,
-                        32.4974566
+                        0.0494689,
+                        51.1997283
                     ],
                     [
-                        -116.746496,
-                        32.4974566
+                        0.0558204,
+                        51.1944573
                     ],
                     [
-                        -116.746496,
-                        32.5609161
+                        0.0611419,
+                        51.1790713
                     ],
                     [
-                        -115.9970138,
-                        32.5609161
+                        0.0623435,
+                        51.1542061
                     ],
                     [
-                        -115.9970138,
-                        32.6264942
+                        0.0577087,
+                        51.1417146
                     ],
                     [
-                        -114.8808125,
-                        32.6264942
+                        0.0204582,
+                        51.1365447
                     ],
                     [
-                        -114.8808125,
-                        32.4340796
+                        -0.0446015,
+                        51.1336364
                     ],
                     [
-                        -114.6294474,
-                        32.4340796
+                        -0.1566964,
+                        51.1352522
                     ],
                     [
-                        -114.6294474,
-                        32.3731636
+                        -0.1572114,
+                        51.1290043
                     ],
                     [
-                        -114.4447437,
-                        32.3731636
+                        -0.2287942,
+                        51.1183379
                     ],
                     [
-                        -114.4447437,
-                        32.3075418
+                        -0.2473336,
+                        51.1183379
                     ],
                     [
-                        -114.2557628,
-                        32.3075418
+                        -0.2500802,
+                        51.1211394
                     ],
                     [
-                        -114.2557628,
-                        32.2444561
+                        -0.299347,
+                        51.1137042
                     ],
                     [
-                        -114.0680274,
-                        32.2444561
+                        -0.3221779,
+                        51.1119799
                     ],
                     [
-                        -114.0680274,
-                        32.1829113
+                        -0.3223496,
+                        51.1058367
                     ],
                     [
-                        -113.8166499,
-                        32.1829113
+                        -0.3596001,
+                        51.1019563
                     ],
                     [
-                        -113.8166499,
-                        32.1207622
+                        -0.3589135,
+                        51.1113333
                     ],
                     [
-                        -113.6307421,
-                        32.1207622
+                        -0.3863793,
+                        51.1117644
                     ],
                     [
-                        -113.6307421,
-                        32.0565099
+                        -0.3869014,
+                        51.1062516
                     ],
                     [
-                        -113.4417495,
-                        32.0565099
+                        -0.4281001,
+                        51.0947174
                     ],
                     [
-                        -113.4417495,
-                        31.9984372
+                        -0.4856784,
+                        51.0951554
                     ],
                     [
-                        -113.2546027,
-                        31.9984372
+                        -0.487135,
+                        51.0872266
                     ],
                     [
-                        -113.2546027,
-                        31.9325434
+                        -0.5297404,
+                        51.0865404
                     ],
                     [
-                        -113.068072,
-                        31.9325434
+                        -0.5302259,
+                        51.0789914
                     ],
                     [
-                        -113.068072,
-                        31.8718062
+                        -0.61046,
+                        51.076551
                     ],
                     [
-                        -112.8161105,
-                        31.8718062
+                        -0.6099745,
+                        51.080669
                     ],
                     [
-                        -112.8161105,
-                        31.8104171
+                        -0.6577994,
+                        51.0792202
                     ],
                     [
-                        -112.6308756,
-                        31.8104171
+                        -0.6582849,
+                        51.0743394
                     ],
                     [
-                        -112.6308756,
-                        31.7464723
+                        -0.6836539,
+                        51.0707547
                     ],
                     [
-                        -112.4418918,
-                        31.7464723
+                        -0.6997979,
+                        51.070831
                     ],
                     [
-                        -112.4418918,
-                        31.6856001
+                        -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
                     ],
                     [
-                        -112.257192,
-                        31.6856001
+                        1.2015377,
+                        43.6329729
                     ],
                     [
-                        -112.257192,
-                        31.6210352
+                        1.2011107,
+                        43.6554932
                     ],
                     [
-                        -112.0033787,
-                        31.6210352
+                        1.2227985,
+                        43.6557029
                     ],
                     [
-                        -112.0033787,
-                        31.559584
+                        1.2226231,
+                        43.6653353
                     ],
                     [
-                        -111.815619,
-                        31.559584
+                        1.2275341,
+                        43.6653849
                     ],
                     [
-                        -111.815619,
-                        31.4970238
+                        1.2275417,
+                        43.6656387
                     ],
                     [
-                        -111.6278586,
-                        31.4970238
+                        1.2337568,
+                        43.6656883
                     ],
                     [
-                        -111.6278586,
-                        31.4339867
+                        1.2337644,
+                        43.6650153
                     ],
                     [
-                        -111.4418978,
-                        31.4339867
+                        1.2351218,
+                        43.6650319
                     ],
                     [
-                        -111.4418978,
-                        31.3733859
+                        1.2350913,
+                        43.6670729
                     ],
                     [
-                        -111.2559708,
-                        31.3733859
+                        1.2443566,
+                        43.6671556
                     ],
                     [
-                        -111.2559708,
-                        31.3113225
+                        1.2441584,
+                        43.6743925
                     ],
                     [
-                        -108.1845822,
-                        31.3113225
+                        1.2493973,
+                        43.6744256
                     ],
                     [
-                        -108.1845822,
-                        31.7459502
+                        1.2493973,
+                        43.6746628
                     ],
                     [
-                        -106.5065055,
-                        31.7459502
+                        1.2555666,
+                        43.6747234
                     ],
                     [
-                        -106.5065055,
-                        31.6842308
+                        1.2555742,
+                        43.6744532
                     ],
                     [
-                        -106.3797265,
-                        31.6842308
+                        1.2569545,
+                        43.6744697
                     ],
                     [
-                        -106.3797265,
-                        31.621752
+                        1.2568782,
+                        43.678529
                     ],
                     [
-                        -106.317434,
-                        31.621752
+                        1.2874873,
+                        43.6788257
                     ],
                     [
-                        -106.317434,
-                        31.4968167
+                        1.2870803,
+                        43.7013229
                     ],
                     [
-                        -106.2551769,
-                        31.4968167
+                        1.3088219,
+                        43.7014632
                     ],
                     [
-                        -106.2551769,
-                        31.4344889
+                        1.3086493,
+                        43.7127673
                     ],
                     [
-                        -106.1924698,
-                        31.4344889
+                        1.3303262,
+                        43.7129544
                     ],
                     [
-                        -106.1924698,
-                        31.3721296
+                        1.3300242,
+                        43.7305221
                     ],
                     [
-                        -106.0039212,
-                        31.3721296
+                        1.3367106,
+                        43.7305845
                     ],
                     [
-                        -106.0039212,
-                        31.309328
+                        1.3367322,
+                        43.7312235
                     ],
                     [
-                        -105.9416582,
-                        31.309328
+                        1.3734338,
+                        43.7310456
                     ],
                     [
-                        -105.9416582,
-                        31.2457547
+                        1.3735848,
+                        43.7245772
                     ],
                     [
-                        -105.8798174,
-                        31.2457547
+                        1.4604504,
+                        43.7252947
                     ],
                     [
-                        -105.8798174,
-                        31.1836194
+                        1.4607783,
+                        43.7028034
                     ],
                     [
-                        -105.8162349,
-                        31.1836194
+                        1.4824875,
+                        43.7029516
                     ],
                     [
-                        -105.8162349,
-                        31.1207155
+                        1.4829828,
+                        43.6692071
                     ],
                     [
-                        -105.6921198,
-                        31.1207155
+                        1.5046832,
+                        43.6693616
                     ],
                     [
-                        -105.6921198,
-                        31.0584835
+                        1.5048383,
+                        43.6581174
                     ],
                     [
-                        -105.6302881,
-                        31.0584835
+                        1.5265475,
+                        43.6582656
                     ],
                     [
-                        -105.6302881,
-                        30.9328271
+                        1.5266945,
+                        43.6470298
                     ],
                     [
-                        -105.5044418,
-                        30.9328271
+                        1.548368,
+                        43.6471633
                     ],
                     [
-                        -105.5044418,
-                        30.8715864
+                        1.5485357,
+                        43.6359385
                     ],
                     [
-                        -105.4412973,
-                        30.8715864
+                        1.5702172,
+                        43.636082
                     ],
                     [
-                        -105.4412973,
-                        30.808463
+                        1.5705123,
+                        43.6135777
                     ],
                     [
-                        -105.3781497,
-                        30.808463
+                        1.5488166,
+                        43.6134276
                     ],
                     [
-                        -105.3781497,
-                        30.7471828
+                        1.549097,
+                        43.5909479
                     ],
                     [
-                        -105.1904658,
-                        30.7471828
+                        1.5707695,
+                        43.5910694
                     ],
                     [
-                        -105.1904658,
-                        30.6843231
+                        1.5709373,
+                        43.5798341
                     ],
                     [
-                        -105.1286244,
-                        30.6843231
+                        1.5793714,
+                        43.5798894
                     ],
                     [
-                        -105.1286244,
-                        30.6199737
+                        1.5794782,
+                        43.5737682
                     ],
                     [
-                        -105.0036504,
-                        30.6199737
+                        1.5809119,
+                        43.5737792
                     ],
                     [
-                        -105.0036504,
-                        30.5589058
+                        1.5810859,
+                        43.5573794
                     ],
                     [
-                        -104.9417962,
-                        30.5589058
+                        1.5712334,
+                        43.5573131
                     ],
                     [
-                        -104.9417962,
-                        30.4963236
+                        1.5716504,
+                        43.5235497
                     ],
                     [
-                        -104.8782018,
-                        30.4963236
+                        1.3984804,
+                        43.5222618
                     ],
                     [
-                        -104.8782018,
-                        30.3098261
+                        1.3986509,
+                        43.5110113
                     ],
                     [
-                        -104.8155257,
-                        30.3098261
+                        1.3120959,
+                        43.5102543
                     ],
                     [
-                        -104.8155257,
-                        30.2478305
+                        1.3118968,
+                        43.5215192
                     ],
                     [
-                        -104.7536079,
-                        30.2478305
+                        1.2902569,
+                        43.5213126
                     ],
                     [
-                        -104.7536079,
-                        29.9353916
+                        1.2898637,
+                        43.5438168
                     ],
                     [
-                        -104.690949,
-                        29.9353916
+                        1.311517,
+                        43.5440133
                     ],
                     [
-                        -104.690949,
-                        29.8090156
+                        1.3113271,
+                        43.5552596
                     ],
                     [
-                        -104.6291301,
-                        29.8090156
+                        1.3036924,
+                        43.5551924
                     ],
                     [
-                        -104.6291301,
-                        29.6843577
+                        1.3036117,
+                        43.5595099
                     ],
                     [
-                        -104.5659869,
-                        29.6843577
+                        1.2955449,
+                        43.5594317
                     ],
                     [
-                        -104.5659869,
-                        29.6223459
+                        1.2955449,
+                        43.5595489
                     ],
                     [
-                        -104.5037188,
-                        29.6223459
+                        1.2895595,
+                        43.5594473
                     ],
                     [
-                        -104.5037188,
-                        29.5595436
+                        1.2892899,
+                        43.5775366
                     ],
                     [
-                        -104.4410072,
-                        29.5595436
+                        1.2675698,
+                        43.5773647
                     ],
                     [
-                        -104.4410072,
-                        29.4974832
+                        1.2673973,
+                        43.5886141
                     ],
                     [
-                        -104.2537551,
-                        29.4974832
+                        1.25355,
+                        43.5885047
                     ],
                     [
-                        -104.2537551,
-                        29.3716718
+                        1.2533774,
+                        43.5956282
                     ],
                     [
-                        -104.1291984,
-                        29.3716718
+                        1.2518029,
+                        43.5956282
                     ],
                     [
-                        -104.1291984,
-                        29.3091621
+                        1.2518029,
+                        43.5949409
                     ],
                     [
-                        -104.0688737,
-                        29.3091621
+                        1.2350437,
+                        43.5947847
                     ],
                     [
-                        -104.0688737,
-                        29.2467276
+                        1.2350437,
+                        43.5945972
                     ],
                     [
-                        -103.8187309,
-                        29.2467276
+                        1.2239572,
+                        43.5945972
                     ],
                     [
-                        -103.8187309,
-                        29.1843076
+                        1.2239357,
+                        43.5994708
                     ],
                     [
-                        -103.755736,
-                        29.1843076
+                        1.2139708,
+                        43.599299
                     ],
                     [
-                        -103.755736,
-                        29.1223174
+                        1.2138845,
+                        43.6046408
                     ],
                     [
-                        -103.5667542,
-                        29.1223174
+                        1.2020647,
+                        43.6044846
                     ],
                     [
-                        -103.5667542,
-                        29.0598119
+                        1.2019464,
+                        43.61048
                     ],
                     [
-                        -103.5049819,
-                        29.0598119
-                    ],
+                        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": [
+                [
                     [
-                        -103.5049819,
-                        28.9967506
+                        1.1135067,
+                        43.6867566
                     ],
                     [
-                        -103.3165753,
-                        28.9967506
+                        1.1351836,
+                        43.6870842
                     ],
                     [
-                        -103.3165753,
-                        28.9346923
+                        1.1348907,
+                        43.6983471
                     ],
                     [
-                        -103.0597572,
-                        28.9346923
+                        1.1782867,
+                        43.6990338
                     ],
                     [
-                        -103.0597572,
-                        29.0592965
+                        1.1779903,
+                        43.7102786
                     ],
                     [
-                        -102.9979694,
-                        29.0592965
+                        1.1996591,
+                        43.7106144
                     ],
                     [
-                        -102.9979694,
-                        29.1212855
+                        1.1993387,
+                        43.7218722
                     ],
                     [
-                        -102.9331397,
-                        29.1212855
+                        1.2427356,
+                        43.7225269
                     ],
                     [
-                        -102.9331397,
-                        29.1848575
+                        1.2424336,
+                        43.7337491
                     ],
                     [
-                        -102.8095989,
-                        29.1848575
+                        1.2641536,
+                        43.734092
                     ],
                     [
-                        -102.8095989,
-                        29.2526154
+                        1.2638301,
+                        43.7453588
                     ],
                     [
-                        -102.8701345,
-                        29.2526154
+                        1.2855285,
+                        43.7456548
                     ],
                     [
-                        -102.8701345,
-                        29.308096
+                        1.2852481,
+                        43.756935
                     ],
                     [
-                        -102.8096681,
-                        29.308096
+                        1.306925,
+                        43.757231
                     ],
                     [
-                        -102.8096681,
-                        29.3715484
+                        1.3066446,
+                        43.7684779
                     ],
                     [
-                        -102.7475655,
-                        29.3715484
+                        1.3283431,
+                        43.7687894
                     ],
                     [
-                        -102.7475655,
-                        29.5581899
+                        1.3280842,
+                        43.780034
                     ],
                     [
-                        -102.684554,
-                        29.5581899
+                        1.4367275,
+                        43.7815757
                     ],
                     [
-                        -102.684554,
-                        29.6847655
+                        1.4373098,
+                        43.7591004
                     ],
                     [
-                        -102.4967764,
-                        29.6847655
+                        1.4590083,
+                        43.7593653
                     ],
                     [
-                        -102.4967764,
-                        29.7457694
+                        1.4593318,
+                        43.7481479
                     ],
                     [
-                        -102.3086647,
-                        29.7457694
+                        1.4810303,
+                        43.7483972
                     ],
                     [
-                        -102.3086647,
-                        29.8086627
+                        1.4813322,
+                        43.7371777
                     ],
                     [
-                        -102.1909323,
-                        29.8086627
+                        1.5030307,
+                        43.7374115
                     ],
                     [
-                        -102.1909323,
-                        29.7460097
+                        1.5035915,
+                        43.7149664
                     ],
                     [
-                        -101.5049914,
-                        29.7460097
+                        1.5253115,
+                        43.7151846
                     ],
                     [
-                        -101.5049914,
-                        29.6846777
+                        1.5256135,
+                        43.7040057
                     ],
                     [
-                        -101.3805796,
-                        29.6846777
+                        1.5472688,
+                        43.7042552
                     ],
                     [
-                        -101.3805796,
-                        29.5594459
+                        1.5475708,
+                        43.6930431
                     ],
                     [
-                        -101.3175057,
-                        29.5594459
+                        1.5692045,
+                        43.6932926
                     ],
                     [
-                        -101.3175057,
-                        29.4958934
+                        1.5695712,
+                        43.6820316
                     ],
                     [
-                        -101.1910075,
-                        29.4958934
+                        1.5912049,
+                        43.6822656
                     ],
                     [
-                        -101.1910075,
-                        29.4326115
+                        1.5917441,
+                        43.6597998
                     ],
                     [
-                        -101.067501,
-                        29.4326115
+                        1.613421,
+                        43.6600339
                     ],
                     [
-                        -101.067501,
-                        29.308808
+                        1.613723,
+                        43.6488291
                     ],
                     [
-                        -100.9418897,
-                        29.308808
+                        1.6353783,
+                        43.6490788
                     ],
                     [
-                        -100.9418897,
-                        29.2456231
+                        1.6384146,
+                        43.5140731
                     ],
                     [
-                        -100.8167271,
-                        29.2456231
+                        1.2921649,
+                        43.5094658
                     ],
                     [
-                        -100.8167271,
-                        29.1190449
+                        1.2918629,
+                        43.5206966
                     ],
                     [
-                        -100.7522672,
-                        29.1190449
+                        1.2702076,
+                        43.5203994
                     ],
                     [
-                        -100.7522672,
-                        29.0578214
+                        1.2698841,
+                        43.5316437
                     ],
                     [
-                        -100.6925358,
-                        29.0578214
+                        1.2482288,
+                        43.531331
                     ],
                     [
-                        -100.6925358,
-                        28.8720431
+                        1.2476048,
+                        43.5537788
                     ],
                     [
-                        -100.6290158,
-                        28.8720431
+                        1.2259628,
+                        43.5534914
                     ],
                     [
-                        -100.6290158,
-                        28.8095363
+                        1.2256819,
+                        43.564716
                     ],
                     [
-                        -100.5679901,
-                        28.8095363
+                        1.2039835,
+                        43.564419
                     ],
                     [
-                        -100.5679901,
-                        28.622554
+                        1.2033148,
+                        43.5869049
                     ],
                     [
-                        -100.5040411,
-                        28.622554
+                        1.1816164,
+                        43.5865611
                     ],
                     [
-                        -100.5040411,
-                        28.5583804
+                        1.1810237,
+                        43.6090368
                     ],
                     [
-                        -100.4421832,
-                        28.5583804
+                        1.1592821,
+                        43.6086932
                     ],
                     [
-                        -100.4421832,
-                        28.4968266
+                        1.1589585,
+                        43.6199523
                     ],
                     [
-                        -100.379434,
-                        28.4968266
+                        1.1372601,
+                        43.6196244
                     ],
                     [
-                        -100.379434,
-                        28.3092865
+                        1.1365933,
+                        43.642094
                     ],
                     [
-                        -100.3171942,
-                        28.3092865
-                    ],
+                        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": [
+                [
                     [
-                        -100.3171942,
-                        28.1835681
+                        0.5457462,
+                        47.465264
                     ],
                     [
-                        -100.254483,
-                        28.1835681
+                        0.54585,
+                        47.4608163
                     ],
                     [
-                        -100.254483,
-                        28.1213885
+                        0.5392188,
+                        47.4606983
                     ],
                     [
-                        -100.1282282,
-                        28.1213885
+                        0.5393484,
+                        47.456243
                     ],
                     [
-                        -100.1282282,
-                        28.059215
+                        0.5327959,
+                        47.4561003
                     ],
                     [
-                        -100.0659537,
-                        28.059215
+                        0.5329011,
+                        47.451565
                     ],
                     [
-                        -100.0659537,
-                        27.9966087
+                        0.52619,
+                        47.4514013
                     ],
                     [
-                        -100.0023855,
-                        27.9966087
+                        0.5265854,
+                        47.4424884
                     ],
                     [
-                        -100.0023855,
-                        27.9332152
+                        0.5000941,
+                        47.4420739
                     ],
                     [
-                        -99.9426497,
-                        27.9332152
+                        0.5002357,
+                        47.4375835
                     ],
                     [
-                        -99.9426497,
-                        27.7454658
+                        0.4936014,
+                        47.4374324
                     ],
                     [
-                        -99.816851,
-                        27.7454658
+                        0.4937,
+                        47.4329285
                     ],
                     [
-                        -99.816851,
-                        27.6834301
+                        0.4606141,
+                        47.4324593
                     ],
                     [
-                        -99.7541346,
-                        27.6834301
+                        0.4607248,
+                        47.4279827
                     ],
                     [
-                        -99.7541346,
-                        27.6221543
+                        0.4541016,
+                        47.4278125
                     ],
                     [
-                        -99.6291629,
-                        27.6221543
+                        0.454932,
+                        47.4053921
                     ],
                     [
-                        -99.6291629,
-                        27.5588977
+                        0.4615431,
+                        47.4054476
                     ],
                     [
-                        -99.5672838,
-                        27.5588977
+                        0.4619097,
+                        47.3964924
                     ],
                     [
-                        -99.5672838,
-                        27.4353752
+                        0.4684346,
+                        47.3966005
                     ],
                     [
-                        -99.5041798,
-                        27.4353752
+                        0.4691319,
+                        47.3786415
                     ],
                     [
-                        -99.5041798,
-                        27.3774021
+                        0.4757125,
+                        47.3787609
                     ],
                     [
-                        -99.5671796,
-                        27.3774021
+                        0.4762116,
+                        47.3652018
                     ],
                     [
-                        -99.5671796,
-                        27.2463726
+                        0.4828297,
+                        47.3653499
                     ],
                     [
-                        -99.504975,
-                        27.2463726
+                        0.4832223,
+                        47.3518574
                     ],
                     [
-                        -99.504975,
-                        26.9965649
+                        0.5097927,
+                        47.3522592
                     ],
                     [
-                        -99.4427427,
-                        26.9965649
+                        0.5095688,
+                        47.3567713
                     ],
                     [
-                        -99.4427427,
-                        26.872803
+                        0.5227698,
+                        47.3569785
                     ],
                     [
-                        -99.3800633,
-                        26.872803
+                        0.5226429,
+                        47.3614867
                     ],
                     [
-                        -99.3800633,
-                        26.8068179
+                        0.5490721,
+                        47.3618878
                     ],
                     [
-                        -99.3190684,
-                        26.8068179
+                        0.5489087,
+                        47.3663307
                     ],
                     [
-                        -99.3190684,
-                        26.7473614
+                        0.5555159,
+                        47.3664985
                     ],
                     [
-                        -99.2537541,
-                        26.7473614
+                        0.5559105,
+                        47.3575522
                     ],
                     [
-                        -99.2537541,
-                        26.6210068
+                        0.6152789,
+                        47.358407
                     ],
                     [
-                        -99.1910617,
-                        26.6210068
+                        0.6152963,
+                        47.362893
                     ],
                     [
-                        -99.1910617,
-                        26.4956737
+                        0.6285093,
+                        47.3630936
                     ],
                     [
-                        -99.1300639,
-                        26.4956737
+                        0.6288256,
+                        47.353987
                     ],
                     [
-                        -99.1300639,
-                        26.3713808
+                        0.6155012,
+                        47.3538823
                     ],
                     [
-                        -99.0029473,
-                        26.3713808
+                        0.6157682,
+                        47.3493424
                     ],
                     [
-                        -99.0029473,
-                        26.3093836
+                        0.6090956,
+                        47.3492991
                     ],
                     [
-                        -98.816572,
-                        26.3093836
+                        0.6094735,
+                        47.3402962
                     ],
                     [
-                        -98.816572,
-                        26.2457762
+                        0.6160477,
+                        47.3404448
                     ],
                     [
-                        -98.6920082,
-                        26.2457762
+                        0.616083,
+                        47.3369074
                     ],
                     [
-                        -98.6920082,
-                        26.1837096
+                        0.77497,
+                        47.3388218
                     ],
                     [
-                        -98.4440896,
-                        26.1837096
+                        0.7745786,
+                        47.351628
                     ],
                     [
-                        -98.4440896,
-                        26.1217217
+                        0.7680363,
+                        47.3515901
                     ],
                     [
-                        -98.3823181,
-                        26.1217217
+                        0.767589,
+                        47.3605298
                     ],
                     [
-                        -98.3823181,
-                        26.0596488
+                        0.7742443,
+                        47.3606238
                     ],
                     [
-                        -98.2532707,
-                        26.0596488
+                        0.7733465,
+                        47.3921266
                     ],
                     [
-                        -98.2532707,
-                        25.9986871
+                        0.7667434,
+                        47.3920195
                     ],
                     [
-                        -98.0109084,
-                        25.9986871
+                        0.7664411,
+                        47.4010837
                     ],
                     [
-                        -98.0109084,
-                        25.9932255
+                        0.7730647,
+                        47.4011115
                     ],
                     [
-                        -97.6932319,
-                        25.9932255
+                        0.7728868,
+                        47.4101297
                     ],
                     [
-                        -97.6932319,
-                        25.9334103
+                        0.7661849,
+                        47.4100226
                     ],
                     [
-                        -97.6313904,
-                        25.9334103
+                        0.7660267,
+                        47.4145044
                     ],
                     [
-                        -97.6313904,
-                        25.8695893
+                        0.7527613,
+                        47.4143038
                     ],
                     [
-                        -97.5046779,
-                        25.8695893
+                        0.7529788,
+                        47.4098086
                     ],
                     [
-                        -97.5046779,
-                        25.8073488
+                        0.7462373,
+                        47.4097016
                     ],
                     [
-                        -97.3083401,
-                        25.8073488
+                        0.7459424,
+                        47.4232208
                     ],
                     [
-                        -97.3083401,
-                        25.8731159
+                        0.7392324,
+                        47.4231451
                     ],
                     [
-                        -97.2456326,
-                        25.8731159
+                        0.738869,
+                        47.4366116
                     ],
                     [
-                        -97.2456326,
-                        25.9353731
+                        0.7323267,
+                        47.4365171
                     ],
                     [
-                        -97.1138939,
-                        25.9353731
+                        0.7321869,
+                        47.4410556
                     ],
                     [
-                        -97.1138939,
-                        27.6809179
+                        0.7255048,
+                        47.44098
                     ],
                     [
-                        -97.0571035,
-                        27.6809179
+                        0.7254209,
+                        47.4453479
                     ],
                     [
-                        -97.0571035,
-                        27.8108242
+                        0.7318793,
+                        47.4454803
                     ],
                     [
-                        -95.5810766,
-                        27.8108242
+                        0.7318514,
+                        47.4501126
                     ],
                     [
-                        -95.5810766,
-                        28.7468827
+                        0.7384496,
+                        47.450226
                     ],
                     [
-                        -94.271041,
-                        28.7468827
+                        0.7383098,
+                        47.454631
                     ],
                     [
-                        -94.271041,
-                        29.5594076
+                        0.7449359,
+                        47.4547444
                     ],
                     [
-                        -92.5029947,
-                        29.5594076
+                        0.7443209,
+                        47.4771985
                     ],
                     [
-                        -92.5029947,
-                        29.4974754
+                        0.7310685,
+                        47.4769717
                     ],
                     [
-                        -91.8776216,
-                        29.4974754
+                        0.7309008,
+                        47.4815445
                     ],
                     [
-                        -91.8776216,
-                        29.3727013
+                        0.7176205,
+                        47.4812611
                     ],
                     [
-                        -91.378418,
-                        29.3727013
+                        0.7177883,
+                        47.4768394
                     ],
                     [
-                        -91.378418,
-                        29.2468326
+                        0.69777,
+                        47.4764993
                     ],
                     [
-                        -91.3153953,
-                        29.2468326
+                        0.6980496,
+                        47.4719827
                     ],
                     [
-                        -91.3153953,
-                        29.1844301
+                        0.6914514,
+                        47.4718882
                     ],
                     [
-                        -91.1294702,
-                        29.1844301
+                        0.6917309,
+                        47.4630241
                     ],
                     [
-                        -91.1294702,
-                        29.1232559
+                        0.6851048,
+                        47.4629295
                     ],
                     [
-                        -91.0052632,
-                        29.1232559
+                        0.684937,
+                        47.4673524
                     ],
                     [
-                        -91.0052632,
-                        28.9968437
+                        0.678255,
+                        47.4673335
                     ],
                     [
-                        -89.4500159,
-                        28.9968437
+                        0.6779754,
+                        47.4762158
                     ],
                     [
-                        -89.4500159,
-                        28.8677422
+                        0.6714051,
+                        47.4761592
                     ],
                     [
-                        -88.8104309,
-                        28.8677422
+                        0.6710417,
+                        47.4881952
                     ],
                     [
-                        -88.8104309,
-                        30.1841864
+                        0.6577334,
+                        47.4879685
                     ],
                     [
-                        -85.8791527,
-                        30.1841864
+                        0.6578173,
+                        47.48504
                     ],
                     [
-                        -85.8791527,
-                        29.5455038
+                        0.6511911,
+                        47.4848322
                     ],
                     [
-                        -84.8368083,
-                        29.5455038
+                        0.6514707,
+                        47.4758568
                     ],
                     [
-                        -84.8368083,
-                        29.6225158
+                        0.6448166,
+                        47.4757245
                     ],
                     [
-                        -84.7482786,
-                        29.6225158
+                        0.6449284,
+                        47.4712646
                     ],
                     [
-                        -84.7482786,
-                        29.683624
+                        0.6117976,
+                        47.4707543
                     ],
                     [
-                        -84.685894,
-                        29.683624
+                        0.6118815,
+                        47.4663129
                     ],
                     [
-                        -84.685894,
-                        29.7468386
+                        0.6052833,
+                        47.4661239
                     ],
                     [
-                        -83.6296975,
-                        29.7468386
+                        0.6054231,
+                        47.4616631
                     ],
                     [
-                        -83.6296975,
-                        29.4324361
+                        0.5988808,
+                        47.4615497
                     ],
                     [
-                        -83.3174937,
-                        29.4324361
+                        0.5990206,
+                        47.4570886
                     ],
                     [
-                        -83.3174937,
-                        29.0579442
+                        0.572488,
+                        47.4566916
                     ],
                     [
-                        -82.879659,
-                        29.0579442
+                        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
                     ],
                     [
-                        -82.879659,
-                        27.7453529
+                        0.54585,
+                        47.4608163
                     ],
                     [
-                        -82.8182822,
-                        27.7453529
+                        0.5392188,
+                        47.4606983
                     ],
                     [
-                        -82.8182822,
-                        26.9290868
+                        0.5393484,
+                        47.456243
                     ],
                     [
-                        -82.3796782,
-                        26.9290868
+                        0.5327959,
+                        47.4561003
                     ],
                     [
-                        -82.3796782,
-                        26.3694183
+                        0.5329011,
+                        47.451565
                     ],
                     [
-                        -81.8777106,
-                        26.3694183
+                        0.52619,
+                        47.4514013
                     ],
                     [
-                        -81.8777106,
-                        25.805971
+                        0.5265854,
+                        47.4424884
                     ],
                     [
-                        -81.5036862,
-                        25.805971
+                        0.5000941,
+                        47.4420739
                     ],
                     [
-                        -81.5036862,
-                        25.7474753
+                        0.5002357,
+                        47.4375835
                     ],
                     [
-                        -81.4405462,
-                        25.7474753
+                        0.4936014,
+                        47.4374324
                     ],
                     [
-                        -81.4405462,
-                        25.6851489
+                        0.4937,
+                        47.4329285
                     ],
                     [
-                        -81.3155883,
-                        25.6851489
+                        0.4606141,
+                        47.4324593
                     ],
                     [
-                        -81.3155883,
-                        25.5600985
+                        0.4607248,
+                        47.4279827
                     ],
                     [
-                        -81.2538534,
-                        25.5600985
+                        0.4541016,
+                        47.4278125
                     ],
                     [
-                        -81.2538534,
-                        25.4342361
+                        0.454932,
+                        47.4053921
                     ],
                     [
-                        -81.1902012,
-                        25.4342361
+                        0.4615431,
+                        47.4054476
                     ],
                     [
-                        -81.1902012,
-                        25.1234341
+                        0.4619097,
+                        47.3964924
                     ],
                     [
-                        -81.1288133,
-                        25.1234341
+                        0.4684346,
+                        47.3966005
                     ],
                     [
-                        -81.1288133,
-                        25.0619389
-                    ],
-                    [
-                        -81.0649231,
-                        25.0619389
-                    ],
-                    [
-                        -81.0649231,
-                        24.8157807
+                        0.4691319,
+                        47.3786415
                     ],
                     [
-                        -81.6289469,
-                        24.8157807
+                        0.4757125,
+                        47.3787609
                     ],
                     [
-                        -81.6289469,
-                        24.7538367
+                        0.4762116,
+                        47.3652018
                     ],
                     [
-                        -81.6907173,
-                        24.7538367
+                        0.4828297,
+                        47.3653499
                     ],
                     [
-                        -81.6907173,
-                        24.6899374
+                        0.4829611,
+                        47.3608321
                     ],
                     [
-                        -81.8173189,
-                        24.6899374
+                        0.4763543,
+                        47.360743
                     ],
                     [
-                        -81.8173189,
-                        24.6279161
+                        0.476654,
+                        47.3517263
                     ],
                     [
-                        -82.1910041,
-                        24.6279161
+                        0.4700497,
+                        47.3516186
                     ],
                     [
-                        -82.1910041,
-                        24.496294
+                        0.4701971,
+                        47.3471313
                     ],
                     [
-                        -81.6216596,
-                        24.496294
+                        0.4637503,
+                        47.3470104
                     ],
                     [
-                        -81.6216596,
-                        24.559484
+                        0.4571425,
+                        47.3424146
                     ],
                     [
-                        -81.372006,
-                        24.559484
+                        0.4572922,
+                        47.3379061
                     ],
                     [
-                        -81.372006,
-                        24.6220687
+                        0.4506741,
+                        47.3378081
                     ],
                     [
-                        -81.0593278,
-                        24.6220687
+                        0.4508379,
+                        47.3333051
                     ],
                     [
-                        -81.0593278,
-                        24.684826
+                        0.4442212,
+                        47.3332032
                     ],
                     [
-                        -80.9347147,
-                        24.684826
+                        0.4443809,
+                        47.328711
                     ],
                     [
-                        -80.9347147,
-                        24.7474828
+                        0.4311392,
+                        47.3284977
                     ],
                     [
-                        -80.7471081,
-                        24.7474828
+                        0.4316262,
+                        47.3150004
                     ],
                     [
-                        -80.7471081,
-                        24.8100618
+                        0.4382432,
+                        47.3151136
                     ],
                     [
-                        -80.3629898,
-                        24.8100618
+                        0.4383815,
+                        47.3106174
                     ],
                     [
-                        -80.3629898,
-                        25.1175858
+                        0.4714487,
+                        47.3111374
                     ],
                     [
-                        -80.122344,
-                        25.1175858
+                        0.4713096,
+                        47.3156565
                     ],
                     [
-                        -80.122344,
-                        25.7472357
+                        0.477888,
+                        47.3157542
                     ],
                     [
-                        -80.0588458,
-                        25.7472357
+                        0.4780733,
+                        47.3112802
                     ],
                     [
-                        -80.0588458,
-                        26.3708251
+                        0.4846826,
+                        47.3113639
                     ],
                     [
-                        -79.995837,
-                        26.3708251
+                        0.4848576,
+                        47.3068686
                     ],
                     [
-                        -79.995837,
-                        26.9398003
+                        0.4914359,
+                        47.3069803
                     ],
                     [
-                        -80.0587265,
-                        26.9398003
+                        0.491745,
+                        47.2979733
                     ],
                     [
-                        -80.0587265,
-                        27.1277466
+                        0.4851578,
+                        47.2978722
                     ],
                     [
-                        -80.1226251,
-                        27.1277466
+                        0.4854269,
+                        47.2888744
                     ],
                     [
-                        -80.1226251,
-                        27.2534279
+                        0.4788485,
+                        47.2887697
                     ],
                     [
-                        -80.1846956,
-                        27.2534279
+                        0.4791574,
+                        47.2797818
                     ],
                     [
-                        -80.1846956,
-                        27.3781229
+                        0.4857769,
+                        47.2799005
                     ],
                     [
-                        -80.246175,
-                        27.3781229
+                        0.4859107,
+                        47.2753885
                     ],
                     [
-                        -80.246175,
-                        27.5658729
+                        0.492539,
+                        47.2755029
                     ],
                     [
-                        -80.3094768,
-                        27.5658729
+                        0.4926669,
+                        47.2710127
                     ],
                     [
-                        -80.3094768,
-                        27.7530311
+                        0.4992986,
+                        47.2711066
                     ],
                     [
-                        -80.3721485,
-                        27.7530311
+                        0.4994296,
+                        47.2666116
                     ],
                     [
-                        -80.3721485,
-                        27.8774451
+                        0.5192658,
+                        47.2669245
                     ],
                     [
-                        -80.4351457,
-                        27.8774451
+                        0.5194225,
+                        47.2624231
                     ],
                     [
-                        -80.4351457,
-                        28.0033366
+                        0.5260186,
+                        47.2625205
                     ],
                     [
-                        -80.4966078,
-                        28.0033366
+                        0.5258735,
+                        47.2670183
                     ],
                     [
-                        -80.4966078,
-                        28.1277326
+                        0.5456972,
+                        47.2673383
                     ],
                     [
-                        -80.5587159,
-                        28.1277326
+                        0.5455537,
+                        47.2718283
                     ],
                     [
-                        -80.5587159,
-                        28.3723509
+                        0.5587737,
+                        47.2720366
                     ],
                     [
-                        -80.4966335,
-                        28.3723509
+                        0.5586259,
+                        47.2765185
                     ],
                     [
-                        -80.4966335,
-                        29.5160326
+                        0.5652252,
+                        47.2766278
                     ],
                     [
-                        -81.1213644,
-                        29.5160326
+                        0.5650848,
+                        47.2811206
                     ],
                     [
-                        -81.1213644,
-                        31.6846966
+                        0.5716753,
+                        47.2812285
                     ],
                     [
-                        -80.6018723,
-                        31.6846966
+                        0.5715223,
+                        47.2857217
                     ],
                     [
-                        -80.6018723,
-                        32.2475309
+                        0.5781436,
+                        47.2858299
                     ],
                     [
-                        -79.4921024,
-                        32.2475309
+                        0.5779914,
+                        47.2903294
                     ],
                     [
-                        -79.4921024,
-                        32.9970261
+                        0.5846023,
+                        47.2904263
                     ],
                     [
-                        -79.1116488,
-                        32.9970261
+                        0.5843076,
+                        47.2994231
                     ],
                     [
-                        -79.1116488,
-                        33.3729457
+                        0.597499,
+                        47.2996094
                     ],
                     [
-                        -78.6153621,
-                        33.3729457
+                        0.5976637,
+                        47.2951375
                     ],
                     [
-                        -78.6153621,
-                        33.8097638
+                        0.6571596,
+                        47.2960036
                     ],
                     [
-                        -77.9316963,
-                        33.8097638
+                        0.6572988,
+                        47.2915091
                     ],
                     [
-                        -77.9316963,
-                        33.8718243
+                        0.6705019,
+                        47.2917186
                     ],
                     [
-                        -77.8692252,
-                        33.8718243
+                        0.6703475,
+                        47.2962082
                     ],
                     [
-                        -77.8692252,
-                        34.0552454
+                        0.6836175,
+                        47.2963688
                     ],
                     [
-                        -77.6826392,
-                        34.0552454
+                        0.6834322,
+                        47.3008929
                     ],
                     [
-                        -77.6826392,
-                        34.2974598
+                        0.690062,
+                        47.3009558
                     ],
                     [
-                        -77.2453509,
-                        34.2974598
+                        0.6899241,
+                        47.3054703
                     ],
                     [
-                        -77.2453509,
-                        34.5598585
+                        0.7362019,
+                        47.3061157
                     ],
                     [
-                        -76.4973277,
-                        34.5598585
+                        0.7360848,
+                        47.3106063
                     ],
                     [
-                        -76.4973277,
-                        34.622796
+                        0.7559022,
+                        47.3108935
                     ],
                     [
-                        -76.4337602,
-                        34.622796
+                        0.7557718,
+                        47.315392
                     ],
                     [
-                        -76.4337602,
-                        34.6849285
+                        0.7623755,
+                        47.3154716
                     ],
                     [
-                        -76.373212,
-                        34.6849285
+                        0.7622314,
+                        47.3199941
                     ],
                     [
-                        -76.373212,
-                        34.7467674
+                        0.7754911,
+                        47.3201546
                     ],
                     [
-                        -76.3059364,
-                        34.7467674
+                        0.77497,
+                        47.3388218
                     ],
                     [
-                        -76.3059364,
-                        34.808551
+                        0.7745786,
+                        47.351628
                     ],
                     [
-                        -76.2468017,
-                        34.808551
+                        0.7680363,
+                        47.3515901
                     ],
                     [
-                        -76.2468017,
-                        34.8728418
+                        0.767589,
+                        47.3605298
                     ],
                     [
-                        -76.1825922,
-                        34.8728418
+                        0.7742443,
+                        47.3606238
                     ],
                     [
-                        -76.1825922,
-                        34.9335332
+                        0.7733465,
+                        47.3921266
                     ],
                     [
-                        -76.120814,
-                        34.9335332
+                        0.7667434,
+                        47.3920195
                     ],
                     [
-                        -76.120814,
-                        34.9952359
+                        0.7664411,
+                        47.4010837
                     ],
                     [
-                        -75.9979015,
-                        34.9952359
+                        0.7730647,
+                        47.4011115
                     ],
                     [
-                        -75.9979015,
-                        35.0578182
+                        0.7728868,
+                        47.4101297
                     ],
                     [
-                        -75.870338,
-                        35.0578182
+                        0.7661849,
+                        47.4100226
                     ],
                     [
-                        -75.870338,
-                        35.1219097
+                        0.7660267,
+                        47.4145044
                     ],
                     [
-                        -75.7462194,
-                        35.1219097
+                        0.7527613,
+                        47.4143038
                     ],
                     [
-                        -75.7462194,
-                        35.1818911
+                        0.7529788,
+                        47.4098086
                     ],
                     [
-                        -75.4929694,
-                        35.1818911
+                        0.7462373,
+                        47.4097016
                     ],
                     [
-                        -75.4929694,
-                        35.3082988
+                        0.7459424,
+                        47.4232208
                     ],
                     [
-                        -75.4325662,
-                        35.3082988
+                        0.7392324,
+                        47.4231451
                     ],
                     [
-                        -75.4325662,
-                        35.7542495
+                        0.738869,
+                        47.4366116
                     ],
                     [
-                        -75.4969907,
-                        35.7542495
+                        0.7323267,
+                        47.4365171
                     ],
                     [
-                        -75.4969907,
-                        37.8105602
+                        0.7321869,
+                        47.4410556
                     ],
                     [
-                        -75.3082972,
-                        37.8105602
+                        0.7255048,
+                        47.44098
                     ],
                     [
-                        -75.3082972,
-                        37.8720088
+                        0.7254209,
+                        47.4453479
                     ],
                     [
-                        -75.245601,
-                        37.8720088
+                        0.7318793,
+                        47.4454803
                     ],
                     [
-                        -75.245601,
-                        37.9954849
+                        0.7318514,
+                        47.4501126
                     ],
                     [
-                        -75.1828751,
-                        37.9954849
+                        0.7384496,
+                        47.450226
                     ],
                     [
-                        -75.1828751,
-                        38.0585079
+                        0.7383098,
+                        47.454631
                     ],
                     [
-                        -75.1184793,
-                        38.0585079
+                        0.7449359,
+                        47.4547444
                     ],
                     [
-                        -75.1184793,
-                        38.2469091
+                        0.7443209,
+                        47.4771985
                     ],
                     [
-                        -75.0592098,
-                        38.2469091
+                        0.7310685,
+                        47.4769717
                     ],
                     [
-                        -75.0592098,
-                        38.3704316
+                        0.7309008,
+                        47.4815445
                     ],
                     [
-                        -74.9948111,
-                        38.3704316
+                        0.7176205,
+                        47.4812611
                     ],
                     [
-                        -74.9948111,
-                        38.8718417
+                        0.7177883,
+                        47.4768394
                     ],
                     [
-                        -74.4878252,
-                        38.8718417
+                        0.69777,
+                        47.4764993
                     ],
                     [
-                        -74.4878252,
-                        39.3089428
+                        0.6980496,
+                        47.4719827
                     ],
                     [
-                        -74.1766317,
-                        39.3089428
+                        0.6914514,
+                        47.4718882
                     ],
                     [
-                        -74.1766317,
-                        39.6224653
+                        0.6917309,
+                        47.4630241
                     ],
                     [
-                        -74.0567045,
-                        39.6224653
+                        0.6851048,
+                        47.4629295
                     ],
                     [
-                        -74.0567045,
-                        39.933178
+                        0.684937,
+                        47.4673524
                     ],
                     [
-                        -73.9959035,
-                        39.933178
+                        0.678255,
+                        47.4673335
                     ],
                     [
-                        -73.9959035,
-                        40.1854852
+                        0.6779754,
+                        47.4762158
                     ],
                     [
-                        -73.9341593,
-                        40.1854852
+                        0.6714051,
+                        47.4761592
                     ],
                     [
-                        -73.9341593,
-                        40.4959486
+                        0.6710417,
+                        47.4881952
                     ],
                     [
-                        -73.8723024,
-                        40.4959486
+                        0.6577334,
+                        47.4879685
                     ],
                     [
-                        -73.8723024,
-                        40.5527135
+                        0.6578173,
+                        47.48504
                     ],
                     [
-                        -71.8074506,
-                        40.5527135
+                        0.6511911,
+                        47.4848322
                     ],
                     [
-                        -71.8074506,
-                        41.3088005
+                        0.6514707,
+                        47.4758568
                     ],
                     [
-                        -70.882512,
-                        41.3088005
+                        0.6448166,
+                        47.4757245
                     ],
                     [
-                        -70.882512,
-                        41.184978
+                        0.6449284,
+                        47.4712646
                     ],
                     [
-                        -70.7461947,
-                        41.184978
+                        0.6117976,
+                        47.4707543
                     ],
                     [
-                        -70.7461947,
-                        41.3091865
+                        0.6118815,
+                        47.4663129
                     ],
                     [
-                        -70.4337553,
-                        41.3091865
+                        0.6052833,
+                        47.4661239
                     ],
                     [
-                        -70.4337553,
-                        41.4963885
+                        0.6054231,
+                        47.4616631
                     ],
                     [
-                        -69.9334281,
-                        41.4963885
+                        0.5988808,
+                        47.4615497
                     ],
                     [
-                        -69.9334281,
-                        41.6230802
+                        0.5990206,
+                        47.4570886
                     ],
                     [
-                        -69.869857,
-                        41.6230802
+                        0.572488,
+                        47.4566916
                     ],
                     [
-                        -69.869857,
-                        41.8776895
+                        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": [
+                [
+                    [
+                        -123.2549305,
+                        48.7529029
                     ],
                     [
-                        -69.935791,
-                        41.8776895
+                        -123.2549305,
+                        48.5592263
                     ],
                     [
-                        -69.935791,
-                        42.0032342
+                        -123.192224,
+                        48.5592263
                     ],
                     [
-                        -69.9975823,
-                        42.0032342
+                        -123.192224,
+                        48.4348366
                     ],
                     [
-                        -69.9975823,
-                        42.0650191
+                        -122.9419646,
+                        48.4348366
                     ],
                     [
-                        -70.0606103,
-                        42.0650191
+                        -122.9419646,
+                        48.3720812
                     ],
                     [
-                        -70.0606103,
-                        42.1294348
+                        -122.8806229,
+                        48.3720812
                     ],
                     [
-                        -70.5572884,
-                        42.1294348
+                        -122.8806229,
+                        48.3094763
                     ],
                     [
-                        -70.5572884,
-                        43.2487079
+                        -122.8167566,
+                        48.3094763
                     ],
                     [
-                        -70.4974097,
-                        43.2487079
+                        -122.8167566,
+                        48.1904587
                     ],
                     [
-                        -70.4974097,
-                        43.3092194
+                        -123.0041133,
+                        48.1904587
                     ],
                     [
-                        -70.3704249,
-                        43.3092194
+                        -123.0041133,
+                        48.1275918
                     ],
                     [
-                        -70.3704249,
-                        43.371963
+                        -123.058416,
+                        48.1275918
                     ],
                     [
-                        -70.3085701,
-                        43.371963
+                        -123.058416,
+                        48.190514
                     ],
                     [
-                        -70.3085701,
-                        43.4969879
+                        -123.254113,
+                        48.190514
                     ],
                     [
-                        -70.183921,
-                        43.4969879
+                        -123.254113,
+                        48.1274982
                     ],
                     [
-                        -70.183921,
-                        43.6223531
+                        -123.3706593,
+                        48.1274982
                     ],
                     [
-                        -70.057583,
-                        43.6223531
+                        -123.3706593,
+                        48.1908403
                     ],
                     [
-                        -70.057583,
-                        43.6850173
+                        -124.0582632,
+                        48.1908403
                     ],
                     [
-                        -69.7455247,
-                        43.6850173
+                        -124.0582632,
+                        48.253442
                     ],
                     [
-                        -69.7455247,
-                        43.7476571
+                        -124.1815163,
+                        48.253442
                     ],
                     [
-                        -69.2472845,
-                        43.7476571
+                        -124.1815163,
+                        48.3164666
                     ],
                     [
-                        -69.2472845,
-                        43.8107035
+                        -124.4319117,
+                        48.3164666
                     ],
                     [
-                        -69.0560701,
-                        43.8107035
+                        -124.4319117,
+                        48.3782613
                     ],
                     [
-                        -69.0560701,
-                        43.8717247
+                        -124.5564618,
+                        48.3782613
                     ],
                     [
-                        -68.9950522,
-                        43.8717247
+                        -124.5564618,
+                        48.4408305
                     ],
                     [
-                        -68.9950522,
-                        43.9982022
+                        -124.7555107,
+                        48.4408305
                     ],
                     [
-                        -68.4963672,
-                        43.9982022
+                        -124.7555107,
+                        48.1914986
                     ],
                     [
-                        -68.4963672,
-                        44.0597368
+                        -124.8185282,
+                        48.1914986
                     ],
                     [
-                        -68.3081038,
-                        44.0597368
+                        -124.8185282,
+                        48.1228381
                     ],
                     [
-                        -68.3081038,
-                        44.122137
+                        -124.7552951,
+                        48.1228381
                     ],
                     [
-                        -68.1851802,
-                        44.122137
+                        -124.7552951,
+                        47.5535253
                     ],
                     [
-                        -68.1851802,
-                        44.3081382
+                        -124.3812108,
+                        47.5535253
                     ],
                     [
-                        -67.9956019,
-                        44.3081382
+                        -124.3812108,
+                        47.1218696
                     ],
                     [
-                        -67.9956019,
-                        44.3727489
+                        -124.1928897,
+                        47.1218696
                     ],
                     [
-                        -67.8103041,
-                        44.3727489
+                        -124.1928897,
+                        43.7569431
                     ],
                     [
-                        -67.8103041,
-                        44.435178
+                        -124.4443382,
+                        43.7569431
                     ],
                     [
-                        -67.4965289,
-                        44.435178
+                        -124.4443382,
+                        43.1425556
                     ],
                     [
-                        -67.4965289,
-                        44.4968776
+                        -124.6398855,
+                        43.1425556
                     ],
                     [
-                        -67.37102,
-                        44.4968776
+                        -124.6398855,
+                        42.6194503
                     ],
                     [
-                        -67.37102,
-                        44.5600642
+                        -124.4438525,
+                        42.6194503
                     ],
                     [
-                        -67.1848753,
-                        44.5600642
+                        -124.4438525,
+                        39.8080662
                     ],
                     [
-                        -67.1848753,
-                        44.6213345
+                        -123.8815685,
+                        39.8080662
                     ],
                     [
-                        -67.1221208,
-                        44.6213345
+                        -123.8815685,
+                        39.1102825
                     ],
                     [
-                        -67.1221208,
-                        44.6867918
+                        -123.75805,
+                        39.1102825
                     ],
                     [
-                        -67.059365,
-                        44.6867918
+                        -123.75805,
+                        38.4968799
                     ],
                     [
-                        -67.059365,
-                        44.7473657
+                        -123.2702803,
+                        38.4968799
                     ],
                     [
-                        -66.9311098,
-                        44.7473657
+                        -123.2702803,
+                        37.9331905
                     ],
                     [
-                        -66.9311098,
-                        44.9406566
+                        -122.8148084,
+                        37.9331905
                     ],
                     [
-                        -66.994683,
-                        44.9406566
+                        -122.8148084,
+                        37.8019606
                     ],
                     [
-                        -66.994683,
-                        45.0024514
+                        -122.5664316,
+                        37.8019606
                     ],
                     [
-                        -67.0595847,
-                        45.0024514
+                        -122.5664316,
+                        36.9319611
                     ],
                     [
-                        -67.0595847,
-                        45.1273377
+                        -121.8784026,
+                        36.9319611
                     ],
                     [
-                        -67.1201974,
-                        45.1273377
+                        -121.8784026,
+                        36.6897596
                     ],
                     [
-                        -67.1201974,
-                        45.1910115
+                        -122.0034748,
+                        36.6897596
                     ],
                     [
-                        -67.2469811,
-                        45.1910115
+                        -122.0034748,
+                        36.4341056
                     ],
                     [
-                        -67.2469811,
-                        45.253442
+                        -121.9414159,
+                        36.4341056
                     ],
                     [
-                        -67.3177546,
-                        45.253442
+                        -121.9414159,
+                        35.9297636
                     ],
                     [
-                        -67.3177546,
-                        45.1898369
+                        -121.5040977,
+                        35.9297636
                     ],
                     [
-                        -67.370749,
-                        45.1898369
+                        -121.5040977,
+                        35.8100273
                     ],
                     [
-                        -67.370749,
-                        45.2534001
+                        -121.3790276,
+                        35.8100273
                     ],
                     [
-                        -67.4326888,
-                        45.2534001
+                        -121.3790276,
+                        35.4239164
                     ],
                     [
-                        -67.4326888,
-                        45.3083409
+                        -120.9426515,
+                        35.4239164
                     ],
                     [
-                        -67.3708571,
-                        45.3083409
+                        -120.9426515,
+                        35.1849683
                     ],
                     [
-                        -67.3708571,
-                        45.4396986
+                        -120.8171978,
+                        35.1849683
                     ],
                     [
-                        -67.4305573,
-                        45.4396986
+                        -120.8171978,
+                        35.1219894
                     ],
                     [
-                        -67.4305573,
-                        45.4950095
+                        -120.6918447,
+                        35.1219894
                     ],
                     [
-                        -67.37099,
-                        45.4950095
+                        -120.6918447,
+                        34.4966794
                     ],
                     [
-                        -67.37099,
-                        45.6264543
+                        -120.5045898,
+                        34.4966794
                     ],
                     [
-                        -67.6214982,
-                        45.6264543
+                        -120.5045898,
+                        34.4339651
                     ],
                     [
-                        -67.6214982,
-                        45.6896133
+                        -120.0078775,
+                        34.4339651
                     ],
                     [
-                        -67.683828,
-                        45.6896133
+                        -120.0078775,
+                        34.3682626
                     ],
                     [
-                        -67.683828,
-                        45.753259
+                        -119.5283517,
+                        34.3682626
                     ],
                     [
-                        -67.7462097,
-                        45.753259
+                        -119.5283517,
+                        34.0576434
                     ],
                     [
-                        -67.7462097,
-                        47.1268165
+                        -119.0060985,
+                        34.0576434
                     ],
                     [
-                        -67.8700141,
-                        47.1268165
+                        -119.0060985,
+                        33.9975267
                     ],
                     [
-                        -67.8700141,
-                        47.1900278
+                        -118.5046259,
+                        33.9975267
                     ],
                     [
-                        -67.9323803,
-                        47.1900278
+                        -118.5046259,
+                        33.8694631
                     ],
                     [
-                        -67.9323803,
-                        47.2539678
+                        -118.4413209,
+                        33.8694631
                     ],
                     [
-                        -67.9959387,
-                        47.2539678
+                        -118.4413209,
+                        33.6865253
                     ],
                     [
-                        -67.9959387,
-                        47.3149737
+                        -118.066912,
+                        33.6865253
                     ],
                     [
-                        -68.1206676,
-                        47.3149737
+                        -118.066912,
+                        33.3063832
                     ],
                     [
-                        -68.1206676,
-                        47.3780823
+                        -117.5030045,
+                        33.3063832
                     ],
                     [
-                        -68.4423175,
-                        47.3780823
+                        -117.5030045,
+                        33.0500337
                     ],
                     [
-                        -68.4423175,
-                        47.3166082
+                        -117.3188195,
+                        33.0500337
                     ],
                     [
-                        -68.6314305,
-                        47.3166082
+                        -117.3188195,
+                        32.6205888
                     ],
                     [
-                        -68.6314305,
-                        47.2544676
+                        -117.1917023,
+                        32.6205888
                     ],
                     [
-                        -68.9978037,
-                        47.2544676
+                        -117.1917023,
+                        32.4974566
                     ],
                     [
-                        -68.9978037,
-                        47.439895
+                        -116.746496,
+                        32.4974566
                     ],
                     [
-                        -69.0607223,
-                        47.439895
+                        -116.746496,
+                        32.5609161
                     ],
                     [
-                        -69.0607223,
-                        47.5047558
+                        -115.9970138,
+                        32.5609161
                     ],
                     [
-                        -69.2538122,
-                        47.5047558
+                        -115.9970138,
+                        32.6264942
                     ],
                     [
-                        -69.2538122,
-                        47.4398084
+                        -114.8808125,
+                        32.6264942
                     ],
                     [
-                        -69.3179284,
-                        47.4398084
+                        -114.8808125,
+                        32.4340796
                     ],
                     [
-                        -69.3179284,
-                        47.378601
+                        -114.6294474,
+                        32.4340796
                     ],
                     [
-                        -69.4438546,
-                        47.378601
+                        -114.6294474,
+                        32.3731636
                     ],
                     [
-                        -69.4438546,
-                        47.3156274
+                        -114.4447437,
+                        32.3731636
                     ],
                     [
-                        -69.5038204,
-                        47.3156274
+                        -114.4447437,
+                        32.3075418
                     ],
                     [
-                        -69.5038204,
-                        47.2525839
+                        -114.2557628,
+                        32.3075418
                     ],
                     [
-                        -69.5667838,
-                        47.2525839
+                        -114.2557628,
+                        32.2444561
                     ],
                     [
-                        -69.5667838,
-                        47.1910884
+                        -114.0680274,
+                        32.2444561
                     ],
                     [
-                        -69.6303478,
-                        47.1910884
+                        -114.0680274,
+                        32.1829113
                     ],
                     [
-                        -69.6303478,
-                        47.128701
+                        -113.8166499,
+                        32.1829113
                     ],
                     [
-                        -69.6933103,
-                        47.128701
+                        -113.8166499,
+                        32.1207622
                     ],
                     [
-                        -69.6933103,
-                        47.0654307
+                        -113.6307421,
+                        32.1207622
                     ],
                     [
-                        -69.7557063,
-                        47.0654307
+                        -113.6307421,
+                        32.0565099
                     ],
                     [
-                        -69.7557063,
-                        47.0042751
+                        -113.4417495,
+                        32.0565099
                     ],
                     [
-                        -69.8180391,
-                        47.0042751
+                        -113.4417495,
+                        31.9984372
                     ],
                     [
-                        -69.8180391,
-                        46.9415344
+                        -113.2546027,
+                        31.9984372
                     ],
                     [
-                        -69.8804023,
-                        46.9415344
+                        -113.2546027,
+                        31.9325434
                     ],
                     [
-                        -69.8804023,
-                        46.8792519
+                        -113.068072,
+                        31.9325434
                     ],
                     [
-                        -69.9421674,
-                        46.8792519
+                        -113.068072,
+                        31.8718062
                     ],
                     [
-                        -69.9421674,
-                        46.8177399
+                        -112.8161105,
+                        31.8718062
                     ],
                     [
-                        -70.0063088,
-                        46.8177399
+                        -112.8161105,
+                        31.8104171
                     ],
                     [
-                        -70.0063088,
-                        46.6920295
+                        -112.6308756,
+                        31.8104171
                     ],
                     [
-                        -70.0704265,
-                        46.6920295
+                        -112.6308756,
+                        31.7464723
                     ],
                     [
-                        -70.0704265,
-                        46.4425926
+                        -112.4418918,
+                        31.7464723
                     ],
                     [
-                        -70.1945902,
-                        46.4425926
+                        -112.4418918,
+                        31.6856001
                     ],
                     [
-                        -70.1945902,
-                        46.3785887
+                        -112.257192,
+                        31.6856001
                     ],
                     [
-                        -70.2562047,
-                        46.3785887
+                        -112.257192,
+                        31.6210352
                     ],
                     [
-                        -70.2562047,
-                        46.3152628
+                        -112.0033787,
+                        31.6210352
                     ],
                     [
-                        -70.3203651,
-                        46.3152628
+                        -112.0033787,
+                        31.559584
                     ],
                     [
-                        -70.3203651,
-                        46.0651209
+                        -111.815619,
+                        31.559584
                     ],
                     [
-                        -70.3814988,
-                        46.0651209
+                        -111.815619,
+                        31.4970238
                     ],
                     [
-                        -70.3814988,
-                        45.93552
+                        -111.6278586,
+                        31.4970238
                     ],
                     [
-                        -70.3201618,
-                        45.93552
+                        -111.6278586,
+                        31.4339867
                     ],
                     [
-                        -70.3201618,
-                        45.879479
+                        -111.4418978,
+                        31.4339867
                     ],
                     [
-                        -70.4493131,
-                        45.879479
+                        -111.4418978,
+                        31.3733859
                     ],
                     [
-                        -70.4493131,
-                        45.7538713
+                        -111.2559708,
+                        31.3733859
                     ],
                     [
-                        -70.5070021,
-                        45.7538713
+                        -111.2559708,
+                        31.3113225
                     ],
                     [
-                        -70.5070021,
-                        45.6916912
+                        -108.1845822,
+                        31.3113225
                     ],
                     [
-                        -70.6316642,
-                        45.6916912
+                        -108.1845822,
+                        31.7459502
                     ],
                     [
-                        -70.6316642,
-                        45.6291619
+                        -106.5065055,
+                        31.7459502
                     ],
                     [
-                        -70.7575538,
-                        45.6291619
+                        -106.5065055,
+                        31.6842308
                     ],
                     [
-                        -70.7575538,
-                        45.4414685
+                        -106.3797265,
+                        31.6842308
                     ],
                     [
-                        -70.8809878,
-                        45.4414685
+                        -106.3797265,
+                        31.621752
                     ],
                     [
-                        -70.8809878,
-                        45.3780612
+                        -106.317434,
+                        31.621752
                     ],
                     [
-                        -71.13328,
-                        45.3780612
+                        -106.317434,
+                        31.4968167
                     ],
                     [
-                        -71.13328,
-                        45.3151452
+                        -106.2551769,
+                        31.4968167
                     ],
                     [
-                        -71.3830282,
-                        45.3151452
+                        -106.2551769,
+                        31.4344889
                     ],
                     [
-                        -71.3830282,
-                        45.253416
+                        -106.1924698,
+                        31.4344889
                     ],
                     [
-                        -71.5076448,
-                        45.253416
+                        -106.1924698,
+                        31.3721296
                     ],
                     [
-                        -71.5076448,
-                        45.0655726
+                        -106.0039212,
+                        31.3721296
                     ],
                     [
-                        -73.9418929,
-                        45.0655726
+                        -106.0039212,
+                        31.309328
                     ],
                     [
-                        -73.9418929,
-                        45.0031242
+                        -105.9416582,
+                        31.309328
                     ],
                     [
-                        -74.7469725,
-                        45.0031242
+                        -105.9416582,
+                        31.2457547
                     ],
                     [
-                        -74.7469725,
-                        45.0649003
+                        -105.8798174,
+                        31.2457547
                     ],
                     [
-                        -74.8800964,
-                        45.0649003
+                        -105.8798174,
+                        31.1836194
                     ],
                     [
-                        -74.8800964,
-                        45.0029023
+                        -105.8162349,
+                        31.1836194
                     ],
                     [
-                        -75.0662455,
-                        45.0029023
+                        -105.8162349,
+                        31.1207155
                     ],
                     [
-                        -75.0662455,
-                        44.9415167
+                        -105.6921198,
+                        31.1207155
                     ],
                     [
-                        -75.2539363,
-                        44.9415167
+                        -105.6921198,
+                        31.0584835
                     ],
                     [
-                        -75.2539363,
-                        44.8776043
+                        -105.6302881,
+                        31.0584835
                     ],
                     [
-                        -75.3789648,
-                        44.8776043
+                        -105.6302881,
+                        30.9328271
                     ],
                     [
-                        -75.3789648,
-                        44.8153462
+                        -105.5044418,
+                        30.9328271
                     ],
                     [
-                        -75.4431283,
-                        44.8153462
+                        -105.5044418,
+                        30.8715864
                     ],
                     [
-                        -75.4431283,
-                        44.7536053
+                        -105.4412973,
+                        30.8715864
                     ],
                     [
-                        -75.5666566,
-                        44.7536053
+                        -105.4412973,
+                        30.808463
                     ],
                     [
-                        -75.5666566,
-                        44.6909879
+                        -105.3781497,
+                        30.808463
                     ],
                     [
-                        -75.6290205,
-                        44.6909879
+                        -105.3781497,
+                        30.7471828
                     ],
                     [
-                        -75.6290205,
-                        44.6284958
+                        -105.1904658,
+                        30.7471828
                     ],
                     [
-                        -75.7540484,
-                        44.6284958
+                        -105.1904658,
+                        30.6843231
                     ],
                     [
-                        -75.7540484,
-                        44.566385
+                        -105.1286244,
+                        30.6843231
                     ],
                     [
-                        -75.817312,
-                        44.566385
+                        -105.1286244,
+                        30.6199737
                     ],
                     [
-                        -75.817312,
-                        44.5028932
+                        -105.0036504,
+                        30.6199737
                     ],
                     [
-                        -75.8799549,
-                        44.5028932
+                        -105.0036504,
+                        30.5589058
                     ],
                     [
-                        -75.8799549,
-                        44.3784946
+                        -104.9417962,
+                        30.5589058
                     ],
                     [
-                        -76.1300319,
-                        44.3784946
+                        -104.9417962,
+                        30.4963236
                     ],
                     [
-                        -76.1300319,
-                        44.3159227
+                        -104.8782018,
+                        30.4963236
                     ],
                     [
-                        -76.1926961,
-                        44.3159227
+                        -104.8782018,
+                        30.3098261
                     ],
                     [
-                        -76.1926961,
-                        44.2534378
+                        -104.8155257,
+                        30.3098261
                     ],
                     [
-                        -76.3182619,
-                        44.2534378
+                        -104.8155257,
+                        30.2478305
                     ],
                     [
-                        -76.3182619,
-                        44.1916726
+                        -104.7536079,
+                        30.2478305
                     ],
                     [
-                        -76.3792975,
-                        44.1916726
+                        -104.7536079,
+                        29.9353916
                     ],
                     [
-                        -76.3792975,
-                        44.0653733
+                        -104.690949,
+                        29.9353916
                     ],
                     [
-                        -76.4427584,
-                        44.0653733
+                        -104.690949,
+                        29.8090156
                     ],
                     [
-                        -76.4427584,
-                        43.9963825
+                        -104.6291301,
+                        29.8090156
                     ],
                     [
-                        -76.317027,
-                        43.9963825
+                        -104.6291301,
+                        29.6843577
                     ],
                     [
-                        -76.317027,
-                        43.9414581
+                        -104.5659869,
+                        29.6843577
                     ],
                     [
-                        -76.5076611,
-                        43.9414581
+                        -104.5659869,
+                        29.6223459
                     ],
                     [
-                        -76.5076611,
-                        43.8723335
+                        -104.5037188,
+                        29.6223459
                     ],
                     [
-                        -76.3829974,
-                        43.8723335
+                        -104.5037188,
+                        29.5595436
                     ],
                     [
-                        -76.3829974,
-                        43.8091872
+                        -104.4410072,
+                        29.5595436
                     ],
                     [
-                        -76.2534102,
-                        43.8091872
+                        -104.4410072,
+                        29.4974832
                     ],
                     [
-                        -76.2534102,
-                        43.5665222
+                        -104.2537551,
+                        29.4974832
                     ],
                     [
-                        -76.5064833,
-                        43.5665222
+                        -104.2537551,
+                        29.3716718
                     ],
                     [
-                        -76.5064833,
-                        43.5033881
+                        -104.1291984,
+                        29.3716718
                     ],
                     [
-                        -76.6331208,
-                        43.5033881
+                        -104.1291984,
+                        29.3091621
                     ],
                     [
-                        -76.6331208,
-                        43.4432252
+                        -104.0688737,
+                        29.3091621
                     ],
                     [
-                        -76.6951085,
-                        43.4432252
+                        -104.0688737,
+                        29.2467276
                     ],
                     [
-                        -76.6951085,
-                        43.3786858
+                        -103.8187309,
+                        29.2467276
                     ],
                     [
-                        -76.8177798,
-                        43.3786858
+                        -103.8187309,
+                        29.1843076
                     ],
                     [
-                        -76.8177798,
-                        43.318066
+                        -103.755736,
+                        29.1843076
                     ],
                     [
-                        -77.682,
-                        43.318066
+                        -103.755736,
+                        29.1223174
                     ],
                     [
-                        -77.682,
-                        43.3789376
+                        -103.5667542,
+                        29.1223174
                     ],
                     [
-                        -78.0565883,
-                        43.3789376
+                        -103.5667542,
+                        29.0598119
                     ],
                     [
-                        -78.0565883,
-                        43.4396918
+                        -103.5049819,
+                        29.0598119
                     ],
                     [
-                        -78.4389748,
-                        43.4396918
+                        -103.5049819,
+                        28.9967506
                     ],
                     [
-                        -78.4389748,
-                        43.3794382
+                        -103.3165753,
+                        28.9967506
                     ],
                     [
-                        -78.8803396,
-                        43.3794382
+                        -103.3165753,
+                        28.9346923
                     ],
                     [
-                        -78.8803396,
-                        43.3149724
+                        -103.0597572,
+                        28.9346923
                     ],
                     [
-                        -79.1298858,
-                        43.3149724
+                        -103.0597572,
+                        29.0592965
                     ],
                     [
-                        -79.1298858,
-                        43.2429286
+                        -102.9979694,
+                        29.0592965
                     ],
                     [
-                        -79.0669615,
-                        43.2429286
+                        -102.9979694,
+                        29.1212855
                     ],
                     [
-                        -79.0669615,
-                        43.1299931
+                        -102.9331397,
+                        29.1212855
                     ],
                     [
-                        -79.1298858,
-                        43.1299931
+                        -102.9331397,
+                        29.1848575
                     ],
                     [
-                        -79.1298858,
-                        43.0577305
+                        -102.8095989,
+                        29.1848575
                     ],
                     [
-                        -79.071264,
-                        43.0577305
+                        -102.8095989,
+                        29.2526154
                     ],
                     [
-                        -79.071264,
-                        42.9294906
+                        -102.8701345,
+                        29.2526154
                     ],
                     [
-                        -78.943264,
-                        42.9294906
+                        -102.8701345,
+                        29.308096
                     ],
                     [
-                        -78.943264,
-                        42.7542165
+                        -102.8096681,
+                        29.308096
                     ],
                     [
-                        -79.069439,
-                        42.7542165
+                        -102.8096681,
+                        29.3715484
                     ],
                     [
-                        -79.069439,
-                        42.6941622
+                        -102.7475655,
+                        29.3715484
                     ],
                     [
-                        -79.133439,
-                        42.6941622
+                        -102.7475655,
+                        29.5581899
                     ],
                     [
-                        -79.133439,
-                        42.6296973
+                        -102.684554,
+                        29.5581899
                     ],
                     [
-                        -79.1947499,
-                        42.6296973
+                        -102.684554,
+                        29.6847655
                     ],
                     [
-                        -79.1947499,
-                        42.5663538
+                        -102.4967764,
+                        29.6847655
                     ],
                     [
-                        -79.3786827,
-                        42.5663538
+                        -102.4967764,
+                        29.7457694
                     ],
                     [
-                        -79.3786827,
-                        42.5033425
+                        -102.3086647,
+                        29.7457694
                     ],
                     [
-                        -79.4442961,
-                        42.5033425
+                        -102.3086647,
+                        29.8086627
                     ],
                     [
-                        -79.4442961,
-                        42.4410614
+                        -102.1909323,
+                        29.8086627
                     ],
                     [
-                        -79.5679936,
-                        42.4410614
+                        -102.1909323,
+                        29.7460097
                     ],
                     [
-                        -79.5679936,
-                        42.3775264
+                        -101.5049914,
+                        29.7460097
                     ],
                     [
-                        -79.6906154,
-                        42.3775264
+                        -101.5049914,
+                        29.6846777
                     ],
                     [
-                        -79.6906154,
-                        42.3171086
+                        -101.3805796,
+                        29.6846777
                     ],
                     [
-                        -79.8164642,
-                        42.3171086
+                        -101.3805796,
+                        29.5594459
                     ],
                     [
-                        -79.8164642,
-                        42.2534481
+                        -101.3175057,
+                        29.5594459
                     ],
                     [
-                        -80.0052373,
-                        42.2534481
+                        -101.3175057,
+                        29.4958934
                     ],
                     [
-                        -80.0052373,
-                        42.1909188
+                        -101.1910075,
+                        29.4958934
                     ],
                     [
-                        -80.1916829,
-                        42.1909188
+                        -101.1910075,
+                        29.4326115
                     ],
                     [
-                        -80.1916829,
-                        42.1272555
+                        -101.067501,
+                        29.4326115
                     ],
                     [
-                        -80.3167992,
-                        42.1272555
+                        -101.067501,
+                        29.308808
                     ],
                     [
-                        -80.3167992,
-                        42.0669857
+                        -100.9418897,
+                        29.308808
                     ],
                     [
-                        -80.5063234,
-                        42.0669857
+                        -100.9418897,
+                        29.2456231
                     ],
                     [
-                        -80.5063234,
-                        42.0034331
+                        -100.8167271,
+                        29.2456231
                     ],
                     [
-                        -80.6930471,
-                        42.0034331
+                        -100.8167271,
+                        29.1190449
                     ],
                     [
-                        -80.6930471,
-                        41.9415141
+                        -100.7522672,
+                        29.1190449
                     ],
                     [
-                        -80.9440403,
-                        41.9415141
+                        -100.7522672,
+                        29.0578214
                     ],
                     [
-                        -80.9440403,
-                        41.8781193
+                        -100.6925358,
+                        29.0578214
                     ],
                     [
-                        -81.1942729,
-                        41.8781193
+                        -100.6925358,
+                        28.8720431
                     ],
                     [
-                        -81.1942729,
-                        41.8166455
+                        -100.6290158,
+                        28.8720431
                     ],
                     [
-                        -81.3190089,
-                        41.8166455
+                        -100.6290158,
+                        28.8095363
                     ],
                     [
-                        -81.3190089,
-                        41.7545453
+                        -100.5679901,
+                        28.8095363
                     ],
                     [
-                        -81.4418435,
-                        41.7545453
+                        -100.5679901,
+                        28.622554
                     ],
                     [
-                        -81.4418435,
-                        41.690965
+                        -100.5040411,
+                        28.622554
                     ],
                     [
-                        -81.5053523,
-                        41.690965
+                        -100.5040411,
+                        28.5583804
                     ],
                     [
-                        -81.5053523,
-                        41.6301643
+                        -100.4421832,
+                        28.5583804
                     ],
                     [
-                        -82.7470081,
-                        41.6301643
+                        -100.4421832,
+                        28.4968266
                     ],
                     [
-                        -82.7470081,
-                        41.7536942
+                        -100.379434,
+                        28.4968266
                     ],
                     [
-                        -82.8839135,
-                        41.7536942
+                        -100.379434,
+                        28.3092865
                     ],
                     [
-                        -82.8839135,
-                        41.5656075
+                        -100.3171942,
+                        28.3092865
                     ],
                     [
-                        -82.9957195,
-                        41.5656075
+                        -100.3171942,
+                        28.1835681
                     ],
                     [
-                        -82.9957195,
-                        41.6270375
+                        -100.254483,
+                        28.1835681
                     ],
                     [
-                        -83.1257796,
-                        41.6270375
+                        -100.254483,
+                        28.1213885
                     ],
                     [
-                        -83.1257796,
-                        41.6878411
+                        -100.1282282,
+                        28.1213885
                     ],
                     [
-                        -83.2474733,
-                        41.6878411
+                        -100.1282282,
+                        28.059215
                     ],
                     [
-                        -83.2474733,
-                        41.7536942
+                        -100.0659537,
+                        28.059215
                     ],
                     [
-                        -83.3737305,
-                        41.7536942
+                        -100.0659537,
+                        27.9966087
                     ],
                     [
-                        -83.3737305,
-                        41.809276
+                        -100.0023855,
+                        27.9966087
                     ],
                     [
-                        -83.3106019,
-                        41.809276
+                        -100.0023855,
+                        27.9332152
                     ],
                     [
-                        -83.3106019,
-                        41.8716064
+                        -99.9426497,
+                        27.9332152
                     ],
                     [
-                        -83.2474733,
-                        41.8716064
+                        -99.9426497,
+                        27.7454658
                     ],
                     [
-                        -83.2474733,
-                        41.9361393
+                        -99.816851,
+                        27.7454658
                     ],
                     [
-                        -83.1843447,
-                        41.9361393
+                        -99.816851,
+                        27.6834301
                     ],
                     [
-                        -83.1843447,
-                        41.9960851
+                        -99.7541346,
+                        27.6834301
                     ],
                     [
-                        -83.1207681,
-                        41.9960851
+                        -99.7541346,
+                        27.6221543
                     ],
                     [
-                        -83.1207681,
-                        42.2464812
+                        -99.6291629,
+                        27.6221543
                     ],
                     [
-                        -83.0589194,
-                        42.2464812
+                        -99.6291629,
+                        27.5588977
                     ],
                     [
-                        -83.0589194,
-                        42.3089555
+                        -99.5672838,
+                        27.5588977
                     ],
                     [
-                        -82.8685328,
-                        42.3089555
+                        -99.5672838,
+                        27.4353752
                     ],
                     [
-                        -82.8685328,
-                        42.3717652
+                        -99.5041798,
+                        27.4353752
                     ],
                     [
-                        -82.8072219,
-                        42.3717652
+                        -99.5041798,
+                        27.3774021
                     ],
                     [
-                        -82.8072219,
-                        42.558553
+                        -99.5671796,
+                        27.3774021
                     ],
                     [
-                        -82.7553745,
-                        42.558553
+                        -99.5671796,
+                        27.2463726
                     ],
                     [
-                        -82.7553745,
-                        42.4954945
+                        -99.504975,
+                        27.2463726
                     ],
                     [
-                        -82.5599041,
-                        42.4954945
+                        -99.504975,
+                        26.9965649
                     ],
                     [
-                        -82.5599041,
-                        42.558553
+                        -99.4427427,
+                        26.9965649
                     ],
                     [
-                        -82.4967755,
-                        42.558553
+                        -99.4427427,
+                        26.872803
                     ],
                     [
-                        -82.4967755,
-                        42.6833607
+                        -99.3800633,
+                        26.872803
                     ],
                     [
-                        -82.4328863,
-                        42.6833607
+                        -99.3800633,
+                        26.8068179
                     ],
                     [
-                        -82.4328863,
-                        42.9342196
+                        -99.3190684,
+                        26.8068179
                     ],
                     [
-                        -82.3700552,
-                        42.9342196
+                        -99.3190684,
+                        26.7473614
                     ],
                     [
-                        -82.3700552,
-                        43.0648071
+                        -99.2537541,
+                        26.7473614
                     ],
                     [
-                        -82.4328863,
-                        43.0648071
+                        -99.2537541,
+                        26.6210068
                     ],
                     [
-                        -82.4328863,
-                        43.1917566
+                        -99.1910617,
+                        26.6210068
                     ],
                     [
-                        -82.4947464,
-                        43.1917566
+                        -99.1910617,
+                        26.4956737
                     ],
                     [
-                        -82.4947464,
-                        43.5034627
+                        -99.1300639,
+                        26.4956737
                     ],
                     [
-                        -82.557133,
-                        43.5034627
+                        -99.1300639,
+                        26.3713808
                     ],
                     [
-                        -82.557133,
-                        43.8160901
+                        -99.0029473,
+                        26.3713808
                     ],
                     [
-                        -82.6197884,
-                        43.8160901
+                        -99.0029473,
+                        26.3093836
                     ],
                     [
-                        -82.6197884,
-                        43.9422098
+                        -98.816572,
+                        26.3093836
                     ],
                     [
-                        -82.6839499,
-                        43.9422098
+                        -98.816572,
+                        26.2457762
                     ],
                     [
-                        -82.6839499,
-                        44.0022641
+                        -98.6920082,
+                        26.2457762
                     ],
                     [
-                        -82.7465346,
-                        44.0022641
+                        -98.6920082,
+                        26.1837096
                     ],
                     [
-                        -82.7465346,
-                        44.0670545
+                        -98.4440896,
+                        26.1837096
                     ],
                     [
-                        -82.8708696,
-                        44.0670545
+                        -98.4440896,
+                        26.1217217
                     ],
                     [
-                        -82.8708696,
-                        44.1291935
+                        -98.3823181,
+                        26.1217217
                     ],
                     [
-                        -83.008517,
-                        44.1291935
+                        -98.3823181,
+                        26.0596488
                     ],
                     [
-                        -83.008517,
-                        44.0664786
+                        -98.2532707,
+                        26.0596488
                     ],
                     [
-                        -83.1336086,
-                        44.0664786
+                        -98.2532707,
+                        25.9986871
                     ],
                     [
-                        -83.1336086,
-                        44.0053949
+                        -98.0109084,
+                        25.9986871
                     ],
                     [
-                        -83.2414522,
-                        44.0053949
+                        -98.0109084,
+                        25.9932255
                     ],
                     [
-                        -83.2414522,
-                        44.9962034
+                        -97.6932319,
+                        25.9932255
                     ],
                     [
-                        -83.1806112,
-                        44.9962034
+                        -97.6932319,
+                        25.9334103
                     ],
                     [
-                        -83.1806112,
-                        45.067302
+                        -97.6313904,
+                        25.9334103
                     ],
                     [
-                        -83.2455172,
-                        45.067302
+                        -97.6313904,
+                        25.8695893
                     ],
                     [
-                        -83.2455172,
-                        45.1287382
+                        -97.5046779,
+                        25.8695893
                     ],
                     [
-                        -83.3065878,
-                        45.1287382
+                        -97.5046779,
+                        25.8073488
                     ],
                     [
-                        -83.3065878,
-                        45.2551509
+                        -97.3083401,
+                        25.8073488
                     ],
                     [
-                        -83.3706087,
-                        45.2551509
+                        -97.3083401,
+                        25.8731159
                     ],
                     [
-                        -83.3706087,
-                        45.3165923
+                        -97.2456326,
+                        25.8731159
                     ],
                     [
-                        -83.4325644,
-                        45.3165923
+                        -97.2456326,
+                        25.9353731
                     ],
                     [
-                        -83.4325644,
-                        45.3792105
+                        -97.1138939,
+                        25.9353731
                     ],
                     [
-                        -83.6178415,
-                        45.3792105
+                        -97.1138939,
+                        27.6809179
                     ],
                     [
-                        -83.6178415,
-                        45.4419665
+                        -97.0571035,
+                        27.6809179
                     ],
                     [
-                        -83.8084291,
-                        45.4419665
+                        -97.0571035,
+                        27.8108242
                     ],
                     [
-                        -83.8084291,
-                        45.5036189
+                        -95.5810766,
+                        27.8108242
                     ],
                     [
-                        -84.0550718,
-                        45.5036189
+                        -95.5810766,
+                        28.7468827
                     ],
                     [
-                        -84.0550718,
-                        45.5647907
+                        -94.271041,
+                        28.7468827
                     ],
                     [
-                        -84.1235181,
-                        45.5647907
+                        -94.271041,
+                        29.5594076
                     ],
                     [
-                        -84.1235181,
-                        45.6287845
+                        -92.5029947,
+                        29.5594076
                     ],
                     [
-                        -84.1807534,
-                        45.6287845
+                        -92.5029947,
+                        29.4974754
                     ],
                     [
-                        -84.1807534,
-                        45.6914688
+                        -91.8776216,
+                        29.4974754
                     ],
                     [
-                        -84.3111554,
-                        45.6914688
+                        -91.8776216,
+                        29.3727013
                     ],
                     [
-                        -84.3111554,
-                        45.9337076
+                        -91.378418,
+                        29.3727013
                     ],
                     [
-                        -83.8209974,
-                        45.9337076
+                        -91.378418,
+                        29.2468326
                     ],
                     [
-                        -83.8209974,
-                        45.8725113
+                        -91.3153953,
+                        29.2468326
                     ],
                     [
-                        -83.4968086,
-                        45.8725113
+                        -91.3153953,
+                        29.1844301
                     ],
                     [
-                        -83.4968086,
-                        45.9337076
+                        -91.1294702,
+                        29.1844301
                     ],
                     [
-                        -83.4338066,
-                        45.9337076
+                        -91.1294702,
+                        29.1232559
                     ],
                     [
-                        -83.4338066,
-                        46.0016863
+                        -91.0052632,
+                        29.1232559
                     ],
                     [
-                        -83.4962697,
-                        46.0016863
+                        -91.0052632,
+                        28.9968437
                     ],
                     [
-                        -83.4962697,
-                        46.0668178
+                        -89.4500159,
+                        28.9968437
                     ],
                     [
-                        -83.5599956,
-                        46.0668178
+                        -89.4500159,
+                        28.8677422
                     ],
                     [
-                        -83.5599956,
-                        46.1261576
+                        -88.8104309,
+                        28.8677422
                     ],
                     [
-                        -83.9954558,
-                        46.1261576
+                        -88.8104309,
+                        30.1841864
                     ],
                     [
-                        -83.9954558,
-                        46.1931747
+                        -85.8791527,
+                        30.1841864
                     ],
                     [
-                        -84.0591816,
-                        46.1931747
+                        -85.8791527,
+                        29.5455038
                     ],
                     [
-                        -84.0591816,
-                        46.3814972
+                        -84.8368083,
+                        29.5455038
                     ],
                     [
-                        -84.1152614,
-                        46.3814972
+                        -84.8368083,
+                        29.6225158
                     ],
                     [
-                        -84.1152614,
-                        46.4953584
+                        -84.7482786,
+                        29.6225158
                     ],
                     [
-                        -84.0591816,
-                        46.4953584
+                        -84.7482786,
+                        29.683624
                     ],
                     [
-                        -84.0591816,
-                        46.5682653
+                        -84.685894,
+                        29.683624
                     ],
                     [
-                        -84.2579545,
-                        46.5682653
+                        -84.685894,
+                        29.7468386
                     ],
                     [
-                        -84.2579545,
-                        46.5051232
+                        -83.6296975,
+                        29.7468386
                     ],
                     [
-                        -84.3071879,
-                        46.5051232
+                        -83.6296975,
+                        29.4324361
                     ],
                     [
-                        -84.3071879,
-                        46.5682653
+                        -83.3174937,
+                        29.4324361
                     ],
                     [
-                        -84.4415364,
-                        46.5682653
+                        -83.3174937,
+                        29.0579442
                     ],
                     [
-                        -84.4415364,
-                        46.504525
+                        -82.879659,
+                        29.0579442
                     ],
                     [
-                        -84.9965729,
-                        46.504525
+                        -82.879659,
+                        27.7453529
                     ],
                     [
-                        -84.9965729,
-                        46.6842882
+                        -82.8182822,
+                        27.7453529
                     ],
                     [
-                        -84.9298158,
-                        46.6842882
+                        -82.8182822,
+                        26.9290868
                     ],
                     [
-                        -84.9298158,
-                        46.818077
+                        -82.3796782,
+                        26.9290868
                     ],
                     [
-                        -85.3165894,
-                        46.818077
+                        -82.3796782,
+                        26.3694183
                     ],
                     [
-                        -85.3165894,
-                        46.7535825
+                        -81.8777106,
+                        26.3694183
                     ],
                     [
-                        -87.5562645,
-                        46.7535825
+                        -81.8777106,
+                        25.805971
                     ],
                     [
-                        -87.5562645,
-                        47.4407371
+                        -81.5036862,
+                        25.805971
                     ],
                     [
-                        -87.6825361,
-                        47.4407371
+                        -81.5036862,
+                        25.7474753
                     ],
                     [
-                        -87.6825361,
-                        47.5035554
+                        -81.4405462,
+                        25.7474753
                     ],
                     [
-                        -88.2560738,
-                        47.5035554
+                        -81.4405462,
+                        25.6851489
                     ],
                     [
-                        -88.2560738,
-                        47.4433716
+                        -81.3155883,
+                        25.6851489
                     ],
                     [
-                        -88.4417419,
-                        47.4433716
+                        -81.3155883,
+                        25.5600985
                     ],
                     [
-                        -88.4417419,
-                        47.3789949
+                        -81.2538534,
+                        25.5600985
                     ],
                     [
-                        -88.50683,
-                        47.3789949
+                        -81.2538534,
+                        25.4342361
                     ],
                     [
-                        -88.50683,
-                        47.3153881
+                        -81.1902012,
+                        25.4342361
                     ],
                     [
-                        -88.6312821,
-                        47.3153881
+                        -81.1902012,
+                        25.1234341
                     ],
                     [
-                        -88.6312821,
-                        47.2539782
+                        -81.1288133,
+                        25.1234341
                     ],
                     [
-                        -88.7569636,
-                        47.2539782
+                        -81.1288133,
+                        25.0619389
                     ],
                     [
-                        -88.7569636,
-                        47.1934682
+                        -81.0649231,
+                        25.0619389
                     ],
                     [
-                        -88.8838253,
-                        47.1934682
+                        -81.0649231,
+                        24.8157807
                     ],
                     [
-                        -88.8838253,
-                        47.1284735
+                        -81.6289469,
+                        24.8157807
                     ],
                     [
-                        -88.9434208,
-                        47.1284735
+                        -81.6289469,
+                        24.7538367
                     ],
                     [
-                        -88.9434208,
-                        47.0662127
+                        -81.6907173,
+                        24.7538367
                     ],
                     [
-                        -89.0708726,
-                        47.0662127
+                        -81.6907173,
+                        24.6899374
                     ],
                     [
-                        -89.0708726,
-                        47.0026826
+                        -81.8173189,
+                        24.6899374
                     ],
                     [
-                        -89.2565553,
-                        47.0026826
+                        -81.8173189,
+                        24.6279161
                     ],
                     [
-                        -89.2565553,
-                        46.9410806
+                        -82.1910041,
+                        24.6279161
                     ],
                     [
-                        -90.3677669,
-                        46.9410806
+                        -82.1910041,
+                        24.496294
                     ],
                     [
-                        -90.3677669,
-                        47.6844827
+                        -81.6216596,
+                        24.496294
                     ],
                     [
-                        -90.3069978,
-                        47.6844827
+                        -81.6216596,
+                        24.559484
                     ],
                     [
-                        -90.3069978,
-                        47.7460174
+                        -81.372006,
+                        24.559484
                     ],
                     [
-                        -89.994859,
-                        47.7460174
+                        -81.372006,
+                        24.6220687
                     ],
                     [
-                        -89.994859,
-                        47.8082719
+                        -81.0593278,
+                        24.6220687
                     ],
                     [
-                        -89.8048615,
-                        47.8082719
+                        -81.0593278,
+                        24.684826
                     ],
                     [
-                        -89.8048615,
-                        47.8700562
+                        -80.9347147,
+                        24.684826
                     ],
                     [
-                        -89.6797699,
-                        47.8700562
+                        -80.9347147,
+                        24.7474828
                     ],
                     [
-                        -89.6797699,
-                        47.9339637
+                        -80.7471081,
+                        24.7474828
                     ],
                     [
-                        -89.4933757,
-                        47.9339637
+                        -80.7471081,
+                        24.8100618
                     ],
                     [
-                        -89.4933757,
-                        47.9957956
+                        -80.3629898,
+                        24.8100618
                     ],
                     [
-                        -89.4284697,
-                        47.9957956
+                        -80.3629898,
+                        25.1175858
                     ],
                     [
-                        -89.4284697,
-                        48.0656377
+                        -80.122344,
+                        25.1175858
                     ],
                     [
-                        -89.9932739,
-                        48.0656377
+                        -80.122344,
+                        25.7472357
                     ],
                     [
-                        -89.9932739,
-                        48.1282966
+                        -80.0588458,
+                        25.7472357
                     ],
                     [
-                        -90.7455933,
-                        48.1282966
+                        -80.0588458,
+                        26.3708251
                     ],
                     [
-                        -90.7455933,
-                        48.1893056
+                        -79.995837,
+                        26.3708251
                     ],
                     [
-                        -90.8087291,
-                        48.1893056
+                        -79.995837,
+                        26.9398003
                     ],
                     [
-                        -90.8087291,
-                        48.2522065
+                        -80.0587265,
+                        26.9398003
                     ],
                     [
-                        -91.067763,
-                        48.2522065
+                        -80.0587265,
+                        27.1277466
                     ],
                     [
-                        -91.067763,
-                        48.1916658
+                        -80.1226251,
+                        27.1277466
                     ],
                     [
-                        -91.1946247,
-                        48.1916658
+                        -80.1226251,
+                        27.2534279
                     ],
                     [
-                        -91.1946247,
-                        48.1279027
+                        -80.1846956,
+                        27.2534279
                     ],
                     [
-                        -91.6814196,
-                        48.1279027
+                        -80.1846956,
+                        27.3781229
                     ],
                     [
-                        -91.6814196,
-                        48.2525994
+                        -80.246175,
+                        27.3781229
                     ],
                     [
-                        -91.9321927,
-                        48.2525994
+                        -80.246175,
+                        27.5658729
                     ],
                     [
-                        -91.9321927,
-                        48.3142454
+                        -80.3094768,
+                        27.5658729
                     ],
                     [
-                        -91.9929683,
-                        48.3142454
+                        -80.3094768,
+                        27.7530311
                     ],
                     [
-                        -91.9929683,
-                        48.3780845
+                        -80.3721485,
+                        27.7530311
                     ],
                     [
-                        -92.3189383,
-                        48.3780845
+                        -80.3721485,
+                        27.8774451
                     ],
                     [
-                        -92.3189383,
-                        48.2529081
+                        -80.4351457,
+                        27.8774451
                     ],
                     [
-                        -92.3732233,
-                        48.2529081
+                        -80.4351457,
+                        28.0033366
                     ],
                     [
-                        -92.3732233,
-                        48.3153385
+                        -80.4966078,
+                        28.0033366
                     ],
                     [
-                        -92.4322288,
-                        48.3153385
+                        -80.4966078,
+                        28.1277326
                     ],
                     [
-                        -92.4322288,
-                        48.4411448
+                        -80.5587159,
+                        28.1277326
                     ],
                     [
-                        -92.4977248,
-                        48.4411448
+                        -80.5587159,
+                        28.3723509
                     ],
                     [
-                        -92.4977248,
-                        48.501781
+                        -80.4966335,
+                        28.3723509
                     ],
                     [
-                        -92.5679413,
-                        48.501781
+                        -80.4966335,
+                        29.5160326
                     ],
                     [
-                        -92.5679413,
-                        48.439579
+                        -81.1213644,
+                        29.5160326
                     ],
                     [
-                        -92.6210462,
-                        48.439579
+                        -81.1213644,
+                        31.6846966
                     ],
                     [
-                        -92.6210462,
-                        48.5650783
+                        -80.6018723,
+                        31.6846966
                     ],
                     [
-                        -92.8086835,
-                        48.5650783
+                        -80.6018723,
+                        32.2475309
                     ],
                     [
-                        -92.8086835,
-                        48.6286865
+                        -79.4921024,
+                        32.2475309
                     ],
                     [
-                        -92.8086835,
-                        48.6267365
+                        -79.4921024,
+                        32.9970261
                     ],
                     [
-                        -92.933185,
-                        48.6267365
+                        -79.1116488,
+                        32.9970261
                     ],
                     [
-                        -92.933185,
-                        48.6922145
+                        -79.1116488,
+                        33.3729457
                     ],
                     [
-                        -93.0051716,
-                        48.6922145
+                        -78.6153621,
+                        33.3729457
                     ],
                     [
-                        -93.0051716,
-                        48.6282965
+                        -78.6153621,
+                        33.8097638
                     ],
                     [
-                        -93.1225924,
-                        48.6282965
+                        -77.9316963,
+                        33.8097638
                     ],
                     [
-                        -93.1225924,
-                        48.6922145
+                        -77.9316963,
+                        33.8718243
                     ],
                     [
-                        -93.3190806,
-                        48.6922145
+                        -77.8692252,
+                        33.8718243
                     ],
                     [
-                        -93.3190806,
-                        48.6267365
+                        -77.8692252,
+                        34.0552454
                     ],
                     [
-                        -93.5049477,
-                        48.6267365
+                        -77.6826392,
+                        34.0552454
                     ],
                     [
-                        -93.5049477,
-                        48.5635164
+                        -77.6826392,
+                        34.2974598
                     ],
                     [
-                        -93.7474601,
-                        48.5635164
+                        -77.2453509,
+                        34.2974598
                     ],
                     [
-                        -93.7474601,
-                        48.6267365
+                        -77.2453509,
+                        34.5598585
                     ],
                     [
-                        -93.8135461,
-                        48.6267365
+                        -76.4973277,
+                        34.5598585
                     ],
                     [
-                        -93.8135461,
-                        48.6898775
+                        -76.4973277,
+                        34.622796
                     ],
                     [
-                        -94.2453121,
-                        48.6898775
+                        -76.4337602,
+                        34.622796
                     ],
                     [
-                        -94.2453121,
-                        48.7554327
+                        -76.4337602,
+                        34.6849285
                     ],
                     [
-                        -94.6183171,
-                        48.7554327
+                        -76.373212,
+                        34.6849285
                     ],
                     [
-                        -94.6183171,
-                        48.941036
+                        -76.373212,
+                        34.7467674
                     ],
                     [
-                        -94.6809018,
-                        48.941036
+                        -76.3059364,
+                        34.7467674
                     ],
                     [
-                        -94.6809018,
-                        49.0029737
+                        -76.3059364,
+                        34.808551
                     ],
                     [
-                        -94.7441532,
-                        49.0029737
+                        -76.2468017,
+                        34.808551
                     ],
                     [
-                        -94.7441532,
-                        49.2536079
+                        -76.2468017,
+                        34.8728418
                     ],
                     [
-                        -94.8084069,
-                        49.2536079
+                        -76.1825922,
+                        34.8728418
                     ],
                     [
-                        -94.8084069,
-                        49.3784134
+                        -76.1825922,
+                        34.9335332
                     ],
                     [
-                        -95.1192391,
-                        49.3784134
+                        -76.120814,
+                        34.9335332
                     ],
                     [
-                        -95.1192391,
-                        49.4425264
+                        -76.120814,
+                        34.9952359
                     ],
                     [
-                        -95.1934341,
-                        49.4425264
+                        -75.9979015,
+                        34.9952359
                     ],
                     [
-                        -95.1934341,
-                        49.0035292
+                        -75.9979015,
+                        35.0578182
                     ],
                     [
-                        -96.87069,
-                        49.0035292
+                        -75.870338,
+                        35.0578182
                     ],
                     [
-                        -96.87069,
-                        49.0656063
+                        -75.870338,
+                        35.1219097
                     ],
                     [
-                        -99.0049312,
-                        49.0656063
+                        -75.7462194,
+                        35.1219097
                     ],
                     [
-                        -99.0049312,
-                        49.0050714
+                        -75.7462194,
+                        35.1818911
                     ],
                     [
-                        -109.3699257,
-                        49.0050714
+                        -75.4929694,
+                        35.1818911
                     ],
                     [
-                        -109.3699257,
-                        49.0668231
+                        -75.4929694,
+                        35.3082988
                     ],
                     [
-                        -109.5058746,
-                        49.0668231
+                        -75.4325662,
+                        35.3082988
                     ],
                     [
-                        -109.5058746,
-                        49.0050714
+                        -75.4325662,
+                        35.7542495
                     ],
                     [
-                        -114.1830014,
-                        49.0050714
+                        -75.4969907,
+                        35.7542495
                     ],
                     [
-                        -114.1830014,
-                        49.0687317
+                        -75.4969907,
+                        37.8105602
                     ],
                     [
-                        -114.7578709,
-                        49.0687317
+                        -75.3082972,
+                        37.8105602
                     ],
                     [
-                        -114.7578709,
-                        49.0050714
+                        -75.3082972,
+                        37.8720088
                     ],
                     [
-                        -115.433731,
-                        49.0050714
+                        -75.245601,
+                        37.8720088
                     ],
                     [
-                        -115.433731,
-                        49.0671412
+                        -75.245601,
+                        37.9954849
                     ],
                     [
-                        -116.5062706,
-                        49.0671412
+                        -75.1828751,
+                        37.9954849
                     ],
                     [
-                        -116.5062706,
-                        49.0050714
+                        -75.1828751,
+                        38.0585079
                     ],
                     [
-                        -117.3089504,
-                        49.0050714
+                        -75.1184793,
+                        38.0585079
                     ],
                     [
-                        -117.3089504,
-                        49.0659803
+                        -75.1184793,
+                        38.2469091
                     ],
                     [
-                        -119.882945,
-                        49.0659803
+                        -75.0592098,
+                        38.2469091
                     ],
                     [
-                        -119.882945,
-                        49.0050714
+                        -75.0592098,
+                        38.3704316
                     ],
                     [
-                        -120.1208555,
-                        49.0050714
+                        -74.9948111,
+                        38.3704316
                     ],
                     [
-                        -120.1208555,
-                        49.0678367
+                        -74.9948111,
+                        38.8718417
                     ],
                     [
-                        -121.4451636,
-                        49.0678367
+                        -74.4878252,
+                        38.8718417
                     ],
                     [
-                        -121.4451636,
-                        49.0050714
+                        -74.4878252,
+                        39.3089428
                     ],
                     [
-                        -121.9311808,
-                        49.0050714
+                        -74.1766317,
+                        39.3089428
                     ],
                     [
-                        -121.9311808,
-                        49.0656099
+                        -74.1766317,
+                        39.6224653
                     ],
                     [
-                        -122.817484,
-                        49.0656099
+                        -74.0567045,
+                        39.6224653
                     ],
                     [
-                        -122.817484,
-                        49.0029143
+                        -74.0567045,
+                        39.933178
                     ],
                     [
-                        -122.8795155,
-                        49.0029143
+                        -73.9959035,
+                        39.933178
                     ],
                     [
-                        -122.8795155,
-                        48.9347018
+                        -73.9959035,
+                        40.1854852
                     ],
                     [
-                        -122.8174629,
-                        48.9347018
+                        -73.9341593,
+                        40.1854852
                     ],
                     [
-                        -122.8174629,
-                        48.8101998
+                        -73.9341593,
+                        40.4959486
                     ],
                     [
-                        -122.7538859,
-                        48.8101998
+                        -73.8723024,
+                        40.4959486
                     ],
                     [
-                        -122.7538859,
-                        48.7533758
+                        -73.8723024,
+                        40.5527135
                     ],
                     [
-                        -122.8712937,
-                        48.7533758
+                        -71.8074506,
+                        40.5527135
                     ],
                     [
-                        -122.8712937,
-                        48.8153948
+                        -71.8074506,
+                        41.3088005
                     ],
                     [
-                        -123.0055391,
-                        48.8153948
+                        -70.882512,
+                        41.3088005
                     ],
                     [
-                        -123.0055391,
-                        48.7529529
+                        -70.882512,
+                        41.184978
                     ],
                     [
-                        -123.1296926,
-                        48.7529529
+                        -70.7461947,
+                        41.184978
                     ],
                     [
-                        -123.1296926,
-                        48.6902201
+                        -70.7461947,
+                        41.3091865
                     ],
                     [
-                        -123.1838197,
-                        48.6902201
+                        -70.4337553,
+                        41.3091865
                     ],
                     [
-                        -123.1838197,
-                        48.7529029
-                    ]
-                ],
-                [
-                    [
-                        -122.9341743,
-                        37.7521547
+                        -70.4337553,
+                        41.4963885
                     ],
                     [
-                        -122.9347457,
-                        37.6842013
+                        -69.9334281,
+                        41.4963885
                     ],
                     [
-                        -123.0679013,
-                        37.6849023
+                        -69.9334281,
+                        41.6230802
                     ],
                     [
-                        -123.0673747,
-                        37.7475251
+                        -69.869857,
+                        41.6230802
                     ],
                     [
-                        -123.1292603,
-                        37.7478506
+                        -69.869857,
+                        41.8776895
                     ],
                     [
-                        -123.1286894,
-                        37.815685
+                        -69.935791,
+                        41.8776895
                     ],
                     [
-                        -123.0590687,
-                        37.8153192
+                        -69.935791,
+                        42.0032342
                     ],
                     [
-                        -123.0595947,
-                        37.7528143
-                    ]
-                ],
-                [
-                    [
-                        -71.6299464,
-                        41.2540893
+                        -69.9975823,
+                        42.0032342
                     ],
                     [
-                        -71.4966465,
-                        41.2541393
+                        -69.9975823,
+                        42.0650191
                     ],
                     [
-                        -71.4965596,
-                        41.122965
+                        -70.0606103,
+                        42.0650191
                     ],
                     [
-                        -71.6298594,
-                        41.1229149
-                    ]
-                ],
-                [
+                        -70.0606103,
+                        42.1294348
+                    ],
                     [
-                        -70.3184265,
-                        41.3775196
+                        -70.5572884,
+                        42.1294348
                     ],
                     [
-                        -70.3183384,
-                        41.2448243
+                        -70.5572884,
+                        43.2487079
                     ],
                     [
-                        -70.1906612,
-                        41.2448722
+                        -70.4974097,
+                        43.2487079
                     ],
                     [
-                        -70.1906239,
-                        41.1886019
+                        -70.4974097,
+                        43.3092194
                     ],
                     [
-                        -69.9336025,
-                        41.1886984
+                        -70.3704249,
+                        43.3092194
                     ],
                     [
-                        -69.933729,
-                        41.3791941
+                        -70.3704249,
+                        43.371963
                     ],
                     [
-                        -69.9950664,
-                        41.3791712
+                        -70.3085701,
+                        43.371963
                     ],
                     [
-                        -69.995109,
-                        41.443159
+                        -70.3085701,
+                        43.4969879
                     ],
                     [
-                        -70.0707828,
-                        41.4431307
+                        -70.183921,
+                        43.4969879
                     ],
                     [
-                        -70.0706972,
-                        41.3144915
+                        -70.183921,
+                        43.6223531
                     ],
                     [
-                        -70.2461667,
-                        41.3144258
+                        -70.057583,
+                        43.6223531
                     ],
                     [
-                        -70.2462087,
-                        41.3775467
-                    ]
-                ],
-                [
-                    [
-                        -68.9403374,
-                        43.9404062
+                        -70.057583,
+                        43.6850173
                     ],
                     [
-                        -68.6856948,
-                        43.9404977
+                        -69.7455247,
+                        43.6850173
                     ],
                     [
-                        -68.6856475,
-                        43.8721797
+                        -69.7455247,
+                        43.7476571
                     ],
                     [
-                        -68.7465405,
-                        43.8721577
+                        -69.2472845,
+                        43.7476571
                     ],
                     [
-                        -68.7464976,
-                        43.8102529
+                        -69.2472845,
+                        43.8107035
                     ],
                     [
-                        -68.8090782,
-                        43.8102304
+                        -69.0560701,
+                        43.8107035
                     ],
                     [
-                        -68.8090343,
-                        43.746728
+                        -69.0560701,
+                        43.8717247
                     ],
                     [
-                        -68.8773094,
-                        43.7467034
+                        -68.9950522,
+                        43.8717247
                     ],
                     [
-                        -68.8773544,
-                        43.8117826
+                        -68.9950522,
+                        43.9982022
                     ],
                     [
-                        -68.9402483,
-                        43.8117599
-                    ]
-                ],
-                [
-                    [
-                        -123.1291466,
-                        49.0645144
+                        -68.4963672,
+                        43.9982022
                     ],
                     [
-                        -122.9954224,
-                        49.0645144
+                        -68.4963672,
+                        44.0597368
                     ],
                     [
-                        -122.9954224,
-                        48.9343243
+                        -68.3081038,
+                        44.0597368
                     ],
                     [
-                        -123.1291466,
-                        48.9343243
-                    ]
-                ],
-                [
-                    [
-                        -82.9407144,
-                        24.7535913
+                        -68.3081038,
+                        44.122137
                     ],
                     [
-                        -82.8719398,
-                        24.7535913
+                        -68.1851802,
+                        44.122137
                     ],
                     [
-                        -82.8719398,
-                        24.6905653
+                        -68.1851802,
+                        44.3081382
                     ],
                     [
-                        -82.7446233,
-                        24.6905653
+                        -67.9956019,
+                        44.3081382
                     ],
                     [
-                        -82.7446233,
-                        24.6214593
+                        -67.9956019,
+                        44.3727489
                     ],
                     [
-                        -82.8088038,
-                        24.6214593
+                        -67.8103041,
+                        44.3727489
                     ],
                     [
-                        -82.8088038,
-                        24.5594908
+                        -67.8103041,
+                        44.435178
                     ],
                     [
-                        -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.4965289,
+                        44.435178
                     ],
                     [
-                        -125.989419,
-                        47.9948396
+                        -67.4965289,
+                        44.4968776
                     ],
                     [
-                        -123.9929739,
-                        47.9955062
+                        -67.37102,
+                        44.4968776
                     ],
                     [
-                        -123.9922429,
-                        47.0059202
+                        -67.37102,
+                        44.5600642
                     ],
                     [
-                        -125.988688,
-                        47.0052409
+                        -67.1848753,
+                        44.5600642
                     ],
                     [
-                        -125.9879604,
-                        46.0015618
+                        -67.1848753,
+                        44.6213345
                     ],
                     [
-                        -123.9939396,
-                        46.0022529
+                        -67.1221208,
+                        44.6213345
                     ],
                     [
-                        -123.9925238,
-                        43.9961708
+                        -67.1221208,
+                        44.6867918
                     ],
                     [
-                        -124.9931832,
-                        43.9958116
+                        -67.059365,
+                        44.6867918
                     ],
                     [
-                        -124.9918175,
-                        41.9942149
+                        -67.059365,
+                        44.7473657
                     ],
                     [
-                        -125.9851789,
-                        41.9938465
+                        -66.9311098,
+                        44.7473657
                     ],
                     [
-                        -125.9838655,
-                        40.0076111
+                        -66.9311098,
+                        44.9406566
                     ],
                     [
-                        -123.9833285,
-                        40.0083757
+                        -66.994683,
+                        44.9406566
                     ],
                     [
-                        -123.9814115,
-                        37.002615
+                        -66.994683,
+                        45.0024514
                     ],
                     [
-                        -122.21903,
-                        37.0033173
+                        -67.0595847,
+                        45.0024514
                     ],
                     [
-                        -122.2184144,
-                        36.011671
+                        -67.0595847,
+                        45.1273377
                     ],
                     [
-                        -122.020087,
-                        36.011751
+                        -67.1201974,
+                        45.1273377
                     ],
                     [
-                        -122.0188591,
-                        33.9961766
+                        -67.1201974,
+                        45.1910115
                     ],
                     [
-                        -119.9787757,
-                        33.9970206
+                        -67.2469811,
+                        45.1910115
                     ],
                     [
-                        -119.9775867,
-                        31.9987658
+                        -67.2469811,
+                        45.253442
                     ],
                     [
-                        -114.0122833,
-                        32.00129
+                        -67.3177546,
+                        45.253442
                     ],
                     [
-                        -114.0116894,
-                        30.9862401
+                        -67.3177546,
+                        45.1898369
                     ],
                     [
-                        -105.998294,
-                        30.9896679
+                        -67.370749,
+                        45.1898369
                     ],
                     [
-                        -105.9971419,
-                        28.9901065
+                        -67.370749,
+                        45.2534001
                     ],
                     [
-                        -102.0210506,
-                        28.9918418
+                        -67.4326888,
+                        45.2534001
                     ],
                     [
-                        -102.0204916,
-                        28.00733
+                        -67.4326888,
+                        45.3083409
                     ],
                     [
-                        -100.0062436,
-                        28.0082173
+                        -67.3708571,
+                        45.3083409
                     ],
                     [
-                        -100.0051143,
-                        25.991909
+                        -67.3708571,
+                        45.4396986
                     ],
                     [
-                        -98.0109067,
-                        25.9928035
+                        -67.4305573,
+                        45.4396986
                     ],
                     [
-                        -98.0103613,
-                        25.0063461
+                        -67.4305573,
+                        45.4950095
                     ],
                     [
-                        -97.0161086,
-                        25.0067957
+                        -67.37099,
+                        45.4950095
                     ],
                     [
-                        -97.016654,
-                        25.9932494
+                        -67.37099,
+                        45.6264543
                     ],
                     [
-                        -95.9824825,
-                        25.9937132
+                        -67.6214982,
+                        45.6264543
                     ],
                     [
-                        -95.9835999,
-                        27.9891175
+                        -67.6214982,
+                        45.6896133
                     ],
                     [
-                        -94.0200898,
-                        27.9899826
+                        -67.683828,
+                        45.6896133
                     ],
                     [
-                        -94.0206586,
-                        28.9918129
+                        -67.683828,
+                        45.753259
                     ],
                     [
-                        -88.0156706,
-                        28.9944338
+                        -67.7462097,
+                        45.753259
                     ],
                     [
-                        -88.0162494,
-                        30.0038862
+                        -67.7462097,
+                        47.1268165
                     ],
                     [
-                        -86.0277506,
-                        30.0047454
+                        -67.8700141,
+                        47.1268165
                     ],
                     [
-                        -86.0271719,
-                        28.9953016
+                        -67.8700141,
+                        47.1900278
                     ],
                     [
-                        -84.0187909,
-                        28.9961781
+                        -67.9323803,
+                        47.1900278
                     ],
                     [
-                        -84.017095,
-                        25.9817708
+                        -67.9323803,
+                        47.2539678
                     ],
                     [
-                        -81.9971976,
-                        25.9826768
+                        -67.9959387,
+                        47.2539678
                     ],
                     [
-                        -81.9966618,
-                        25.0134917
+                        -67.9959387,
+                        47.3149737
                     ],
                     [
-                        -84.0165592,
-                        25.0125783
+                        -68.1206676,
+                        47.3149737
                     ],
                     [
-                        -84.0160068,
-                        24.0052745
+                        -68.1206676,
+                        47.3780823
                     ],
                     [
-                        -80.0199985,
-                        24.007096
+                        -68.4423175,
+                        47.3780823
                     ],
                     [
-                        -80.0245309,
-                        32.0161282
+                        -68.4423175,
+                        47.3166082
                     ],
                     [
-                        -78.0066484,
-                        32.0169819
+                        -68.6314305,
+                        47.3166082
                     ],
                     [
-                        -78.0072238,
-                        32.9894278
+                        -68.6314305,
+                        47.2544676
                     ],
                     [
-                        -77.8807233,
-                        32.9894807
+                        -68.9978037,
+                        47.2544676
                     ],
                     [
-                        -77.8813253,
-                        33.9955918
+                        -68.9978037,
+                        47.439895
                     ],
                     [
-                        -76.0115411,
-                        33.9963653
+                        -69.0607223,
+                        47.439895
                     ],
                     [
-                        -76.0121459,
-                        34.9952552
+                        -69.0607223,
+                        47.5047558
                     ],
                     [
-                        -74.0068449,
-                        34.9960749
+                        -69.2538122,
+                        47.5047558
                     ],
                     [
-                        -74.0099997,
-                        40.0084254
+                        -69.2538122,
+                        47.4398084
                     ],
                     [
-                        -72.0013745,
-                        40.0091931
+                        -69.3179284,
+                        47.4398084
                     ],
                     [
-                        -72.002019,
-                        40.9912464
+                        -69.3179284,
+                        47.378601
                     ],
                     [
-                        -69.8797398,
-                        40.9920457
+                        -69.4438546,
+                        47.378601
                     ],
                     [
-                        -69.8804173,
-                        42.00893
+                        -69.4438546,
+                        47.3156274
                     ],
                     [
-                        -69.9927682,
-                        42.0088883
+                        -69.5038204,
+                        47.3156274
                     ],
                     [
-                        -69.9934462,
-                        43.0105166
+                        -69.5038204,
+                        47.2525839
                     ],
                     [
-                        -67.9845366,
-                        43.0112496
+                        -69.5667838,
+                        47.2525839
                     ],
                     [
-                        -67.985224,
-                        44.0103812
+                        -69.5667838,
+                        47.1910884
                     ],
                     [
-                        -65.9892568,
-                        44.0110975
+                        -69.6303478,
+                        47.1910884
                     ],
                     [
-                        -65.9921237,
-                        47.9993584
+                        -69.6303478,
+                        47.128701
                     ],
                     [
-                        -70.006442,
-                        47.9980181
+                        -69.6933103,
+                        47.128701
                     ],
                     [
-                        -70.005708,
-                        47.0042007
+                        -69.6933103,
+                        47.0654307
                     ],
                     [
-                        -72.023686,
-                        47.003514
+                        -69.7557063,
+                        47.0654307
                     ],
                     [
-                        -72.0222508,
-                        45.0059846
+                        -69.7557063,
+                        47.0042751
                     ],
                     [
-                        -78.0146667,
-                        45.0038705
+                        -69.8180391,
+                        47.0042751
                     ],
                     [
-                        -78.0139662,
-                        44.0026998
+                        -69.8180391,
+                        46.9415344
                     ],
                     [
-                        -80.029686,
-                        44.0019763
+                        -69.8804023,
+                        46.9415344
                     ],
                     [
-                        -80.0290052,
-                        43.0122994
+                        -69.8804023,
+                        46.8792519
                     ],
                     [
-                        -81.995479,
-                        43.011582
+                        -69.9421674,
+                        46.8792519
                     ],
                     [
-                        -81.9982986,
-                        47.0042713
+                        -69.9421674,
+                        46.8177399
                     ],
                     [
-                        -87.505706,
-                        47.0023972
+                        -70.0063088,
+                        46.8177399
                     ],
                     [
-                        -87.5064535,
-                        48.0142702
+                        -70.0063088,
+                        46.6920295
                     ],
                     [
-                        -88.0260889,
-                        48.0140968
+                        -70.0704265,
+                        46.6920295
                     ],
                     [
-                        -88.026838,
-                        49.0086686
+                        -70.0704265,
+                        46.4425926
                     ],
                     [
-                        -93.9981078,
-                        49.0067142
+                        -70.1945902,
+                        46.4425926
                     ],
                     [
-                        -93.9988778,
-                        50.0086456
+                        -70.1945902,
+                        46.3785887
                     ],
                     [
-                        -96.0138899,
-                        50.0079995
+                        -70.2562047,
+                        46.3785887
                     ],
                     [
-                        -96.0131199,
-                        49.0060547
-                    ]
-                ],
-                [
-                    [
-                        -160.5787616,
-                        22.5062947
+                        -70.2562047,
+                        46.3152628
                     ],
                     [
-                        -160.5782192,
-                        21.4984647
+                        -70.3203651,
+                        46.3152628
                     ],
                     [
-                        -159.0030121,
-                        21.499196
+                        -70.3203651,
+                        46.0651209
                     ],
                     [
-                        -159.0027422,
-                        20.9951068
+                        -70.3814988,
+                        46.0651209
                     ],
                     [
-                        -157.5083185,
-                        20.995803
+                        -70.3814988,
+                        45.93552
                     ],
                     [
-                        -157.5080519,
-                        20.4960241
+                        -70.3201618,
+                        45.93552
                     ],
                     [
-                        -155.966889,
-                        20.4967444
+                        -70.3201618,
+                        45.879479
                     ],
                     [
-                        -155.9674267,
-                        21.5028287
+                        -70.4493131,
+                        45.879479
                     ],
                     [
-                        -157.5044717,
-                        21.5021151
+                        -70.4493131,
+                        45.7538713
                     ],
                     [
-                        -157.5047384,
-                        21.9984962
+                        -70.5070021,
+                        45.7538713
                     ],
                     [
-                        -159.0090946,
-                        21.9978002
+                        -70.5070021,
+                        45.6916912
                     ],
                     [
-                        -159.0093692,
-                        22.5070181
-                    ]
-                ],
-                [
-                    [
-                        -168.006102,
-                        68.9941463
+                        -70.6316642,
+                        45.6916912
                     ],
                     [
-                        -168.0047628,
-                        68.0107853
+                        -70.6316642,
+                        45.6291619
                     ],
                     [
-                        -165.4842481,
-                        68.0112562
+                        -70.7575538,
+                        45.6291619
                     ],
                     [
-                        -165.4829337,
-                        67.0037303
+                        -70.7575538,
+                        45.4414685
                     ],
                     [
-                        -168.0034485,
-                        67.0032389
+                        -70.8809878,
+                        45.4414685
                     ],
                     [
-                        -168.002195,
-                        66.0017503
+                        -70.8809878,
+                        45.3780612
                     ],
                     [
-                        -169.0087448,
-                        66.001546
+                        -71.13328,
+                        45.3780612
                     ],
                     [
-                        -169.0075381,
-                        64.9987675
+                        -71.13328,
+                        45.3151452
                     ],
                     [
-                        -168.0009882,
-                        64.9989798
+                        -71.3830282,
+                        45.3151452
                     ],
                     [
-                        -167.9998282,
-                        63.9982374
+                        -71.3830282,
+                        45.253416
                     ],
                     [
-                        -164.9871288,
-                        63.9988964
+                        -71.5076448,
+                        45.253416
                     ],
                     [
-                        -164.9860062,
-                        62.9950845
+                        -71.5076448,
+                        45.0655726
                     ],
                     [
-                        -167.9987057,
-                        62.9944019
+                        -73.9418929,
+                        45.0655726
                     ],
                     [
-                        -167.9946035,
-                        59.0153692
+                        -73.9418929,
+                        45.0031242
                     ],
                     [
-                        -162.5027857,
-                        59.0167799
+                        -74.7469725,
+                        45.0031242
                     ],
                     [
-                        -162.5018149,
-                        58.0005815
+                        -74.7469725,
+                        45.0649003
                     ],
                     [
-                        -160.0159024,
-                        58.0012389
+                        -74.8800964,
+                        45.0649003
                     ],
                     [
-                        -160.0149725,
-                        57.000035
+                        -74.8800964,
+                        45.0029023
                     ],
                     [
-                        -160.5054788,
-                        56.9999017
+                        -75.0662455,
+                        45.0029023
                     ],
                     [
-                        -160.5045719,
-                        55.9968161
+                        -75.0662455,
+                        44.9415167
                     ],
                     [
-                        -164.012195,
-                        55.9958373
+                        -75.2539363,
+                        44.9415167
                     ],
                     [
-                        -164.0113186,
-                        55.00107
+                        -75.2539363,
+                        44.8776043
                     ],
                     [
-                        -165.994782,
-                        55.0005023
+                        -75.3789648,
+                        44.8776043
                     ],
                     [
-                        -165.9941266,
-                        54.2400584
+                        -75.3789648,
+                        44.8153462
                     ],
                     [
-                        -168.0002944,
-                        54.2394734
+                        -75.4431283,
+                        44.8153462
                     ],
                     [
-                        -168.0000986,
-                        54.0094921
+                        -75.4431283,
+                        44.7536053
                     ],
                     [
-                        -170.0156134,
-                        54.0089011
+                        -75.5666566,
+                        44.7536053
                     ],
                     [
-                        -170.0147683,
-                        53.0016446
+                        -75.5666566,
+                        44.6909879
                     ],
                     [
-                        -171.9993636,
-                        53.0010487
+                        -75.6290205,
+                        44.6909879
                     ],
                     [
-                        -171.9989488,
-                        52.4977745
+                        -75.6290205,
+                        44.6284958
                     ],
                     [
-                        -176.0083239,
-                        52.4965566
+                        -75.7540484,
+                        44.6284958
                     ],
                     [
-                        -176.0081186,
-                        52.2452555
+                        -75.7540484,
+                        44.566385
                     ],
                     [
-                        -178.000097,
-                        52.2446469
+                        -75.817312,
+                        44.566385
                     ],
                     [
-                        -177.9992996,
-                        51.2554252
+                        -75.817312,
+                        44.5028932
                     ],
                     [
-                        -176.0073212,
-                        51.2560472
+                        -75.8799549,
+                        44.5028932
                     ],
                     [
-                        -176.0075146,
-                        51.4980163
+                        -75.8799549,
+                        44.3784946
                     ],
                     [
-                        -171.9981395,
-                        51.4992617
+                        -76.1300319,
+                        44.3784946
                     ],
                     [
-                        -171.9985419,
-                        51.9985373
+                        -76.1300319,
+                        44.3159227
                     ],
                     [
-                        -167.9984317,
-                        51.9997661
+                        -76.1926961,
+                        44.3159227
                     ],
                     [
-                        -167.9994645,
-                        53.2560877
+                        -76.1926961,
+                        44.2534378
                     ],
                     [
-                        -165.9932968,
-                        53.2566866
+                        -76.3182619,
+                        44.2534378
                     ],
                     [
-                        -165.9939308,
-                        54.0100804
+                        -76.3182619,
+                        44.1916726
                     ],
                     [
-                        -159.0067205,
-                        54.0121291
+                        -76.3792975,
+                        44.1916726
                     ],
                     [
-                        -159.0075717,
-                        55.002502
+                        -76.3792975,
+                        44.0653733
                     ],
                     [
-                        -158.0190709,
-                        55.0027849
+                        -76.4427584,
+                        44.0653733
                     ],
                     [
-                        -158.0199473,
-                        55.9975094
+                        -76.4427584,
+                        43.9963825
                     ],
                     [
-                        -151.9963213,
-                        55.9991902
+                        -76.317027,
+                        43.9963825
                     ],
                     [
-                        -151.9981536,
-                        57.9986536
+                        -76.317027,
+                        43.9414581
                     ],
                     [
-                        -151.500341,
-                        57.9987853
+                        -76.5076611,
+                        43.9414581
                     ],
                     [
-                        -151.5012894,
-                        58.9919816
+                        -76.5076611,
+                        43.8723335
                     ],
                     [
-                        -138.5159989,
-                        58.9953194
+                        -76.3829974,
+                        43.8723335
                     ],
                     [
-                        -138.5150471,
-                        57.9986434
+                        -76.3829974,
+                        43.8091872
                     ],
                     [
-                        -136.6872422,
-                        57.9991267
+                        -76.2534102,
+                        43.8091872
                     ],
                     [
-                        -136.6863158,
-                        57.0016688
+                        -76.2534102,
+                        43.5665222
                     ],
                     [
-                        -135.9973698,
-                        57.001856
+                        -76.5064833,
+                        43.5665222
                     ],
                     [
-                        -135.9964667,
-                        56.0030544
+                        -76.5064833,
+                        43.5033881
                     ],
                     [
-                        -134.6717732,
-                        56.003424
+                        -76.6331208,
+                        43.5033881
                     ],
                     [
-                        -134.6708865,
-                        54.9969623
+                        -76.6331208,
+                        43.4432252
                     ],
                     [
-                        -133.9956734,
-                        54.9971556
+                        -76.6951085,
+                        43.4432252
                     ],
                     [
-                        -133.9948193,
-                        54.0031685
+                        -76.6951085,
+                        43.3786858
                     ],
                     [
-                        -130.0044418,
-                        54.0043387
+                        -76.8177798,
+                        43.3786858
                     ],
                     [
-                        -130.0070826,
-                        57.0000507
+                        -76.8177798,
+                        43.318066
                     ],
                     [
-                        -131.975877,
-                        56.9995156
+                        -77.682,
+                        43.318066
                     ],
                     [
-                        -131.9787378,
-                        59.9933094
+                        -77.682,
+                        43.3789376
                     ],
                     [
-                        -138.0071813,
-                        59.991805
+                        -78.0565883,
+                        43.3789376
                     ],
                     [
-                        -138.0082158,
-                        61.0125755
+                        -78.0565883,
+                        43.4396918
                     ],
                     [
-                        -140.9874011,
-                        61.0118551
+                        -78.4389748,
+                        43.4396918
                     ],
                     [
-                        -140.99984,
-                        71.0039309
+                        -78.4389748,
+                        43.3794382
                     ],
                     [
-                        -154.5023956,
-                        71.0017377
+                        -78.8803396,
+                        43.3794382
                     ],
                     [
-                        -154.5039632,
-                        71.9983391
+                        -78.8803396,
+                        43.3149724
                     ],
                     [
-                        -157.499048,
-                        71.9978773
+                        -79.1298858,
+                        43.3149724
                     ],
                     [
-                        -157.4974758,
-                        70.9982877
+                        -79.1298858,
+                        43.2429286
                     ],
                     [
-                        -163.0233611,
-                        70.9973899
+                        -79.0669615,
+                        43.2429286
                     ],
                     [
-                        -163.0218273,
-                        69.9707435
+                        -79.0669615,
+                        43.1299931
                     ],
                     [
-                        -164.9730896,
-                        69.97041
+                        -79.1298858,
+                        43.1299931
                     ],
                     [
-                        -164.9717003,
-                        68.994689
-                    ]
-                ],
-                [
-                    [
-                        -168.5133204,
-                        62.8689586
+                        -79.1298858,
+                        43.0577305
                     ],
                     [
-                        -168.5144423,
-                        63.8765677
+                        -79.071264,
+                        43.0577305
                     ],
                     [
-                        -172.0202755,
-                        63.8757975
+                        -79.071264,
+                        42.9294906
                     ],
                     [
-                        -172.0191536,
-                        62.8681608
-                    ]
-                ],
-                [
-                    [
-                        -170.9947111,
-                        59.9954089
+                        -78.943264,
+                        42.9294906
                     ],
                     [
-                        -170.995726,
-                        60.9969787
+                        -78.943264,
+                        42.7542165
                     ],
                     [
-                        -174.0045311,
-                        60.9962508
+                        -79.069439,
+                        42.7542165
                     ],
                     [
-                        -174.0035162,
-                        59.9946581
-                    ]
-                ],
-                [
-                    [
-                        -156.0717261,
-                        20.2854602
+                        -79.069439,
+                        42.6941622
                     ],
                     [
-                        -154.7940471,
-                        20.2860582
+                        -79.133439,
+                        42.6941622
                     ],
                     [
-                        -154.7933145,
-                        18.9029464
+                        -79.133439,
+                        42.6296973
                     ],
                     [
-                        -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": [
-                [
+                        -79.1947499,
+                        42.6296973
+                    ],
                     [
-                        8.3743941,
-                        54.9551655
+                        -79.1947499,
+                        42.5663538
                     ],
                     [
-                        8.3683809,
-                        55.4042149
+                        -79.3786827,
+                        42.5663538
                     ],
                     [
-                        8.2103997,
-                        55.4039795
+                        -79.3786827,
+                        42.5033425
                     ],
                     [
-                        8.2087314,
-                        55.4937345
+                        -79.4442961,
+                        42.5033425
                     ],
                     [
-                        8.0502655,
-                        55.4924731
+                        -79.4442961,
+                        42.4410614
                     ],
                     [
-                        8.0185123,
-                        56.7501399
+                        -79.5679936,
+                        42.4410614
                     ],
                     [
-                        8.1819161,
-                        56.7509948
+                        -79.5679936,
+                        42.3775264
                     ],
                     [
-                        8.1763274,
-                        57.0208898
+                        -79.6906154,
+                        42.3775264
                     ],
                     [
-                        8.3413329,
-                        57.0219872
+                        -79.6906154,
+                        42.3171086
                     ],
                     [
-                        8.3392467,
-                        57.1119574
+                        -79.8164642,
+                        42.3171086
                     ],
                     [
-                        8.5054433,
-                        57.1123212
+                        -79.8164642,
+                        42.2534481
                     ],
                     [
-                        8.5033923,
-                        57.2020499
+                        -80.0052373,
+                        42.2534481
                     ],
                     [
-                        9.3316304,
-                        57.2027636
+                        -80.0052373,
+                        42.1909188
                     ],
                     [
-                        9.3319079,
-                        57.2924835
+                        -80.1916829,
+                        42.1909188
                     ],
                     [
-                        9.4978864,
-                        57.2919578
+                        -80.1916829,
+                        42.1272555
                     ],
                     [
-                        9.4988593,
-                        57.3820608
+                        -80.3167992,
+                        42.1272555
                     ],
                     [
-                        9.6649749,
-                        57.3811615
+                        -80.3167992,
+                        42.0669857
                     ],
                     [
-                        9.6687295,
-                        57.5605591
+                        -80.5063234,
+                        42.0669857
                     ],
                     [
-                        9.8351961,
-                        57.5596265
+                        -80.5063234,
+                        42.0034331
                     ],
                     [
-                        9.8374896,
-                        57.6493322
+                        -80.6930471,
+                        42.0034331
                     ],
                     [
-                        10.1725726,
-                        57.6462818
+                        -80.6930471,
+                        41.9415141
                     ],
                     [
-                        10.1754245,
-                        57.7367768
+                        -80.9440403,
+                        41.9415141
                     ],
                     [
-                        10.5118282,
-                        57.7330269
+                        -80.9440403,
+                        41.8781193
                     ],
                     [
-                        10.5152095,
-                        57.8228945
+                        -81.1942729,
+                        41.8781193
                     ],
                     [
-                        10.6834853,
-                        57.8207722
+                        -81.1942729,
+                        41.8166455
                     ],
                     [
-                        10.6751613,
-                        57.6412021
+                        -81.3190089,
+                        41.8166455
                     ],
                     [
-                        10.5077045,
-                        57.6433097
+                        -81.3190089,
+                        41.7545453
                     ],
                     [
-                        10.5039992,
-                        57.5535088
+                        -81.4418435,
+                        41.7545453
                     ],
                     [
-                        10.671038,
-                        57.5514113
+                        -81.4418435,
+                        41.690965
                     ],
                     [
-                        10.6507805,
-                        57.1024538
+                        -81.5053523,
+                        41.690965
                     ],
                     [
-                        10.4857673,
-                        57.1045138
+                        -81.5053523,
+                        41.6301643
                     ],
                     [
-                        10.4786236,
-                        56.9249051
+                        -82.7470081,
+                        41.6301643
                     ],
                     [
-                        10.3143981,
-                        56.9267573
+                        -82.7470081,
+                        41.7536942
                     ],
                     [
-                        10.3112341,
-                        56.8369269
+                        -82.8839135,
+                        41.7536942
                     ],
                     [
-                        10.4750295,
-                        56.83509
+                        -82.8839135,
+                        41.5656075
                     ],
                     [
-                        10.4649016,
-                        56.5656681
+                        -82.9957195,
+                        41.5656075
                     ],
                     [
-                        10.9524239,
-                        56.5589761
+                        -82.9957195,
+                        41.6270375
                     ],
                     [
-                        10.9479249,
-                        56.4692243
+                        -83.1257796,
+                        41.6270375
                     ],
                     [
-                        11.1099335,
-                        56.4664675
+                        -83.1257796,
+                        41.6878411
                     ],
                     [
-                        11.1052639,
-                        56.376833
+                        -83.2474733,
+                        41.6878411
                     ],
                     [
-                        10.9429901,
-                        56.3795284
+                        -83.2474733,
+                        41.7536942
                     ],
                     [
-                        10.9341235,
-                        56.1994768
+                        -83.3737305,
+                        41.7536942
                     ],
                     [
-                        10.7719685,
-                        56.2020244
+                        -83.3737305,
+                        41.809276
                     ],
                     [
-                        10.7694751,
-                        56.1120103
+                        -83.3106019,
+                        41.809276
                     ],
                     [
-                        10.6079695,
-                        56.1150259
+                        -83.3106019,
+                        41.8716064
                     ],
                     [
-                        10.4466742,
-                        56.116717
+                        -83.2474733,
+                        41.8716064
                     ],
                     [
-                        10.2865948,
-                        56.118675
+                        -83.2474733,
+                        41.9361393
                     ],
                     [
-                        10.2831527,
-                        56.0281851
+                        -83.1843447,
+                        41.9361393
                     ],
                     [
-                        10.4439274,
-                        56.0270388
+                        -83.1843447,
+                        41.9960851
                     ],
                     [
-                        10.4417713,
-                        55.7579243
+                        -83.1207681,
+                        41.9960851
                     ],
                     [
-                        10.4334961,
-                        55.6693533
+                        -83.1207681,
+                        42.2464812
                     ],
                     [
-                        10.743814,
-                        55.6646861
+                        -83.0589194,
+                        42.2464812
                     ],
                     [
-                        10.743814,
-                        55.5712253
+                        -83.0589194,
+                        42.3089555
                     ],
                     [
-                        10.8969041,
-                        55.5712253
+                        -82.8685328,
+                        42.3089555
                     ],
                     [
-                        10.9051793,
-                        55.3953852
+                        -82.8685328,
+                        42.3717652
                     ],
                     [
-                        11.0613726,
-                        55.3812841
+                        -82.8072219,
+                        42.3717652
                     ],
                     [
-                        11.0593038,
-                        55.1124061
+                        -82.8072219,
+                        42.558553
                     ],
                     [
-                        11.0458567,
-                        55.0318621
+                        -82.7553745,
+                        42.558553
                     ],
                     [
-                        11.2030844,
-                        55.0247474
+                        -82.7553745,
+                        42.4954945
                     ],
                     [
-                        11.2030844,
-                        55.117139
+                        -82.5599041,
+                        42.4954945
                     ],
                     [
-                        11.0593038,
-                        55.1124061
+                        -82.5599041,
+                        42.558553
                     ],
                     [
-                        11.0613726,
-                        55.3812841
+                        -82.4967755,
+                        42.558553
                     ],
                     [
-                        11.0789572,
-                        55.5712253
+                        -82.4967755,
+                        42.6833607
                     ],
                     [
-                        10.8969041,
-                        55.5712253
+                        -82.4328863,
+                        42.6833607
                     ],
                     [
-                        10.9258671,
-                        55.6670198
+                        -82.4328863,
+                        42.9342196
                     ],
                     [
-                        10.743814,
-                        55.6646861
+                        -82.3700552,
+                        42.9342196
                     ],
                     [
-                        10.7562267,
-                        55.7579243
+                        -82.3700552,
+                        43.0648071
                     ],
                     [
-                        10.4417713,
-                        55.7579243
+                        -82.4328863,
+                        43.0648071
                     ],
                     [
-                        10.4439274,
-                        56.0270388
+                        -82.4328863,
+                        43.1917566
                     ],
                     [
-                        10.4466742,
-                        56.116717
+                        -82.4947464,
+                        43.1917566
                     ],
                     [
-                        10.6079695,
-                        56.1150259
+                        -82.4947464,
+                        43.5034627
                     ],
                     [
-                        10.6052053,
-                        56.0247462
+                        -82.557133,
+                        43.5034627
                     ],
                     [
-                        10.9258671,
-                        56.0201215
+                        -82.557133,
+                        43.8160901
                     ],
                     [
-                        10.9197132,
-                        55.9309388
+                        -82.6197884,
+                        43.8160901
                     ],
                     [
-                        11.0802782,
-                        55.92792
+                        -82.6197884,
+                        43.9422098
                     ],
                     [
-                        11.0858066,
-                        56.0178284
+                        -82.6839499,
+                        43.9422098
                     ],
                     [
-                        11.7265047,
-                        56.005058
+                        -82.6839499,
+                        44.0022641
                     ],
                     [
-                        11.7319981,
-                        56.0952142
+                        -82.7465346,
+                        44.0022641
                     ],
                     [
-                        12.0540333,
-                        56.0871256
+                        -82.7465346,
+                        44.0670545
                     ],
                     [
-                        12.0608477,
-                        56.1762576
+                        -82.8708696,
+                        44.0670545
                     ],
                     [
-                        12.7023469,
-                        56.1594405
+                        -82.8708696,
+                        44.1291935
                     ],
                     [
-                        12.6611131,
-                        55.7114318
+                        -83.008517,
+                        44.1291935
                     ],
                     [
-                        12.9792318,
-                        55.7014026
+                        -83.008517,
+                        44.0664786
                     ],
                     [
-                        12.9612912,
-                        55.5217294
+                        -83.1336086,
+                        44.0664786
                     ],
                     [
-                        12.3268659,
-                        55.5412096
+                        -83.1336086,
+                        44.0053949
                     ],
                     [
-                        12.3206071,
-                        55.4513655
+                        -83.2414522,
+                        44.0053949
                     ],
                     [
-                        12.4778226,
-                        55.447067
+                        -83.2414522,
+                        44.9962034
                     ],
                     [
-                        12.4702432,
-                        55.3570479
+                        -83.1806112,
+                        44.9962034
                     ],
                     [
-                        12.6269738,
-                        55.3523837
+                        -83.1806112,
+                        45.067302
                     ],
                     [
-                        12.6200898,
-                        55.2632576
+                        -83.2455172,
+                        45.067302
                     ],
                     [
-                        12.4627339,
-                        55.26722
+                        -83.2455172,
+                        45.1287382
                     ],
                     [
-                        12.4552949,
-                        55.1778223
+                        -83.3065878,
+                        45.1287382
                     ],
                     [
-                        12.2987046,
-                        55.1822303
+                        -83.3065878,
+                        45.2551509
                     ],
                     [
-                        12.2897344,
-                        55.0923641
+                        -83.3706087,
+                        45.2551509
                     ],
                     [
-                        12.6048608,
-                        55.0832904
+                        -83.3706087,
+                        45.3165923
                     ],
                     [
-                        12.5872011,
-                        54.9036285
+                        -83.4325644,
+                        45.3165923
                     ],
                     [
-                        12.2766618,
-                        54.9119031
+                        -83.4325644,
+                        45.3792105
                     ],
                     [
-                        12.2610181,
-                        54.7331602
+                        -83.6178415,
+                        45.3792105
                     ],
                     [
-                        12.1070691,
-                        54.7378161
+                        -83.6178415,
+                        45.4419665
                     ],
                     [
-                        12.0858621,
-                        54.4681655
+                        -83.8084291,
+                        45.4419665
                     ],
                     [
-                        11.7794953,
-                        54.4753579
+                        -83.8084291,
+                        45.5036189
                     ],
                     [
-                        11.7837381,
-                        54.5654783
+                        -84.0550718,
+                        45.5036189
                     ],
                     [
-                        11.1658525,
-                        54.5782155
+                        -84.0550718,
+                        45.5647907
                     ],
                     [
-                        11.1706443,
-                        54.6686508
+                        -84.1235181,
+                        45.5647907
                     ],
                     [
-                        10.8617173,
-                        54.6733956
+                        -84.1235181,
+                        45.6287845
                     ],
                     [
-                        10.8651245,
-                        54.7634667
+                        -84.1807534,
+                        45.6287845
                     ],
                     [
-                        10.7713646,
-                        54.7643888
+                        -84.1807534,
+                        45.6914688
                     ],
                     [
-                        10.7707276,
-                        54.7372807
+                        -84.3111554,
+                        45.6914688
                     ],
                     [
-                        10.7551428,
-                        54.7375776
+                        -84.3111554,
+                        45.9337076
                     ],
                     [
-                        10.7544039,
-                        54.7195666
+                        -83.8209974,
+                        45.9337076
                     ],
                     [
-                        10.7389074,
-                        54.7197588
+                        -83.8209974,
+                        45.8725113
                     ],
                     [
-                        10.7384368,
-                        54.7108482
+                        -83.4968086,
+                        45.8725113
                     ],
                     [
-                        10.7074486,
-                        54.7113045
+                        -83.4968086,
+                        45.9337076
                     ],
                     [
-                        10.7041094,
-                        54.6756741
+                        -83.4338066,
+                        45.9337076
                     ],
                     [
-                        10.5510973,
-                        54.6781698
+                        -83.4338066,
+                        46.0016863
                     ],
                     [
-                        10.5547184,
-                        54.7670245
+                        -83.4962697,
+                        46.0016863
                     ],
                     [
-                        10.2423994,
-                        54.7705935
+                        -83.4962697,
+                        46.0668178
                     ],
                     [
-                        10.2459845,
-                        54.8604673
+                        -83.5599956,
+                        46.0668178
                     ],
                     [
-                        10.0902268,
-                        54.8622134
+                        -83.5599956,
+                        46.1261576
                     ],
                     [
-                        10.0873731,
-                        54.7723851
+                        -83.9954558,
+                        46.1261576
                     ],
                     [
-                        9.1555798,
-                        54.7769557
+                        -83.9954558,
+                        46.1931747
                     ],
                     [
-                        9.1562752,
-                        54.8675369
+                        -84.0591816,
+                        46.1931747
                     ],
                     [
-                        8.5321973,
-                        54.8663765
+                        -84.0591816,
+                        46.3814972
                     ],
                     [
-                        8.531432,
-                        54.95516
-                    ]
-                ],
-                [
+                        -84.1152614,
+                        46.3814972
+                    ],
                     [
-                        11.4577738,
-                        56.819554
+                        -84.1152614,
+                        46.4953584
                     ],
                     [
-                        11.7849181,
-                        56.8127385
+                        -84.0591816,
+                        46.4953584
                     ],
                     [
-                        11.7716715,
-                        56.6332796
+                        -84.0591816,
+                        46.5682653
                     ],
                     [
-                        11.4459621,
-                        56.6401087
-                    ]
-                ],
-                [
+                        -84.2579545,
+                        46.5682653
+                    ],
                     [
-                        11.3274736,
-                        57.3612962
+                        -84.2579545,
+                        46.5051232
                     ],
                     [
-                        11.3161808,
-                        57.1818004
+                        -84.3071879,
+                        46.5051232
                     ],
                     [
-                        11.1508692,
-                        57.1847276
+                        -84.3071879,
+                        46.5682653
                     ],
                     [
-                        11.1456628,
-                        57.094962
+                        -84.4415364,
+                        46.5682653
                     ],
                     [
-                        10.8157703,
-                        57.1001693
+                        -84.4415364,
+                        46.504525
                     ],
                     [
-                        10.8290599,
-                        57.3695272
-                    ]
-                ],
-                [
+                        -84.9965729,
+                        46.504525
+                    ],
                     [
-                        11.5843266,
-                        56.2777928
+                        -84.9965729,
+                        46.6842882
                     ],
                     [
-                        11.5782882,
-                        56.1880397
+                        -84.9298158,
+                        46.6842882
                     ],
                     [
-                        11.7392309,
-                        56.1845765
+                        -84.9298158,
+                        46.818077
                     ],
                     [
-                        11.7456428,
-                        56.2743186
-                    ]
-                ],
-                [
+                        -85.3165894,
+                        46.818077
+                    ],
                     [
-                        14.6825922,
-                        55.3639405
+                        -85.3165894,
+                        46.7535825
                     ],
                     [
-                        14.8395247,
-                        55.3565231
+                        -87.5562645,
+                        46.7535825
                     ],
                     [
-                        14.8263755,
-                        55.2671261
+                        -87.5562645,
+                        47.4407371
                     ],
                     [
-                        15.1393406,
-                        55.2517359
+                        -87.6825361,
+                        47.4407371
                     ],
                     [
-                        15.1532015,
-                        55.3410836
+                        -87.6825361,
+                        47.5035554
                     ],
                     [
-                        15.309925,
-                        55.3330556
+                        -88.2560738,
+                        47.5035554
                     ],
                     [
-                        15.295719,
-                        55.2437356
+                        -88.2560738,
+                        47.4433716
                     ],
                     [
-                        15.1393406,
-                        55.2517359
+                        -88.4417419,
+                        47.4433716
                     ],
                     [
-                        15.1255631,
-                        55.1623802
+                        -88.4417419,
+                        47.3789949
                     ],
                     [
-                        15.2815819,
-                        55.1544167
+                        -88.50683,
+                        47.3789949
                     ],
                     [
-                        15.2535578,
-                        54.9757646
+                        -88.50683,
+                        47.3153881
                     ],
                     [
-                        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
+                        -88.6312821,
+                        47.3153881
                     ],
                     [
-                        16.17,
-                        48.33
+                        -88.6312821,
+                        47.2539782
                     ],
                     [
-                        16.58,
-                        48.33
+                        -88.7569636,
+                        47.2539782
                     ],
                     [
-                        16.58,
-                        48.1
+                        -88.7569636,
+                        47.1934682
                     ],
                     [
-                        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
+                        -88.8838253,
+                        47.1934682
                     ],
                     [
-                        16.17,
-                        48.33
+                        -88.8838253,
+                        47.1284735
                     ],
                     [
-                        16.58,
-                        48.33
+                        -88.9434208,
+                        47.1284735
                     ],
                     [
-                        16.58,
-                        48.1
+                        -88.9434208,
+                        47.0662127
                     ],
                     [
-                        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
+                        -89.0708726,
+                        47.0662127
                     ],
                     [
-                        16.17,
-                        48.33
+                        -89.0708726,
+                        47.0026826
                     ],
                     [
-                        16.58,
-                        48.33
+                        -89.2565553,
+                        47.0026826
                     ],
                     [
-                        16.58,
-                        48.1
+                        -89.2565553,
+                        46.9410806
                     ],
                     [
-                        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
+                        -90.3677669,
+                        46.9410806
                     ],
                     [
-                        16.283417,
-                        46.9929304
+                        -90.3677669,
+                        47.6844827
                     ],
                     [
-                        16.135839,
-                        46.8713046
+                        -90.3069978,
+                        47.6844827
                     ],
                     [
-                        15.9831722,
-                        46.8190947
+                        -90.3069978,
+                        47.7460174
                     ],
                     [
-                        16.0493278,
-                        46.655175
+                        -89.994859,
+                        47.7460174
                     ],
                     [
-                        15.8610387,
-                        46.7180116
+                        -89.994859,
+                        47.8082719
                     ],
                     [
-                        15.7592608,
-                        46.6900933
+                        -89.8048615,
+                        47.8082719
                     ],
                     [
-                        15.5607938,
-                        46.6796202
+                        -89.8048615,
+                        47.8700562
                     ],
                     [
-                        15.5760605,
-                        46.6342132
+                        -89.6797699,
+                        47.8700562
                     ],
                     [
-                        15.4793715,
-                        46.6027553
+                        -89.6797699,
+                        47.9339637
                     ],
                     [
-                        15.4335715,
-                        46.6516819
+                        -89.4933757,
+                        47.9339637
                     ],
                     [
-                        15.2249267,
-                        46.6342132
+                        -89.4933757,
+                        47.9957956
                     ],
                     [
-                        15.0468154,
-                        46.6481886
+                        -89.4284697,
+                        47.9957956
                     ],
                     [
-                        14.9908376,
-                        46.5887681
+                        -89.4284697,
+                        48.0656377
                     ],
                     [
-                        14.9603042,
-                        46.6237293
+                        -89.9932739,
+                        48.0656377
                     ],
                     [
-                        14.8534374,
-                        46.6027553
+                        -89.9932739,
+                        48.1282966
                     ],
                     [
-                        14.8330818,
-                        46.5012666
+                        -90.7455933,
+                        48.1282966
                     ],
                     [
-                        14.7516595,
-                        46.4977636
+                        -90.7455933,
+                        48.1893056
                     ],
                     [
-                        14.6804149,
-                        46.4381781
+                        -90.8087291,
+                        48.1893056
                     ],
                     [
-                        14.6142593,
-                        46.4381781
+                        -90.8087291,
+                        48.2522065
                     ],
                     [
-                        14.578637,
-                        46.3785275
+                        -91.067763,
+                        48.2522065
                     ],
                     [
-                        14.4412369,
-                        46.4311638
+                        -91.067763,
+                        48.1916658
                     ],
                     [
-                        14.1613476,
-                        46.4276563
+                        -91.1946247,
+                        48.1916658
                     ],
                     [
-                        14.1257253,
-                        46.4767409
+                        -91.1946247,
+                        48.1279027
                     ],
                     [
-                        14.0188585,
-                        46.4767409
+                        -91.6814196,
+                        48.1279027
                     ],
                     [
-                        13.9119917,
-                        46.5257813
+                        -91.6814196,
+                        48.2525994
                     ],
                     [
-                        13.8254805,
-                        46.5047694
+                        -91.9321927,
+                        48.2525994
                     ],
                     [
-                        13.4438134,
-                        46.560783
+                        -91.9321927,
+                        48.3142454
                     ],
                     [
-                        13.3064132,
-                        46.5502848
+                        -91.9929683,
+                        48.3142454
                     ],
                     [
-                        13.1283019,
-                        46.5887681
+                        -91.9929683,
+                        48.3780845
                     ],
                     [
-                        12.8433237,
-                        46.6132433
+                        -92.3189383,
+                        48.3780845
                     ],
                     [
-                        12.7262791,
-                        46.6412014
+                        -92.3189383,
+                        48.2529081
                     ],
                     [
-                        12.5125455,
-                        46.6656529
+                        -92.3732233,
+                        48.2529081
                     ],
                     [
-                        12.3598787,
-                        46.7040543
+                        -92.3732233,
+                        48.3153385
                     ],
                     [
-                        12.3649676,
-                        46.7703197
+                        -92.4322288,
+                        48.3153385
                     ],
                     [
-                        12.2886341,
-                        46.7772902
+                        -92.4322288,
+                        48.4411448
                     ],
                     [
-                        12.2733674,
-                        46.8852187
+                        -92.4977248,
+                        48.4411448
                     ],
                     [
-                        12.2072118,
-                        46.8747835
+                        -92.4977248,
+                        48.501781
                     ],
                     [
-                        12.1308784,
-                        46.9026062
+                        -92.5679413,
+                        48.501781
                     ],
                     [
-                        12.1156117,
-                        46.9998721
+                        -92.5679413,
+                        48.439579
                     ],
                     [
-                        12.2530119,
-                        47.0657733
+                        -92.6210462,
+                        48.439579
                     ],
                     [
-                        12.2123007,
-                        47.0934969
+                        -92.6210462,
+                        48.5650783
                     ],
                     [
-                        11.9833004,
-                        47.0449712
+                        -92.8086835,
+                        48.5650783
                     ],
                     [
-                        11.7339445,
-                        46.9616816
+                        -92.8086835,
+                        48.6286865
                     ],
                     [
-                        11.6321666,
-                        47.010283
+                        -92.8086835,
+                        48.6267365
                     ],
                     [
-                        11.5405665,
-                        46.9755722
+                        -92.933185,
+                        48.6267365
                     ],
                     [
-                        11.4998553,
-                        47.0068129
+                        -92.933185,
+                        48.6922145
                     ],
                     [
-                        11.418433,
-                        46.9651546
+                        -93.0051716,
+                        48.6922145
                     ],
                     [
-                        11.2555884,
-                        46.9755722
+                        -93.0051716,
+                        48.6282965
                     ],
                     [
-                        11.1130993,
-                        46.913036
+                        -93.1225924,
+                        48.6282965
                     ],
                     [
-                        11.0418548,
-                        46.7633482
+                        -93.1225924,
+                        48.6922145
                     ],
                     [
-                        10.8891879,
-                        46.7598621
+                        -93.3190806,
+                        48.6922145
                     ],
                     [
-                        10.7416099,
-                        46.7842599
+                        -93.3190806,
+                        48.6267365
                     ],
                     [
-                        10.7059877,
-                        46.8643462
+                        -93.5049477,
+                        48.6267365
                     ],
                     [
-                        10.5787653,
-                        46.8399847
+                        -93.5049477,
+                        48.5635164
                     ],
                     [
-                        10.4566318,
-                        46.8504267
+                        -93.7474601,
+                        48.5635164
                     ],
                     [
-                        10.4769874,
-                        46.9269392
+                        -93.7474601,
+                        48.6267365
                     ],
                     [
-                        10.3853873,
-                        46.9894592
+                        -93.8135461,
+                        48.6267365
                     ],
                     [
-                        10.2327204,
-                        46.8643462
+                        -93.8135461,
+                        48.6898775
                     ],
                     [
-                        10.1207647,
-                        46.8330223
+                        -94.2453121,
+                        48.6898775
                     ],
                     [
-                        9.8663199,
-                        46.9408389
+                        -94.2453121,
+                        48.7554327
                     ],
                     [
-                        9.9019422,
-                        47.0033426
+                        -94.6183171,
+                        48.7554327
                     ],
                     [
-                        9.6831197,
-                        47.0588402
+                        -94.6183171,
+                        48.941036
                     ],
                     [
-                        9.6118752,
-                        47.0380354
+                        -94.6809018,
+                        48.941036
                     ],
                     [
-                        9.6322307,
-                        47.128131
+                        -94.6809018,
+                        49.0029737
                     ],
                     [
-                        9.5813418,
-                        47.1662025
+                        -94.7441532,
+                        49.0029737
                     ],
                     [
-                        9.5406306,
-                        47.2664422
+                        -94.7441532,
+                        49.2536079
                     ],
                     [
-                        9.6067863,
-                        47.3492559
+                        -94.8084069,
+                        49.2536079
                     ],
                     [
-                        9.6729419,
-                        47.369939
+                        -94.8084069,
+                        49.3784134
                     ],
                     [
-                        9.6424085,
-                        47.4457079
+                        -95.1192391,
+                        49.3784134
                     ],
                     [
-                        9.5660751,
-                        47.4801122
+                        -95.1192391,
+                        49.4425264
                     ],
                     [
-                        9.7136531,
-                        47.5282405
+                        -95.1934341,
+                        49.4425264
                     ],
                     [
-                        9.7848976,
-                        47.5969187
+                        -95.1934341,
+                        49.0035292
                     ],
                     [
-                        9.8357866,
-                        47.5454185
+                        -96.87069,
+                        49.0035292
                     ],
                     [
-                        9.9477423,
-                        47.538548
+                        -96.87069,
+                        49.0656063
                     ],
                     [
-                        10.0902313,
-                        47.4491493
+                        -99.0049312,
+                        49.0656063
                     ],
                     [
-                        10.1105869,
-                        47.3664924
+                        -99.0049312,
+                        49.0050714
                     ],
                     [
-                        10.2428982,
-                        47.3871688
+                        -109.3699257,
+                        49.0050714
                     ],
                     [
-                        10.1869203,
-                        47.2698953
+                        -109.3699257,
+                        49.0668231
                     ],
                     [
-                        10.3243205,
-                        47.2975125
+                        -109.5058746,
+                        49.0668231
                     ],
                     [
-                        10.4820763,
-                        47.4491493
+                        -109.5058746,
+                        49.0050714
                     ],
                     [
-                        10.4311873,
-                        47.4869904
+                        -114.1830014,
+                        49.0050714
                     ],
                     [
-                        10.4413651,
-                        47.5900549
+                        -114.1830014,
+                        49.0687317
                     ],
                     [
-                        10.4871652,
-                        47.5522881
+                        -114.7578709,
+                        49.0687317
                     ],
                     [
-                        10.5482319,
-                        47.5351124
+                        -114.7578709,
+                        49.0050714
                     ],
                     [
-                        10.5991209,
-                        47.5660246
+                        -115.433731,
+                        49.0050714
                     ],
                     [
-                        10.7568766,
-                        47.5316766
+                        -115.433731,
+                        49.0671412
                     ],
                     [
-                        10.8891879,
-                        47.5454185
+                        -116.5062706,
+                        49.0671412
                     ],
                     [
-                        10.9400769,
-                        47.4869904
+                        -116.5062706,
+                        49.0050714
                     ],
                     [
-                        10.9960547,
-                        47.3906141
+                        -117.3089504,
+                        49.0050714
                     ],
                     [
-                        11.2352328,
-                        47.4422662
+                        -117.3089504,
+                        49.0659803
                     ],
                     [
-                        11.2810328,
-                        47.3975039
+                        -119.882945,
+                        49.0659803
                     ],
                     [
-                        11.4235219,
-                        47.5144941
+                        -119.882945,
+                        49.0050714
                     ],
                     [
-                        11.5761888,
-                        47.5076195
+                        -120.1208555,
+                        49.0050714
                     ],
                     [
-                        11.6067221,
-                        47.5900549
+                        -120.1208555,
+                        49.0678367
                     ],
                     [
-                        11.8357224,
-                        47.5866227
+                        -121.4451636,
+                        49.0678367
                     ],
                     [
-                        12.003656,
-                        47.6243647
+                        -121.4451636,
+                        49.0050714
                     ],
                     [
-                        12.2072118,
-                        47.6037815
+                        -121.9311808,
+                        49.0050714
                     ],
                     [
-                        12.1614117,
-                        47.6963421
+                        -121.9311808,
+                        49.0656099
                     ],
                     [
-                        12.2581008,
-                        47.7442718
+                        -122.817484,
+                        49.0656099
                     ],
                     [
-                        12.2530119,
-                        47.6792136
+                        -122.817484,
+                        49.0029143
                     ],
                     [
-                        12.4311232,
-                        47.7100408
+                        -122.8795155,
+                        49.0029143
                     ],
                     [
-                        12.4921899,
-                        47.631224
+                        -122.8795155,
+                        48.9347018
                     ],
                     [
-                        12.5685234,
-                        47.6277944
+                        -122.8174629,
+                        48.9347018
                     ],
                     [
-                        12.6295901,
-                        47.6894913
+                        -122.8174629,
+                        48.8101998
                     ],
                     [
-                        12.7720792,
-                        47.6689338
+                        -122.7538859,
+                        48.8101998
                     ],
                     [
-                        12.8331459,
-                        47.5419833
+                        -122.7538859,
+                        48.7533758
                     ],
                     [
-                        12.975635,
-                        47.4732332
+                        -122.8712937,
+                        48.7533758
                     ],
                     [
-                        13.0417906,
-                        47.4938677
+                        -122.8712937,
+                        48.8153948
                     ],
                     [
-                        13.0367017,
-                        47.5557226
+                        -123.0055391,
+                        48.8153948
                     ],
                     [
-                        13.0977685,
-                        47.6415112
+                        -123.0055391,
+                        48.7529529
                     ],
                     [
-                        13.0316128,
-                        47.7100408
+                        -123.1296926,
+                        48.7529529
                     ],
                     [
-                        12.9043905,
-                        47.7203125
+                        -123.1296926,
+                        48.6902201
                     ],
                     [
-                        13.0061684,
-                        47.84683
+                        -123.1838197,
+                        48.6902201
                     ],
                     [
-                        12.9451016,
-                        47.9355501
+                        -123.1838197,
+                        48.7529029
+                    ]
+                ],
+                [
+                    [
+                        -122.9341743,
+                        37.7521547
                     ],
                     [
-                        12.8636793,
-                        47.9594103
+                        -122.9347457,
+                        37.6842013
                     ],
                     [
-                        12.8636793,
-                        48.0036929
+                        -123.0679013,
+                        37.6849023
                     ],
                     [
-                        12.7517236,
-                        48.0989418
+                        -123.0673747,
+                        37.7475251
                     ],
                     [
-                        12.8738571,
-                        48.2109733
+                        -123.1292603,
+                        37.7478506
                     ],
                     [
-                        12.9603683,
-                        48.2109733
+                        -123.1286894,
+                        37.815685
                     ],
                     [
-                        13.0417906,
-                        48.2652035
+                        -123.0590687,
+                        37.8153192
                     ],
                     [
-                        13.1842797,
-                        48.2990682
+                        -123.0595947,
+                        37.7528143
+                    ]
+                ],
+                [
+                    [
+                        -71.6299464,
+                        41.2540893
                     ],
                     [
-                        13.2606131,
-                        48.2922971
+                        -71.4966465,
+                        41.2541393
                     ],
                     [
-                        13.3980133,
-                        48.3565867
+                        -71.4965596,
+                        41.122965
                     ],
                     [
-                        13.4438134,
-                        48.417418
+                        -71.6298594,
+                        41.1229149
+                    ]
+                ],
+                [
+                    [
+                        -70.3184265,
+                        41.3775196
                     ],
                     [
-                        13.4387245,
-                        48.5523383
+                        -70.3183384,
+                        41.2448243
                     ],
                     [
-                        13.509969,
-                        48.5860123
+                        -70.1906612,
+                        41.2448722
                     ],
                     [
-                        13.6117469,
-                        48.5725454
+                        -70.1906239,
+                        41.1886019
                     ],
                     [
-                        13.7287915,
-                        48.5118999
+                        -69.9336025,
+                        41.1886984
                     ],
                     [
-                        13.7847694,
-                        48.5725454
+                        -69.933729,
+                        41.3791941
                     ],
                     [
-                        13.8203916,
-                        48.6263915
+                        -69.9950664,
+                        41.3791712
                     ],
                     [
-                        13.7949471,
-                        48.7171267
+                        -69.995109,
+                        41.443159
                     ],
                     [
-                        13.850925,
-                        48.7741724
+                        -70.0707828,
+                        41.4431307
                     ],
                     [
-                        14.0595697,
-                        48.6633774
+                        -70.0706972,
+                        41.3144915
                     ],
                     [
-                        14.0137696,
-                        48.6331182
+                        -70.2461667,
+                        41.3144258
                     ],
                     [
-                        14.0748364,
-                        48.5927444
+                        -70.2462087,
+                        41.3775467
+                    ]
+                ],
+                [
+                    [
+                        -68.9403374,
+                        43.9404062
                     ],
                     [
-                        14.2173255,
-                        48.5961101
+                        -68.6856948,
+                        43.9404977
                     ],
                     [
-                        14.3649034,
-                        48.5489696
+                        -68.6856475,
+                        43.8721797
                     ],
                     [
-                        14.4666813,
-                        48.6499311
+                        -68.7465405,
+                        43.8721577
                     ],
                     [
-                        14.5582815,
-                        48.5961101
+                        -68.7464976,
+                        43.8102529
                     ],
                     [
-                        14.5989926,
-                        48.6263915
+                        -68.8090782,
+                        43.8102304
                     ],
                     [
-                        14.7211261,
-                        48.5759124
+                        -68.8090343,
+                        43.746728
                     ],
                     [
-                        14.7211261,
-                        48.6868997
+                        -68.8773094,
+                        43.7467034
                     ],
                     [
-                        14.822904,
-                        48.7271983
+                        -68.8773544,
+                        43.8117826
                     ],
                     [
-                        14.8178151,
-                        48.777526
+                        -68.9402483,
+                        43.8117599
+                    ]
+                ],
+                [
+                    [
+                        -123.1291466,
+                        49.0645144
                     ],
                     [
-                        14.9647227,
-                        48.7851754
+                        -122.9954224,
+                        49.0645144
                     ],
                     [
-                        14.9893637,
-                        49.0126611
+                        -122.9954224,
+                        48.9343243
                     ],
                     [
-                        15.1485933,
-                        48.9950306
+                        -123.1291466,
+                        48.9343243
+                    ]
+                ],
+                [
+                    [
+                        -82.9407144,
+                        24.7535913
                     ],
                     [
-                        15.1943934,
-                        48.9315502
+                        -82.8719398,
+                        24.7535913
                     ],
                     [
-                        15.3063491,
-                        48.9850128
+                        -82.8719398,
+                        24.6905653
                     ],
                     [
-                        15.3928603,
-                        48.9850128
+                        -82.7446233,
+                        24.6905653
                     ],
                     [
-                        15.4844604,
-                        48.9282069
+                        -82.7446233,
+                        24.6214593
                     ],
                     [
-                        15.749083,
-                        48.8545973
+                        -82.8088038,
+                        24.6214593
                     ],
                     [
-                        15.8406831,
-                        48.8880697
+                        -82.8088038,
+                        24.5594908
                     ],
                     [
-                        16.0086166,
-                        48.7808794
+                        -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
                     ],
                     [
-                        16.2070835,
-                        48.7339115
+                        -125.989419,
+                        47.9948396
                     ],
                     [
-                        16.3953727,
-                        48.7372678
+                        -123.9929739,
+                        47.9955062
                     ],
                     [
-                        16.4920617,
-                        48.8110498
+                        -123.9922429,
+                        47.0059202
                     ],
                     [
-                        16.6905286,
-                        48.7741724
+                        -125.988688,
+                        47.0052409
                     ],
                     [
-                        16.7057953,
-                        48.7339115
+                        -125.9879604,
+                        46.0015618
                     ],
                     [
-                        16.8991733,
-                        48.713769
+                        -123.9939396,
+                        46.0022529
                     ],
                     [
-                        16.9755067,
-                        48.515271
+                        -123.9925238,
+                        43.9961708
                     ],
                     [
-                        16.8482844,
-                        48.4511817
+                        -124.9931832,
+                        43.9958116
                     ],
                     [
-                        16.8533733,
-                        48.3464411
+                        -124.9918175,
+                        41.9942149
                     ],
                     [
-                        16.9551512,
-                        48.2516513
+                        -125.9851789,
+                        41.9938465
                     ],
                     [
-                        16.9907734,
-                        48.1498955
+                        -125.9838655,
+                        40.0076111
                     ],
                     [
-                        17.0925513,
-                        48.1397088
+                        -123.9833285,
+                        40.0083757
                     ],
                     [
-                        17.0823736,
-                        48.0241182
+                        -123.9814115,
+                        37.002615
                     ],
                     [
-                        17.1739737,
-                        48.0207146
+                        -122.21903,
+                        37.0033173
                     ],
                     [
-                        17.0823736,
-                        47.8741447
+                        -122.2184144,
+                        36.011671
                     ],
                     [
-                        16.9856845,
-                        47.8673174
+                        -122.020087,
+                        36.011751
                     ],
                     [
-                        17.0823736,
-                        47.8092489
+                        -122.0188591,
+                        33.9961766
                     ],
                     [
-                        17.0925513,
-                        47.7031919
+                        -119.9787757,
+                        33.9970206
                     ],
                     [
-                        16.7414176,
-                        47.6792136
+                        -119.9775867,
+                        31.9987658
                     ],
                     [
-                        16.7057953,
-                        47.7511153
+                        -114.0122833,
+                        32.00129
                     ],
                     [
-                        16.5378617,
-                        47.7545368
+                        -114.0116894,
+                        30.9862401
                     ],
                     [
-                        16.5480395,
-                        47.7066164
+                        -105.998294,
+                        30.9896679
                     ],
                     [
-                        16.4208172,
-                        47.6689338
+                        -105.9971419,
+                        28.9901065
                     ],
                     [
-                        16.573484,
-                        47.6175045
+                        -102.0210506,
+                        28.9918418
                     ],
                     [
-                        16.670173,
-                        47.631224
+                        -102.0204916,
+                        28.00733
                     ],
                     [
-                        16.7108842,
-                        47.538548
+                        -100.0062436,
+                        28.0082173
                     ],
                     [
-                        16.6599952,
-                        47.4491493
+                        -100.0051143,
+                        25.991909
                     ],
                     [
-                        16.5429506,
-                        47.3940591
+                        -98.0109067,
+                        25.9928035
                     ],
                     [
-                        16.4615283,
-                        47.3940591
+                        -98.0103613,
+                        25.0063461
                     ],
                     [
-                        16.4920617,
-                        47.276801
+                        -97.0161086,
+                        25.0067957
                     ],
                     [
-                        16.425906,
-                        47.1973317
+                        -97.016654,
+                        25.9932494
                     ],
                     [
-                        16.4717061,
-                        47.1489007
+                        -95.9824825,
+                        25.9937132
                     ],
                     [
-                        16.5480395,
-                        47.1489007
+                        -95.9835999,
+                        27.9891175
                     ],
                     [
-                        16.476795,
-                        47.0796369
+                        -94.0200898,
+                        27.9899826
                     ],
                     [
-                        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"
-        ],
+                        -94.0206586,
+                        28.9918129
+                    ],
+                    [
+                        -88.0156706,
+                        28.9944338
+                    ],
+                    [
+                        -88.0162494,
+                        30.0038862
+                    ],
+                    [
+                        -86.0277506,
+                        30.0047454
+                    ],
+                    [
+                        -86.0271719,
+                        28.9953016
+                    ],
+                    [
+                        -84.0187909,
+                        28.9961781
+                    ],
+                    [
+                        -84.017095,
+                        25.9817708
+                    ],
+                    [
+                        -81.9971976,
+                        25.9826768
+                    ],
+                    [
+                        -81.9966618,
+                        25.0134917
+                    ],
+                    [
+                        -84.0165592,
+                        25.0125783
+                    ],
+                    [
+                        -84.0160068,
+                        24.0052745
+                    ],
+                    [
+                        -80.0199985,
+                        24.007096
+                    ],
+                    [
+                        -80.0245309,
+                        32.0161282
+                    ],
+                    [
+                        -78.0066484,
+                        32.0169819
+                    ],
+                    [
+                        -78.0072238,
+                        32.9894278
+                    ],
+                    [
+                        -77.8807233,
+                        32.9894807
+                    ],
+                    [
+                        -77.8813253,
+                        33.9955918
+                    ],
+                    [
+                        -76.0115411,
+                        33.9963653
+                    ],
+                    [
+                        -76.0121459,
+                        34.9952552
+                    ],
+                    [
+                        -74.0068449,
+                        34.9960749
+                    ],
+                    [
+                        -74.0099997,
+                        40.0084254
+                    ],
+                    [
+                        -72.0013745,
+                        40.0091931
+                    ],
+                    [
+                        -72.002019,
+                        40.9912464
+                    ],
+                    [
+                        -69.8797398,
+                        40.9920457
+                    ],
+                    [
+                        -69.8804173,
+                        42.00893
+                    ],
+                    [
+                        -69.9927682,
+                        42.0088883
+                    ],
+                    [
+                        -69.9934462,
+                        43.0105166
+                    ],
+                    [
+                        -67.9845366,
+                        43.0112496
+                    ],
+                    [
+                        -67.985224,
+                        44.0103812
+                    ],
+                    [
+                        -65.9892568,
+                        44.0110975
+                    ],
+                    [
+                        -65.9921237,
+                        47.9993584
+                    ],
+                    [
+                        -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
+                    ]
+                ],
+                [
+                    [
+                        -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",
@@ -63992,4804 +66600,5826 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                     "address"
                 ],
                 "geometry": [
-                    "point"
+                    "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",
+                    "area"
+                ],
+                "terms": [
+                    "petrol",
+                    "fuel",
+                    "propane",
+                    "diesel",
+                    "lng",
+                    "cng",
+                    "biodiesel"
+                ],
+                "tags": {
+                    "amenity": "fuel"
+                },
+                "name": "Gas Station"
+            },
+            "amenity/grave_yard": {
+                "icon": "cemetery",
+                "fields": [
+                    "religion",
+                    "denomination"
+                ],
+                "geometry": [
+                    "point",
+                    "area"
+                ],
+                "tags": {
+                    "amenity": "grave_yard"
+                },
+                "name": "Graveyard"
+            },
+            "amenity/hospital": {
+                "icon": "hospital",
+                "fields": [
+                    "operator",
+                    "address",
+                    "emergency"
+                ],
+                "geometry": [
+                    "point",
+                    "area"
+                ],
+                "terms": [
+                    "clinic",
+                    "doctor",
+                    "emergency room",
+                    "health service",
+                    "hospice",
+                    "infirmary",
+                    "institution",
+                    "nursing home",
+                    "sanatorium",
+                    "sanitarium",
+                    "sick",
+                    "surgery",
+                    "ward"
+                ],
+                "tags": {
+                    "amenity": "hospital"
+                },
+                "name": "Hospital Grounds"
+            },
+            "amenity/kindergarten": {
+                "icon": "school",
+                "fields": [
+                    "operator",
+                    "address"
+                ],
+                "geometry": [
+                    "point",
+                    "area"
+                ],
+                "terms": [
+                    "kindergarden",
+                    "pre-school"
+                ],
+                "tags": {
+                    "amenity": "kindergarten"
+                },
+                "name": "Preschool/Kindergarten Grounds"
+            },
+            "amenity/library": {
+                "icon": "library",
+                "fields": [
+                    "operator",
+                    "building_area",
+                    "address",
+                    "opening_hours"
+                ],
+                "geometry": [
+                    "point",
+                    "area"
+                ],
+                "terms": [
+                    "book"
+                ],
+                "tags": {
+                    "amenity": "library"
+                },
+                "name": "Library"
+            },
+            "amenity/marketplace": {
+                "fields": [
+                    "operator",
+                    "address",
+                    "building_area",
+                    "opening_hours"
+                ],
+                "geometry": [
+                    "point",
+                    "area"
+                ],
+                "tags": {
+                    "amenity": "marketplace"
+                },
+                "name": "Marketplace"
+            },
+            "amenity/nightclub": {
+                "icon": "bar",
+                "fields": [
+                    "operator",
+                    "address",
+                    "building_area",
+                    "opening_hours",
+                    "smoking"
+                ],
+                "geometry": [
+                    "point",
+                    "area"
+                ],
+                "tags": {
+                    "amenity": "nightclub"
+                },
+                "terms": [
+                    "disco*",
+                    "night club",
+                    "dancing",
+                    "dance club"
+                ],
+                "name": "Nightclub"
+            },
+            "amenity/parking": {
+                "icon": "parking",
+                "fields": [
+                    "operator",
+                    "parking",
+                    "capacity",
+                    "fee",
+                    "access_simple",
+                    "supervised",
+                    "park_ride",
+                    "address"
+                ],
+                "geometry": [
+                    "point",
+                    "vertex",
+                    "area"
+                ],
+                "tags": {
+                    "amenity": "parking"
+                },
+                "terms": [],
+                "name": "Car Parking"
+            },
+            "amenity/parking_entrance": {
+                "icon": "entrance",
+                "fields": [
+                    "access_simple",
+                    "ref"
+                ],
+                "geometry": [
+                    "vertex"
+                ],
+                "tags": {
+                    "amenity": "parking_entrance"
+                },
+                "name": "Parking Garage Entrance/Exit"
+            },
+            "amenity/pharmacy": {
+                "icon": "pharmacy",
+                "fields": [
+                    "operator",
+                    "address",
+                    "building_area",
+                    "opening_hours"
+                ],
+                "geometry": [
+                    "point",
+                    "area"
+                ],
+                "tags": {
+                    "amenity": "pharmacy"
+                },
+                "terms": [
+                    "drug",
+                    "medicine"
+                ],
+                "name": "Pharmacy"
+            },
+            "amenity/place_of_worship": {
+                "icon": "place-of-worship",
+                "fields": [
+                    "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": {
+                    "amenity": "place_of_worship"
+                },
+                "name": "Place of Worship"
+            },
+            "amenity/place_of_worship/buddhist": {
+                "icon": "place-of-worship",
+                "fields": [
+                    "denomination",
+                    "building_area",
+                    "address"
+                ],
+                "geometry": [
+                    "point",
+                    "area"
+                ],
+                "terms": [
+                    "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": [
+                    "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": {
+                    "amenity": "place_of_worship",
+                    "religion": "christian"
+                },
+                "name": "Church"
+            },
+            "amenity/place_of_worship/jewish": {
+                "icon": "religious-jewish",
+                "fields": [
+                    "denomination",
+                    "building_area",
+                    "address"
+                ],
+                "geometry": [
+                    "point",
+                    "area"
+                ],
+                "terms": [
+                    "jewish"
+                ],
+                "tags": {
+                    "amenity": "place_of_worship",
+                    "religion": "jewish"
+                },
+                "name": "Synagogue"
+            },
+            "amenity/place_of_worship/muslim": {
+                "icon": "religious-muslim",
+                "fields": [
+                    "denomination",
+                    "building_area",
+                    "address"
+                ],
+                "geometry": [
+                    "point",
+                    "area"
+                ],
+                "terms": [
+                    "muslim"
+                ],
+                "tags": {
+                    "amenity": "place_of_worship",
+                    "religion": "muslim"
+                },
+                "name": "Mosque"
+            },
+            "amenity/police": {
+                "icon": "police",
+                "fields": [
+                    "operator",
+                    "address",
+                    "building_area"
+                ],
+                "geometry": [
+                    "point",
+                    "area"
+                ],
+                "terms": [
+                    "badge",
+                    "constable",
+                    "constabulary",
+                    "cop",
+                    "detective",
+                    "fed",
+                    "law",
+                    "enforcement",
+                    "officer",
+                    "patrol"
+                ],
+                "tags": {
+                    "amenity": "police"
+                },
+                "name": "Police"
+            },
+            "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": [
+                    "operator",
+                    "address",
+                    "building_area",
+                    "collection_times"
+                ],
+                "geometry": [
+                    "point",
+                    "area"
+                ],
+                "terms": [
+                    "letter",
+                    "mail"
+                ],
+                "tags": {
+                    "amenity": "post_office"
+                },
+                "name": "Post Office"
+            },
+            "amenity/pub": {
+                "icon": "beer",
+                "fields": [
+                    "address",
+                    "building_area",
+                    "opening_hours",
+                    "smoking"
+                ],
+                "geometry": [
+                    "point",
+                    "area"
+                ],
+                "tags": {
+                    "amenity": "pub"
+                },
+                "terms": [
+                    "dive",
+                    "beer",
+                    "bier",
+                    "booze"
+                ],
+                "name": "Pub"
+            },
+            "amenity/ranger_station": {
+                "fields": [
+                    "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": {
+                    "amenity": "ranger_station"
+                },
+                "name": "Ranger Station"
+            },
+            "amenity/recycling": {
+                "icon": "recycling",
+                "fields": [
+                    "operator",
+                    "address",
+                    "recycling/cans",
+                    "recycling/glass",
+                    "recycling/paper",
+                    "recycling/clothes"
+                ],
+                "geometry": [
+                    "point",
+                    "area"
+                ],
+                "terms": [
+                    "can",
+                    "bottle",
+                    "garbage",
+                    "scrap",
+                    "trash"
+                ],
+                "tags": {
+                    "amenity": "recycling"
+                },
+                "name": "Recycling"
+            },
+            "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": {
-                    "addr:housenumber": "*"
+                    "amenity": "restaurant"
                 },
-                "addTags": {},
-                "removeTags": {},
-                "matchScore": 0.2,
-                "name": "Address"
+                "name": "Restaurant"
             },
-            "aerialway": {
+            "amenity/school": {
+                "icon": "school",
                 "fields": [
-                    "aerialway"
+                    "operator",
+                    "address"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
-                    "line"
+                    "area"
                 ],
-                "tags": {
-                    "aerialway": "*"
-                },
                 "terms": [
-                    "ski lift",
-                    "funifor",
-                    "funitel"
+                    "academy",
+                    "elementary school",
+                    "middle school",
+                    "high school"
                 ],
-                "name": "Aerialway"
+                "tags": {
+                    "amenity": "school"
+                },
+                "name": "School Grounds"
             },
-            "aerialway/cable_car": {
+            "amenity/shelter": {
+                "fields": [
+                    "shelter_type"
+                ],
                 "geometry": [
-                    "line"
+                    "point",
+                    "vertex",
+                    "area"
                 ],
                 "terms": [
-                    "tramway",
-                    "ropeway"
-                ],
-                "fields": [
-                    "aerialway/occupancy",
-                    "aerialway/capacity",
-                    "aerialway/duration",
-                    "aerialway/heating"
+                    "lean-to",
+                    "gazebo",
+                    "picnic"
                 ],
                 "tags": {
-                    "aerialway": "cable_car"
+                    "amenity": "shelter"
                 },
-                "name": "Cable Car"
+                "name": "Shelter"
             },
-            "aerialway/chair_lift": {
+            "amenity/social_facility": {
+                "fields": [
+                    "operator",
+                    "address",
+                    "building_area",
+                    "opening_hours",
+                    "wheelchair",
+                    "social_facility_for"
+                ],
                 "geometry": [
-                    "line"
+                    "point",
+                    "area"
                 ],
+                "terms": [],
+                "tags": {
+                    "amenity": "social_facility"
+                },
+                "name": "Social Facility"
+            },
+            "amenity/social_facility/food_bank": {
                 "fields": [
-                    "aerialway/occupancy",
-                    "aerialway/capacity",
-                    "aerialway/duration",
-                    "aerialway/bubble",
-                    "aerialway/heating"
+                    "operator",
+                    "address",
+                    "building_area",
+                    "opening_hours",
+                    "social_facility_for"
                 ],
+                "geometry": [
+                    "point",
+                    "area"
+                ],
+                "terms": [],
                 "tags": {
-                    "aerialway": "chair_lift"
+                    "amenity": "social_facility",
+                    "social_facility": "food_bank"
                 },
-                "name": "Chair Lift"
+                "name": "Food Bank"
             },
-            "aerialway/gondola": {
+            "amenity/social_facility/group_home": {
+                "fields": [
+                    "operator",
+                    "address",
+                    "building_area",
+                    "opening_hours",
+                    "wheelchair",
+                    "social_facility_for"
+                ],
                 "geometry": [
-                    "line"
+                    "point",
+                    "area"
                 ],
-                "fields": [
-                    "aerialway/occupancy",
-                    "aerialway/capacity",
-                    "aerialway/duration",
-                    "aerialway/bubble",
-                    "aerialway/heating"
+                "terms": [
+                    "old",
+                    "senior",
+                    "living"
                 ],
                 "tags": {
-                    "aerialway": "gondola"
+                    "amenity": "social_facility",
+                    "social_facility": "group_home",
+                    "social_facility_for": "senior"
                 },
-                "name": "Gondola"
+                "name": "Elderly Group Home"
             },
-            "aerialway/magic_carpet": {
+            "amenity/social_facility/homeless_shelter": {
+                "fields": [
+                    "operator",
+                    "address",
+                    "building_area",
+                    "opening_hours",
+                    "wheelchair",
+                    "social_facility_for"
+                ],
                 "geometry": [
-                    "line"
+                    "point",
+                    "area"
                 ],
-                "fields": [
-                    "aerialway/capacity",
-                    "aerialway/duration",
-                    "aerialway/heating"
+                "terms": [
+                    "houseless",
+                    "unhoused",
+                    "displaced"
                 ],
                 "tags": {
-                    "aerialway": "magic_carpet"
+                    "amenity": "social_facility",
+                    "social_facility": "shelter",
+                    "social_facility:for": "homeless"
                 },
-                "name": "Magic Carpet Lift"
+                "name": "Homeless Shelter"
             },
-            "aerialway/platter": {
+            "amenity/studio": {
+                "icon": "music",
+                "fields": [
+                    "studio_type",
+                    "address",
+                    "building_area"
+                ],
                 "geometry": [
-                    "line"
+                    "point",
+                    "area"
                 ],
                 "terms": [
-                    "button lift",
-                    "poma lift"
-                ],
-                "fields": [
-                    "aerialway/capacity",
-                    "aerialway/duration"
+                    "recording",
+                    "radio",
+                    "television"
                 ],
                 "tags": {
-                    "aerialway": "platter"
+                    "amenity": "studio"
                 },
-                "name": "Platter Lift"
+                "name": "Studio"
             },
-            "aerialway/pylon": {
+            "amenity/swimming_pool": {
+                "icon": "swimming",
                 "geometry": [
                     "point",
-                    "vertex"
-                ],
-                "fields": [
-                    "ref"
+                    "vertex",
+                    "area"
                 ],
                 "tags": {
-                    "aerialway": "pylon"
+                    "amenity": "swimming_pool"
                 },
-                "name": "Aerialway Pylon"
+                "name": "Swimming Pool",
+                "searchable": false
             },
-            "aerialway/rope_tow": {
+            "amenity/taxi": {
+                "icon": "car",
+                "fields": [
+                    "operator",
+                    "capacity"
+                ],
                 "geometry": [
-                    "line"
+                    "point",
+                    "vertex",
+                    "area"
                 ],
                 "terms": [
-                    "handle tow",
-                    "bugel lift"
-                ],
-                "fields": [
-                    "aerialway/capacity",
-                    "aerialway/duration"
+                    "cab"
                 ],
                 "tags": {
-                    "aerialway": "rope_tow"
+                    "amenity": "taxi"
                 },
-                "name": "Rope Tow Lift"
+                "name": "Taxi Stand"
             },
-            "aerialway/station": {
+            "amenity/telephone": {
+                "icon": "telephone",
                 "geometry": [
                     "point",
                     "vertex"
                 ],
-                "fields": [
-                    "aerialway/access",
-                    "aerialway/summer/access",
-                    "elevation"
-                ],
                 "tags": {
-                    "aerialway": "station"
+                    "amenity": "telephone"
                 },
-                "name": "Aerialway Station"
+                "terms": [
+                    "phone"
+                ],
+                "name": "Telephone"
             },
-            "aerialway/t-bar": {
+            "amenity/theatre": {
+                "icon": "theatre",
+                "fields": [
+                    "operator",
+                    "address",
+                    "building_area"
+                ],
                 "geometry": [
-                    "line"
+                    "point",
+                    "area"
                 ],
-                "fields": [
-                    "aerialway/capacity",
-                    "aerialway/duration"
+                "terms": [
+                    "theatre",
+                    "performance",
+                    "play",
+                    "musical"
                 ],
                 "tags": {
-                    "aerialway": "t-bar"
+                    "amenity": "theatre"
                 },
-                "name": "T-bar Lift"
+                "name": "Theater"
             },
-            "aeroway": {
-                "icon": "airport",
+            "amenity/toilets": {
+                "icon": "toilets",
                 "fields": [
-                    "aeroway"
+                    "toilets/disposal",
+                    "operator",
+                    "building_area",
+                    "access_toilets"
                 ],
                 "geometry": [
                     "point",
                     "vertex",
-                    "line",
                     "area"
                 ],
+                "terms": [
+                    "bathroom",
+                    "restroom",
+                    "outhouse",
+                    "privy",
+                    "head",
+                    "lavatory",
+                    "latrine",
+                    "water closet",
+                    "WC",
+                    "W.C."
+                ],
                 "tags": {
-                    "aeroway": "*"
+                    "amenity": "toilets"
                 },
-                "name": "Aeroway"
+                "name": "Toilets"
             },
-            "aeroway/aerodrome": {
-                "icon": "airport",
+            "amenity/townhall": {
+                "icon": "town-hall",
+                "fields": [
+                    "operator",
+                    "address",
+                    "building_area"
+                ],
                 "geometry": [
                     "point",
                     "area"
                 ],
                 "terms": [
-                    "airplane",
-                    "airport",
-                    "aerodrome"
-                ],
-                "fields": [
-                    "ref",
-                    "iata",
-                    "icao",
-                    "operator"
+                    "village",
+                    "city",
+                    "government",
+                    "courthouse",
+                    "municipal"
                 ],
                 "tags": {
-                    "aeroway": "aerodrome"
+                    "amenity": "townhall"
                 },
-                "name": "Airport"
+                "name": "Town Hall"
             },
-            "aeroway/apron": {
-                "icon": "airport",
+            "amenity/university": {
+                "icon": "college",
+                "fields": [
+                    "operator",
+                    "address"
+                ],
                 "geometry": [
+                    "point",
                     "area"
                 ],
                 "terms": [
-                    "ramp"
-                ],
-                "fields": [
-                    "ref",
-                    "surface"
+                    "college"
                 ],
                 "tags": {
-                    "aeroway": "apron"
+                    "amenity": "university"
                 },
-                "name": "Apron"
+                "name": "University Grounds"
             },
-            "aeroway/gate": {
-                "icon": "airport",
+            "amenity/vending_machine": {
+                "fields": [
+                    "vending",
+                    "operator"
+                ],
                 "geometry": [
                     "point"
                 ],
-                "fields": [
-                    "ref"
+                "terms": [
+                    "snack",
+                    "soda",
+                    "ticket"
                 ],
                 "tags": {
-                    "aeroway": "gate"
+                    "amenity": "vending_machine"
                 },
-                "name": "Airport gate"
+                "name": "Vending Machine"
             },
-            "aeroway/hangar": {
-                "geometry": [
-                    "area"
-                ],
+            "amenity/veterinary": {
+                "icon": "dog-park",
                 "fields": [
-                    "building_area"
+                    "operator",
+                    "address",
+                    "building_area",
+                    "opening_hours"
                 ],
-                "tags": {
-                    "aeroway": "hangar"
-                },
-                "name": "Hangar"
-            },
-            "aeroway/helipad": {
-                "icon": "heliport",
                 "geometry": [
                     "point",
                     "area"
                 ],
                 "terms": [
-                    "helicopter",
-                    "helipad",
-                    "heliport"
+                    "pet clinic",
+                    "veterinarian",
+                    "animal hospital",
+                    "pet doctor"
                 ],
                 "tags": {
-                    "aeroway": "helipad"
+                    "amenity": "veterinary"
                 },
-                "name": "Helipad"
+                "name": "Veterinary"
             },
-            "aeroway/runway": {
+            "amenity/waste_basket": {
+                "icon": "waste-basket",
                 "geometry": [
-                    "line",
-                    "area"
+                    "point",
+                    "vertex"
                 ],
+                "tags": {
+                    "amenity": "waste_basket"
+                },
                 "terms": [
-                    "landing strip"
-                ],
-                "fields": [
-                    "ref",
-                    "surface",
-                    "length",
-                    "width"
+                    "rubbish",
+                    "litter",
+                    "trash",
+                    "garbage"
                 ],
+                "name": "Waste Basket"
+            },
+            "area": {
+                "name": "Area",
                 "tags": {
-                    "aeroway": "runway"
+                    "area": "yes"
                 },
-                "name": "Runway"
-            },
-            "aeroway/taxiway": {
                 "geometry": [
-                    "line"
-                ],
-                "fields": [
-                    "ref",
-                    "surface"
+                    "area"
                 ],
-                "tags": {
-                    "aeroway": "taxiway"
-                },
-                "name": "Taxiway"
+                "matchScore": 0.1
             },
-            "aeroway/terminal": {
+            "barrier": {
                 "geometry": [
                     "point",
+                    "vertex",
+                    "line",
                     "area"
                 ],
-                "terms": [
-                    "airport",
-                    "aerodrome"
+                "tags": {
+                    "barrier": "*"
+                },
+                "fields": [
+                    "barrier"
                 ],
+                "name": "Barrier"
+            },
+            "barrier/block": {
                 "fields": [
-                    "operator",
-                    "building_area"
+                    "access"
+                ],
+                "geometry": [
+                    "point",
+                    "vertex"
                 ],
                 "tags": {
-                    "aeroway": "terminal"
+                    "barrier": "block"
                 },
-                "name": "Airport terminal"
+                "name": "Block"
             },
-            "amenity": {
+            "barrier/bollard": {
                 "fields": [
-                    "amenity"
+                    "access"
                 ],
                 "geometry": [
                     "point",
                     "vertex",
-                    "area"
+                    "line"
                 ],
                 "tags": {
-                    "amenity": "*"
+                    "barrier": "bollard"
                 },
-                "name": "Amenity"
+                "name": "Bollard"
             },
-            "amenity/arts_centre": {
-                "name": "Arts Center",
+            "barrier/cattle_grid": {
                 "geometry": [
-                    "point",
-                    "area"
+                    "vertex"
                 ],
-                "terms": [
-                    "arts",
-                    "arts centre"
+                "tags": {
+                    "barrier": "cattle_grid"
+                },
+                "name": "Cattle Grid"
+            },
+            "barrier/city_wall": {
+                "geometry": [
+                    "line",
+                    "area"
                 ],
                 "tags": {
-                    "amenity": "arts_centre"
+                    "barrier": "city_wall"
                 },
-                "icon": "theatre",
-                "fields": [
-                    "building_area",
-                    "address"
-                ]
+                "name": "City Wall"
             },
-            "amenity/atm": {
-                "icon": "bank",
+            "barrier/cycle_barrier": {
                 "fields": [
-                    "operator"
+                    "access"
                 ],
                 "geometry": [
-                    "point",
                     "vertex"
                 ],
                 "tags": {
-                    "amenity": "atm"
+                    "barrier": "cycle_barrier"
                 },
-                "name": "ATM"
+                "name": "Cycle Barrier"
             },
-            "amenity/bank": {
-                "icon": "bank",
-                "fields": [
-                    "atm",
-                    "building_area",
-                    "address",
-                    "opening_hours"
-                ],
+            "barrier/ditch": {
                 "geometry": [
-                    "point",
-                    "vertex",
+                    "line",
                     "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"
-                ],
                 "tags": {
-                    "amenity": "bank"
+                    "barrier": "ditch"
                 },
-                "name": "Bank"
+                "name": "Ditch"
             },
-            "amenity/bar": {
-                "icon": "bar",
-                "fields": [
-                    "building_area",
-                    "address",
-                    "opening_hours",
-                    "smoking"
-                ],
+            "barrier/entrance": {
+                "icon": "entrance",
                 "geometry": [
-                    "point",
-                    "vertex",
-                    "area"
+                    "vertex"
                 ],
                 "tags": {
-                    "amenity": "bar"
+                    "barrier": "entrance"
                 },
-                "terms": [],
-                "name": "Bar"
+                "name": "Entrance",
+                "searchable": false
             },
-            "amenity/bbq": {
+            "barrier/fence": {
                 "geometry": [
-                    "point"
+                    "line"
                 ],
                 "tags": {
-                    "amenity": "bbq"
+                    "barrier": "fence"
                 },
+                "name": "Fence"
+            },
+            "barrier/gate": {
                 "fields": [
-                    "covered",
-                    "fuel"
-                ],
-                "terms": [
-                    "barbecue",
-                    "bbq",
-                    "grill"
+                    "access"
                 ],
-                "name": "Barbecue/Grill"
-            },
-            "amenity/bench": {
                 "geometry": [
                     "point",
                     "vertex",
                     "line"
                 ],
                 "tags": {
-                    "amenity": "bench"
+                    "barrier": "gate"
                 },
-                "fields": [
-                    "backrest"
+                "name": "Gate"
+            },
+            "barrier/hedge": {
+                "geometry": [
+                    "line",
+                    "area"
                 ],
-                "name": "Bench"
+                "tags": {
+                    "barrier": "hedge"
+                },
+                "name": "Hedge"
             },
-            "amenity/bicycle_parking": {
-                "icon": "bicycle",
+            "barrier/kissing_gate": {
                 "fields": [
-                    "bicycle_parking",
-                    "capacity",
-                    "operator",
-                    "covered",
-                    "access_simple"
+                    "access"
                 ],
                 "geometry": [
-                    "point",
-                    "vertex",
-                    "area"
+                    "vertex"
                 ],
                 "tags": {
-                    "amenity": "bicycle_parking"
+                    "barrier": "kissing_gate"
                 },
-                "name": "Bicycle Parking"
+                "name": "Kissing Gate"
             },
-            "amenity/bicycle_rental": {
-                "icon": "bicycle",
+            "barrier/lift_gate": {
                 "fields": [
-                    "capacity",
-                    "network",
-                    "operator"
+                    "access"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
-                    "area"
+                    "vertex"
                 ],
                 "tags": {
-                    "amenity": "bicycle_rental"
+                    "barrier": "lift_gate"
                 },
-                "name": "Bicycle Rental"
+                "name": "Lift Gate"
             },
-            "amenity/boat_rental": {
+            "barrier/retaining_wall": {
                 "geometry": [
-                    "point",
+                    "line",
                     "area"
                 ],
                 "tags": {
-                    "amenity": "boat_rental"
+                    "barrier": "retaining_wall"
                 },
-                "fields": [
-                    "operator"
-                ],
-                "name": "Boat Rental"
+                "name": "Retaining Wall"
             },
-            "amenity/cafe": {
-                "icon": "cafe",
+            "barrier/stile": {
                 "fields": [
-                    "cuisine",
-                    "internet_access",
-                    "building_area",
-                    "address",
-                    "opening_hours",
-                    "smoking"
+                    "access"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
-                    "area"
+                    "vertex"
                 ],
-                "terms": [
-                    "coffee",
-                    "tea",
-                    "coffee shop"
+                "tags": {
+                    "barrier": "stile"
+                },
+                "name": "Stile"
+            },
+            "barrier/toll_booth": {
+                "fields": [
+                    "access"
+                ],
+                "geometry": [
+                    "vertex"
                 ],
                 "tags": {
-                    "amenity": "cafe"
+                    "barrier": "toll_booth"
                 },
-                "name": "Cafe"
+                "name": "Toll Booth"
             },
-            "amenity/car_rental": {
-                "icon": "car",
+            "barrier/wall": {
                 "geometry": [
-                    "point",
+                    "line",
                     "area"
                 ],
                 "tags": {
-                    "amenity": "car_rental"
+                    "barrier": "wall"
                 },
-                "fields": [
-                    "operator"
-                ],
-                "name": "Car Rental"
+                "name": "Wall"
             },
-            "amenity/car_sharing": {
-                "icon": "car",
+            "boundary/administrative": {
+                "name": "Administrative Boundary",
                 "geometry": [
-                    "point",
-                    "area"
+                    "line"
                 ],
                 "tags": {
-                    "amenity": "car_sharing"
+                    "boundary": "administrative"
                 },
                 "fields": [
-                    "operator",
-                    "capacity"
-                ],
-                "name": "Car Sharing"
+                    "admin_level"
+                ]
             },
-            "amenity/car_wash": {
-                "icon": "car",
+            "building": {
+                "icon": "building",
+                "fields": [
+                    "building",
+                    "levels",
+                    "address"
+                ],
                 "geometry": [
-                    "point",
                     "area"
                 ],
                 "tags": {
-                    "amenity": "car_wash"
+                    "building": "*"
                 },
+                "terms": [],
+                "name": "Building"
+            },
+            "building/apartments": {
+                "icon": "commercial",
                 "fields": [
-                    "building_area"
+                    "address",
+                    "levels"
                 ],
-                "name": "Car Wash"
-            },
-            "amenity/charging_station": {
-                "icon": "car",
                 "geometry": [
                     "point",
                     "area"
                 ],
                 "tags": {
-                    "amenity": "charging_station"
+                    "building": "apartments"
                 },
-                "fields": [
-                    "operator"
-                ],
-                "terms": [
-                    "EV",
-                    "Electric Vehicle",
-                    "Supercharger"
-                ],
-                "name": "Charging Station"
+                "name": "Apartments"
             },
-            "amenity/childcare": {
-                "icon": "school",
+            "building/barn": {
+                "icon": "building",
                 "fields": [
-                    "building_area",
-                    "address"
+                    "address",
+                    "levels"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
-                "terms": [
-                    "nursery",
-                    "orphanage",
-                    "playgroup"
-                ],
                 "tags": {
-                    "amenity": "childcare"
+                    "building": "barn"
                 },
-                "name": "Childcare"
+                "name": "Barn"
             },
-            "amenity/cinema": {
-                "icon": "cinema",
+            "building/bunker": {
                 "fields": [
-                    "building_area",
-                    "address"
+                    "address",
+                    "levels"
                 ],
                 "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"
-                ],
                 "tags": {
-                    "amenity": "cinema"
+                    "building": "bunker"
                 },
-                "name": "Cinema"
+                "name": "Bunker",
+                "searchable": false
             },
-            "amenity/clinic": {
-                "name": "Clinic",
+            "building/cabin": {
+                "icon": "building",
+                "fields": [
+                    "address",
+                    "levels"
+                ],
                 "geometry": [
                     "point",
                     "area"
                 ],
-                "terms": [
-                    "clinic",
-                    "medical clinic"
-                ],
                 "tags": {
-                    "amenity": "clinic"
+                    "building": "cabin"
                 },
-                "icon": "hospital",
+                "name": "Cabin"
+            },
+            "building/cathedral": {
+                "icon": "place-of-worship",
                 "fields": [
-                    "building_area",
                     "address",
-                    "opening_hours"
-                ]
-            },
-            "amenity/clock": {
+                    "levels"
+                ],
                 "geometry": [
                     "point",
-                    "vertex"
+                    "area"
                 ],
                 "tags": {
-                    "amenity": "clock"
+                    "building": "cathedral"
                 },
-                "name": "Clock"
+                "name": "Cathedral"
             },
-            "amenity/college": {
-                "icon": "college",
+            "building/chapel": {
+                "icon": "place-of-worship",
                 "fields": [
-                    "operator",
-                    "address"
+                    "address",
+                    "levels"
                 ],
                 "geometry": [
                     "point",
                     "area"
                 ],
                 "tags": {
-                    "amenity": "college"
+                    "building": "chapel"
                 },
-                "terms": [],
-                "name": "College"
+                "name": "Chapel"
             },
-            "amenity/compressed_air": {
-                "icon": "car",
+            "building/church": {
+                "icon": "place-of-worship",
+                "fields": [
+                    "address",
+                    "levels"
+                ],
                 "geometry": [
                     "point",
                     "area"
                 ],
                 "tags": {
-                    "amenity": "compressed_air"
+                    "building": "church"
                 },
-                "name": "Compressed Air"
+                "name": "Church"
             },
-            "amenity/courthouse": {
+            "building/college": {
+                "icon": "building",
                 "fields": [
-                    "operator",
-                    "building_area",
-                    "address"
+                    "address",
+                    "levels"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
+                "terms": [
+                    "university"
+                ],
                 "tags": {
-                    "amenity": "courthouse"
+                    "building": "college"
                 },
-                "name": "Courthouse"
+                "name": "College Building"
             },
-            "amenity/dentist": {
-                "name": "Dentist",
+            "building/commercial": {
+                "icon": "commercial",
+                "fields": [
+                    "address",
+                    "smoking"
+                ],
                 "geometry": [
                     "point",
                     "area"
                 ],
-                "terms": [
-                    "dentist",
-                    "dentist's office"
-                ],
                 "tags": {
-                    "amenity": "dentist"
+                    "building": "commercial"
                 },
-                "icon": "hospital",
+                "name": "Commercial Building"
+            },
+            "building/construction": {
+                "icon": "building",
                 "fields": [
-                    "building_area",
                     "address",
-                    "opening_hours"
-                ]
-            },
-            "amenity/doctor": {
-                "name": "Doctor",
+                    "levels"
+                ],
                 "geometry": [
                     "point",
                     "area"
                 ],
-                "terms": [
-                    "doctor",
-                    "doctor's office"
-                ],
                 "tags": {
-                    "amenity": "doctors"
+                    "building": "construction"
                 },
-                "icon": "hospital",
+                "name": "Building Under Construction"
+            },
+            "building/detached": {
+                "icon": "building",
                 "fields": [
-                    "building_area",
                     "address",
-                    "opening_hours"
-                ]
-            },
-            "amenity/dojo": {
-                "icon": "pitch",
+                    "levels"
+                ],
                 "geometry": [
                     "point",
                     "area"
                 ],
-                "terms": [
-                    "martial arts",
-                    "dojo",
-                    "dojang"
-                ],
                 "tags": {
-                    "amenity": "dojo"
+                    "building": "detached"
                 },
+                "name": "Detached Home"
+            },
+            "building/dormitory": {
+                "icon": "building",
                 "fields": [
                     "address",
-                    "sport"
+                    "levels",
+                    "smoking"
                 ],
-                "name": "Dojo / Martial Arts Academy"
-            },
-            "amenity/drinking_water": {
-                "icon": "water",
                 "geometry": [
-                    "point"
+                    "point",
+                    "area"
                 ],
                 "tags": {
-                    "amenity": "drinking_water"
+                    "building": "dormitory"
                 },
-                "terms": [
-                    "water fountain",
-                    "potable water"
-                ],
-                "name": "Drinking Water"
+                "name": "Dormitory"
             },
-            "amenity/embassy": {
+            "building/entrance": {
+                "icon": "entrance",
                 "geometry": [
-                    "area",
-                    "point"
+                    "vertex"
                 ],
                 "tags": {
-                    "amenity": "embassy"
+                    "building": "entrance"
                 },
+                "name": "Entrance/Exit",
+                "searchable": false
+            },
+            "building/garage": {
                 "fields": [
-                    "country",
-                    "building_area"
+                    "capacity"
                 ],
-                "icon": "embassy",
-                "name": "Embassy"
+                "geometry": [
+                    "point",
+                    "area"
+                ],
+                "tags": {
+                    "building": "garage"
+                },
+                "name": "Garage",
+                "icon": "warehouse"
             },
-            "amenity/fast_food": {
-                "icon": "fast-food",
+            "building/garages": {
+                "icon": "warehouse",
                 "fields": [
-                    "cuisine",
-                    "building_area",
-                    "address",
-                    "opening_hours",
-                    "smoking"
+                    "capacity"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "tags": {
-                    "amenity": "fast_food"
+                    "building": "garages"
                 },
-                "terms": [],
-                "name": "Fast Food"
+                "name": "Garages"
             },
-            "amenity/fire_station": {
-                "icon": "fire-station",
+            "building/greenhouse": {
+                "icon": "building",
                 "fields": [
-                    "operator",
-                    "building_area",
-                    "address"
+                    "address",
+                    "levels"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "tags": {
-                    "amenity": "fire_station"
+                    "building": "greenhouse"
                 },
-                "terms": [],
-                "name": "Fire Station"
+                "name": "Greenhouse"
             },
-            "amenity/fountain": {
+            "building/hospital": {
+                "icon": "building",
+                "fields": [
+                    "address",
+                    "levels"
+                ],
                 "geometry": [
                     "point",
                     "area"
                 ],
                 "tags": {
-                    "amenity": "fountain"
+                    "building": "hospital"
                 },
-                "name": "Fountain"
+                "name": "Hospital Building"
             },
-            "amenity/fuel": {
-                "icon": "fuel",
+            "building/hotel": {
+                "icon": "building",
                 "fields": [
-                    "operator",
                     "address",
-                    "building_area"
+                    "levels",
+                    "smoking"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
-                "terms": [
-                    "petrol",
-                    "fuel",
-                    "propane",
-                    "diesel",
-                    "lng",
-                    "cng",
-                    "biodiesel"
-                ],
                 "tags": {
-                    "amenity": "fuel"
+                    "building": "hotel"
                 },
-                "name": "Gas Station"
+                "name": "Hotel Building"
             },
-            "amenity/grave_yard": {
-                "icon": "cemetery",
+            "building/house": {
+                "icon": "building",
                 "fields": [
-                    "religion",
-                    "denomination"
+                    "address",
+                    "levels"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "tags": {
-                    "amenity": "grave_yard"
+                    "building": "house"
                 },
-                "name": "Graveyard"
+                "name": "House"
             },
-            "amenity/hospital": {
-                "icon": "hospital",
+            "building/hut": {
+                "geometry": [
+                    "point",
+                    "area"
+                ],
+                "tags": {
+                    "building": "hut"
+                },
+                "name": "Hut"
+            },
+            "building/industrial": {
+                "icon": "industrial",
                 "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": "industrial"
                 },
-                "name": "Hospital Grounds"
+                "name": "Industrial Building"
             },
-            "amenity/kindergarten": {
-                "icon": "school",
+            "building/kindergarten": {
+                "icon": "building",
                 "fields": [
-                    "address"
+                    "address",
+                    "levels"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "terms": [
-                    "nursery",
-                    "preschool"
+                    "kindergarden",
+                    "pre-school"
                 ],
                 "tags": {
-                    "amenity": "kindergarten"
+                    "building": "kindergarten"
                 },
-                "name": "Kindergarten Grounds"
+                "name": "Preschool/Kindergarten Building"
             },
-            "amenity/library": {
-                "icon": "library",
+            "building/public": {
+                "icon": "building",
                 "fields": [
-                    "operator",
-                    "building_area",
-                    "address"
+                    "address",
+                    "levels",
+                    "smoking"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "tags": {
-                    "amenity": "library"
+                    "building": "public"
                 },
-                "terms": [],
-                "name": "Library"
+                "name": "Public Building"
             },
-            "amenity/marketplace": {
+            "building/residential": {
+                "icon": "building",
+                "fields": [
+                    "address",
+                    "levels"
+                ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "tags": {
-                    "amenity": "marketplace"
+                    "building": "residential"
                 },
-                "fields": [
-                    "building_area"
-                ],
-                "name": "Marketplace"
+                "name": "Residential Building"
             },
-            "amenity/nightclub": {
-                "icon": "bar",
+            "building/retail": {
+                "icon": "building",
                 "fields": [
-                    "building_area",
                     "address",
-                    "opening_hours",
+                    "levels",
                     "smoking"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "tags": {
-                    "amenity": "nightclub"
+                    "building": "retail"
                 },
-                "terms": [
-                    "disco*",
-                    "night club",
-                    "dancing",
-                    "dance club"
-                ],
-                "name": "Nightclub"
+                "name": "Retail Building"
             },
-            "amenity/parking": {
-                "icon": "parking",
+            "building/roof": {
+                "icon": "building",
                 "fields": [
-                    "parking",
-                    "capacity",
-                    "fee",
-                    "access_simple",
-                    "supervised",
-                    "park_ride",
                     "address"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "tags": {
-                    "amenity": "parking"
+                    "building": "roof"
                 },
-                "terms": [],
-                "name": "Car Parking"
+                "name": "Roof"
             },
-            "amenity/parking_entrance": {
-                "icon": "entrance",
+            "building/school": {
+                "icon": "building",
+                "fields": [
+                    "address",
+                    "levels"
+                ],
                 "geometry": [
-                    "vertex"
+                    "point",
+                    "area"
+                ],
+                "terms": [
+                    "academy",
+                    "elementary school",
+                    "middle school",
+                    "high school"
                 ],
                 "tags": {
-                    "amenity": "parking_entrance"
+                    "building": "school"
                 },
+                "name": "School Building"
+            },
+            "building/shed": {
+                "icon": "building",
                 "fields": [
-                    "access_simple",
-                    "ref"
+                    "address",
+                    "levels"
                 ],
-                "name": "Parking Garage Entrance/Exit"
+                "geometry": [
+                    "point",
+                    "area"
+                ],
+                "tags": {
+                    "building": "shed"
+                },
+                "name": "Shed"
             },
-            "amenity/pharmacy": {
-                "icon": "pharmacy",
+            "building/stable": {
+                "icon": "building",
                 "fields": [
-                    "operator",
-                    "building_area",
                     "address",
-                    "opening_hours"
+                    "levels"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "tags": {
-                    "amenity": "pharmacy"
+                    "building": "stable"
                 },
-                "terms": [],
-                "name": "Pharmacy"
+                "name": "Stable"
             },
-            "amenity/place_of_worship": {
-                "icon": "place-of-worship",
+            "building/static_caravan": {
+                "icon": "building",
                 "fields": [
-                    "religion",
-                    "denomination",
-                    "building_area",
-                    "address"
+                    "address",
+                    "levels"
                 ],
                 "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": "static_caravan"
                 },
-                "name": "Place of Worship"
+                "name": "Static Mobile Home"
             },
-            "amenity/place_of_worship/buddhist": {
-                "icon": "place-of-worship",
+            "building/terrace": {
+                "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": "terrace"
                 },
-                "name": "Buddhist Temple"
+                "name": "Row Houses"
             },
-            "amenity/place_of_worship/christian": {
-                "icon": "religious-christian",
+            "building/train_station": {
+                "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": "train_station"
                 },
-                "name": "Church"
+                "name": "Train Station",
+                "searchable": false
             },
-            "amenity/place_of_worship/jewish": {
-                "icon": "religious-jewish",
+            "building/university": {
+                "icon": "building",
                 "fields": [
-                    "denomination",
-                    "building_area",
-                    "address"
+                    "address",
+                    "levels"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "terms": [
-                    "jewish",
-                    "synagogue"
+                    "college"
                 ],
                 "tags": {
-                    "amenity": "place_of_worship",
-                    "religion": "jewish"
+                    "building": "university"
                 },
-                "name": "Synagogue"
+                "name": "University Building"
             },
-            "amenity/place_of_worship/muslim": {
-                "icon": "religious-muslim",
+            "building/warehouse": {
+                "icon": "building",
                 "fields": [
-                    "denomination",
-                    "building_area",
-                    "address"
+                    "address",
+                    "levels"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
-                "terms": [
-                    "muslim",
-                    "mosque"
-                ],
                 "tags": {
-                    "amenity": "place_of_worship",
-                    "religion": "muslim"
+                    "building": "warehouse"
                 },
-                "name": "Mosque"
+                "name": "Warehouse"
             },
-            "amenity/police": {
-                "icon": "police",
+            "craft": {
+                "icon": "marker-stroked",
                 "fields": [
+                    "craft",
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "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"
+                    "craft": "*"
                 },
-                "name": "Police"
+                "terms": [],
+                "name": "Craft"
             },
-            "amenity/post_box": {
-                "icon": "post",
+            "craft/basket_maker": {
+                "icon": "art-gallery",
                 "fields": [
                     "operator",
-                    "collection_times"
+                    "address",
+                    "building_area",
+                    "opening_hours"
                 ],
                 "geometry": [
                     "point",
-                    "vertex"
+                    "area"
                 ],
                 "tags": {
-                    "amenity": "post_box"
+                    "craft": "basket_maker"
                 },
-                "terms": [
-                    "letter drop",
-                    "letterbox",
-                    "mail drop",
-                    "mailbox",
-                    "pillar box",
-                    "postbox"
-                ],
-                "name": "Mailbox"
+                "name": "Basket Maker"
             },
-            "amenity/post_office": {
-                "icon": "post",
+            "craft/beekeeper": {
+                "icon": "farm",
                 "fields": [
                     "operator",
-                    "collection_times",
-                    "building_area"
+                    "address",
+                    "building_area",
+                    "opening_hours"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "tags": {
-                    "amenity": "post_office"
+                    "craft": "beekeeper"
                 },
-                "name": "Post Office"
+                "name": "Beekeeper"
             },
-            "amenity/pub": {
-                "icon": "beer",
+            "craft/blacksmith": {
+                "icon": "farm",
                 "fields": [
-                    "building_area",
+                    "operator",
                     "address",
-                    "opening_hours",
-                    "smoking"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "tags": {
-                    "amenity": "pub"
+                    "craft": "blacksmith"
                 },
-                "terms": [],
-                "name": "Pub"
+                "name": "Blacksmith"
             },
-            "amenity/ranger_station": {
+            "craft/boatbuilder": {
+                "icon": "marker-stroked",
                 "fields": [
-                    "building_area",
-                    "opening_hours",
                     "operator",
-                    "phone"
+                    "address",
+                    "building_area",
+                    "opening_hours"
                 ],
                 "geometry": [
                     "point",
                     "area"
                 ],
-                "terms": [
-                    "visitor center",
-                    "visitor centre",
-                    "permit center",
-                    "permit centre",
-                    "backcountry office",
-                    "warden office",
-                    "warden center"
-                ],
                 "tags": {
-                    "amenity": "ranger_station"
+                    "craft": "boatbuilder"
                 },
-                "name": "Ranger Station"
+                "name": "Boat Builder"
             },
-            "amenity/recycling": {
-                "icon": "recycling",
+            "craft/bookbinder": {
+                "icon": "library",
                 "fields": [
-                    "recycling/cans",
-                    "recycling/glass",
-                    "recycling/paper",
-                    "recycling/clothes"
+                    "operator",
+                    "address",
+                    "building_area",
+                    "opening_hours"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
-                "terms": [],
+                "terms": [
+                    "book repair"
+                ],
                 "tags": {
-                    "amenity": "recycling"
+                    "craft": "bookbinder"
                 },
-                "name": "Recycling"
+                "name": "Bookbinder"
             },
-            "amenity/restaurant": {
-                "icon": "restaurant",
+            "craft/brewery": {
+                "icon": "beer",
                 "fields": [
-                    "cuisine",
-                    "building_area",
+                    "operator",
                     "address",
-                    "opening_hours",
-                    "capacity",
-                    "smoking"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "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"
+                    "beer",
+                    "bier"
                 ],
                 "tags": {
-                    "amenity": "restaurant"
+                    "craft": "brewery"
                 },
-                "name": "Restaurant"
+                "name": "Brewery"
             },
-            "amenity/school": {
-                "icon": "school",
+            "craft/carpenter": {
+                "icon": "logging",
                 "fields": [
                     "operator",
-                    "address"
+                    "address",
+                    "building_area",
+                    "opening_hours"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "terms": [
-                    "academy",
-                    "alma mater",
-                    "blackboard",
-                    "college",
-                    "department",
-                    "discipline",
-                    "establishment",
-                    "faculty",
-                    "hall",
-                    "halls of ivy",
-                    "institute",
-                    "institution",
-                    "jail*",
-                    "schoolhouse",
-                    "seminary",
-                    "university"
+                    "woodworker"
                 ],
                 "tags": {
-                    "amenity": "school"
+                    "craft": "carpenter"
                 },
-                "name": "School Grounds"
+                "name": "Carpenter"
             },
-            "amenity/shelter": {
+            "craft/carpet_layer": {
+                "icon": "square",
                 "fields": [
-                    "shelter_type"
+                    "operator",
+                    "address",
+                    "building_area",
+                    "opening_hours"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "tags": {
-                    "amenity": "shelter"
+                    "craft": "carpet_layer"
                 },
-                "terms": [
-                    "lean-to"
-                ],
-                "name": "Shelter"
+                "name": "Carpet Layer"
             },
-            "amenity/social_facility": {
-                "name": "Social Facility",
+            "craft/caterer": {
+                "icon": "bakery",
+                "fields": [
+                    "cuisine",
+                    "operator",
+                    "address",
+                    "building_area",
+                    "opening_hours"
+                ],
                 "geometry": [
                     "point",
                     "area"
                 ],
-                "terms": [],
                 "tags": {
-                    "amenity": "social_facility"
+                    "craft": "caterer"
                 },
+                "name": "Caterer"
+            },
+            "craft/clockmaker": {
+                "icon": "circle-stroked",
                 "fields": [
-                    "social_facility_for",
+                    "operator",
                     "address",
-                    "phone",
-                    "opening_hours",
-                    "wheelchair",
-                    "operator"
-                ]
-            },
-            "amenity/social_facility/food_bank": {
-                "name": "Food Bank",
+                    "building_area",
+                    "opening_hours"
+                ],
                 "geometry": [
                     "point",
                     "area"
                 ],
-                "terms": [],
                 "tags": {
-                    "amenity": "social_facility",
-                    "social_facility": "food_bank"
+                    "craft": "clockmaker"
                 },
+                "name": "Clockmaker"
+            },
+            "craft/confectionary": {
+                "icon": "bakery",
                 "fields": [
-                    "social_facility_for",
+                    "operator",
                     "address",
-                    "phone",
-                    "opening_hours",
-                    "wheelchair",
-                    "operator"
-                ]
-            },
-            "amenity/social_facility/group_home": {
-                "name": "Group Home",
+                    "building_area",
+                    "opening_hours"
+                ],
                 "geometry": [
                     "point",
                     "area"
                 ],
                 "terms": [
-                    "elderly",
-                    "old",
-                    "senior living"
+                    "sweets",
+                    "candy"
                 ],
                 "tags": {
-                    "amenity": "social_facility",
-                    "social_facility": "group_home",
-                    "social_facility_for": "senior"
+                    "craft": "confectionary"
                 },
+                "name": "Confectionary"
+            },
+            "craft/dressmaker": {
+                "icon": "clothing-store",
                 "fields": [
-                    "social_facility_for",
+                    "operator",
                     "address",
-                    "phone",
-                    "opening_hours",
-                    "wheelchair",
-                    "operator"
-                ]
-            },
-            "amenity/social_facility/homeless_shelter": {
-                "name": "Homeless Shelter",
+                    "building_area",
+                    "opening_hours"
+                ],
                 "geometry": [
                     "point",
                     "area"
                 ],
                 "terms": [
-                    "houseless",
-                    "unhoused",
-                    "displaced"
+                    "seamstress"
                 ],
                 "tags": {
-                    "amenity": "social_facility",
-                    "social_facility": "shelter",
-                    "social_facility:for": "homeless"
+                    "craft": "dressmaker"
                 },
+                "name": "Dressmaker"
+            },
+            "craft/electrician": {
+                "icon": "marker-stroked",
                 "fields": [
-                    "social_facility_for",
+                    "operator",
                     "address",
-                    "phone",
-                    "opening_hours",
-                    "wheelchair",
-                    "operator"
-                ]
-            },
-            "amenity/studio": {
-                "name": "Studio",
+                    "building_area",
+                    "opening_hours"
+                ],
                 "geometry": [
                     "point",
                     "area"
                 ],
                 "terms": [
-                    "recording studio",
-                    "studio",
-                    "radio",
-                    "radio studio",
-                    "television",
-                    "television studio"
+                    "power",
+                    "wire"
                 ],
                 "tags": {
-                    "amenity": "studio"
+                    "craft": "electrician"
                 },
-                "icon": "music",
+                "name": "Electrician"
+            },
+            "craft/gardener": {
+                "icon": "garden",
                 "fields": [
+                    "operator",
+                    "address",
                     "building_area",
-                    "studio_type",
-                    "address"
-                ]
-            },
-            "amenity/swimming_pool": {
+                    "opening_hours"
+                ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
+                "terms": [
+                    "landscaper",
+                    "grounds keeper"
+                ],
                 "tags": {
-                    "amenity": "swimming_pool"
+                    "craft": "gardener"
                 },
-                "icon": "swimming",
-                "searchable": false,
-                "name": "Swimming Pool"
+                "name": "Gardener"
             },
-            "amenity/taxi": {
+            "craft/glaziery": {
+                "icon": "fire-station",
                 "fields": [
                     "operator",
-                    "capacity"
+                    "address",
+                    "building_area",
+                    "opening_hours"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "terms": [
-                    "cab"
+                    "glass",
+                    "stained-glass",
+                    "window"
                 ],
                 "tags": {
-                    "amenity": "taxi"
+                    "craft": "glaziery"
                 },
-                "name": "Taxi Stand"
+                "name": "Glaziery"
             },
-            "amenity/telephone": {
-                "icon": "telephone",
+            "craft/handicraft": {
+                "icon": "art-gallery",
+                "fields": [
+                    "operator",
+                    "address",
+                    "building_area",
+                    "opening_hours"
+                ],
                 "geometry": [
                     "point",
-                    "vertex"
+                    "area"
                 ],
                 "tags": {
-                    "amenity": "telephone"
+                    "craft": "handicraft"
                 },
-                "terms": [
-                    "phone"
-                ],
-                "name": "Telephone"
+                "name": "Handicraft"
             },
-            "amenity/theatre": {
-                "icon": "theatre",
+            "craft/hvac": {
+                "icon": "marker-stroked",
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "terms": [
-                    "theatre",
-                    "performance",
-                    "play",
-                    "musical"
+                    "heat*",
+                    "vent*",
+                    "air conditioning"
                 ],
                 "tags": {
-                    "amenity": "theatre"
+                    "craft": "hvac"
                 },
-                "name": "Theater"
+                "name": "HVAC"
             },
-            "amenity/toilets": {
+            "craft/insulator": {
+                "icon": "marker-stroked",
                 "fields": [
-                    "toilets/disposal",
                     "operator",
+                    "address",
                     "building_area",
-                    "access_toilets"
+                    "opening_hours"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
-                "terms": [
-                    "bathroom",
-                    "restroom",
-                    "outhouse",
-                    "privy",
-                    "head",
-                    "lavatory",
-                    "latrine",
-                    "water closet",
-                    "WC",
-                    "W.C."
-                ],
                 "tags": {
-                    "amenity": "toilets"
+                    "craft": "insulation"
                 },
-                "icon": "toilets",
-                "name": "Toilets"
+                "name": "Insulator"
             },
-            "amenity/townhall": {
-                "icon": "town-hall",
+            "craft/jeweler": {
+                "icon": "marker-stroked",
                 "fields": [
+                    "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
-                "terms": [
-                    "village hall",
-                    "city government",
-                    "courthouse",
-                    "municipal building",
-                    "municipal center",
-                    "municipal centre"
-                ],
                 "tags": {
-                    "amenity": "townhall"
+                    "craft": "jeweler"
                 },
-                "name": "Town Hall"
+                "name": "Jeweler",
+                "searchable": false
             },
-            "amenity/university": {
-                "icon": "college",
+            "craft/key_cutter": {
+                "icon": "marker-stroked",
                 "fields": [
                     "operator",
-                    "address"
+                    "address",
+                    "building_area",
+                    "opening_hours"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "tags": {
-                    "amenity": "university"
+                    "craft": "key_cutter"
                 },
-                "terms": [
-                    "college"
-                ],
-                "name": "University"
+                "name": "Key Cutter"
             },
-            "amenity/vending_machine": {
+            "craft/locksmith": {
+                "icon": "marker-stroked",
                 "fields": [
-                    "vending",
-                    "operator"
-                ],
-                "geometry": [
-                    "point"
+                    "operator",
+                    "address",
+                    "building_area",
+                    "opening_hours"
                 ],
-                "tags": {
-                    "amenity": "vending_machine"
-                },
-                "name": "Vending Machine"
-            },
-            "amenity/veterinary": {
-                "fields": [],
                 "geometry": [
                     "point",
                     "area"
                 ],
-                "terms": [
-                    "pet clinic",
-                    "veterinarian",
-                    "animal hospital",
-                    "pet doctor"
-                ],
                 "tags": {
-                    "amenity": "veterinary"
+                    "craft": "locksmith"
                 },
-                "name": "Veterinary"
+                "name": "Locksmith",
+                "searchable": false
             },
-            "amenity/waste_basket": {
-                "icon": "waste-basket",
+            "craft/metal_construction": {
+                "icon": "marker-stroked",
+                "fields": [
+                    "operator",
+                    "address",
+                    "building_area",
+                    "opening_hours"
+                ],
                 "geometry": [
                     "point",
-                    "vertex"
+                    "area"
                 ],
                 "tags": {
-                    "amenity": "waste_basket"
+                    "craft": "metal_construction"
                 },
-                "terms": [
-                    "rubbish bin",
-                    "litter bin",
-                    "trash can",
-                    "garbage can"
-                ],
-                "name": "Waste Basket"
+                "name": "Metal Construction"
             },
-            "area": {
-                "name": "Area",
-                "tags": {
-                    "area": "yes"
-                },
-                "geometry": [
-                    "area"
+            "craft/optician": {
+                "icon": "marker-stroked",
+                "fields": [
+                    "operator",
+                    "address",
+                    "building_area",
+                    "opening_hours"
                 ],
-                "matchScore": 0.1
-            },
-            "barrier": {
                 "geometry": [
                     "point",
-                    "vertex",
-                    "line",
                     "area"
                 ],
                 "tags": {
-                    "barrier": "*"
+                    "craft": "optician"
                 },
-                "fields": [
-                    "barrier"
-                ],
-                "name": "Barrier"
+                "name": "Optician",
+                "searchable": false
             },
-            "barrier/block": {
+            "craft/painter": {
+                "icon": "art-gallery",
                 "fields": [
-                    "access"
+                    "operator",
+                    "address",
+                    "building_area",
+                    "opening_hours"
                 ],
                 "geometry": [
                     "point",
-                    "vertex"
+                    "area"
                 ],
                 "tags": {
-                    "barrier": "block"
+                    "craft": "painter"
                 },
-                "name": "Block"
+                "name": "Painter"
             },
-            "barrier/bollard": {
+            "craft/photographer": {
+                "icon": "camera",
                 "fields": [
-                    "access"
+                    "operator",
+                    "address",
+                    "building_area",
+                    "opening_hours"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
-                    "line"
+                    "area"
                 ],
                 "tags": {
-                    "barrier": "bollard"
+                    "craft": "photographer"
                 },
-                "name": "Bollard"
+                "name": "Photographer"
             },
-            "barrier/cattle_grid": {
-                "geometry": [
-                    "vertex"
+            "craft/photographic_laboratory": {
+                "icon": "camera",
+                "fields": [
+                    "operator",
+                    "address",
+                    "building_area",
+                    "opening_hours"
                 ],
-                "tags": {
-                    "barrier": "cattle_grid"
-                },
-                "name": "Cattle Grid"
-            },
-            "barrier/city_wall": {
                 "geometry": [
-                    "line",
+                    "point",
                     "area"
                 ],
+                "terms": [
+                    "film"
+                ],
                 "tags": {
-                    "barrier": "city_wall"
+                    "craft": "photographic_laboratory"
                 },
-                "name": "City Wall"
+                "name": "Photographic Laboratory"
             },
-            "barrier/cycle_barrier": {
+            "craft/plasterer": {
+                "icon": "marker-stroked",
                 "fields": [
-                    "access"
+                    "operator",
+                    "address",
+                    "building_area",
+                    "opening_hours"
                 ],
                 "geometry": [
-                    "vertex"
+                    "point",
+                    "area"
                 ],
                 "tags": {
-                    "barrier": "cycle_barrier"
+                    "craft": "plasterer"
                 },
-                "name": "Cycle Barrier"
+                "name": "Plasterer"
             },
-            "barrier/ditch": {
+            "craft/plumber": {
+                "icon": "marker-stroked",
+                "fields": [
+                    "operator",
+                    "address",
+                    "building_area",
+                    "opening_hours"
+                ],
                 "geometry": [
-                    "line",
+                    "point",
                     "area"
                 ],
-                "tags": {
-                    "barrier": "ditch"
-                },
-                "name": "Ditch"
-            },
-            "barrier/entrance": {
-                "icon": "entrance",
-                "geometry": [
-                    "vertex"
+                "terms": [
+                    "pipe"
                 ],
                 "tags": {
-                    "barrier": "entrance"
+                    "craft": "plumber"
                 },
-                "name": "Entrance",
-                "searchable": false
+                "name": "Plumber"
             },
-            "barrier/fence": {
+            "craft/pottery": {
+                "icon": "art-gallery",
+                "fields": [
+                    "operator",
+                    "address",
+                    "building_area",
+                    "opening_hours"
+                ],
                 "geometry": [
-                    "line"
+                    "point",
+                    "area"
+                ],
+                "terms": [
+                    "ceramic"
                 ],
                 "tags": {
-                    "barrier": "fence"
+                    "craft": "pottery"
                 },
-                "name": "Fence"
+                "name": "Pottery"
             },
-            "barrier/gate": {
+            "craft/rigger": {
+                "icon": "marker-stroked",
                 "fields": [
-                    "access"
+                    "operator",
+                    "address",
+                    "building_area",
+                    "opening_hours"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
-                    "line"
+                    "area"
                 ],
                 "tags": {
-                    "barrier": "gate"
+                    "craft": "rigger"
                 },
-                "name": "Gate"
+                "name": "Rigger"
             },
-            "barrier/hedge": {
+            "craft/roofer": {
+                "icon": "marker-stroked",
+                "fields": [
+                    "operator",
+                    "address",
+                    "building_area",
+                    "opening_hours"
+                ],
                 "geometry": [
-                    "line",
+                    "point",
                     "area"
                 ],
                 "tags": {
-                    "barrier": "hedge"
+                    "craft": "roofer"
                 },
-                "name": "Hedge"
+                "name": "Roofer"
             },
-            "barrier/kissing_gate": {
+            "craft/saddler": {
+                "icon": "marker-stroked",
                 "fields": [
-                    "access"
+                    "operator",
+                    "address",
+                    "building_area",
+                    "opening_hours"
                 ],
                 "geometry": [
-                    "vertex"
+                    "point",
+                    "area"
                 ],
                 "tags": {
-                    "barrier": "kissing_gate"
+                    "craft": "saddler"
                 },
-                "name": "Kissing Gate"
+                "name": "Saddler"
             },
-            "barrier/lift_gate": {
+            "craft/sailmaker": {
+                "icon": "marker-stroked",
                 "fields": [
-                    "access"
+                    "operator",
+                    "address",
+                    "building_area",
+                    "opening_hours"
                 ],
                 "geometry": [
                     "point",
-                    "vertex"
+                    "area"
                 ],
                 "tags": {
-                    "barrier": "lift_gate"
+                    "craft": "sailmaker"
                 },
-                "name": "Lift Gate"
+                "name": "Sailmaker"
             },
-            "barrier/retaining_wall": {
+            "craft/sawmill": {
+                "icon": "park",
+                "fields": [
+                    "operator",
+                    "address",
+                    "building_area",
+                    "opening_hours"
+                ],
                 "geometry": [
-                    "line",
+                    "point",
                     "area"
                 ],
+                "terms": [
+                    "lumber"
+                ],
                 "tags": {
-                    "barrier": "retaining_wall"
+                    "craft": "sawmill"
                 },
-                "name": "Retaining Wall"
+                "name": "Sawmill"
             },
-            "barrier/stile": {
+            "craft/scaffolder": {
+                "icon": "marker-stroked",
                 "fields": [
-                    "access"
+                    "operator",
+                    "address",
+                    "building_area",
+                    "opening_hours"
                 ],
                 "geometry": [
                     "point",
-                    "vertex"
+                    "area"
                 ],
                 "tags": {
-                    "barrier": "stile"
+                    "craft": "scaffolder"
                 },
-                "name": "Stile"
+                "name": "Scaffolder"
             },
-            "barrier/toll_booth": {
+            "craft/sculpter": {
+                "icon": "art-gallery",
                 "fields": [
-                    "access"
+                    "operator",
+                    "address",
+                    "building_area",
+                    "opening_hours"
                 ],
                 "geometry": [
-                    "vertex"
+                    "point",
+                    "area"
                 ],
                 "tags": {
-                    "barrier": "toll_booth"
+                    "craft": "sculpter"
                 },
-                "name": "Toll Booth"
+                "name": "Sculpter"
             },
-            "barrier/wall": {
+            "craft/shoemaker": {
+                "icon": "marker-stroked",
+                "fields": [
+                    "operator",
+                    "address",
+                    "building_area",
+                    "opening_hours"
+                ],
                 "geometry": [
-                    "line",
+                    "point",
                     "area"
                 ],
-                "tags": {
-                    "barrier": "wall"
-                },
-                "name": "Wall"
-            },
-            "boundary/administrative": {
-                "name": "Administrative Boundary",
-                "geometry": [
-                    "line"
+                "terms": [
+                    "cobbler"
                 ],
                 "tags": {
-                    "boundary": "administrative"
+                    "craft": "shoemaker"
                 },
-                "fields": [
-                    "admin_level"
-                ]
+                "name": "Shoemaker"
             },
-            "building": {
-                "icon": "building",
+            "craft/stonemason": {
+                "icon": "marker-stroked",
                 "fields": [
-                    "building",
-                    "levels",
-                    "address"
+                    "operator",
+                    "address",
+                    "building_area",
+                    "opening_hours"
                 ],
                 "geometry": [
+                    "point",
                     "area"
                 ],
+                "terms": [
+                    "masonry"
+                ],
                 "tags": {
-                    "building": "*"
+                    "craft": "stonemason"
                 },
-                "terms": [],
-                "name": "Building"
+                "name": "Stonemason"
             },
-            "building/apartments": {
-                "icon": "commercial",
+            "craft/sweep": {
+                "icon": "marker-stroked",
                 "fields": [
+                    "operator",
                     "address",
-                    "levels"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "tags": {
-                    "building": "apartments"
+                    "craft": "sweep"
                 },
-                "name": "Apartments"
+                "name": "Chimney Sweep"
             },
-            "building/barn": {
-                "icon": "building",
+            "craft/tailor": {
+                "icon": "clothing-store",
                 "fields": [
+                    "operator",
                     "address",
-                    "levels"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
+                "terms": [
+                    "clothes",
+                    "suit"
+                ],
                 "tags": {
-                    "building": "barn"
+                    "craft": "tailor"
                 },
-                "name": "Barn"
+                "name": "Tailor",
+                "searchable": false
             },
-            "building/bunker": {
+            "craft/tiler": {
+                "icon": "marker-stroked",
                 "fields": [
+                    "operator",
                     "address",
-                    "levels"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "tags": {
-                    "building": "bunker"
+                    "craft": "tiler"
                 },
-                "name": "Bunker",
-                "searchable": false
+                "name": "Tiler"
             },
-            "building/cabin": {
-                "icon": "building",
+            "craft/tinsmith": {
+                "icon": "marker-stroked",
                 "fields": [
+                    "operator",
                     "address",
-                    "levels"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "tags": {
-                    "building": "cabin"
+                    "craft": "tinsmith"
                 },
-                "name": "Cabin"
+                "name": "Tinsmith"
             },
-            "building/cathedral": {
-                "icon": "place-of-worship",
+            "craft/upholsterer": {
+                "icon": "marker-stroked",
                 "fields": [
+                    "operator",
                     "address",
-                    "levels"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "tags": {
-                    "building": "cathedral"
+                    "craft": "upholsterer"
                 },
-                "name": "Cathedral"
+                "name": "Upholsterer"
             },
-            "building/chapel": {
-                "icon": "place-of-worship",
+            "craft/watchmaker": {
+                "icon": "circle-stroked",
                 "fields": [
+                    "operator",
                     "address",
-                    "levels"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "tags": {
-                    "building": "chapel"
+                    "craft": "watchmaker"
                 },
-                "name": "Chapel"
+                "name": "Watchmaker"
             },
-            "building/church": {
-                "icon": "place-of-worship",
+            "craft/window_construction": {
+                "icon": "marker-stroked",
                 "fields": [
+                    "operator",
                     "address",
-                    "levels"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
+                "terms": [
+                    "glass"
+                ],
                 "tags": {
-                    "building": "church"
+                    "craft": "window_construction"
                 },
-                "name": "Church"
+                "name": "Window Construction"
             },
-            "building/commercial": {
-                "icon": "commercial",
+            "craft/winery": {
+                "icon": "alcohol-shop",
                 "fields": [
+                    "operator",
                     "address",
-                    "smoking"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "tags": {
-                    "building": "commercial"
+                    "craft": "winery"
                 },
-                "name": "Commercial Building"
+                "name": "Winery"
             },
-            "building/construction": {
-                "icon": "building",
+            "embankment": {
+                "geometry": [
+                    "line"
+                ],
+                "tags": {
+                    "embankment": "yes"
+                },
+                "name": "Embankment",
+                "matchScore": 0.2
+            },
+            "emergency/ambulance_station": {
+                "icon": "hospital",
                 "fields": [
-                    "address",
-                    "levels"
+                    "operator",
+                    "building_area",
+                    "address"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
+                "terms": [
+                    "EMS",
+                    "EMT",
+                    "rescue"
+                ],
                 "tags": {
-                    "building": "construction"
+                    "emergency": "ambulance_station"
                 },
-                "name": "Building Under Construction"
+                "name": "Ambulance Station"
             },
-            "building/detached": {
-                "icon": "building",
+            "emergency/fire_hydrant": {
                 "fields": [
-                    "address",
-                    "levels"
+                    "fire_hydrant/type"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
-                    "area"
+                    "vertex"
                 ],
                 "tags": {
-                    "building": "detached"
+                    "emergency": "fire_hydrant"
                 },
-                "name": "Detached Home"
+                "name": "Fire Hydrant"
             },
-            "building/dormitory": {
-                "icon": "building",
+            "emergency/phone": {
+                "icon": "emergency-telephone",
                 "fields": [
-                    "address",
-                    "levels",
-                    "smoking"
+                    "operator"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
-                    "area"
+                    "vertex"
                 ],
                 "tags": {
-                    "building": "dormitory"
+                    "emergency": "phone"
                 },
-                "name": "Dormitory"
+                "name": "Emergency Phone"
             },
-            "building/entrance": {
+            "entrance": {
                 "icon": "entrance",
                 "geometry": [
                     "vertex"
                 ],
                 "tags": {
-                    "building": "entrance"
+                    "entrance": "*"
                 },
-                "name": "Entrance/Exit",
-                "searchable": false
+                "fields": [
+                    "entrance",
+                    "access_simple",
+                    "address"
+                ],
+                "name": "Entrance/Exit"
             },
-            "building/garage": {
+            "footway/crossing": {
                 "fields": [
-                    "capacity"
+                    "crossing",
+                    "access",
+                    "surface",
+                    "sloped_curb",
+                    "tactile_paving"
                 ],
                 "geometry": [
-                    "point",
-                    "vertex",
-                    "area"
+                    "line"
                 ],
                 "tags": {
-                    "building": "garage"
+                    "highway": "footway",
+                    "footway": "crossing"
                 },
-                "name": "Garage",
-                "icon": "warehouse"
+                "terms": [],
+                "name": "Crossing"
             },
-            "building/garages": {
-                "icon": "warehouse",
+            "footway/crosswalk": {
                 "fields": [
-                    "capacity"
+                    "crossing",
+                    "access",
+                    "surface",
+                    "sloped_curb",
+                    "tactile_paving"
                 ],
                 "geometry": [
-                    "point",
-                    "vertex",
-                    "area"
+                    "line"
                 ],
                 "tags": {
-                    "building": "garages"
+                    "highway": "footway",
+                    "footway": "crossing",
+                    "crossing": "zebra"
                 },
-                "name": "Garages"
+                "terms": [
+                    "zebra crossing"
+                ],
+                "name": "Crosswalk"
             },
-            "building/greenhouse": {
-                "icon": "building",
+            "footway/sidewalk": {
                 "fields": [
-                    "address",
-                    "levels"
+                    "surface",
+                    "lit",
+                    "width",
+                    "structure",
+                    "access"
                 ],
                 "geometry": [
-                    "point",
-                    "vertex",
-                    "area"
+                    "line"
                 ],
                 "tags": {
-                    "building": "greenhouse"
+                    "highway": "footway",
+                    "footway": "sidewalk"
                 },
-                "name": "Greenhouse"
+                "terms": [],
+                "name": "Sidewalk"
             },
-            "building/hospital": {
-                "icon": "building",
-                "fields": [
-                    "address",
-                    "levels"
-                ],
+            "ford": {
                 "geometry": [
-                    "point",
-                    "vertex",
-                    "area"
+                    "vertex"
                 ],
                 "tags": {
-                    "building": "hospital"
+                    "ford": "yes"
                 },
-                "name": "Hospital Building"
+                "name": "Ford"
             },
-            "building/hotel": {
-                "icon": "building",
-                "fields": [
-                    "address",
-                    "levels",
-                    "smoking"
-                ],
+            "golf/bunker": {
+                "icon": "golf",
                 "geometry": [
-                    "point",
-                    "vertex",
                     "area"
                 ],
                 "tags": {
-                    "building": "hotel"
+                    "golf": "bunker",
+                    "natural": "sand"
                 },
-                "name": "Hotel Building"
-            },
-            "building/house": {
-                "icon": "building",
-                "fields": [
-                    "address",
-                    "levels"
+                "terms": [
+                    "hazard",
+                    "bunker"
                 ],
+                "name": "Sand Trap"
+            },
+            "golf/fairway": {
+                "icon": "golf",
                 "geometry": [
-                    "point",
                     "area"
                 ],
                 "tags": {
-                    "building": "house"
+                    "golf": "fairway",
+                    "landuse": "grass"
                 },
-                "name": "House"
+                "name": "Fairway"
             },
-            "building/hut": {
+            "golf/green": {
+                "icon": "golf",
                 "geometry": [
-                    "point",
-                    "vertex",
                     "area"
                 ],
                 "tags": {
-                    "building": "hut"
+                    "golf": "green",
+                    "landuse": "grass",
+                    "leisure": "pitch",
+                    "sport": "golf"
                 },
-                "name": "Hut"
+                "name": "Putting Green"
             },
-            "building/industrial": {
-                "icon": "industrial",
+            "golf/hole": {
+                "icon": "golf",
                 "fields": [
-                    "address",
-                    "levels"
+                    "golf_hole",
+                    "par",
+                    "handicap"
                 ],
                 "geometry": [
-                    "point",
-                    "vertex",
-                    "area"
+                    "line"
                 ],
                 "tags": {
-                    "building": "industrial"
+                    "golf": "hole"
                 },
-                "name": "Industrial Building"
+                "name": "Golf Hole"
             },
-            "building/public": {
-                "icon": "building",
-                "fields": [
-                    "address",
-                    "levels",
-                    "smoking"
-                ],
+            "golf/lateral_water_hazard": {
+                "icon": "golf",
                 "geometry": [
-                    "point",
-                    "vertex",
+                    "line",
                     "area"
                 ],
                 "tags": {
-                    "building": "public"
+                    "golf": "lateral_water_hazard",
+                    "natural": "water"
                 },
-                "name": "Public Building"
+                "name": "Lateral Water Hazard"
             },
-            "building/residential": {
-                "icon": "building",
-                "fields": [
-                    "address",
-                    "levels"
-                ],
+            "golf/rough": {
+                "icon": "golf",
                 "geometry": [
-                    "point",
-                    "vertex",
                     "area"
                 ],
                 "tags": {
-                    "building": "residential"
+                    "golf": "rough",
+                    "landuse": "grass"
                 },
-                "name": "Residential Building"
+                "name": "Rough"
             },
-            "building/retail": {
-                "icon": "building",
-                "fields": [
-                    "address",
-                    "levels",
-                    "smoking"
-                ],
+            "golf/tee": {
+                "icon": "golf",
                 "geometry": [
-                    "point",
-                    "vertex",
                     "area"
                 ],
                 "tags": {
-                    "building": "retail"
+                    "golf": "tee",
+                    "landuse": "grass"
                 },
-                "name": "Retail Building"
-            },
-            "building/roof": {
-                "icon": "building",
-                "fields": [
-                    "address",
-                    "levels"
+                "terms": [
+                    "teeing ground"
                 ],
+                "name": "Tee Box"
+            },
+            "golf/water_hazard": {
+                "icon": "golf",
                 "geometry": [
-                    "point",
-                    "vertex",
+                    "line",
                     "area"
                 ],
                 "tags": {
-                    "building": "roof"
+                    "golf": "water_hazard",
+                    "natural": "water"
                 },
-                "name": "Roof"
+                "name": "Water Hazard"
             },
-            "building/school": {
-                "icon": "building",
+            "highway": {
                 "fields": [
-                    "address",
-                    "levels"
+                    "highway"
                 ],
                 "geometry": [
                     "point",
                     "vertex",
+                    "line",
                     "area"
                 ],
                 "tags": {
-                    "building": "school"
+                    "highway": "*"
                 },
-                "name": "School Building"
+                "name": "Highway"
             },
-            "building/shed": {
-                "icon": "building",
+            "highway/bridleway": {
                 "fields": [
-                    "address",
-                    "levels"
+                    "surface",
+                    "width",
+                    "structure",
+                    "access"
                 ],
+                "icon": "highway-bridleway",
                 "geometry": [
-                    "point",
-                    "vertex",
-                    "area"
+                    "line"
                 ],
                 "tags": {
-                    "building": "shed"
+                    "highway": "bridleway"
                 },
-                "name": "Shed"
+                "terms": [
+                    "bridleway",
+                    "equestrian",
+                    "horse"
+                ],
+                "name": "Bridle Path"
             },
-            "building/stable": {
-                "icon": "building",
+            "highway/bus_stop": {
+                "icon": "bus",
                 "fields": [
-                    "address",
-                    "levels"
+                    "operator",
+                    "shelter"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
-                    "area"
+                    "vertex"
                 ],
                 "tags": {
-                    "building": "stable"
+                    "highway": "bus_stop"
                 },
-                "name": "Stable"
+                "terms": [],
+                "name": "Bus Stop"
             },
-            "building/static_caravan": {
-                "icon": "building",
+            "highway/crossing": {
                 "fields": [
-                    "address",
-                    "levels"
+                    "crossing",
+                    "sloped_curb",
+                    "tactile_paving"
                 ],
                 "geometry": [
-                    "point",
-                    "vertex",
-                    "area"
+                    "vertex"
                 ],
                 "tags": {
-                    "building": "static_caravan"
+                    "highway": "crossing"
                 },
-                "name": "Static Mobile Home"
+                "terms": [],
+                "name": "Crossing"
             },
-            "building/terrace": {
-                "icon": "building",
+            "highway/crosswalk": {
                 "fields": [
-                    "address",
-                    "levels"
+                    "crossing",
+                    "sloped_curb",
+                    "tactile_paving"
                 ],
                 "geometry": [
-                    "point",
-                    "vertex",
-                    "area"
+                    "vertex"
                 ],
                 "tags": {
-                    "building": "terrace"
+                    "highway": "crossing",
+                    "crossing": "zebra"
                 },
-                "name": "Row Houses"
+                "terms": [
+                    "zebra crossing"
+                ],
+                "name": "Crosswalk"
             },
-            "building/train_station": {
-                "icon": "building",
+            "highway/cycleway": {
+                "icon": "highway-cycleway",
                 "fields": [
-                    "address",
-                    "levels"
+                    "surface",
+                    "lit",
+                    "width",
+                    "oneway",
+                    "structure",
+                    "access"
                 ],
                 "geometry": [
-                    "point",
-                    "vertex",
-                    "area"
+                    "line"
                 ],
                 "tags": {
-                    "building": "train_station"
+                    "highway": "cycleway"
                 },
-                "name": "Train Station",
-                "searchable": false
+                "terms": [
+                    "bike"
+                ],
+                "name": "Cycle Path"
             },
-            "building/university": {
-                "icon": "building",
+            "highway/footway": {
+                "icon": "highway-footway",
                 "fields": [
-                    "address",
-                    "levels"
+                    "surface",
+                    "lit",
+                    "width",
+                    "structure",
+                    "access"
                 ],
                 "geometry": [
-                    "point",
-                    "vertex",
+                    "line",
                     "area"
                 ],
+                "terms": [
+                    "hike",
+                    "hiking",
+                    "trackway",
+                    "trail",
+                    "walk"
+                ],
                 "tags": {
-                    "building": "university"
+                    "highway": "footway"
                 },
-                "name": "University Building"
+                "name": "Foot Path"
             },
-            "building/warehouse": {
-                "icon": "building",
+            "highway/living_street": {
+                "icon": "highway-living-street",
                 "fields": [
-                    "address",
-                    "levels"
+                    "oneway",
+                    "maxspeed",
+                    "structure",
+                    "access",
+                    "surface"
                 ],
                 "geometry": [
-                    "point",
-                    "vertex",
-                    "area"
+                    "line"
                 ],
                 "tags": {
-                    "building": "warehouse"
+                    "highway": "living_street"
                 },
-                "name": "Warehouse"
+                "name": "Living Street"
             },
-            "craft/basket_maker": {
-                "name": "Basket Maker",
+            "highway/mini_roundabout": {
                 "geometry": [
-                    "point",
-                    "area"
-                ],
-                "terms": [
-                    "basket",
-                    "basketry",
-                    "basket maker",
-                    "basket weaver"
+                    "vertex"
                 ],
                 "tags": {
-                    "craft": "basket_maker"
+                    "highway": "mini_roundabout"
                 },
-                "icon": "art-gallery",
                 "fields": [
-                    "building_area",
-                    "address",
-                    "operator",
-                    "opening_hours"
-                ]
+                    "clock_direction"
+                ],
+                "name": "Mini-Roundabout"
             },
-            "craft/beekeeper": {
-                "name": "Beekeeper",
-                "geometry": [
-                    "point",
-                    "area"
+            "highway/motorway": {
+                "icon": "highway-motorway",
+                "fields": [
+                    "oneway_yes",
+                    "maxspeed",
+                    "structure",
+                    "access",
+                    "lanes",
+                    "surface",
+                    "ref"
                 ],
-                "terms": [
-                    "bees",
-                    "beekeeper",
-                    "bee box"
+                "geometry": [
+                    "line"
                 ],
                 "tags": {
-                    "craft": "beekeeper"
+                    "highway": "motorway"
                 },
-                "icon": "farm",
-                "fields": [
-                    "building_area",
-                    "address",
-                    "operator",
-                    "opening_hours"
-                ]
+                "terms": [],
+                "name": "Motorway"
             },
-            "craft/blacksmith": {
-                "name": "Blacksmith",
+            "highway/motorway_junction": {
                 "geometry": [
-                    "point",
-                    "area"
-                ],
-                "terms": [
-                    "blacksmith"
+                    "vertex"
                 ],
                 "tags": {
-                    "craft": "blacksmith"
+                    "highway": "motorway_junction"
                 },
-                "icon": "farm",
                 "fields": [
-                    "building_area",
-                    "address",
-                    "operator",
-                    "opening_hours"
-                ]
+                    "ref"
+                ],
+                "name": "Motorway Junction / Exit"
             },
-            "craft/boatbuilder": {
-                "name": "Boat Builder",
-                "geometry": [
-                    "point",
-                    "area"
+            "highway/motorway_link": {
+                "icon": "highway-motorway-link",
+                "fields": [
+                    "oneway_yes",
+                    "maxspeed",
+                    "structure",
+                    "access",
+                    "surface",
+                    "ref"
                 ],
-                "terms": [
-                    "boat builder"
+                "geometry": [
+                    "line"
                 ],
                 "tags": {
-                    "craft": "boatbuilder"
+                    "highway": "motorway_link"
                 },
-                "icon": "marker-stroked",
-                "fields": [
-                    "building_area",
-                    "address",
-                    "operator",
-                    "opening_hours"
-                ]
+                "terms": [
+                    "ramp",
+                    "on ramp",
+                    "off ramp"
+                ],
+                "name": "Motorway Link"
             },
-            "craft/bookbinder": {
-                "name": "Bookbinder",
+            "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": [
-                    "point",
-                    "area"
+                    "line"
                 ],
                 "terms": [
-                    "bookbinder",
-                    "book repair"
+                    "hike",
+                    "hiking",
+                    "trackway",
+                    "trail",
+                    "walk"
                 ],
                 "tags": {
-                    "craft": "bookbinder"
+                    "highway": "path"
                 },
-                "icon": "library",
-                "fields": [
-                    "building_area",
-                    "address",
-                    "operator",
-                    "opening_hours"
-                ]
+                "name": "Path"
             },
-            "craft/brewery": {
-                "name": "Brewery",
+            "highway/pedestrian": {
+                "fields": [
+                    "surface",
+                    "lit",
+                    "width",
+                    "oneway",
+                    "structure",
+                    "access"
+                ],
                 "geometry": [
-                    "point",
+                    "line",
                     "area"
                 ],
-                "terms": [
-                    "brewery"
-                ],
                 "tags": {
-                    "craft": "brewery"
+                    "highway": "pedestrian"
                 },
-                "icon": "beer",
-                "fields": [
-                    "building_area",
-                    "address",
-                    "operator",
-                    "opening_hours"
-                ]
+                "terms": [],
+                "name": "Pedestrian"
             },
-            "craft/carpenter": {
-                "name": "Carpenter",
-                "geometry": [
-                    "point",
-                    "area"
+            "highway/primary": {
+                "icon": "highway-primary",
+                "fields": [
+                    "oneway",
+                    "maxspeed",
+                    "structure",
+                    "access",
+                    "lanes",
+                    "surface",
+                    "ref"
                 ],
-                "terms": [
-                    "carpenter",
-                    "woodworker"
+                "geometry": [
+                    "line"
                 ],
                 "tags": {
-                    "craft": "carpenter"
+                    "highway": "primary"
                 },
-                "icon": "logging",
-                "fields": [
-                    "building_area",
-                    "address",
-                    "operator",
-                    "opening_hours"
-                ]
+                "terms": [],
+                "name": "Primary Road"
             },
-            "craft/carpet_layer": {
-                "name": "Carpet Layer",
-                "geometry": [
-                    "point",
-                    "area"
+            "highway/primary_link": {
+                "icon": "highway-primary-link",
+                "fields": [
+                    "oneway",
+                    "maxspeed",
+                    "structure",
+                    "access",
+                    "surface",
+                    "ref"
                 ],
-                "terms": [
-                    "carpet layer"
+                "geometry": [
+                    "line"
                 ],
                 "tags": {
-                    "craft": "carpet_layer"
+                    "highway": "primary_link"
                 },
-                "icon": "square",
-                "fields": [
-                    "building_area",
-                    "address",
-                    "operator",
-                    "opening_hours"
-                ]
+                "terms": [
+                    "ramp",
+                    "on ramp",
+                    "off ramp"
+                ],
+                "name": "Primary Link"
             },
-            "craft/caterer": {
-                "name": "Caterer",
-                "geometry": [
-                    "point",
-                    "area"
+            "highway/raceway": {
+                "icon": "highway-unclassified",
+                "fields": [
+                    "oneway",
+                    "surface",
+                    "sport_racing",
+                    "structure"
                 ],
-                "terms": [
-                    "Caterer",
-                    "Catering"
+                "geometry": [
+                    "line"
                 ],
                 "tags": {
-                    "craft": "caterer"
+                    "highway": "raceway"
                 },
-                "icon": "bakery",
-                "fields": [
-                    "cuisine",
-                    "building_area",
-                    "address",
-                    "operator",
-                    "opening_hours"
-                ]
+                "addTags": {
+                    "highway": "raceway",
+                    "sport": "motor"
+                },
+                "terms": [
+                    "auto*",
+                    "race*",
+                    "nascar"
+                ],
+                "name": "Motor Raceway"
             },
-            "craft/clockmaker": {
-                "name": "Clockmaker",
-                "geometry": [
-                    "point",
-                    "area"
+            "highway/residential": {
+                "icon": "highway-residential",
+                "fields": [
+                    "oneway",
+                    "maxspeed",
+                    "structure",
+                    "access",
+                    "surface"
                 ],
-                "terms": [
-                    "clock",
-                    "clockmaker",
-                    "clock repair"
+                "geometry": [
+                    "line"
                 ],
                 "tags": {
-                    "craft": "clockmaker"
+                    "highway": "residential"
                 },
-                "icon": "circle-stroked",
-                "fields": [
-                    "building_area",
-                    "address",
-                    "operator",
-                    "opening_hours"
-                ]
+                "terms": [],
+                "name": "Residential Road"
             },
-            "craft/confectionary": {
-                "name": "Confectionary",
+            "highway/rest_area": {
                 "geometry": [
                     "point",
+                    "vertex",
                     "area"
                 ],
-                "terms": [
-                    "confectionary",
-                    "sweets",
-                    "candy"
-                ],
                 "tags": {
-                    "craft": "confectionary"
+                    "highway": "rest_area"
                 },
-                "icon": "bakery",
-                "fields": [
-                    "building_area",
-                    "address",
-                    "operator",
-                    "opening_hours"
-                ]
+                "terms": [
+                    "rest stop"
+                ],
+                "name": "Rest Area"
             },
-            "craft/dressmaker": {
-                "name": "Dressmaker",
-                "geometry": [
-                    "point",
-                    "area"
+            "highway/road": {
+                "icon": "highway-road",
+                "fields": [
+                    "oneway",
+                    "maxspeed",
+                    "structure",
+                    "access",
+                    "surface"
                 ],
-                "terms": [
-                    "dress",
-                    "dressmaker"
+                "geometry": [
+                    "line"
                 ],
                 "tags": {
-                    "craft": "dressmaker"
+                    "highway": "road"
                 },
-                "icon": "clothing-store",
-                "fields": [
-                    "building_area",
-                    "address",
-                    "operator",
-                    "opening_hours"
-                ]
+                "terms": [],
+                "name": "Unknown Road"
             },
-            "craft/electrician": {
-                "name": "Electrician",
-                "geometry": [
-                    "point",
-                    "area"
+            "highway/secondary": {
+                "icon": "highway-secondary",
+                "fields": [
+                    "oneway",
+                    "maxspeed",
+                    "structure",
+                    "access",
+                    "lanes",
+                    "surface",
+                    "ref"
                 ],
-                "terms": [
-                    "electrician"
+                "geometry": [
+                    "line"
                 ],
                 "tags": {
-                    "craft": "electrician"
+                    "highway": "secondary"
                 },
-                "icon": "marker-stroked",
-                "fields": [
-                    "building_area",
-                    "address",
-                    "operator",
-                    "opening_hours"
-                ]
+                "terms": [],
+                "name": "Secondary Road"
             },
-            "craft/gardener": {
-                "name": "Gardener",
-                "geometry": [
-                    "point",
-                    "area"
+            "highway/secondary_link": {
+                "icon": "highway-secondary-link",
+                "fields": [
+                    "oneway",
+                    "maxspeed",
+                    "structure",
+                    "access",
+                    "surface",
+                    "ref"
                 ],
-                "terms": [
-                    "gardener",
-                    "landscaper",
-                    "grounds keeper"
+                "geometry": [
+                    "line"
                 ],
                 "tags": {
-                    "craft": "gardener"
+                    "highway": "secondary_link"
                 },
-                "icon": "garden",
-                "fields": [
-                    "building_area",
-                    "address",
-                    "operator",
-                    "opening_hours"
-                ]
+                "terms": [
+                    "ramp",
+                    "on ramp",
+                    "off ramp"
+                ],
+                "name": "Secondary Link"
             },
-            "craft/glaziery": {
-                "name": "Glaziery",
-                "geometry": [
-                    "point",
-                    "area"
+            "highway/service": {
+                "icon": "highway-service",
+                "fields": [
+                    "service",
+                    "oneway",
+                    "maxspeed",
+                    "structure",
+                    "access",
+                    "surface"
                 ],
-                "terms": [
-                    "glass",
-                    "glass foundry",
-                    "stained-glass",
-                    "window"
+                "geometry": [
+                    "line"
                 ],
                 "tags": {
-                    "craft": "glaziery"
+                    "highway": "service"
                 },
-                "icon": "fire-station",
-                "fields": [
-                    "building_area",
-                    "address",
-                    "operator",
-                    "opening_hours"
-                ]
+                "terms": [],
+                "name": "Service Road"
             },
-            "craft/handicraft": {
-                "name": "Handicraft",
-                "geometry": [
-                    "point",
-                    "area"
+            "highway/service/alley": {
+                "icon": "highway-service",
+                "fields": [
+                    "oneway",
+                    "access",
+                    "surface"
                 ],
-                "terms": [
-                    "handicraft"
+                "geometry": [
+                    "line"
                 ],
                 "tags": {
-                    "craft": "handicraft"
+                    "highway": "service",
+                    "service": "alley"
                 },
-                "icon": "art-gallery",
-                "fields": [
-                    "building_area",
-                    "address",
-                    "operator",
-                    "opening_hours"
-                ]
+                "name": "Alley"
             },
-            "craft/hvac": {
-                "name": "HVAC",
-                "geometry": [
-                    "point",
-                    "area"
+            "highway/service/drive-through": {
+                "icon": "highway-service",
+                "fields": [
+                    "oneway",
+                    "access",
+                    "surface"
                 ],
-                "terms": [
-                    "heating",
-                    "ventilating",
-                    "air-conditioning",
-                    "air conditioning"
+                "geometry": [
+                    "line"
                 ],
                 "tags": {
-                    "craft": "hvac"
+                    "highway": "service",
+                    "service": "drive-through"
                 },
-                "icon": "marker-stroked",
-                "fields": [
-                    "building_area",
-                    "address",
-                    "operator",
-                    "opening_hours"
-                ]
+                "name": "Drive-Through"
             },
-            "craft/insulator": {
-                "name": "Insulator",
-                "geometry": [
-                    "point",
-                    "area"
+            "highway/service/driveway": {
+                "icon": "highway-service",
+                "fields": [
+                    "oneway",
+                    "access",
+                    "surface"
                 ],
-                "terms": [
-                    "insulation",
-                    "insulator"
+                "geometry": [
+                    "line"
                 ],
                 "tags": {
-                    "craft": "insulation"
+                    "highway": "service",
+                    "service": "driveway"
                 },
-                "icon": "marker-stroked",
-                "fields": [
-                    "building_area",
-                    "address",
-                    "operator",
-                    "opening_hours"
-                ]
+                "name": "Driveway"
             },
-            "craft/jeweler": {
-                "name": "Jeweler",
-                "geometry": [
-                    "point",
-                    "area"
+            "highway/service/emergency_access": {
+                "icon": "highway-service",
+                "fields": [
+                    "oneway",
+                    "access",
+                    "surface"
                 ],
-                "terms": [
-                    "jeweler",
-                    "gem",
-                    "diamond"
+                "geometry": [
+                    "line"
                 ],
                 "tags": {
-                    "craft": "jeweler"
+                    "highway": "service",
+                    "service": "emergency_access"
                 },
-                "icon": "marker-stroked",
-                "searchable": false,
-                "fields": [
-                    "building_area",
-                    "address",
-                    "operator",
-                    "opening_hours"
-                ]
+                "name": "Emergency Access"
             },
-            "craft/key_cutter": {
-                "name": "Key Cutter",
-                "geometry": [
-                    "point",
-                    "area"
+            "highway/service/parking_aisle": {
+                "icon": "highway-service",
+                "fields": [
+                    "oneway",
+                    "access",
+                    "surface"
                 ],
-                "terms": [
-                    "key",
-                    "key cutter"
+                "geometry": [
+                    "line"
                 ],
                 "tags": {
-                    "craft": "key_cutter"
+                    "highway": "service",
+                    "service": "parking_aisle"
                 },
-                "icon": "marker-stroked",
-                "fields": [
-                    "building_area",
-                    "address",
-                    "operator",
-                    "opening_hours"
-                ]
+                "name": "Parking Aisle"
             },
-            "craft/locksmith": {
-                "name": "Locksmith",
+            "highway/services": {
                 "geometry": [
                     "point",
+                    "vertex",
                     "area"
                 ],
-                "terms": [
-                    "locksmith",
-                    "lock"
-                ],
                 "tags": {
-                    "craft": "locksmith"
+                    "highway": "services"
                 },
-                "icon": "marker-stroked",
-                "searchable": false,
-                "fields": [
-                    "building_area",
-                    "address",
-                    "operator",
-                    "opening_hours"
-                ]
+                "terms": [
+                    "services",
+                    "travel plaza",
+                    "service station"
+                ],
+                "name": "Service Area"
             },
-            "craft/metal_construction": {
-                "name": "Metal Construction",
+            "highway/steps": {
+                "fields": [
+                    "surface",
+                    "lit",
+                    "width",
+                    "access"
+                ],
+                "icon": "highway-steps",
                 "geometry": [
-                    "point",
-                    "area"
+                    "line"
                 ],
+                "tags": {
+                    "highway": "steps"
+                },
                 "terms": [
-                    "metal construction"
+                    "stairs",
+                    "staircase"
+                ],
+                "name": "Steps"
+            },
+            "highway/stop": {
+                "geometry": [
+                    "vertex"
                 ],
                 "tags": {
-                    "craft": "metal_construction"
+                    "highway": "stop"
                 },
-                "icon": "marker-stroked",
-                "fields": [
-                    "building_area",
-                    "address",
-                    "operator",
-                    "opening_hours"
-                ]
+                "terms": [
+                    "stop sign"
+                ],
+                "name": "Stop Sign"
             },
-            "craft/optician": {
-                "name": "Optician",
+            "highway/street_lamp": {
                 "geometry": [
                     "point",
-                    "area"
-                ],
-                "terms": [
-                    "glasses",
-                    "optician"
+                    "vertex"
                 ],
                 "tags": {
-                    "craft": "optician"
+                    "highway": "street_lamp"
                 },
-                "icon": "marker-stroked",
-                "searchable": false,
                 "fields": [
-                    "building_area",
-                    "address",
-                    "operator",
-                    "opening_hours"
-                ]
-            },
-            "craft/painter": {
-                "name": "Painter",
-                "geometry": [
-                    "point",
-                    "area"
+                    "lamp_type",
+                    "ref"
                 ],
                 "terms": [
-                    "painter"
+                    "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": "painter"
+                    "highway": "tertiary"
                 },
-                "icon": "art-gallery",
-                "fields": [
-                    "building_area",
-                    "address",
-                    "operator",
-                    "opening_hours"
-                ]
+                "terms": [],
+                "name": "Tertiary Road"
             },
-            "craft/photographer": {
-                "name": "Photographer",
-                "geometry": [
-                    "point",
-                    "area"
+            "highway/tertiary_link": {
+                "icon": "highway-tertiary-link",
+                "fields": [
+                    "oneway",
+                    "maxspeed",
+                    "structure",
+                    "access",
+                    "surface",
+                    "ref"
                 ],
-                "terms": [
-                    "photographer"
+                "geometry": [
+                    "line"
                 ],
                 "tags": {
-                    "craft": "photographer"
+                    "highway": "tertiary_link"
                 },
-                "icon": "camera",
-                "fields": [
-                    "building_area",
-                    "address",
-                    "operator",
-                    "opening_hours"
-                ]
+                "terms": [
+                    "ramp",
+                    "on ramp",
+                    "off ramp"
+                ],
+                "name": "Tertiary Link"
             },
-            "craft/photographic_laboratory": {
-                "name": "Photographic Laboratory",
-                "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": [
-                    "photographic laboratory",
-                    "film developer"
+                "geometry": [
+                    "line"
                 ],
                 "tags": {
-                    "craft": "photographic_laboratory"
+                    "highway": "track"
                 },
-                "icon": "camera",
-                "fields": [
-                    "building_area",
-                    "address",
-                    "operator",
-                    "opening_hours"
-                ]
+                "terms": [
+                    "woods road",
+                    "fire road"
+                ],
+                "name": "Track"
             },
-            "craft/plasterer": {
-                "name": "Plasterer",
+            "highway/traffic_signals": {
                 "geometry": [
-                    "point",
-                    "area"
-                ],
-                "terms": [
-                    "plasterer"
+                    "vertex"
                 ],
                 "tags": {
-                    "craft": "plasterer"
+                    "highway": "traffic_signals"
                 },
-                "icon": "marker-stroked",
-                "fields": [
-                    "building_area",
-                    "address",
-                    "operator",
-                    "opening_hours"
-                ]
+                "terms": [
+                    "light",
+                    "stoplight",
+                    "traffic light"
+                ],
+                "name": "Traffic Signals"
             },
-            "craft/plumber": {
-                "name": "Plumber",
-                "geometry": [
-                    "point",
-                    "area"
+            "highway/trunk": {
+                "icon": "highway-trunk",
+                "fields": [
+                    "oneway",
+                    "maxspeed",
+                    "structure",
+                    "access",
+                    "lanes",
+                    "surface",
+                    "ref"
                 ],
-                "terms": [
-                    "pumber"
+                "geometry": [
+                    "line"
                 ],
                 "tags": {
-                    "craft": "plumber"
+                    "highway": "trunk"
                 },
-                "icon": "marker-stroked",
-                "fields": [
-                    "building_area",
-                    "address",
-                    "operator",
-                    "opening_hours"
-                ]
+                "terms": [],
+                "name": "Trunk Road"
             },
-            "craft/pottery": {
-                "name": "Pottery",
-                "geometry": [
-                    "point",
-                    "area"
+            "highway/trunk_link": {
+                "icon": "highway-trunk-link",
+                "fields": [
+                    "oneway",
+                    "maxspeed",
+                    "structure",
+                    "access",
+                    "surface",
+                    "ref"
                 ],
-                "terms": [
-                    "pottery",
-                    "potter"
+                "geometry": [
+                    "line"
                 ],
                 "tags": {
-                    "craft": "pottery"
+                    "highway": "trunk_link"
                 },
-                "icon": "art-gallery",
-                "fields": [
-                    "building_area",
-                    "address",
-                    "operator",
-                    "opening_hours"
-                ]
+                "terms": [
+                    "ramp",
+                    "on ramp",
+                    "off ramp"
+                ],
+                "name": "Trunk Link"
             },
-            "craft/rigger": {
-                "name": "Rigger",
+            "highway/turning_circle": {
+                "icon": "circle",
                 "geometry": [
-                    "point",
-                    "area"
-                ],
-                "terms": [
-                    "rigger"
+                    "vertex"
                 ],
                 "tags": {
-                    "craft": "rigger"
+                    "highway": "turning_circle"
                 },
-                "icon": "marker-stroked",
-                "fields": [
-                    "building_area",
-                    "address",
-                    "operator",
-                    "opening_hours"
-                ]
+                "terms": [
+                    "cul-de-sac"
+                ],
+                "name": "Turning Circle"
             },
-            "craft/roofer": {
-                "name": "Roofer",
-                "geometry": [
-                    "point",
-                    "area"
+            "highway/unclassified": {
+                "icon": "highway-unclassified",
+                "fields": [
+                    "oneway",
+                    "maxspeed",
+                    "structure",
+                    "access",
+                    "surface"
                 ],
-                "terms": [
-                    "roofer"
+                "geometry": [
+                    "line"
                 ],
                 "tags": {
-                    "craft": "roofer"
+                    "highway": "unclassified"
                 },
-                "icon": "marker-stroked",
-                "fields": [
-                    "building_area",
-                    "address",
-                    "operator",
-                    "opening_hours"
-                ]
+                "terms": [],
+                "name": "Unclassified Road"
             },
-            "craft/saddler": {
-                "name": "Saddler",
+            "historic": {
+                "fields": [
+                    "historic"
+                ],
                 "geometry": [
                     "point",
+                    "vertex",
                     "area"
                 ],
-                "terms": [
-                    "saddler"
-                ],
                 "tags": {
-                    "craft": "saddler"
+                    "historic": "*"
                 },
-                "icon": "marker-stroked",
-                "fields": [
-                    "building_area",
-                    "address",
-                    "operator",
-                    "opening_hours"
-                ]
+                "name": "Historic Site"
             },
-            "craft/sailmaker": {
-                "name": "Sailmaker",
+            "historic/archaeological_site": {
                 "geometry": [
                     "point",
+                    "vertex",
                     "area"
                 ],
-                "terms": [
-                    "sailmaker"
-                ],
                 "tags": {
-                    "craft": "sailmaker"
+                    "historic": "archaeological_site"
                 },
-                "icon": "marker-stroked",
-                "fields": [
-                    "building_area",
-                    "address",
-                    "operator",
-                    "opening_hours"
-                ]
+                "name": "Archaeological Site"
             },
-            "craft/sawmill": {
-                "name": "Sawmill",
+            "historic/boundary_stone": {
                 "geometry": [
                     "point",
-                    "area"
-                ],
-                "terms": [
-                    "sawmill",
-                    "lumber"
+                    "vertex"
                 ],
                 "tags": {
-                    "craft": "sawmill"
+                    "historic": "boundary_stone"
                 },
-                "icon": "park",
-                "fields": [
-                    "building_area",
-                    "address",
-                    "operator",
-                    "opening_hours"
-                ]
+                "name": "Boundary Stone"
             },
-            "craft/scaffolder": {
-                "name": "Scaffolder",
+            "historic/castle": {
                 "geometry": [
                     "point",
                     "area"
                 ],
-                "terms": [
-                    "scaffolder"
-                ],
                 "tags": {
-                    "craft": "scaffolder"
+                    "historic": "castle"
                 },
-                "icon": "marker-stroked",
-                "fields": [
-                    "building_area",
-                    "address",
-                    "operator",
-                    "opening_hours"
-                ]
+                "name": "Castle"
             },
-            "craft/sculpter": {
-                "name": "Sculpter",
+            "historic/memorial": {
+                "icon": "monument",
                 "geometry": [
                     "point",
+                    "vertex",
                     "area"
                 ],
-                "terms": [
-                    "sculpter"
-                ],
                 "tags": {
-                    "craft": "sculpter"
+                    "historic": "memorial"
                 },
-                "icon": "art-gallery",
-                "fields": [
-                    "building_area",
-                    "address",
-                    "operator",
-                    "opening_hours"
-                ]
+                "name": "Memorial"
             },
-            "craft/shoemaker": {
-                "name": "Shoemaker",
+            "historic/monument": {
+                "icon": "monument",
                 "geometry": [
                     "point",
+                    "vertex",
                     "area"
                 ],
-                "terms": [
-                    "shoe repair",
-                    "shoemaker"
-                ],
                 "tags": {
-                    "craft": "shoemaker"
+                    "historic": "monument"
                 },
-                "icon": "marker-stroked",
-                "fields": [
-                    "building_area",
-                    "address",
-                    "operator",
-                    "opening_hours"
-                ]
+                "name": "Monument"
             },
-            "craft/stonemason": {
-                "name": "Stonemason",
+            "historic/ruins": {
                 "geometry": [
                     "point",
+                    "vertex",
                     "area"
                 ],
-                "terms": [
-                    "stonemason",
-                    "masonry"
-                ],
                 "tags": {
-                    "craft": "stonemason"
+                    "historic": "ruins"
                 },
-                "icon": "marker-stroked",
-                "fields": [
-                    "building_area",
-                    "address",
-                    "operator",
-                    "opening_hours"
-                ]
+                "name": "Ruins"
             },
-            "craft/sweep": {
-                "name": "Chimney Sweep",
+            "historic/wayside_cross": {
                 "geometry": [
                     "point",
+                    "vertex",
                     "area"
                 ],
-                "terms": [
-                    "sweep",
-                    "chimney sweep"
-                ],
                 "tags": {
-                    "craft": "sweep"
+                    "historic": "wayside_cross"
                 },
-                "icon": "marker-stroked",
-                "fields": [
-                    "building_area",
-                    "address",
-                    "operator",
-                    "opening_hours"
-                ]
+                "name": "Wayside Cross"
             },
-            "craft/tailor": {
-                "name": "Tailor",
+            "historic/wayside_shrine": {
                 "geometry": [
                     "point",
+                    "vertex",
                     "area"
                 ],
-                "terms": [
-                    "tailor",
-                    "clothes"
-                ],
                 "tags": {
-                    "craft": "tailor"
+                    "historic": "wayside_shrine"
                 },
-                "icon": "clothing-store",
+                "name": "Wayside Shrine"
+            },
+            "landuse": {
                 "fields": [
-                    "building_area",
-                    "address",
-                    "operator",
-                    "opening_hours"
+                    "landuse"
                 ],
-                "searchable": false
-            },
-            "craft/tiler": {
-                "name": "Tiler",
                 "geometry": [
                     "point",
+                    "vertex",
                     "area"
                 ],
-                "terms": [
-                    "tiler"
-                ],
                 "tags": {
-                    "craft": "tiler"
+                    "landuse": "*"
                 },
-                "icon": "marker-stroked",
-                "fields": [
-                    "building_area",
-                    "address",
-                    "operator",
-                    "opening_hours"
-                ]
+                "name": "Landuse"
             },
-            "craft/tinsmith": {
-                "name": "Tinsmith",
+            "landuse/allotments": {
                 "geometry": [
                     "point",
                     "area"
                 ],
-                "terms": [
-                    "tinsmith"
-                ],
                 "tags": {
-                    "craft": "tinsmith"
+                    "landuse": "allotments"
                 },
-                "icon": "marker-stroked",
-                "fields": [
-                    "building_area",
-                    "address",
-                    "operator",
-                    "opening_hours"
-                ]
+                "terms": [],
+                "name": "Allotments"
             },
-            "craft/upholsterer": {
-                "name": "Upholsterer",
+            "landuse/basin": {
                 "geometry": [
                     "point",
                     "area"
                 ],
-                "terms": [
-                    "upholsterer"
-                ],
                 "tags": {
-                    "craft": "upholsterer"
+                    "landuse": "basin"
                 },
-                "icon": "marker-stroked",
-                "fields": [
-                    "building_area",
-                    "address",
-                    "operator",
-                    "opening_hours"
-                ]
+                "terms": [],
+                "name": "Basin"
             },
-            "craft/watchmaker": {
-                "name": "Watchmaker",
+            "landuse/cemetery": {
+                "icon": "cemetery",
+                "fields": [
+                    "religion",
+                    "denomination"
+                ],
                 "geometry": [
                     "point",
+                    "vertex",
                     "area"
                 ],
-                "terms": [
-                    "watch",
-                    "watchmaker",
-                    "watch repair"
-                ],
                 "tags": {
-                    "craft": "watchmaker"
+                    "landuse": "cemetery"
                 },
-                "icon": "circle-stroked",
-                "fields": [
-                    "building_area",
-                    "address",
-                    "operator",
-                    "opening_hours"
-                ]
+                "terms": [],
+                "name": "Cemetery"
             },
-            "craft/window_construction": {
-                "name": "Window Construction",
+            "landuse/churchyard": {
+                "fields": [
+                    "religion",
+                    "denomination"
+                ],
                 "geometry": [
-                    "point",
                     "area"
                 ],
-                "terms": [
-                    "window",
-                    "window maker",
-                    "window construction"
-                ],
                 "tags": {
-                    "craft": "window_construction"
+                    "landuse": "churchyard"
                 },
-                "icon": "marker-stroked",
-                "fields": [
-                    "building_area",
-                    "address",
-                    "operator",
-                    "opening_hours"
-                ]
+                "terms": [],
+                "name": "Churchyard"
             },
-            "embankment": {
+            "landuse/commercial": {
+                "icon": "commercial",
                 "geometry": [
-                    "line"
+                    "point",
+                    "area"
                 ],
                 "tags": {
-                    "embankment": "yes"
+                    "landuse": "commercial"
                 },
-                "name": "Embankment",
-                "matchScore": 0.2
+                "terms": [],
+                "name": "Commercial"
             },
-            "emergency/ambulance_station": {
+            "landuse/construction": {
                 "fields": [
+                    "construction",
                     "operator"
                 ],
                 "geometry": [
-                    "area",
                     "point",
-                    "vertex"
+                    "area"
                 ],
                 "tags": {
-                    "emergency": "ambulance_station"
+                    "landuse": "construction"
                 },
-                "name": "Ambulance Station"
+                "terms": [],
+                "name": "Construction"
             },
-            "emergency/fire_hydrant": {
+            "landuse/farm": {
                 "fields": [
-                    "fire_hydrant/type"
+                    "crop"
                 ],
                 "geometry": [
                     "point",
-                    "vertex"
+                    "area"
                 ],
                 "tags": {
-                    "emergency": "fire_hydrant"
+                    "landuse": "farm"
                 },
-                "name": "Fire Hydrant"
+                "terms": [],
+                "name": "Farm",
+                "icon": "farm"
             },
-            "emergency/phone": {
-                "icon": "emergency-telephone",
+            "landuse/farmland": {
                 "fields": [
-                    "operator"
+                    "crop"
                 ],
                 "geometry": [
                     "point",
-                    "vertex"
-                ],
-                "tags": {
-                    "emergency": "phone"
-                },
-                "name": "Emergency Phone"
-            },
-            "entrance": {
-                "icon": "entrance",
-                "geometry": [
-                    "vertex"
+                    "area"
                 ],
                 "tags": {
-                    "entrance": "*"
+                    "landuse": "farmland"
                 },
-                "fields": [
-                    "entrance",
-                    "access_simple",
-                    "address"
-                ],
-                "name": "Entrance/Exit"
+                "terms": [],
+                "name": "Farmland",
+                "icon": "farm",
+                "searchable": false
             },
-            "footway/crossing": {
+            "landuse/farmyard": {
                 "fields": [
-                    "crossing",
-                    "access",
-                    "surface",
-                    "sloped_curb",
-                    "tactile_paving"
+                    "crop"
                 ],
                 "geometry": [
-                    "line"
+                    "point",
+                    "area"
                 ],
                 "tags": {
-                    "highway": "footway",
-                    "footway": "crossing"
+                    "landuse": "farmyard"
                 },
                 "terms": [],
-                "name": "Crossing"
+                "name": "Farmyard",
+                "icon": "farm"
             },
-            "footway/crosswalk": {
+            "landuse/forest": {
                 "fields": [
-                    "crossing",
-                    "access",
-                    "surface",
-                    "sloped_curb",
-                    "tactile_paving"
+                    "wood"
                 ],
+                "icon": "park2",
                 "geometry": [
-                    "line"
+                    "point",
+                    "area"
                 ],
                 "tags": {
-                    "highway": "footway",
-                    "footway": "crossing",
-                    "crossing": "zebra"
+                    "landuse": "forest"
                 },
-                "terms": [
-                    "crosswalk",
-                    "zebra crossing"
-                ],
-                "name": "Crosswalk"
+                "terms": [],
+                "name": "Forest"
             },
-            "footway/sidewalk": {
-                "fields": [
-                    "surface",
-                    "lit",
-                    "width",
-                    "structure",
-                    "access"
-                ],
+            "landuse/grass": {
                 "geometry": [
-                    "line"
+                    "point",
+                    "area"
                 ],
                 "tags": {
-                    "highway": "footway",
-                    "footway": "sidewalk"
+                    "landuse": "grass"
                 },
                 "terms": [],
-                "name": "Sidewalk"
+                "name": "Grass"
             },
-            "ford": {
+            "landuse/industrial": {
+                "icon": "industrial",
                 "geometry": [
-                    "vertex"
+                    "point",
+                    "area"
                 ],
                 "tags": {
-                    "ford": "yes"
+                    "landuse": "industrial"
                 },
-                "name": "Ford"
+                "terms": [],
+                "name": "Industrial"
             },
-            "golf/bunker": {
-                "icon": "golf",
+            "landuse/landfill": {
                 "geometry": [
                     "area"
                 ],
                 "tags": {
-                    "golf": "bunker",
-                    "natural": "sand"
+                    "landuse": "landfill"
                 },
                 "terms": [
-                    "hazard",
-                    "bunker"
+                    "dump"
                 ],
-                "name": "Sand Trap"
+                "name": "Landfill"
             },
-            "golf/fairway": {
-                "icon": "golf",
+            "landuse/meadow": {
                 "geometry": [
+                    "point",
                     "area"
                 ],
                 "tags": {
-                    "golf": "fairway",
-                    "landuse": "grass"
+                    "landuse": "meadow"
                 },
-                "name": "Fairway"
+                "terms": [],
+                "name": "Meadow"
             },
-            "golf/green": {
-                "icon": "golf",
+            "landuse/military": {
                 "geometry": [
                     "area"
                 ],
                 "tags": {
-                    "golf": "green",
-                    "landuse": "grass",
-                    "leisure": "pitch",
-                    "sport": "golf"
+                    "landuse": "military"
                 },
-                "terms": [
-                    "putting green"
-                ],
-                "name": "Putting Green"
+                "terms": [],
+                "name": "Military"
             },
-            "golf/hole": {
-                "icon": "golf",
+            "landuse/orchard": {
                 "fields": [
-                    "golf_hole",
-                    "par",
-                    "handicap"
+                    "trees"
                 ],
                 "geometry": [
-                    "line"
+                    "point",
+                    "area"
                 ],
                 "tags": {
-                    "golf": "hole"
+                    "landuse": "orchard"
                 },
-                "name": "Golf Hole"
+                "terms": [],
+                "name": "Orchard",
+                "icon": "park2"
             },
-            "golf/lateral_water_hazard": {
-                "icon": "golf",
+            "landuse/quarry": {
                 "geometry": [
-                    "line",
+                    "point",
                     "area"
                 ],
                 "tags": {
-                    "golf": "lateral_water_hazard",
-                    "natural": "water"
+                    "landuse": "quarry"
                 },
-                "name": "Lateral Water Hazard"
+                "terms": [],
+                "name": "Quarry"
             },
-            "golf/rough": {
-                "icon": "golf",
+            "landuse/residential": {
+                "icon": "building",
                 "geometry": [
+                    "point",
                     "area"
                 ],
                 "tags": {
-                    "golf": "rough",
-                    "landuse": "grass"
+                    "landuse": "residential"
                 },
-                "name": "Rough"
+                "terms": [],
+                "name": "Residential"
             },
-            "golf/tee": {
-                "icon": "golf",
+            "landuse/retail": {
+                "icon": "shop",
                 "geometry": [
+                    "point",
                     "area"
                 ],
                 "tags": {
-                    "golf": "tee",
-                    "landuse": "grass"
+                    "landuse": "retail"
                 },
-                "terms": [
-                    "teeing ground"
-                ],
-                "name": "Tee Box"
+                "name": "Retail"
             },
-            "golf/water_hazard": {
-                "icon": "golf",
+            "landuse/vineyard": {
                 "geometry": [
-                    "line",
+                    "point",
                     "area"
                 ],
                 "tags": {
-                    "golf": "water_hazard",
-                    "natural": "water"
+                    "landuse": "vineyard"
                 },
-                "name": "Water Hazard"
+                "terms": [],
+                "name": "Vineyard"
             },
-            "highway": {
+            "leisure": {
                 "fields": [
-                    "highway"
+                    "leisure"
                 ],
                 "geometry": [
                     "point",
                     "vertex",
-                    "line",
                     "area"
                 ],
                 "tags": {
-                    "highway": "*"
+                    "leisure": "*"
                 },
-                "name": "Highway"
+                "name": "Leisure"
             },
-            "highway/bridleway": {
-                "fields": [
-                    "surface",
-                    "width",
-                    "structure",
-                    "access"
-                ],
-                "icon": "highway-bridleway",
+            "leisure/common": {
                 "geometry": [
-                    "line"
+                    "point",
+                    "area"
                 ],
-                "tags": {
-                    "highway": "bridleway"
-                },
                 "terms": [
-                    "bridleway",
-                    "equestrian trail",
-                    "horse riding path",
-                    "bridle road",
-                    "horse trail"
-                ],
-                "name": "Bridle Path"
-            },
-            "highway/bus_stop": {
-                "icon": "bus",
-                "fields": [
-                    "operator",
-                    "shelter"
-                ],
-                "geometry": [
-                    "point",
-                    "vertex"
+                    "open space"
                 ],
                 "tags": {
-                    "highway": "bus_stop"
+                    "leisure": "common"
                 },
-                "terms": [],
-                "name": "Bus Stop"
+                "name": "Common"
             },
-            "highway/crossing": {
-                "fields": [
-                    "crossing",
-                    "sloped_curb",
-                    "tactile_paving"
-                ],
+            "leisure/dog_park": {
+                "icon": "dog-park",
                 "geometry": [
-                    "vertex"
+                    "point",
+                    "area"
                 ],
+                "terms": [],
                 "tags": {
-                    "highway": "crossing"
+                    "leisure": "dog_park"
                 },
-                "terms": [],
-                "name": "Crossing"
+                "name": "Dog Park"
             },
-            "highway/crosswalk": {
-                "fields": [
-                    "crossing",
-                    "sloped_curb",
-                    "tactile_paving"
-                ],
+            "leisure/firepit": {
                 "geometry": [
-                    "vertex"
+                    "point",
+                    "area"
                 ],
                 "tags": {
-                    "highway": "crossing",
-                    "crossing": "zebra"
+                    "leisure": "firepit"
                 },
                 "terms": [
-                    "crosswalk",
-                    "zebra crossing"
+                    "fireplace",
+                    "campfire"
                 ],
-                "name": "Crosswalk"
+                "name": "Firepit"
             },
-            "highway/cycleway": {
-                "icon": "highway-cycleway",
-                "fields": [
-                    "surface",
-                    "lit",
-                    "width",
-                    "oneway",
-                    "structure",
-                    "access"
-                ],
+            "leisure/garden": {
+                "icon": "garden",
                 "geometry": [
-                    "line"
+                    "point",
+                    "vertex",
+                    "area"
                 ],
                 "tags": {
-                    "highway": "cycleway"
+                    "leisure": "garden"
                 },
-                "terms": [],
-                "name": "Cycle Path"
+                "name": "Garden"
             },
-            "highway/footway": {
-                "icon": "highway-footway",
+            "leisure/golf_course": {
+                "icon": "golf",
                 "fields": [
-                    "surface",
-                    "lit",
-                    "width",
-                    "structure",
-                    "access"
+                    "operator",
+                    "address",
+                    "opening_hours"
                 ],
                 "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"
+                    "links"
                 ],
                 "tags": {
-                    "highway": "footway"
+                    "leisure": "golf_course"
                 },
-                "name": "Foot Path"
+                "name": "Golf Course"
             },
-            "highway/living_street": {
-                "icon": "highway-living-street",
+            "leisure/ice_rink": {
+                "icon": "pitch",
                 "fields": [
-                    "oneway",
-                    "maxspeed",
-                    "structure",
-                    "access",
-                    "surface"
+                    "seasonal",
+                    "sport_ice",
+                    "operator",
+                    "address",
+                    "building_area",
+                    "opening_hours"
                 ],
                 "geometry": [
-                    "line"
+                    "point",
+                    "area"
+                ],
+                "terms": [
+                    "hockey",
+                    "skating",
+                    "curling"
                 ],
                 "tags": {
-                    "highway": "living_street"
+                    "leisure": "ice_rink"
                 },
-                "name": "Living Street"
+                "name": "Ice Rink"
             },
-            "highway/mini_roundabout": {
+            "leisure/marina": {
+                "icon": "harbor",
                 "geometry": [
-                    "vertex"
+                    "point",
+                    "vertex",
+                    "area"
+                ],
+                "terms": [
+                    "boat"
                 ],
                 "tags": {
-                    "highway": "mini_roundabout"
+                    "leisure": "marina"
                 },
-                "fields": [
-                    "clock_direction"
-                ],
-                "name": "Mini-Roundabout"
+                "name": "Marina"
             },
-            "highway/motorway": {
-                "icon": "highway-motorway",
-                "fields": [
-                    "oneway_yes",
-                    "maxspeed",
-                    "structure",
-                    "access",
-                    "lanes",
-                    "surface",
-                    "ref"
-                ],
+            "leisure/park": {
+                "icon": "park",
                 "geometry": [
-                    "line"
+                    "point",
+                    "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": {
-                    "highway": "motorway"
+                    "leisure": "park"
                 },
-                "terms": [],
-                "name": "Motorway"
+                "name": "Park"
             },
-            "highway/motorway_junction": {
+            "leisure/picnic_table": {
                 "geometry": [
-                    "vertex"
+                    "point"
                 ],
                 "tags": {
-                    "highway": "motorway_junction"
+                    "leisure": "picnic_table"
                 },
-                "fields": [
-                    "ref"
+                "terms": [
+                    "bench"
                 ],
-                "name": "Motorway Junction / Exit"
+                "name": "Picnic Table"
             },
-            "highway/motorway_link": {
-                "icon": "highway-motorway-link",
+            "leisure/pitch": {
+                "icon": "pitch",
                 "fields": [
-                    "oneway_yes",
-                    "maxspeed",
-                    "structure",
-                    "access",
+                    "sport",
                     "surface",
-                    "ref"
+                    "lit"
                 ],
                 "geometry": [
-                    "line"
+                    "point",
+                    "area"
                 ],
                 "tags": {
-                    "highway": "motorway_link"
+                    "leisure": "pitch"
                 },
                 "terms": [
-                    "ramp",
-                    "on ramp",
-                    "off ramp"
+                    "field"
                 ],
-                "name": "Motorway Link"
+                "name": "Sport Pitch"
             },
-            "highway/path": {
-                "icon": "highway-path",
+            "leisure/pitch/american_football": {
+                "icon": "america-football",
                 "fields": [
                     "surface",
-                    "width",
-                    "structure",
-                    "access",
-                    "sac_scale",
-                    "incline",
-                    "trail_visibility",
-                    "ref"
+                    "lit"
                 ],
                 "geometry": [
-                    "line"
+                    "point",
+                    "area"
                 ],
                 "tags": {
-                    "highway": "path"
+                    "leisure": "pitch",
+                    "sport": "american_football"
                 },
                 "terms": [],
-                "name": "Path"
+                "name": "American Football Field"
             },
-            "highway/pedestrian": {
+            "leisure/pitch/baseball": {
+                "icon": "baseball",
                 "fields": [
-                    "surface",
-                    "lit",
-                    "width",
-                    "oneway",
-                    "structure",
-                    "access"
+                    "lit"
                 ],
                 "geometry": [
-                    "line",
+                    "point",
                     "area"
                 ],
                 "tags": {
-                    "highway": "pedestrian"
+                    "leisure": "pitch",
+                    "sport": "baseball"
                 },
                 "terms": [],
-                "name": "Pedestrian"
+                "name": "Baseball Diamond"
             },
-            "highway/primary": {
-                "icon": "highway-primary",
+            "leisure/pitch/basketball": {
+                "icon": "basketball",
                 "fields": [
-                    "oneway",
-                    "maxspeed",
-                    "structure",
-                    "access",
-                    "lanes",
                     "surface",
-                    "ref"
+                    "hoops",
+                    "lit"
                 ],
                 "geometry": [
-                    "line"
+                    "point",
+                    "area"
                 ],
                 "tags": {
-                    "highway": "primary"
+                    "leisure": "pitch",
+                    "sport": "basketball"
                 },
                 "terms": [],
-                "name": "Primary Road"
+                "name": "Basketball Court"
             },
-            "highway/primary_link": {
-                "icon": "highway-primary-link",
+            "leisure/pitch/skateboard": {
+                "icon": "pitch",
                 "fields": [
-                    "oneway",
-                    "maxspeed",
-                    "structure",
-                    "access",
                     "surface",
-                    "ref"
-                ],
-                "geometry": [
-                    "line"
-                ],
-                "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"
+                    "lit"
                 ],
-                "tags": {
-                    "highway": "residential"
-                },
-                "terms": [],
-                "name": "Residential Road"
-            },
-            "highway/rest_area": {
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "tags": {
-                    "highway": "rest_area"
-                },
-                "terms": [
-                    "rest stop",
-                    "turnout",
-                    "lay-by"
-                ],
-                "name": "Rest Area"
-            },
-            "highway/road": {
-                "icon": "highway-road",
-                "fields": [
-                    "oneway",
-                    "maxspeed",
-                    "structure",
-                    "access",
-                    "surface"
-                ],
-                "geometry": [
-                    "line"
-                ],
-                "tags": {
-                    "highway": "road"
+                    "leisure": "pitch",
+                    "sport": "skateboard"
                 },
                 "terms": [],
-                "name": "Unknown Road"
-            },
-            "highway/secondary": {
-                "icon": "highway-secondary",
+                "name": "Skate Park"
+            },
+            "leisure/pitch/soccer": {
+                "icon": "soccer",
                 "fields": [
-                    "oneway",
-                    "maxspeed",
-                    "structure",
-                    "access",
-                    "lanes",
                     "surface",
-                    "ref"
+                    "lit"
                 ],
                 "geometry": [
-                    "line"
+                    "point",
+                    "area"
                 ],
                 "tags": {
-                    "highway": "secondary"
+                    "leisure": "pitch",
+                    "sport": "soccer"
                 },
                 "terms": [],
-                "name": "Secondary Road"
+                "name": "Soccer Field"
             },
-            "highway/secondary_link": {
-                "icon": "highway-secondary-link",
+            "leisure/pitch/tennis": {
+                "icon": "tennis",
                 "fields": [
-                    "oneway",
-                    "maxspeed",
-                    "structure",
-                    "access",
                     "surface",
-                    "ref"
+                    "lit"
                 ],
                 "geometry": [
-                    "line"
+                    "point",
+                    "area"
                 ],
                 "tags": {
-                    "highway": "secondary_link"
+                    "leisure": "pitch",
+                    "sport": "tennis"
                 },
-                "terms": [
-                    "ramp",
-                    "on ramp",
-                    "off ramp"
-                ],
-                "name": "Secondary Link"
+                "terms": [],
+                "name": "Tennis Court"
             },
-            "highway/service": {
-                "icon": "highway-service",
+            "leisure/pitch/volleyball": {
+                "icon": "pitch",
                 "fields": [
-                    "service",
-                    "oneway",
-                    "maxspeed",
-                    "structure",
-                    "access",
-                    "surface"
+                    "surface",
+                    "lit"
                 ],
                 "geometry": [
-                    "line"
+                    "point",
+                    "area"
                 ],
                 "tags": {
-                    "highway": "service"
+                    "leisure": "pitch",
+                    "sport": "volleyball"
                 },
                 "terms": [],
-                "name": "Service Road"
+                "name": "Volleyball Court"
             },
-            "highway/service/alley": {
-                "icon": "highway-service",
-                "fields": [
-                    "oneway",
-                    "access",
-                    "surface"
-                ],
+            "leisure/playground": {
+                "icon": "playground",
                 "geometry": [
-                    "line"
+                    "point",
+                    "area"
+                ],
+                "terms": [
+                    "jungle gym",
+                    "play area"
                 ],
                 "tags": {
-                    "highway": "service",
-                    "service": "alley"
+                    "leisure": "playground"
                 },
-                "name": "Alley"
+                "name": "Playground"
             },
-            "highway/service/drive-through": {
-                "icon": "highway-service",
+            "leisure/running_track": {
+                "icon": "pitch",
                 "fields": [
-                    "oneway",
-                    "access",
-                    "surface"
+                    "surface",
+                    "sport_racing",
+                    "lit",
+                    "width",
+                    "lanes"
                 ],
                 "geometry": [
+                    "point",
                     "line"
                 ],
                 "tags": {
-                    "highway": "service",
-                    "service": "drive-through"
+                    "leisure": "track",
+                    "sport": "running"
                 },
-                "name": "Drive-Through"
+                "name": "Running Track"
             },
-            "highway/service/driveway": {
-                "icon": "highway-service",
-                "fields": [
-                    "oneway",
-                    "access",
-                    "surface"
-                ],
+            "leisure/slipway": {
                 "geometry": [
+                    "point",
                     "line"
                 ],
+                "terms": [
+                    "boat launch",
+                    "boat ramp"
+                ],
                 "tags": {
-                    "highway": "service",
-                    "service": "driveway"
+                    "leisure": "slipway"
                 },
-                "name": "Driveway"
+                "name": "Slipway"
             },
-            "highway/service/emergency_access": {
-                "icon": "highway-service",
+            "leisure/sports_center": {
+                "icon": "pitch",
                 "fields": [
-                    "oneway",
-                    "access",
-                    "surface"
+                    "sport",
+                    "address",
+                    "building_area",
+                    "opening_hours"
                 ],
                 "geometry": [
-                    "line"
+                    "point",
+                    "area"
                 ],
                 "tags": {
-                    "highway": "service",
-                    "service": "emergency_access"
+                    "leisure": "sports_centre"
                 },
-                "name": "Emergency Access"
+                "terms": [
+                    "gym"
+                ],
+                "name": "Sports Center / Gym"
             },
-            "highway/service/parking_aisle": {
-                "icon": "highway-service",
+            "leisure/stadium": {
+                "icon": "pitch",
                 "fields": [
-                    "oneway",
-                    "access",
-                    "surface"
+                    "sport",
+                    "address"
                 ],
                 "geometry": [
-                    "line"
+                    "point",
+                    "area"
                 ],
                 "tags": {
-                    "highway": "service",
-                    "service": "parking_aisle"
+                    "leisure": "stadium"
                 },
-                "name": "Parking Aisle"
+                "name": "Stadium"
             },
-            "highway/services": {
+            "leisure/swimming_pool": {
+                "icon": "swimming",
+                "fields": [
+                    "access_simple",
+                    "operator",
+                    "address"
+                ],
                 "geometry": [
                     "point",
                     "vertex",
                     "area"
                 ],
                 "tags": {
-                    "highway": "services"
+                    "leisure": "swimming_pool"
                 },
-                "terms": [
-                    "services",
-                    "travel plaza",
-                    "service station"
-                ],
-                "name": "Service Area"
+                "name": "Swimming Pool"
             },
-            "highway/steps": {
+            "leisure/track": {
+                "icon": "highway-road",
                 "fields": [
                     "surface",
+                    "sport_racing",
                     "lit",
                     "width",
-                    "access"
+                    "lanes"
                 ],
-                "icon": "highway-steps",
                 "geometry": [
+                    "point",
                     "line"
                 ],
                 "tags": {
-                    "highway": "steps"
+                    "leisure": "track"
                 },
-                "terms": [
-                    "stairs",
-                    "staircase"
+                "name": "Racetrack (non-Motorsport)"
+            },
+            "line": {
+                "name": "Line",
+                "tags": {},
+                "geometry": [
+                    "line"
                 ],
-                "name": "Steps"
+                "matchScore": 0.1
             },
-            "highway/stop": {
+            "man_made": {
+                "fields": [
+                    "man_made"
+                ],
                 "geometry": [
-                    "vertex"
+                    "point",
+                    "vertex",
+                    "line",
+                    "area"
                 ],
                 "tags": {
-                    "highway": "stop"
+                    "man_made": "*"
                 },
-                "terms": [
-                    "stop sign"
-                ],
-                "name": "Stop Sign"
+                "name": "Man Made"
             },
-            "highway/street_lamp": {
+            "man_made/breakwater": {
                 "geometry": [
-                    "point",
-                    "vertex"
+                    "line",
+                    "area"
                 ],
                 "tags": {
-                    "highway": "street_lamp"
+                    "man_made": "breakwater"
                 },
-                "fields": [
-                    "lamp_type",
-                    "ref"
-                ],
-                "terms": [
-                    "streetlight",
-                    "street light",
-                    "lamp",
-                    "light",
-                    "gaslight"
-                ],
-                "name": "Street Lamp"
+                "name": "Breakwater"
             },
-            "highway/tertiary": {
-                "icon": "highway-tertiary",
-                "fields": [
-                    "oneway",
-                    "maxspeed",
-                    "structure",
-                    "access",
-                    "lanes",
-                    "surface",
-                    "ref"
-                ],
+            "man_made/cutline": {
                 "geometry": [
                     "line"
                 ],
                 "tags": {
-                    "highway": "tertiary"
+                    "man_made": "cutline"
                 },
-                "terms": [],
-                "name": "Tertiary Road"
+                "name": "Cut line"
             },
-            "highway/tertiary_link": {
-                "icon": "highway-tertiary-link",
-                "fields": [
-                    "oneway",
-                    "maxspeed",
-                    "structure",
-                    "access",
-                    "surface",
-                    "ref"
-                ],
+            "man_made/embankment": {
                 "geometry": [
                     "line"
                 ],
                 "tags": {
-                    "highway": "tertiary_link"
+                    "man_made": "embankment"
                 },
-                "terms": [
-                    "ramp",
-                    "on ramp",
-                    "off ramp"
-                ],
-                "name": "Tertiary Link"
+                "name": "Embankment",
+                "searchable": false
             },
-            "highway/track": {
-                "icon": "highway-track",
-                "fields": [
-                    "tracktype",
-                    "oneway",
-                    "maxspeed",
-                    "structure",
-                    "access",
-                    "surface"
-                ],
+            "man_made/flagpole": {
                 "geometry": [
-                    "line"
+                    "point"
                 ],
                 "tags": {
-                    "highway": "track"
+                    "man_made": "flagpole"
                 },
-                "terms": [],
-                "name": "Track"
+                "name": "Flagpole",
+                "icon": "embassy"
             },
-            "highway/traffic_signals": {
+            "man_made/lighthouse": {
+                "icon": "lighthouse",
                 "geometry": [
-                    "vertex"
+                    "point",
+                    "area"
                 ],
                 "tags": {
-                    "highway": "traffic_signals"
+                    "man_made": "lighthouse"
                 },
+                "name": "Lighthouse"
+            },
+            "man_made/observation": {
+                "geometry": [
+                    "point",
+                    "area"
+                ],
                 "terms": [
-                    "light",
-                    "stoplight",
-                    "traffic light"
+                    "lookout tower",
+                    "fire tower"
                 ],
-                "name": "Traffic Signals"
+                "tags": {
+                    "man_made": "tower",
+                    "tower:type": "observation"
+                },
+                "name": "Observation Tower"
             },
-            "highway/trunk": {
-                "icon": "highway-trunk",
+            "man_made/pier": {
+                "geometry": [
+                    "line",
+                    "area"
+                ],
+                "tags": {
+                    "man_made": "pier"
+                },
+                "name": "Pier"
+            },
+            "man_made/pipeline": {
+                "icon": "pipeline",
                 "fields": [
-                    "oneway",
-                    "maxspeed",
-                    "structure",
-                    "access",
-                    "lanes",
-                    "surface",
-                    "ref"
+                    "location",
+                    "operator"
                 ],
                 "geometry": [
                     "line"
                 ],
                 "tags": {
-                    "highway": "trunk"
+                    "man_made": "pipeline"
                 },
-                "terms": [],
-                "name": "Trunk Road"
+                "name": "Pipeline"
             },
-            "highway/trunk_link": {
-                "icon": "highway-trunk-link",
+            "man_made/survey_point": {
+                "icon": "monument",
                 "fields": [
-                    "oneway",
-                    "maxspeed",
-                    "structure",
-                    "access",
-                    "surface",
                     "ref"
                 ],
                 "geometry": [
-                    "line"
+                    "point",
+                    "vertex"
                 ],
                 "tags": {
-                    "highway": "trunk_link"
+                    "man_made": "survey_point"
                 },
-                "terms": [
-                    "ramp",
-                    "on ramp",
-                    "off ramp"
-                ],
-                "name": "Trunk Link"
+                "name": "Survey Point"
             },
-            "highway/turning_circle": {
-                "icon": "circle",
+            "man_made/tower": {
+                "fields": [
+                    "towertype"
+                ],
                 "geometry": [
-                    "vertex"
+                    "point",
+                    "area"
                 ],
                 "tags": {
-                    "highway": "turning_circle"
+                    "man_made": "tower"
                 },
-                "terms": [],
-                "name": "Turning Circle"
+                "name": "Tower"
             },
-            "highway/unclassified": {
-                "icon": "highway-unclassified",
+            "man_made/wastewater_plant": {
+                "icon": "water",
                 "fields": [
-                    "oneway",
-                    "maxspeed",
-                    "structure",
-                    "access",
-                    "surface"
+                    "operator",
+                    "address"
                 ],
                 "geometry": [
-                    "line"
+                    "point",
+                    "area"
+                ],
+                "terms": [
+                    "sewage*",
+                    "water treatment plant",
+                    "reclamation plant"
                 ],
                 "tags": {
-                    "highway": "unclassified"
+                    "man_made": "wastewater_plant"
                 },
-                "terms": [],
-                "name": "Unclassified Road"
+                "name": "Wastewater Plant"
             },
-            "historic": {
+            "man_made/water_tower": {
+                "icon": "water",
                 "fields": [
-                    "historic"
+                    "operator"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "tags": {
-                    "historic": "*"
+                    "man_made": "water_tower"
                 },
-                "name": "Historic Site"
+                "name": "Water Tower"
             },
-            "historic/archaeological_site": {
+            "man_made/water_well": {
+                "fields": [
+                    "operator"
+                ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "tags": {
-                    "historic": "archaeological_site"
+                    "man_made": "water_well"
                 },
-                "name": "Archaeological Site"
+                "name": "Water Well"
             },
-            "historic/boundary_stone": {
+            "man_made/water_works": {
+                "icon": "water",
+                "fields": [
+                    "operator",
+                    "address"
+                ],
                 "geometry": [
                     "point",
-                    "vertex"
+                    "area"
                 ],
                 "tags": {
-                    "historic": "boundary_stone"
+                    "man_made": "water_works"
                 },
-                "name": "Boundary Stone"
+                "name": "Water Works"
             },
-            "historic/castle": {
+            "military/airfield": {
+                "icon": "airfield",
                 "geometry": [
                     "point",
                     "vertex",
                     "area"
                 ],
+                "terms": [],
                 "tags": {
-                    "historic": "castle"
+                    "military": "airfield"
                 },
-                "name": "Castle"
+                "name": "Airfield"
             },
-            "historic/memorial": {
-                "icon": "monument",
+            "military/barracks": {
                 "geometry": [
                     "point",
                     "vertex",
                     "area"
                 ],
+                "terms": [],
                 "tags": {
-                    "historic": "memorial"
+                    "military": "barracks"
                 },
-                "name": "Memorial"
+                "name": "Barracks"
             },
-            "historic/monument": {
-                "icon": "monument",
+            "military/bunker": {
                 "geometry": [
                     "point",
                     "vertex",
                     "area"
                 ],
+                "terms": [],
                 "tags": {
-                    "historic": "monument"
+                    "military": "bunker"
                 },
-                "name": "Monument"
+                "name": "Bunker"
             },
-            "historic/ruins": {
+            "military/range": {
                 "geometry": [
                     "point",
                     "vertex",
                     "area"
                 ],
+                "terms": [],
                 "tags": {
-                    "historic": "ruins"
+                    "military": "range"
                 },
-                "name": "Ruins"
+                "name": "Military Range"
             },
-            "historic/wayside_cross": {
+            "natural": {
+                "fields": [
+                    "natural"
+                ],
                 "geometry": [
                     "point",
                     "vertex",
                     "area"
                 ],
                 "tags": {
-                    "historic": "wayside_cross"
+                    "natural": "*"
                 },
-                "name": "Wayside Cross"
+                "name": "Natural"
             },
-            "historic/wayside_shrine": {
+            "natural/bay": {
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
+                "terms": [],
                 "tags": {
-                    "historic": "wayside_shrine"
+                    "natural": "bay"
                 },
-                "name": "Wayside Shrine"
+                "name": "Bay"
             },
-            "landuse": {
+            "natural/beach": {
                 "fields": [
-                    "landuse"
+                    "surface"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
+                "terms": [],
                 "tags": {
-                    "landuse": "*"
+                    "natural": "beach"
                 },
-                "name": "Landuse"
+                "name": "Beach"
             },
-            "landuse/allotments": {
+            "natural/cliff": {
                 "geometry": [
                     "point",
+                    "vertex",
+                    "line",
                     "area"
                 ],
+                "terms": [],
                 "tags": {
-                    "landuse": "allotments"
+                    "natural": "cliff"
                 },
-                "terms": [],
-                "name": "Allotments"
+                "name": "Cliff"
             },
-            "landuse/basin": {
+            "natural/coastline": {
                 "geometry": [
-                    "point",
-                    "area"
+                    "line"
+                ],
+                "terms": [
+                    "shore"
                 ],
                 "tags": {
-                    "landuse": "basin"
+                    "natural": "coastline"
                 },
-                "terms": [],
-                "name": "Basin"
+                "name": "Coastline"
             },
-            "landuse/cemetery": {
-                "icon": "cemetery",
-                "fields": [
-                    "religion",
-                    "denomination"
+            "natural/fell": {
+                "geometry": [
+                    "area"
                 ],
+                "terms": [],
+                "tags": {
+                    "natural": "fell"
+                },
+                "name": "Fell"
+            },
+            "natural/glacier": {
                 "geometry": [
-                    "point",
-                    "vertex",
                     "area"
                 ],
+                "terms": [],
                 "tags": {
-                    "landuse": "cemetery"
+                    "natural": "glacier"
                 },
-                "terms": [],
-                "name": "Cemetery"
+                "name": "Glacier"
             },
-            "landuse/churchyard": {
-                "fields": [
-                    "religion",
-                    "denomination"
-                ],
+            "natural/grassland": {
                 "geometry": [
+                    "point",
                     "area"
                 ],
+                "terms": [],
                 "tags": {
-                    "landuse": "churchyard"
+                    "natural": "grassland"
                 },
-                "terms": [],
-                "name": "Churchyard"
+                "name": "Grassland"
             },
-            "landuse/commercial": {
-                "icon": "commercial",
+            "natural/heath": {
                 "geometry": [
-                    "point",
                     "area"
                 ],
+                "terms": [],
                 "tags": {
-                    "landuse": "commercial"
+                    "natural": "heath"
                 },
-                "terms": [],
-                "name": "Commercial"
+                "name": "Heath"
             },
-            "landuse/construction": {
+            "natural/peak": {
+                "icon": "triangle",
                 "fields": [
-                    "construction",
-                    "operator"
+                    "elevation"
                 ],
                 "geometry": [
                     "point",
-                    "area"
+                    "vertex"
                 ],
                 "tags": {
-                    "landuse": "construction"
+                    "natural": "peak"
                 },
-                "terms": [],
-                "name": "Construction"
+                "terms": [
+                    "acme",
+                    "aiguille",
+                    "alp",
+                    "climax",
+                    "crest",
+                    "crown",
+                    "hill",
+                    "mount",
+                    "mountain",
+                    "pinnacle",
+                    "summit",
+                    "tip",
+                    "top"
+                ],
+                "name": "Peak"
             },
-            "landuse/farm": {
-                "fields": [
-                    "crop"
+            "natural/scree": {
+                "geometry": [
+                    "area"
+                ],
+                "tags": {
+                    "natural": "scree"
+                },
+                "terms": [
+                    "loose rocks"
                 ],
+                "name": "Scree"
+            },
+            "natural/scrub": {
                 "geometry": [
-                    "point",
                     "area"
                 ],
                 "tags": {
-                    "landuse": "farm"
+                    "natural": "scrub"
                 },
                 "terms": [],
-                "name": "Farm",
-                "icon": "farm"
+                "name": "Scrub"
             },
-            "landuse/farmland": {
-                "fields": [
-                    "crop"
-                ],
+            "natural/spring": {
                 "geometry": [
                     "point",
-                    "area"
+                    "vertex"
                 ],
+                "terms": [],
                 "tags": {
-                    "landuse": "farmland"
+                    "natural": "spring"
                 },
-                "terms": [],
-                "name": "Farmland",
-                "icon": "farm",
-                "searchable": false
+                "name": "Spring"
             },
-            "landuse/farmyard": {
+            "natural/tree": {
                 "fields": [
-                    "crop"
+                    "tree_type",
+                    "denotation"
                 ],
+                "icon": "park",
                 "geometry": [
                     "point",
-                    "area"
+                    "vertex"
                 ],
+                "terms": [],
                 "tags": {
-                    "landuse": "farmyard"
+                    "natural": "tree"
                 },
-                "terms": [],
-                "name": "Farmyard",
-                "icon": "farm"
+                "name": "Tree"
             },
-            "landuse/forest": {
+            "natural/water": {
                 "fields": [
-                    "wood"
+                    "water"
                 ],
-                "icon": "park2",
                 "geometry": [
-                    "point",
                     "area"
                 ],
                 "tags": {
-                    "landuse": "forest"
+                    "natural": "water"
                 },
-                "terms": [],
-                "name": "Forest"
+                "icon": "water",
+                "name": "Water"
             },
-            "landuse/grass": {
+            "natural/water/lake": {
                 "geometry": [
-                    "point",
                     "area"
                 ],
                 "tags": {
-                    "landuse": "grass"
+                    "natural": "water",
+                    "water": "lake"
                 },
-                "terms": [],
-                "name": "Grass"
+                "terms": [
+                    "lakelet",
+                    "loch",
+                    "mere"
+                ],
+                "icon": "water",
+                "name": "Lake"
             },
-            "landuse/industrial": {
-                "icon": "industrial",
+            "natural/water/pond": {
                 "geometry": [
-                    "point",
                     "area"
                 ],
                 "tags": {
-                    "landuse": "industrial"
+                    "natural": "water",
+                    "water": "pond"
                 },
-                "terms": [],
-                "name": "Industrial"
+                "terms": [
+                    "lakelet",
+                    "millpond",
+                    "tarn",
+                    "pool",
+                    "mere"
+                ],
+                "icon": "water",
+                "name": "Pond"
             },
-            "landuse/landfill": {
+            "natural/water/reservoir": {
                 "geometry": [
                     "area"
                 ],
                 "tags": {
-                    "landuse": "landfill"
+                    "natural": "water",
+                    "water": "reservoir"
                 },
-                "terms": [
-                    "dump"
-                ],
-                "name": "Landfill"
+                "icon": "water",
+                "name": "Reservoir"
             },
-            "landuse/meadow": {
+            "natural/wetland": {
+                "icon": "wetland",
+                "fields": [
+                    "wetland"
+                ],
                 "geometry": [
                     "point",
                     "area"
                 ],
                 "tags": {
-                    "landuse": "meadow"
+                    "natural": "wetland"
                 },
                 "terms": [],
-                "name": "Meadow"
+                "name": "Wetland"
             },
-            "landuse/military": {
+            "natural/wood": {
+                "fields": [
+                    "wood"
+                ],
+                "icon": "park2",
                 "geometry": [
+                    "point",
                     "area"
                 ],
                 "tags": {
-                    "landuse": "military"
+                    "natural": "wood"
                 },
                 "terms": [],
-                "name": "Military"
+                "name": "Wood"
             },
-            "landuse/orchard": {
+            "office": {
+                "icon": "commercial",
                 "fields": [
-                    "trees"
+                    "office",
+                    "address",
+                    "building_area",
+                    "opening_hours",
+                    "smoking"
                 ],
                 "geometry": [
                     "point",
+                    "vertex",
                     "area"
                 ],
                 "tags": {
-                    "landuse": "orchard"
+                    "office": "*"
                 },
                 "terms": [],
-                "name": "Orchard",
-                "icon": "park2"
+                "name": "Office"
             },
-            "landuse/quarry": {
+            "office/accountant": {
+                "icon": "commercial",
+                "fields": [
+                    "address",
+                    "building_area",
+                    "opening_hours"
+                ],
                 "geometry": [
                     "point",
+                    "vertex",
                     "area"
                 ],
                 "tags": {
-                    "landuse": "quarry"
+                    "office": "accountant"
                 },
                 "terms": [],
-                "name": "Quarry"
+                "name": "Accountant"
             },
-            "landuse/residential": {
-                "icon": "building",
+            "office/administrative": {
+                "icon": "commercial",
+                "fields": [
+                    "address",
+                    "building_area",
+                    "opening_hours"
+                ],
                 "geometry": [
                     "point",
+                    "vertex",
                     "area"
                 ],
                 "tags": {
-                    "landuse": "residential"
+                    "office": "administrative"
                 },
                 "terms": [],
-                "name": "Residential"
+                "name": "Administrative Office"
             },
-            "landuse/retail": {
-                "icon": "shop",
+            "office/architect": {
+                "icon": "commercial",
+                "fields": [
+                    "address",
+                    "building_area",
+                    "opening_hours"
+                ],
                 "geometry": [
                     "point",
+                    "vertex",
                     "area"
                 ],
                 "tags": {
-                    "landuse": "retail"
+                    "office": "architect"
                 },
-                "name": "Retail"
+                "terms": [],
+                "name": "Architect"
             },
-            "landuse/vineyard": {
+            "office/company": {
+                "icon": "commercial",
+                "fields": [
+                    "address",
+                    "building_area",
+                    "opening_hours",
+                    "smoking"
+                ],
                 "geometry": [
                     "point",
+                    "vertex",
                     "area"
                 ],
                 "tags": {
-                    "landuse": "vineyard"
+                    "office": "company"
                 },
                 "terms": [],
-                "name": "Vineyard"
+                "name": "Company Office"
             },
-            "leisure": {
+            "office/educational_institution": {
+                "icon": "commercial",
                 "fields": [
-                    "leisure"
+                    "address",
+                    "building_area",
+                    "opening_hours"
                 ],
                 "geometry": [
                     "point",
@@ -68797,2928 +72427,2857 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                     "area"
                 ],
                 "tags": {
-                    "leisure": "*"
+                    "office": "educational_institution"
                 },
-                "name": "Leisure"
+                "terms": [],
+                "name": "Educational Institution"
             },
-            "leisure/common": {
+            "office/employment_agency": {
+                "icon": "commercial",
+                "fields": [
+                    "address",
+                    "building_area",
+                    "opening_hours"
+                ],
                 "geometry": [
                     "point",
+                    "vertex",
                     "area"
                 ],
-                "terms": [
-                    "open space"
-                ],
                 "tags": {
-                    "leisure": "common"
+                    "office": "employment_agency"
                 },
-                "name": "Common"
+                "terms": [
+                    "job"
+                ],
+                "name": "Employment Agency"
             },
-            "leisure/dog_park": {
+            "office/estate_agent": {
+                "icon": "commercial",
+                "fields": [
+                    "address",
+                    "building_area",
+                    "opening_hours"
+                ],
                 "geometry": [
                     "point",
+                    "vertex",
                     "area"
                 ],
-                "terms": [],
                 "tags": {
-                    "leisure": "dog_park"
+                    "office": "estate_agent"
                 },
-                "name": "Dog Park",
-                "icon": "dog-park"
+                "terms": [],
+                "name": "Real Estate Office"
             },
-            "leisure/firepit": {
+            "office/financial": {
+                "icon": "commercial",
+                "fields": [
+                    "address",
+                    "building_area",
+                    "opening_hours"
+                ],
                 "geometry": [
                     "point",
+                    "vertex",
                     "area"
                 ],
                 "tags": {
-                    "leisure": "firepit"
+                    "office": "financial"
                 },
-                "terms": [
-                    "fireplace",
-                    "campfire"
-                ],
-                "name": "Firepit"
+                "terms": [],
+                "name": "Financial Office"
             },
-            "leisure/garden": {
-                "icon": "garden",
+            "office/government": {
+                "icon": "commercial",
+                "fields": [
+                    "address",
+                    "building_area",
+                    "opening_hours"
+                ],
                 "geometry": [
                     "point",
                     "vertex",
                     "area"
                 ],
                 "tags": {
-                    "leisure": "garden"
+                    "office": "government"
                 },
-                "name": "Garden"
+                "terms": [],
+                "name": "Government Office"
             },
-            "leisure/golf_course": {
-                "icon": "golf",
+            "office/insurance": {
+                "icon": "commercial",
                 "fields": [
-                    "operator",
-                    "address"
+                    "address",
+                    "building_area",
+                    "opening_hours"
                 ],
                 "geometry": [
                     "point",
+                    "vertex",
                     "area"
                 ],
                 "tags": {
-                    "leisure": "golf_course"
+                    "office": "insurance"
                 },
-                "terms": [
-                    "links"
-                ],
-                "name": "Golf Course"
+                "terms": [],
+                "name": "Insurance Office"
             },
-            "leisure/ice_rink": {
-                "icon": "pitch",
+            "office/it": {
+                "icon": "commercial",
                 "fields": [
+                    "address",
                     "building_area",
-                    "seasonal",
-                    "sport_ice"
+                    "opening_hours"
                 ],
                 "geometry": [
                     "point",
+                    "vertex",
                     "area"
                 ],
-                "terms": [
-                    "hockey",
-                    "skating",
-                    "curling"
-                ],
                 "tags": {
-                    "leisure": "ice_rink"
+                    "office": "it"
                 },
-                "name": "Ice Rink"
+                "terms": [],
+                "name": "IT Office"
             },
-            "leisure/marina": {
-                "icon": "harbor",
+            "office/lawyer": {
+                "icon": "commercial",
+                "fields": [
+                    "address",
+                    "building_area",
+                    "opening_hours"
+                ],
                 "geometry": [
                     "point",
                     "vertex",
                     "area"
                 ],
                 "tags": {
-                    "leisure": "marina"
+                    "office": "lawyer"
                 },
-                "name": "Marina"
+                "terms": [],
+                "name": "Law Office"
             },
-            "leisure/park": {
-                "icon": "park",
+            "office/newspaper": {
+                "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"
+                    "office": "newspaper"
                 },
-                "name": "Park"
+                "terms": [],
+                "name": "Newspaper"
             },
-            "leisure/picnic_table": {
+            "office/ngo": {
+                "icon": "commercial",
+                "fields": [
+                    "address",
+                    "building_area",
+                    "opening_hours",
+                    "smoking"
+                ],
                 "geometry": [
-                    "point"
+                    "point",
+                    "vertex",
+                    "area"
                 ],
                 "tags": {
-                    "leisure": "picnic_table"
+                    "office": "ngo"
                 },
-                "terms": [
-                    "bench",
-                    "table"
-                ],
-                "name": "Picnic Table"
+                "terms": [],
+                "name": "NGO Office"
             },
-            "leisure/pitch": {
-                "icon": "pitch",
+            "office/physician": {
+                "icon": "commercial",
                 "fields": [
-                    "sport",
-                    "surface",
-                    "lit"
+                    "address",
+                    "building_area",
+                    "opening_hours"
                 ],
                 "geometry": [
                     "point",
+                    "vertex",
                     "area"
                 ],
                 "tags": {
-                    "leisure": "pitch"
+                    "office": "physician"
                 },
                 "terms": [],
-                "name": "Sport Pitch"
+                "name": "Physician"
             },
-            "leisure/pitch/american_football": {
-                "icon": "america-football",
+            "office/political_party": {
+                "icon": "commercial",
                 "fields": [
-                    "surface",
-                    "lit"
+                    "address",
+                    "building_area",
+                    "opening_hours"
                 ],
                 "geometry": [
                     "point",
+                    "vertex",
                     "area"
                 ],
                 "tags": {
-                    "leisure": "pitch",
-                    "sport": "american_football"
+                    "office": "political_party"
                 },
                 "terms": [],
-                "name": "American Football Field"
+                "name": "Political Party"
             },
-            "leisure/pitch/baseball": {
-                "icon": "baseball",
+            "office/research": {
+                "icon": "commercial",
                 "fields": [
-                    "lit"
+                    "address",
+                    "building_area",
+                    "opening_hours"
                 ],
                 "geometry": [
                     "point",
+                    "vertex",
                     "area"
                 ],
                 "tags": {
-                    "leisure": "pitch",
-                    "sport": "baseball"
+                    "office": "research"
                 },
                 "terms": [],
-                "name": "Baseball Diamond"
+                "name": "Research Office"
             },
-            "leisure/pitch/basketball": {
-                "icon": "basketball",
+            "office/telecommunication": {
+                "icon": "commercial",
                 "fields": [
-                    "surface",
-                    "hoops",
-                    "lit"
+                    "address",
+                    "building_area",
+                    "opening_hours"
                 ],
                 "geometry": [
                     "point",
+                    "vertex",
                     "area"
                 ],
                 "tags": {
-                    "leisure": "pitch",
-                    "sport": "basketball"
+                    "office": "telecommunication"
                 },
                 "terms": [],
-                "name": "Basketball Court"
+                "name": "Telecom Office"
             },
-            "leisure/pitch/skateboard": {
-                "icon": "pitch",
+            "office/therapist": {
+                "icon": "commercial",
                 "fields": [
-                    "surface",
-                    "lit"
+                    "address",
+                    "building_area",
+                    "opening_hours"
                 ],
                 "geometry": [
                     "point",
+                    "vertex",
                     "area"
                 ],
                 "tags": {
-                    "leisure": "pitch",
-                    "sport": "skateboard"
+                    "office": "therapist"
                 },
                 "terms": [],
-                "name": "Skate Park"
+                "name": "Therapist"
             },
-            "leisure/pitch/soccer": {
-                "icon": "soccer",
+            "office/travel_agent": {
+                "icon": "suitcase",
                 "fields": [
-                    "surface",
-                    "lit"
+                    "address",
+                    "building_area",
+                    "opening_hours"
                 ],
                 "geometry": [
                     "point",
+                    "vertex",
                     "area"
                 ],
                 "tags": {
-                    "leisure": "pitch",
-                    "sport": "soccer"
+                    "office": "travel_agent"
                 },
                 "terms": [],
-                "name": "Soccer Field"
+                "name": "Travel Agency",
+                "searchable": false
             },
-            "leisure/pitch/tennis": {
-                "icon": "tennis",
+            "piste": {
+                "icon": "skiing",
                 "fields": [
-                    "surface",
+                    "piste/type",
+                    "piste/difficulty",
+                    "piste/grooming",
+                    "oneway",
                     "lit"
                 ],
                 "geometry": [
                     "point",
+                    "line",
                     "area"
                 ],
+                "terms": [
+                    "ski",
+                    "sled",
+                    "sleigh",
+                    "snowboard",
+                    "nordic",
+                    "downhill",
+                    "snowmobile"
+                ],
                 "tags": {
-                    "leisure": "pitch",
-                    "sport": "tennis"
+                    "piste:type": "*"
                 },
-                "terms": [],
-                "name": "Tennis Court"
+                "name": "Piste/Ski Trail"
             },
-            "leisure/pitch/volleyball": {
-                "icon": "pitch",
+            "place": {
                 "fields": [
-                    "surface",
-                    "lit"
+                    "place"
                 ],
                 "geometry": [
                     "point",
+                    "vertex",
                     "area"
                 ],
                 "tags": {
-                    "leisure": "pitch",
-                    "sport": "volleyball"
+                    "place": "*"
                 },
-                "terms": [],
-                "name": "Volleyball Court"
+                "name": "Place"
             },
-            "leisure/playground": {
-                "icon": "playground",
+            "place/city": {
+                "icon": "city",
+                "fields": [
+                    "population"
+                ],
                 "geometry": [
                     "point",
                     "area"
                 ],
                 "tags": {
-                    "leisure": "playground"
+                    "place": "city"
                 },
-                "name": "Playground",
-                "terms": [
-                    "jungle gym",
-                    "play area"
-                ]
+                "name": "City"
             },
-            "leisure/slipway": {
+            "place/hamlet": {
+                "icon": "triangle-stroked",
+                "fields": [
+                    "population"
+                ],
                 "geometry": [
                     "point",
-                    "line"
+                    "area"
                 ],
                 "tags": {
-                    "leisure": "slipway"
+                    "place": "hamlet"
                 },
-                "name": "Slipway"
+                "name": "Hamlet"
             },
-            "leisure/sports_center": {
-                "icon": "pitch",
+            "place/island": {
                 "geometry": [
                     "point",
                     "area"
                 ],
-                "tags": {
-                    "leisure": "sports_centre"
-                },
                 "terms": [
-                    "gym"
-                ],
-                "fields": [
-                    "sport"
+                    "archipelago",
+                    "atoll",
+                    "bar",
+                    "cay",
+                    "isle",
+                    "islet",
+                    "key",
+                    "reef"
                 ],
-                "name": "Sports Center / Gym"
+                "tags": {
+                    "place": "island"
+                },
+                "name": "Island"
             },
-            "leisure/stadium": {
-                "icon": "pitch",
+            "place/isolated_dwelling": {
                 "geometry": [
                     "point",
                     "area"
                 ],
                 "tags": {
-                    "leisure": "stadium"
+                    "place": "isolated_dwelling"
                 },
-                "fields": [
-                    "sport"
-                ],
-                "name": "Stadium"
+                "name": "Isolated Dwelling"
             },
-            "leisure/swimming_pool": {
+            "place/locality": {
+                "icon": "marker",
                 "fields": [
-                    "access_simple"
+                    "population"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "tags": {
-                    "leisure": "swimming_pool"
+                    "place": "locality"
                 },
-                "icon": "swimming",
-                "name": "Swimming Pool"
+                "name": "Locality"
             },
-            "leisure/track": {
-                "icon": "pitch",
+            "place/neighbourhood": {
+                "icon": "triangle-stroked",
                 "fields": [
-                    "surface",
-                    "lit",
-                    "width"
+                    "population"
                 ],
                 "geometry": [
                     "point",
-                    "line",
                     "area"
                 ],
                 "tags": {
-                    "leisure": "track"
+                    "place": "neighbourhood"
                 },
-                "name": "Race Track"
-            },
-            "line": {
-                "name": "Line",
-                "tags": {},
-                "geometry": [
-                    "line"
+                "terms": [
+                    "neighbourhood"
                 ],
-                "matchScore": 0.1
+                "name": "Neighborhood"
             },
-            "man_made": {
+            "place/suburb": {
+                "icon": "triangle-stroked",
                 "fields": [
-                    "man_made"
+                    "population"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
-                    "line",
                     "area"
                 ],
                 "tags": {
-                    "man_made": "*"
+                    "place": "suburb"
                 },
-                "name": "Man Made"
+                "terms": [
+                    "Boro",
+                    "Quarter"
+                ],
+                "name": "Borough"
             },
-            "man_made/breakwater": {
+            "place/town": {
+                "icon": "town",
+                "fields": [
+                    "population"
+                ],
                 "geometry": [
-                    "line",
+                    "point",
                     "area"
                 ],
                 "tags": {
-                    "man_made": "breakwater"
+                    "place": "town"
                 },
-                "name": "Breakwater"
+                "name": "Town"
             },
-            "man_made/cutline": {
-                "geometry": [
-                    "line"
+            "place/village": {
+                "icon": "village",
+                "fields": [
+                    "population"
                 ],
-                "tags": {
-                    "man_made": "cutline"
-                },
-                "name": "Cut line"
-            },
-            "man_made/embankment": {
                 "geometry": [
-                    "line"
+                    "point",
+                    "area"
                 ],
                 "tags": {
-                    "man_made": "embankment"
+                    "place": "village"
                 },
-                "name": "Embankment",
-                "searchable": false
+                "name": "Village"
             },
-            "man_made/flagpole": {
+            "point": {
+                "name": "Point",
+                "tags": {},
                 "geometry": [
                     "point"
                 ],
-                "tags": {
-                    "man_made": "flagpole"
-                },
-                "name": "Flagpole",
-                "icon": "embassy"
+                "matchScore": 0.1
             },
-            "man_made/lighthouse": {
+            "power": {
                 "geometry": [
                     "point",
+                    "vertex",
+                    "line",
                     "area"
                 ],
                 "tags": {
-                    "man_made": "lighthouse"
+                    "power": "*"
                 },
-                "name": "Lighthouse",
-                "icon": "lighthouse"
+                "fields": [
+                    "power"
+                ],
+                "name": "Power"
             },
-            "man_made/observation": {
+            "power/generator": {
+                "fields": [
+                    "operator",
+                    "generator/source",
+                    "generator/method",
+                    "generator/type"
+                ],
                 "geometry": [
                     "point",
+                    "vertex",
                     "area"
                 ],
-                "terms": [
-                    "lookout tower",
-                    "fire tower"
-                ],
                 "tags": {
-                    "man_made": "tower",
-                    "tower:type": "observation"
+                    "power": "generator"
                 },
-                "name": "Observation Tower"
+                "name": "Power Generator"
             },
-            "man_made/pier": {
+            "power/line": {
                 "geometry": [
-                    "line",
-                    "area"
+                    "line"
                 ],
                 "tags": {
-                    "man_made": "pier"
+                    "power": "line"
                 },
-                "name": "Pier"
+                "name": "Power Line",
+                "icon": "power-line"
             },
-            "man_made/pipeline": {
+            "power/minor_line": {
                 "geometry": [
                     "line"
                 ],
                 "tags": {
-                    "man_made": "pipeline"
+                    "power": "minor_line"
                 },
-                "fields": [
-                    "location",
-                    "operator"
-                ],
-                "name": "Pipeline",
-                "icon": "pipeline"
+                "name": "Minor Power Line",
+                "icon": "power-line"
             },
-            "man_made/survey_point": {
-                "icon": "monument",
+            "power/pole": {
                 "geometry": [
-                    "point",
                     "vertex"
                 ],
                 "tags": {
-                    "man_made": "survey_point"
+                    "power": "pole"
                 },
-                "fields": [
-                    "ref"
-                ],
-                "name": "Survey Point"
+                "name": "Power Pole"
             },
-            "man_made/tower": {
-                "geometry": [
-                    "point",
-                    "area"
-                ],
-                "tags": {
-                    "man_made": "tower"
-                },
+            "power/sub_station": {
                 "fields": [
-                    "towertype"
+                    "operator",
+                    "building"
                 ],
-                "name": "Tower"
-            },
-            "man_made/wastewater_plant": {
-                "icon": "water",
                 "geometry": [
                     "point",
                     "area"
                 ],
                 "tags": {
-                    "man_made": "wastewater_plant"
+                    "power": "sub_station"
                 },
-                "name": "Wastewater Plant",
-                "terms": [
-                    "sewage works",
-                    "sewage treatment plant",
-                    "water treatment plant",
-                    "reclamation plant"
-                ]
+                "name": "Substation",
+                "searchable": false
             },
-            "man_made/water_tower": {
-                "icon": "water",
-                "geometry": [
-                    "point",
-                    "area"
+            "power/substation": {
+                "fields": [
+                    "operator",
+                    "building"
                 ],
-                "tags": {
-                    "man_made": "water_tower"
-                },
-                "name": "Water Tower"
-            },
-            "man_made/water_well": {
                 "geometry": [
                     "point",
                     "area"
                 ],
                 "tags": {
-                    "man_made": "water_well"
+                    "power": "substation"
                 },
-                "name": "Water well"
+                "name": "Substation"
             },
-            "man_made/water_works": {
-                "icon": "water",
+            "power/tower": {
                 "geometry": [
-                    "point",
-                    "area"
+                    "vertex"
                 ],
                 "tags": {
-                    "man_made": "water_works"
+                    "power": "tower"
                 },
-                "name": "Water Works"
+                "name": "High-Voltage Tower"
             },
-            "military/airfield": {
+            "power/transformer": {
                 "geometry": [
                     "point",
                     "vertex",
                     "area"
                 ],
                 "tags": {
-                    "military": "airfield"
+                    "power": "transformer"
                 },
-                "terms": [],
-                "name": "Airfield",
-                "icon": "airfield"
+                "name": "Transformer"
             },
-            "military/barracks": {
-                "geometry": [
-                    "point",
-                    "vertex",
-                    "area"
+            "public_transport/platform": {
+                "fields": [
+                    "ref",
+                    "operator",
+                    "network",
+                    "shelter"
                 ],
-                "tags": {
-                    "military": "barracks"
-                },
-                "terms": [],
-                "name": "Barracks"
-            },
-            "military/bunker": {
                 "geometry": [
                     "point",
                     "vertex",
+                    "line",
                     "area"
                 ],
                 "tags": {
-                    "military": "bunker"
+                    "public_transport": "platform"
                 },
-                "terms": [],
-                "name": "Bunker"
+                "name": "Platform"
             },
-            "military/range": {
+            "public_transport/stop_position": {
+                "icon": "bus",
+                "fields": [
+                    "ref",
+                    "operator",
+                    "network"
+                ],
                 "geometry": [
-                    "point",
-                    "vertex",
-                    "area"
+                    "vertex"
                 ],
                 "tags": {
-                    "military": "range"
+                    "public_transport": "stop_position"
                 },
-                "terms": [],
-                "name": "Military Range"
+                "name": "Stop Position"
             },
-            "natural": {
+            "railway": {
                 "fields": [
-                    "natural"
+                    "railway"
                 ],
                 "geometry": [
                     "point",
                     "vertex",
+                    "line",
                     "area"
                 ],
                 "tags": {
-                    "natural": "*"
+                    "railway": "*"
                 },
-                "name": "Natural"
+                "name": "Railway"
             },
-            "natural/bay": {
+            "railway/abandoned": {
+                "icon": "railway-abandoned",
                 "geometry": [
-                    "point",
-                    "area"
+                    "line"
                 ],
-                "terms": [],
                 "tags": {
-                    "natural": "bay"
+                    "railway": "abandoned"
                 },
-                "name": "Bay"
-            },
-            "natural/beach": {
                 "fields": [
-                    "surface"
-                ],
-                "geometry": [
-                    "point",
-                    "area"
+                    "structure"
                 ],
                 "terms": [],
-                "tags": {
-                    "natural": "beach"
-                },
-                "name": "Beach"
+                "name": "Abandoned Railway"
             },
-            "natural/cliff": {
+            "railway/disused": {
+                "icon": "railway-disused",
                 "geometry": [
-                    "point",
-                    "vertex",
-                    "line",
-                    "area"
+                    "line"
                 ],
-                "terms": [],
                 "tags": {
-                    "natural": "cliff"
+                    "railway": "disused"
                 },
-                "name": "Cliff"
+                "fields": [
+                    "structure"
+                ],
+                "terms": [],
+                "name": "Disused Railway"
             },
-            "natural/coastline": {
+            "railway/funicular": {
                 "geometry": [
                     "line"
                 ],
                 "terms": [
-                    "shore"
-                ],
-                "tags": {
-                    "natural": "coastline"
-                },
-                "name": "Coastline"
-            },
-            "natural/fell": {
-                "geometry": [
-                    "area"
+                    "venicular",
+                    "cliff railway",
+                    "cable car",
+                    "cable railway",
+                    "funicular railway"
                 ],
-                "terms": [],
-                "tags": {
-                    "natural": "fell"
-                },
-                "name": "Fell"
-            },
-            "natural/glacier": {
-                "geometry": [
-                    "area"
+                "fields": [
+                    "structure",
+                    "gauge"
                 ],
-                "terms": [],
                 "tags": {
-                    "natural": "glacier"
+                    "railway": "funicular"
                 },
-                "name": "Glacier"
+                "icon": "railway-rail",
+                "name": "Funicular"
             },
-            "natural/grassland": {
+            "railway/halt": {
+                "icon": "rail",
                 "geometry": [
                     "point",
-                    "area"
+                    "vertex"
                 ],
-                "terms": [],
                 "tags": {
-                    "natural": "grassland"
+                    "railway": "halt"
                 },
-                "name": "Grassland"
+                "name": "Railway Halt",
+                "terms": [
+                    "break",
+                    "interrupt",
+                    "rest",
+                    "wait",
+                    "interruption"
+                ]
             },
-            "natural/heath": {
+            "railway/level_crossing": {
+                "icon": "cross",
                 "geometry": [
-                    "area"
+                    "vertex"
                 ],
-                "terms": [],
                 "tags": {
-                    "natural": "heath"
+                    "railway": "level_crossing"
                 },
-                "name": "Heath"
-            },
-            "natural/peak": {
-                "icon": "triangle",
-                "fields": [
-                    "elevation"
+                "terms": [
+                    "crossing",
+                    "railroad crossing",
+                    "railway crossing",
+                    "grade crossing",
+                    "road through railroad",
+                    "train crossing"
                 ],
+                "name": "Level Crossing"
+            },
+            "railway/monorail": {
+                "icon": "railway-monorail",
                 "geometry": [
-                    "point",
-                    "vertex"
+                    "line"
                 ],
                 "tags": {
-                    "natural": "peak"
+                    "railway": "monorail"
                 },
-                "terms": [
-                    "acme",
-                    "aiguille",
-                    "alp",
-                    "climax",
-                    "crest",
-                    "crown",
-                    "hill",
-                    "mount",
-                    "mountain",
-                    "pinnacle",
-                    "summit",
-                    "tip",
-                    "top"
+                "fields": [
+                    "structure",
+                    "electrified"
                 ],
-                "name": "Peak"
+                "terms": [],
+                "name": "Monorail"
             },
-            "natural/scree": {
+            "railway/narrow_gauge": {
+                "icon": "railway-rail",
                 "geometry": [
-                    "area"
+                    "line"
                 ],
                 "tags": {
-                    "natural": "scree"
+                    "railway": "narrow_gauge"
                 },
+                "fields": [
+                    "structure",
+                    "gauge",
+                    "electrified"
+                ],
                 "terms": [
-                    "loose rocks"
+                    "narrow gauge railway",
+                    "narrow gauge railroad"
                 ],
-                "name": "Scree"
+                "name": "Narrow Gauge Rail"
             },
-            "natural/scrub": {
+            "railway/platform": {
                 "geometry": [
+                    "point",
+                    "vertex",
+                    "line",
                     "area"
                 ],
                 "tags": {
-                    "natural": "scrub"
+                    "railway": "platform"
                 },
-                "terms": [],
-                "name": "Scrub"
+                "name": "Railway Platform"
             },
-            "natural/spring": {
+            "railway/rail": {
+                "icon": "railway-rail",
                 "geometry": [
-                    "point",
-                    "vertex"
+                    "line"
                 ],
-                "terms": [],
                 "tags": {
-                    "natural": "spring"
+                    "railway": "rail"
                 },
-                "name": "Spring"
+                "fields": [
+                    "structure",
+                    "gauge",
+                    "electrified"
+                ],
+                "terms": [],
+                "name": "Rail"
             },
-            "natural/tree": {
+            "railway/station": {
+                "icon": "rail",
                 "fields": [
-                    "tree_type",
-                    "denotation"
+                    "operator",
+                    "address",
+                    "building_area"
                 ],
-                "icon": "park",
                 "geometry": [
                     "point",
-                    "vertex"
+                    "vertex",
+                    "area"
                 ],
-                "terms": [],
                 "tags": {
-                    "natural": "tree"
+                    "railway": "station"
                 },
-                "name": "Tree"
+                "terms": [
+                    "train station",
+                    "station"
+                ],
+                "name": "Railway Station"
             },
-            "natural/water": {
+            "railway/subway": {
+                "icon": "railway-subway",
                 "fields": [
-                    "water"
+                    "structure",
+                    "gauge",
+                    "electrified"
                 ],
                 "geometry": [
-                    "area"
+                    "line"
                 ],
                 "tags": {
-                    "natural": "water"
+                    "railway": "subway"
                 },
-                "icon": "water",
-                "name": "Water"
+                "terms": [],
+                "name": "Subway"
             },
-            "natural/water/lake": {
+            "railway/subway_entrance": {
+                "icon": "rail-metro",
                 "geometry": [
-                    "area"
+                    "point"
                 ],
                 "tags": {
-                    "natural": "water",
-                    "water": "lake"
+                    "railway": "subway_entrance"
                 },
-                "terms": [
-                    "lakelet",
-                    "loch",
-                    "mere"
-                ],
-                "icon": "water",
-                "name": "Lake"
+                "terms": [],
+                "name": "Subway Entrance"
             },
-            "natural/water/pond": {
+            "railway/tram": {
+                "icon": "railway-light-rail",
                 "geometry": [
-                    "area"
+                    "line"
                 ],
                 "tags": {
-                    "natural": "water",
-                    "water": "pond"
+                    "railway": "tram"
                 },
+                "fields": [
+                    "structure",
+                    "gauge",
+                    "electrified"
+                ],
                 "terms": [
-                    "lakelet",
-                    "millpond",
-                    "tarn",
-                    "pool",
-                    "mere"
+                    "streetcar"
                 ],
-                "icon": "water",
-                "name": "Pond"
+                "name": "Tram"
             },
-            "natural/water/reservoir": {
+            "relation": {
+                "name": "Relation",
+                "icon": "relation",
+                "tags": {},
                 "geometry": [
-                    "area"
+                    "relation"
                 ],
-                "tags": {
-                    "natural": "water",
-                    "water": "reservoir"
-                },
-                "icon": "water",
-                "name": "Reservoir"
-            },
-            "natural/wetland": {
-                "icon": "wetland",
                 "fields": [
-                    "wetland"
-                ],
-                "geometry": [
-                    "point",
-                    "area"
-                ],
-                "tags": {
-                    "natural": "wetland"
-                },
-                "terms": [],
-                "name": "Wetland"
+                    "relation"
+                ]
             },
-            "natural/wood": {
-                "fields": [
-                    "wood"
-                ],
-                "icon": "park2",
+            "route/ferry": {
+                "icon": "ferry",
                 "geometry": [
-                    "point",
-                    "area"
+                    "line"
                 ],
                 "tags": {
-                    "natural": "wood"
+                    "route": "ferry"
                 },
-                "terms": [],
-                "name": "Wood"
+                "name": "Ferry Route"
             },
-            "office": {
-                "icon": "commercial",
+            "shop": {
+                "icon": "shop",
                 "fields": [
-                    "office",
+                    "shop",
+                    "operator",
                     "address",
-                    "opening_hours",
-                    "smoking"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "tags": {
-                    "office": "*"
+                    "shop": "*"
                 },
                 "terms": [],
-                "name": "Office"
+                "name": "Shop"
             },
-            "office/accountant": {
-                "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": "accountant"
+                    "shop": "alcohol"
                 },
-                "terms": [],
-                "name": "Accountant"
+                "name": "Liquor Store"
             },
-            "office/administrative": {
-                "icon": "commercial",
+            "shop/anime": {
+                "icon": "shop",
                 "fields": [
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "tags": {
-                    "office": "administrative"
+                    "shop": "anime"
                 },
-                "terms": [],
-                "name": "Administrative Office"
+                "name": "Anime Shop"
             },
-            "office/architect": {
-                "icon": "commercial",
+            "shop/antiques": {
+                "icon": "shop",
                 "fields": [
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "tags": {
-                    "office": "architect"
+                    "shop": "antiques"
                 },
-                "terms": [],
-                "name": "Architect"
+                "name": "Antiques Shop"
             },
-            "office/company": {
-                "icon": "commercial",
+            "shop/art": {
+                "icon": "art-gallery",
                 "fields": [
+                    "operator",
                     "address",
-                    "opening_hours",
-                    "smoking"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "tags": {
-                    "office": "company"
+                    "shop": "art"
                 },
-                "terms": [],
-                "name": "Company Office"
+                "name": "Art Gallery"
             },
-            "office/educational_institution": {
-                "icon": "commercial",
+            "shop/baby_goods": {
+                "icon": "shop",
                 "fields": [
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "tags": {
-                    "office": "educational_institution"
+                    "shop": "baby_goods"
                 },
-                "terms": [],
-                "name": "Educational Institution"
+                "name": "Baby Goods Store"
             },
-            "office/employment_agency": {
-                "icon": "commercial",
+            "shop/bag": {
+                "icon": "shop",
                 "fields": [
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
+                "terms": [
+                    "handbag",
+                    "purse"
+                ],
                 "tags": {
-                    "office": "employment_agency"
+                    "shop": "bag"
                 },
-                "terms": [],
-                "name": "Employment Agency"
+                "name": "Bag/Luggage Store"
             },
-            "office/estate_agent": {
-                "icon": "commercial",
+            "shop/bakery": {
+                "icon": "bakery",
                 "fields": [
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "tags": {
-                    "office": "estate_agent"
+                    "shop": "bakery"
                 },
-                "terms": [],
-                "name": "Real Estate Office"
+                "name": "Bakery"
             },
-            "office/financial": {
-                "icon": "commercial",
+            "shop/bathroom_furnishing": {
+                "icon": "shop",
                 "fields": [
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "tags": {
-                    "office": "financial"
+                    "shop": "bathroom_furnishing"
                 },
-                "terms": [],
-                "name": "Financial Office"
+                "name": "Bathroom Furnishing Store"
             },
-            "office/government": {
-                "icon": "commercial",
+            "shop/beauty": {
+                "icon": "shop",
                 "fields": [
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
+                "terms": [
+                    "nail spa",
+                    "spa",
+                    "salon",
+                    "tanning"
+                ],
                 "tags": {
-                    "office": "government"
+                    "shop": "beauty"
                 },
-                "terms": [],
-                "name": "Government Office"
+                "name": "Beauty Shop"
             },
-            "office/insurance": {
-                "icon": "commercial",
+            "shop/bed": {
+                "icon": "lodging",
                 "fields": [
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "tags": {
-                    "office": "insurance"
+                    "shop": "bed"
                 },
-                "terms": [],
-                "name": "Insurance Office"
+                "name": "Bedding/Mattress Store"
             },
-            "office/it": {
-                "icon": "commercial",
+            "shop/beverages": {
+                "icon": "shop",
                 "fields": [
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "tags": {
-                    "office": "it"
+                    "shop": "beverages"
                 },
-                "terms": [],
-                "name": "IT Office"
+                "name": "Beverage Store"
             },
-            "office/lawyer": {
-                "icon": "commercial",
+            "shop/bicycle": {
+                "icon": "bicycle",
                 "fields": [
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "tags": {
-                    "office": "lawyer"
+                    "shop": "bicycle"
                 },
-                "terms": [],
-                "name": "Law Office"
+                "name": "Bicycle Shop"
             },
-            "office/newspaper": {
-                "icon": "commercial",
+            "shop/bookmaker": {
+                "icon": "shop",
                 "fields": [
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "tags": {
-                    "office": "newspaper"
+                    "shop": "bookmaker"
                 },
-                "terms": [],
-                "name": "Newspaper"
+                "name": "Bookmaker"
             },
-            "office/ngo": {
-                "icon": "commercial",
+            "shop/books": {
+                "icon": "shop",
                 "fields": [
+                    "operator",
                     "address",
-                    "opening_hours",
-                    "smoking"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "tags": {
-                    "office": "ngo"
+                    "shop": "books"
                 },
-                "terms": [],
-                "name": "NGO Office"
+                "name": "Book Store"
             },
-            "office/physician": {
-                "icon": "commercial",
+            "shop/boutique": {
+                "icon": "shop",
                 "fields": [
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "tags": {
-                    "office": "physician"
+                    "shop": "boutique"
                 },
-                "terms": [],
-                "name": "Physician"
+                "name": "Boutique"
             },
-            "office/political_party": {
-                "icon": "commercial",
+            "shop/butcher": {
+                "icon": "slaughterhouse",
                 "fields": [
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
+                "terms": [
+                    "meat"
+                ],
                 "tags": {
-                    "office": "political_party"
+                    "shop": "butcher"
                 },
-                "terms": [],
-                "name": "Political Party"
+                "name": "Butcher"
             },
-            "office/research": {
-                "icon": "commercial",
+            "shop/candles": {
+                "icon": "shop",
                 "fields": [
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "tags": {
-                    "office": "research"
+                    "shop": "candles"
                 },
-                "terms": [],
-                "name": "Research Office"
+                "name": "Candle Shop"
             },
-            "office/telecommunication": {
-                "icon": "commercial",
+            "shop/car": {
+                "icon": "car",
                 "fields": [
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
+                "terms": [
+                    "auto"
+                ],
                 "tags": {
-                    "office": "telecommunication"
+                    "shop": "car"
                 },
-                "terms": [],
-                "name": "Telecom Office"
+                "name": "Car Dealership"
             },
-            "office/therapist": {
-                "icon": "commercial",
+            "shop/car_parts": {
+                "icon": "car",
                 "fields": [
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
+                "terms": [
+                    "auto"
+                ],
                 "tags": {
-                    "office": "therapist"
+                    "shop": "car_parts"
                 },
-                "terms": [],
-                "name": "Therapist"
+                "name": "Car Parts Store"
             },
-            "office/travel_agent": {
-                "icon": "suitcase",
+            "shop/car_repair": {
+                "icon": "car",
                 "fields": [
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
+                "terms": [
+                    "auto"
+                ],
                 "tags": {
-                    "office": "travel_agent"
+                    "shop": "car_repair"
                 },
-                "terms": [],
-                "name": "Travel Agency",
-                "searchable": false
+                "name": "Car Repair Shop"
             },
-            "piste": {
-                "icon": "skiing",
+            "shop/carpet": {
+                "icon": "shop",
                 "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"
+                    "rug"
                 ],
                 "tags": {
-                    "piste:type": "*"
+                    "shop": "carpet"
                 },
-                "name": "Piste/Ski Trail"
+                "name": "Carpet Store"
             },
-            "place": {
+            "shop/cheese": {
+                "icon": "shop",
                 "fields": [
-                    "place"
+                    "operator",
+                    "address",
+                    "building_area",
+                    "opening_hours"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "tags": {
-                    "place": "*"
+                    "shop": "cheese"
                 },
-                "name": "Place"
+                "name": "Cheese Store"
             },
-            "place/city": {
-                "icon": "city",
+            "shop/chemist": {
+                "icon": "chemist",
                 "fields": [
-                    "population"
+                    "operator",
+                    "address",
+                    "building_area",
+                    "opening_hours"
                 ],
                 "geometry": [
                     "point",
                     "area"
                 ],
                 "tags": {
-                    "place": "city"
+                    "shop": "chemist"
                 },
-                "name": "City"
+                "name": "Chemist"
             },
-            "place/hamlet": {
-                "icon": "triangle-stroked",
+            "shop/chocolate": {
+                "icon": "shop",
                 "fields": [
-                    "population"
+                    "operator",
+                    "address",
+                    "building_area",
+                    "opening_hours"
                 ],
                 "geometry": [
                     "point",
                     "area"
                 ],
                 "tags": {
-                    "place": "hamlet"
+                    "shop": "chocolate"
                 },
-                "name": "Hamlet"
+                "name": "Chocolate Store"
             },
-            "place/island": {
-                "geometry": [
-                    "point",
-                    "area"
-                ],
-                "terms": [
-                    "archipelago",
-                    "atoll",
-                    "bar",
-                    "cay",
-                    "isle",
-                    "islet",
-                    "key",
-                    "reef"
+            "shop/clothes": {
+                "icon": "clothing-store",
+                "fields": [
+                    "operator",
+                    "address",
+                    "building_area",
+                    "opening_hours"
                 ],
-                "tags": {
-                    "place": "island"
-                },
-                "name": "Island"
-            },
-            "place/isolated_dwelling": {
                 "geometry": [
                     "point",
                     "area"
                 ],
                 "tags": {
-                    "place": "isolated_dwelling"
+                    "shop": "clothes"
                 },
-                "name": "Isolated Dwelling"
+                "name": "Clothing Store"
             },
-            "place/locality": {
-                "icon": "marker",
+            "shop/computer": {
+                "icon": "shop",
                 "fields": [
-                    "population"
+                    "operator",
+                    "address",
+                    "building_area",
+                    "opening_hours"
                 ],
                 "geometry": [
                     "point",
                     "area"
                 ],
                 "tags": {
-                    "place": "locality"
+                    "shop": "computer"
                 },
-                "name": "Locality"
+                "name": "Computer Store"
             },
-            "place/neighbourhood": {
-                "icon": "triangle-stroked",
+            "shop/confectionery": {
+                "icon": "shop",
                 "fields": [
-                    "population"
+                    "operator",
+                    "address",
+                    "building_area",
+                    "opening_hours"
                 ],
                 "geometry": [
                     "point",
                     "area"
                 ],
                 "tags": {
-                    "place": "neighbourhood"
+                    "shop": "confectionery"
                 },
-                "terms": [
-                    "neighbourhood"
-                ],
-                "name": "Neighborhood"
+                "name": "Candy Store"
             },
-            "place/suburb": {
-                "icon": "triangle-stroked",
+            "shop/convenience": {
+                "icon": "shop",
                 "fields": [
-                    "population"
+                    "operator",
+                    "address",
+                    "building_area",
+                    "opening_hours"
                 ],
                 "geometry": [
                     "point",
                     "area"
                 ],
                 "tags": {
-                    "place": "suburb"
+                    "shop": "convenience"
                 },
-                "terms": [
-                    "Boro",
-                    "Quarter"
-                ],
-                "name": "Borough"
+                "name": "Convenience Store"
             },
-            "place/town": {
-                "icon": "town",
+            "shop/copyshop": {
+                "icon": "shop",
                 "fields": [
-                    "population"
+                    "operator",
+                    "address",
+                    "building_area",
+                    "opening_hours"
                 ],
                 "geometry": [
                     "point",
                     "area"
                 ],
                 "tags": {
-                    "place": "town"
+                    "shop": "copyshop"
                 },
-                "name": "Town"
+                "name": "Copy Store"
             },
-            "place/village": {
-                "icon": "village",
+            "shop/cosmetics": {
+                "icon": "shop",
                 "fields": [
-                    "population"
+                    "operator",
+                    "address",
+                    "building_area",
+                    "opening_hours"
                 ],
                 "geometry": [
                     "point",
                     "area"
                 ],
                 "tags": {
-                    "place": "village"
+                    "shop": "cosmetics"
                 },
-                "name": "Village"
+                "name": "Cosmetics Store"
             },
-            "point": {
-                "name": "Point",
-                "tags": {},
-                "geometry": [
-                    "point"
+            "shop/craft": {
+                "icon": "art-gallery",
+                "fields": [
+                    "operator",
+                    "address",
+                    "building_area",
+                    "opening_hours"
                 ],
-                "matchScore": 0.1
-            },
-            "power": {
                 "geometry": [
                     "point",
-                    "vertex",
-                    "line",
                     "area"
                 ],
                 "tags": {
-                    "power": "*"
+                    "shop": "craft"
                 },
+                "name": "Arts and Crafts Store"
+            },
+            "shop/curtain": {
+                "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"
+                "terms": [
+                    "drape*",
+                    "window"
                 ],
                 "tags": {
-                    "power": "line"
+                    "shop": "curtain"
                 },
-                "name": "Power Line",
-                "icon": "power-line"
+                "name": "Curtain Store"
             },
-            "power/minor_line": {
-                "geometry": [
-                    "line"
+            "shop/dairy": {
+                "icon": "shop",
+                "fields": [
+                    "operator",
+                    "address",
+                    "building_area",
+                    "opening_hours"
                 ],
-                "tags": {
-                    "power": "minor_line"
-                },
-                "name": "Minor Power Line",
-                "icon": "power-line"
-            },
-            "power/pole": {
                 "geometry": [
-                    "vertex"
+                    "point",
+                    "area"
+                ],
+                "terms": [
+                    "milk",
+                    "egg",
+                    "cheese"
                 ],
                 "tags": {
-                    "power": "pole"
+                    "shop": "dairy"
                 },
-                "name": "Power Pole"
+                "name": "Dairy Store"
             },
-            "power/sub_station": {
+            "shop/deli": {
+                "icon": "restaurant",
                 "fields": [
                     "operator",
-                    "building"
+                    "address",
+                    "building_area",
+                    "opening_hours"
                 ],
                 "geometry": [
                     "point",
                     "area"
                 ],
-                "tags": {
-                    "power": "sub_station"
-                },
-                "name": "Substation"
-            },
-            "power/tower": {
-                "geometry": [
-                    "vertex"
+                "terms": [
+                    "lunch",
+                    "meat",
+                    "sandwich"
                 ],
                 "tags": {
-                    "power": "tower"
+                    "shop": "deli"
                 },
-                "name": "High-Voltage Tower"
+                "name": "Deli"
             },
-            "power/transformer": {
+            "shop/department_store": {
+                "icon": "shop",
+                "fields": [
+                    "operator",
+                    "address",
+                    "building_area",
+                    "opening_hours"
+                ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "tags": {
-                    "power": "transformer"
+                    "shop": "department_store"
                 },
-                "name": "Transformer"
+                "name": "Department Store"
             },
-            "public_transport/platform": {
+            "shop/doityourself": {
+                "icon": "shop",
                 "fields": [
-                    "ref",
                     "operator",
-                    "network",
-                    "shelter"
+                    "address",
+                    "building_area",
+                    "opening_hours"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
-                    "line",
                     "area"
                 ],
                 "tags": {
-                    "public_transport": "platform"
+                    "shop": "doityourself"
                 },
-                "name": "Platform"
+                "name": "DIY Store"
             },
-            "public_transport/stop_position": {
-                "icon": "bus",
+            "shop/dry_cleaning": {
+                "icon": "shop",
                 "fields": [
-                    "ref",
                     "operator",
-                    "network"
+                    "address",
+                    "building_area",
+                    "opening_hours"
                 ],
                 "geometry": [
-                    "vertex"
+                    "point",
+                    "area"
                 ],
                 "tags": {
-                    "public_transport": "stop_position"
+                    "shop": "dry_cleaning"
                 },
-                "name": "Stop Position"
+                "name": "Dry Cleaner"
             },
-            "railway": {
+            "shop/electronics": {
+                "icon": "shop",
                 "fields": [
-                    "railway"
+                    "operator",
+                    "address",
+                    "building_area",
+                    "opening_hours"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
-                    "line",
                     "area"
                 ],
-                "tags": {
-                    "railway": "*"
-                },
-                "name": "Railway"
-            },
-            "railway/abandoned": {
-                "icon": "railway-abandoned",
-                "geometry": [
-                    "line"
+                "terms": [
+                    "appliance",
+                    "audio",
+                    "computer",
+                    "tv"
                 ],
                 "tags": {
-                    "railway": "abandoned"
+                    "shop": "electronics"
                 },
-                "fields": [
-                    "structure"
-                ],
-                "terms": [],
-                "name": "Abandoned Railway"
+                "name": "Electronics Store"
             },
-            "railway/disused": {
-                "icon": "railway-disused",
-                "geometry": [
-                    "line"
-                ],
-                "tags": {
-                    "railway": "disused"
-                },
+            "shop/erotic": {
+                "icon": "shop",
                 "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"
+                    "sex",
+                    "porn"
                 ],
                 "tags": {
-                    "railway": "funicular"
+                    "shop": "erotic"
                 },
-                "icon": "railway-rail",
-                "name": "Funicular"
+                "name": "Erotic Store"
             },
-            "railway/halt": {
-                "icon": "rail",
+            "shop/fabric": {
+                "icon": "shop",
+                "fields": [
+                    "operator",
+                    "address",
+                    "building_area",
+                    "opening_hours"
+                ],
                 "geometry": [
                     "point",
-                    "vertex"
+                    "area"
                 ],
-                "tags": {
-                    "railway": "halt"
-                },
-                "name": "Railway Halt",
                 "terms": [
-                    "break",
-                    "interrupt",
-                    "rest",
-                    "wait",
-                    "interruption"
-                ]
-            },
-            "railway/level_crossing": {
-                "icon": "cross",
-                "geometry": [
-                    "vertex"
+                    "sew"
                 ],
                 "tags": {
-                    "railway": "level_crossing"
+                    "shop": "fabric"
                 },
-                "terms": [
-                    "crossing",
-                    "railroad crossing",
-                    "railway crossing",
-                    "grade crossing",
-                    "road through railroad",
-                    "train crossing"
-                ],
-                "name": "Level Crossing"
+                "name": "Fabric Store"
             },
-            "railway/monorail": {
-                "icon": "railway-monorail",
-                "geometry": [
-                    "line"
-                ],
-                "tags": {
-                    "railway": "monorail"
-                },
+            "shop/farm": {
+                "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": [
+                    "farm shop",
+                    "farm stand"
                 ],
                 "tags": {
-                    "railway": "narrow_gauge"
+                    "shop": "farm"
                 },
+                "name": "Produce Stand"
+            },
+            "shop/fashion": {
+                "icon": "shop",
                 "fields": [
-                    "structure",
-                    "gauge",
-                    "electrified"
-                ],
-                "terms": [
-                    "narrow gauge railway",
-                    "narrow gauge railroad"
+                    "operator",
+                    "address",
+                    "building_area",
+                    "opening_hours"
                 ],
-                "name": "Narrow Gauge Rail"
-            },
-            "railway/platform": {
                 "geometry": [
                     "point",
-                    "vertex",
-                    "line",
                     "area"
                 ],
                 "tags": {
-                    "railway": "platform"
-                },
-                "name": "Railway Platform"
-            },
-            "railway/rail": {
-                "icon": "railway-rail",
-                "geometry": [
-                    "line"
-                ],
-                "tags": {
-                    "railway": "rail"
+                    "shop": "fashion"
                 },
-                "fields": [
-                    "structure",
-                    "gauge",
-                    "electrified"
-                ],
-                "terms": [],
-                "name": "Rail"
+                "name": "Fashion Store"
             },
-            "railway/station": {
-                "icon": "rail",
+            "shop/fishmonger": {
+                "icon": "shop",
                 "fields": [
-                    "building_area"
+                    "operator",
+                    "address",
+                    "building_area",
+                    "opening_hours"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "tags": {
-                    "railway": "station"
+                    "shop": "fishmonger"
                 },
-                "terms": [
-                    "train station",
-                    "station"
-                ],
-                "name": "Railway Station"
+                "name": "Fishmonger",
+                "searchable": false
             },
-            "railway/subway": {
-                "icon": "railway-subway",
+            "shop/florist": {
+                "icon": "shop",
                 "fields": [
-                    "structure",
-                    "gauge",
-                    "electrified"
+                    "operator",
+                    "address",
+                    "building_area",
+                    "opening_hours"
                 ],
                 "geometry": [
-                    "line"
+                    "point",
+                    "area"
                 ],
-                "tags": {
-                    "railway": "subway"
-                },
-                "terms": [],
-                "name": "Subway"
-            },
-            "railway/subway_entrance": {
-                "icon": "rail-metro",
-                "geometry": [
-                    "point"
+                "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"
+                    "area"
+                ],
+                "terms": [
+                    "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"
-                ],
-                "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"
+                    "opening_hours"
                 ],
-                "tags": {
-                    "shop": "supermarket"
-                },
-                "name": "Supermarket"
-            },
-            "shop/tailor": {
-                "name": "Tailor",
                 "geometry": [
                     "point",
                     "area"
                 ],
-                "terms": [
-                    "tailor",
-                    "clothes"
-                ],
                 "tags": {
-                    "shop": "tailor"
+                    "shop": "vacuum_cleaner"
                 },
-                "icon": "clothing-store",
-                "fields": [
-                    "building_area",
-                    "address",
-                    "operator",
-                    "opening_hours"
-                ]
+                "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": {
@@ -71739,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": {
@@ -71752,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",
@@ -71792,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"
                 },
@@ -71828,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": {
@@ -71847,11 +75401,11 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "fields": [
                     "operator",
                     "address",
+                    "building_area",
                     "smoking"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "tags": {
@@ -71859,7 +75413,6 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 },
                 "terms": [
                     "B&B",
-                    "Bed & Breakfast",
                     "Bed and Breakfast"
                 ],
                 "name": "Guest House"
@@ -71868,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": {
@@ -71886,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"
                 },
@@ -71904,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",
@@ -71922,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": {
@@ -71940,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"
@@ -71980,7 +75521,9 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                     "vertex",
                     "area"
                 ],
-                "terms": [],
+                "terms": [
+                    "camp"
+                ],
                 "tags": {
                     "tourism": "picnic_site"
                 },
@@ -71989,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": {
@@ -72015,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": {
@@ -72027,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"
@@ -72328,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": {
@@ -72552,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
             },
@@ -72571,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
             },
@@ -72590,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
             },
@@ -72609,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
             },
@@ -72628,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
             },
@@ -72647,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
             },
@@ -72666,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
             },
@@ -72685,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
             },
@@ -72704,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
             },
@@ -72723,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
             },
@@ -72742,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
             },
@@ -72761,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
             },
@@ -72780,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
             },
@@ -72799,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
             },
@@ -72818,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
             },
@@ -72837,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
             },
@@ -72856,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
             },
@@ -72875,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
             },
@@ -72894,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
             },
@@ -72913,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
             },
@@ -72932,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
             },
@@ -72951,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
             },
@@ -72970,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
             },
@@ -72989,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
             },
@@ -73008,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
             },
@@ -73027,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
             },
@@ -73046,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
             },
@@ -73065,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
             },
@@ -73084,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
             },
@@ -73103,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
             },
@@ -73122,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
             },
@@ -73141,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
             },
@@ -73160,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
             },
@@ -73179,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
             },
@@ -73198,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
             },
@@ -73217,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
             },
@@ -73236,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
             },
@@ -73255,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
             },
@@ -73274,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
             },
@@ -73293,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
             },
@@ -73312,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
             },
@@ -73331,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
             },
@@ -73350,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
             },
@@ -73369,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
             },
@@ -73388,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
             },
@@ -73407,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
             },
@@ -73426,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
             },
@@ -73445,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
             },
@@ -73464,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
             },
@@ -73483,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
             },
@@ -73502,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
             },
@@ -73521,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
             },
@@ -73540,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
             },
@@ -73559,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
             },
@@ -73578,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
             },
@@ -73597,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
             },
@@ -73616,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
             },
@@ -73635,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
             },
@@ -73654,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
             },
@@ -73673,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
             },
@@ -73692,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
             },
@@ -73711,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
             },
@@ -73730,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
             },
@@ -73749,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
             },
@@ -73768,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
             },
@@ -73787,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
             },
@@ -73806,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
             },
@@ -73825,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
             },
@@ -73844,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
             },
@@ -73863,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
             },
@@ -73882,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
             },
@@ -73901,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
             },
@@ -73920,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
             },
@@ -73939,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
             },
@@ -73958,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
             },
@@ -73977,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
             },
@@ -73996,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
             },
@@ -74015,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
             },
@@ -74034,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
             },
@@ -74053,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
             },
@@ -74072,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
             },
@@ -74091,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
             },
@@ -74110,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
             },
@@ -74129,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
             },
@@ -74148,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
             },
@@ -74167,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
             },
@@ -74186,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
             },
@@ -74205,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
             },
@@ -74224,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
             },
@@ -74243,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
             },
@@ -74262,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
             },
@@ -74281,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
             },
@@ -74300,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
             },
@@ -74319,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
             },
@@ -74338,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
             },
@@ -74357,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
             },
@@ -74376,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
             },
@@ -74395,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
             },
@@ -74414,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
             },
@@ -74433,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
             },
@@ -74452,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
             },
@@ -74471,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
             },
@@ -74490,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
             },
@@ -74509,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
             },
@@ -74528,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
             },
@@ -74547,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
             },
@@ -74566,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
             },
@@ -74585,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
             },
@@ -74604,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
             },
@@ -74623,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
             },
@@ -74642,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
             },
@@ -74661,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
             },
@@ -74680,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
             },
@@ -74699,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
             },
@@ -74718,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
             },
@@ -74737,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
             },
@@ -74756,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
             },
@@ -74775,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
             },
@@ -74794,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
             },
@@ -74813,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
             },
@@ -74832,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
             },
@@ -74851,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
             },
@@ -74870,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
             },
@@ -74889,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
             },
@@ -74908,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
             },
@@ -74927,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
             },
@@ -74946,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
             },
@@ -74965,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
             },
@@ -74984,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
             },
@@ -75003,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
             },
@@ -75022,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
             },
@@ -75041,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
             },
@@ -75060,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
             },
@@ -75079,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
             },
@@ -75098,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
             },
@@ -75117,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
             },
@@ -75136,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
             },
@@ -75155,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
             },
@@ -75174,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
             },
@@ -75193,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
             },
@@ -75213,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
             },
@@ -75232,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
             },
@@ -75251,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
             },
@@ -75270,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
             },
@@ -75289,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
             },
@@ -75308,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
             },
@@ -75327,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
             },
@@ -75346,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
             },
@@ -75365,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
             },
@@ -75384,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
             },
@@ -75403,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
             },
@@ -75422,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
             },
@@ -75441,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
             },
@@ -75460,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
             },
@@ -75479,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
             },
@@ -75498,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
             },
@@ -75517,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
             },
@@ -75536,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
             },
@@ -75555,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
             },
@@ -75574,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
             },
@@ -75593,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
             },
@@ -75612,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
             },
@@ -75631,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
             },
@@ -75650,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
             },
@@ -75669,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
             },
@@ -75688,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
             },
@@ -75707,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
             },
@@ -75726,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
             },
@@ -75745,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
             },
@@ -75764,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
             },
@@ -75783,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"
                 ],
@@ -75803,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"
                 ],
@@ -75823,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"
                 ],
@@ -75843,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"
                 ],
@@ -75863,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"
                 ],
@@ -75883,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"
                 ],
@@ -75903,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"
                 ],
@@ -75923,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"
                 ],
@@ -75943,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"
                 ],
@@ -75963,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"
                 ],
@@ -75983,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"
                 ],
@@ -76003,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"
                 ],
@@ -76023,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"
                 ],
@@ -76043,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"
                 ],
@@ -76063,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"
                 ],
@@ -76083,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"
                 ],
@@ -76103,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"
                 ],
@@ -76123,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"
                 ],
@@ -76143,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"
                 ],
@@ -76163,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"
                 ],
@@ -76183,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"
                 ],
@@ -76203,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"
                 ],
@@ -76223,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"
                 ],
@@ -76243,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"
                 ],
@@ -76263,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"
                 ],
@@ -76283,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"
                 ],
@@ -76303,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"
                 ],
@@ -76323,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"
                 ],
@@ -76343,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"
                 ],
@@ -76363,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"
                 ],
@@ -76383,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"
                 ],
@@ -76403,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"
                 ],
@@ -76423,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"
                 ],
@@ -76443,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"
                 ],
@@ -76463,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"
                 ],
@@ -76483,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"
                 ],
@@ -76503,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"
                 ],
@@ -76523,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"
                 ],
@@ -76543,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"
                 ],
@@ -76563,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"
                 ],
@@ -76583,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"
                 ],
@@ -76603,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"
                 ],
@@ -76623,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"
                 ],
@@ -76643,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"
                 ],
@@ -76663,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"
                 ],
@@ -76683,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"
                 ],
@@ -76705,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"
                 ],
@@ -76727,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"
                 ],
@@ -76749,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"
                 ],
@@ -76770,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"
                 ],
@@ -76792,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"
                 ],
@@ -76813,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"
                 ],
@@ -76835,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"
                 ],
@@ -76857,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"
                 ],
@@ -76878,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"
                 ],
@@ -76899,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"
                 ],
@@ -76920,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"
                 ],
@@ -76941,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"
                 ],
@@ -76963,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"
                 ],
@@ -76984,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"
                 ],
@@ -77005,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"
                 ],
@@ -77027,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"
                 ],
@@ -77048,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"
                 ],
@@ -77069,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"
                 ],
@@ -77090,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"
                 ],
@@ -77111,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"
                 ],
@@ -77132,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"
                 ],
@@ -77153,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"
                 ],
@@ -77174,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"
                 ],
@@ -77195,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"
                 ],
@@ -77216,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"
                 ],
@@ -77238,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"
                 ],
@@ -77259,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"
                 ],
@@ -77280,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"
                 ],
@@ -77301,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"
                 ],
@@ -77322,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"
                 ],
@@ -77343,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"
                 ],
@@ -77365,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"
                 ],
@@ -77387,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"
                 ],
@@ -77408,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"
                 ],
@@ -77430,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"
                 ],
@@ -77451,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"
                 ],
@@ -77472,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"
                 ],
@@ -77494,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"
                 ],
@@ -77515,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"
                 ],
@@ -77536,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"
                 ],
@@ -77557,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"
                 ],
@@ -77579,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"
                 ],
@@ -77600,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"
                 ],
@@ -77621,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"
                 ],
@@ -77643,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"
                 ],
@@ -77666,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"
                 ],
@@ -77687,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"
                 ],
@@ -77708,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"
                 ],
@@ -77729,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"
                 ],
@@ -77750,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"
                 ],
@@ -77771,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"
                 ],
@@ -77794,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"
                 ],
@@ -77815,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"
                 ],
@@ -77836,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"
                 ],
@@ -77858,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"
                 ],
@@ -77879,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"
                 ],
@@ -77900,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"
                 ],
@@ -77921,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"
                 ],
@@ -77942,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"
                 ],
@@ -77963,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"
                 ],
@@ -77985,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"
                 ],
@@ -78006,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"
                 ],
@@ -78027,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"
                 ],
@@ -78048,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"
                 ],
@@ -78069,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"
                 ],
@@ -78090,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"
                 ],
@@ -78111,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"
                 ],
@@ -78132,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"
                 ],
@@ -78154,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"
                 ],
@@ -78175,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"
                 ],
@@ -78196,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"
                 ],
@@ -78217,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"
                 ],
@@ -78239,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"
                 ],
@@ -78261,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"
                 ],
@@ -78282,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"
                 ],
@@ -78303,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"
                 ],
@@ -78324,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"
@@ -78346,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"
@@ -78368,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"
@@ -78390,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"
@@ -78412,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"
@@ -78434,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"
@@ -78456,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"
@@ -78478,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"
@@ -78500,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"
@@ -78522,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"
@@ -78544,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"
@@ -78566,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"
@@ -78588,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"
@@ -78610,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"
@@ -78632,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"
@@ -78654,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"
@@ -78676,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"
@@ -78698,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"
@@ -78720,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"
@@ -78742,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"
@@ -78764,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"
@@ -78786,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"
@@ -78808,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"
@@ -78830,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"
@@ -78852,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"
@@ -78874,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"
@@ -78896,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"
@@ -78918,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"
@@ -78940,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"
@@ -78962,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"
@@ -78984,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"
@@ -79006,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"
@@ -79028,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"
@@ -79050,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"
@@ -79072,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"
@@ -79094,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"
@@ -79116,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"
@@ -79138,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"
@@ -79160,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"
@@ -79182,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"
@@ -79204,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"
@@ -79226,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"
@@ -79248,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"
@@ -79270,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"
@@ -79292,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"
@@ -79314,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"
@@ -79336,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"
@@ -79358,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"
@@ -79380,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"
@@ -79402,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"
@@ -79424,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"
@@ -79446,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"
@@ -79468,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"
@@ -79490,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"
@@ -79512,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"
@@ -79534,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"
@@ -79556,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"
@@ -79578,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"
@@ -79600,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"
@@ -79622,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"
@@ -79644,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"
@@ -79666,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"
@@ -79688,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"
@@ -79710,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"
@@ -79732,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"
@@ -79754,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"
@@ -79776,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"
@@ -79798,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"
@@ -79820,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"
@@ -79842,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"
@@ -79864,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"
@@ -79886,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"
@@ -79908,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"
@@ -79930,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"
@@ -79952,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"
@@ -79974,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"
@@ -79996,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"
@@ -80018,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"
@@ -80040,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"
@@ -80062,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"
@@ -80084,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"
@@ -80106,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"
@@ -80128,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"
@@ -80150,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"
@@ -80172,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"
@@ -80194,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"
@@ -80216,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"
@@ -80238,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"
@@ -80260,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"
@@ -80282,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"
@@ -80304,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"
@@ -80326,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"
@@ -80348,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"
@@ -80370,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"
@@ -80392,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"
@@ -80414,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"
@@ -80436,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"
@@ -80458,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"
@@ -80480,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"
@@ -80502,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"
@@ -80524,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"
@@ -80546,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"
@@ -80568,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"
@@ -80591,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"
@@ -80613,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"
@@ -80635,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"
@@ -80657,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"
@@ -80679,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"
@@ -80701,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"
@@ -80723,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"
@@ -80745,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"
@@ -80767,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"
@@ -80789,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"
@@ -80811,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"
@@ -80833,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"
@@ -80855,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"
@@ -80877,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"
@@ -80899,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"
@@ -80921,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"
@@ -80943,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"
@@ -80965,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"
@@ -80987,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"
@@ -81009,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"
@@ -81031,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"
@@ -81053,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"
@@ -81075,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
@@ -81095,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
@@ -81115,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
@@ -81135,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
@@ -81155,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
@@ -81175,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
@@ -81195,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
@@ -81215,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
@@ -81235,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
@@ -81255,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
@@ -81275,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
@@ -81295,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
@@ -81315,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
@@ -81335,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
@@ -81355,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
@@ -81375,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
@@ -81395,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
@@ -81415,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
@@ -81435,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
@@ -81455,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
@@ -81475,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
@@ -81495,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
@@ -81515,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
@@ -81535,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
@@ -81555,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
@@ -81575,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
@@ -81595,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
@@ -81615,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
@@ -81635,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
@@ -81655,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
@@ -81675,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
@@ -81695,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
@@ -81715,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
@@ -81735,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
@@ -81755,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
@@ -81775,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
@@ -81795,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
@@ -81815,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
@@ -81835,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
@@ -81855,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
@@ -81875,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
@@ -81895,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
@@ -81915,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
@@ -81935,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
@@ -81955,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
@@ -81975,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
@@ -81995,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
@@ -82015,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
@@ -82035,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
@@ -82055,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
@@ -82075,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
@@ -82095,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
@@ -82115,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
@@ -82135,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
@@ -82155,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
@@ -82175,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
@@ -82195,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
@@ -82215,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
@@ -82235,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
@@ -82255,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
@@ -82275,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
@@ -82295,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
@@ -82315,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
@@ -82335,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
@@ -82355,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
@@ -82375,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
@@ -82395,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
@@ -82415,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
@@ -82435,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
@@ -82455,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
@@ -82475,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
@@ -82495,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
@@ -82515,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
@@ -82535,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
@@ -82555,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
@@ -82575,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
@@ -82595,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
@@ -82615,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
@@ -82635,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
@@ -82655,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
@@ -82675,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
@@ -82695,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
@@ -82715,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
@@ -82735,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
@@ -82755,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
@@ -82775,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
@@ -82795,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
@@ -82815,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
@@ -82835,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
@@ -82855,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
@@ -82875,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
@@ -82895,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
@@ -82915,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
@@ -82935,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
@@ -82955,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
@@ -82975,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
@@ -82995,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
@@ -83015,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
@@ -83035,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
@@ -83055,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
@@ -83075,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
@@ -83095,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
@@ -83115,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
@@ -83135,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
@@ -83155,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
@@ -83175,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
@@ -83195,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
@@ -83215,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
@@ -83235,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
@@ -83255,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
@@ -83275,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
@@ -83295,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
@@ -83315,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
@@ -83335,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
@@ -83355,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
@@ -83375,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
@@ -83395,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
@@ -83415,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
@@ -83435,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
@@ -83455,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
@@ -83475,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
@@ -83495,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
@@ -83515,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
@@ -83535,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
@@ -83555,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
@@ -83575,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
@@ -83595,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
@@ -83615,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
@@ -83635,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
@@ -83655,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
@@ -83675,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
@@ -83695,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
@@ -83715,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
@@ -83735,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
@@ -83755,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
@@ -83775,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
@@ -83795,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
@@ -83815,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
@@ -83835,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
@@ -83855,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
@@ -83875,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
@@ -83895,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
@@ -83915,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
@@ -83935,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
@@ -83955,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
@@ -83975,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
@@ -83995,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
@@ -84015,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
@@ -84035,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
@@ -84055,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
@@ -84075,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
@@ -84095,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
@@ -84115,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
@@ -84135,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
@@ -84155,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
@@ -84175,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
@@ -84195,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
@@ -84215,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
@@ -84235,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
@@ -84255,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
@@ -84275,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
@@ -84295,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
@@ -84315,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
@@ -84335,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
@@ -84355,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
@@ -84375,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
@@ -84395,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
@@ -84415,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
@@ -84435,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
@@ -84455,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
@@ -84475,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
@@ -84495,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
@@ -84515,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
@@ -84535,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
@@ -84555,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
@@ -84575,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
@@ -84595,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
@@ -84615,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
@@ -84635,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
@@ -84655,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
@@ -84675,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
@@ -84695,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
@@ -84715,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
@@ -84735,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
@@ -84755,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
@@ -84775,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
@@ -84795,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
@@ -84815,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
@@ -84835,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
@@ -84855,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
@@ -84875,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
@@ -84895,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
@@ -84915,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
@@ -84935,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
@@ -84955,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
@@ -84975,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
@@ -84995,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
@@ -85015,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
@@ -85035,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
@@ -85055,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
@@ -85075,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
@@ -85095,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
@@ -85115,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
@@ -85135,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
@@ -85155,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
@@ -85175,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
@@ -85195,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
@@ -85215,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
@@ -85235,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
@@ -85255,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
@@ -85275,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
@@ -85295,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
@@ -85316,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
@@ -85337,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
@@ -85358,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
@@ -85379,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
@@ -85400,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
@@ -85420,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
@@ -85440,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
@@ -85460,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
@@ -85480,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
@@ -85500,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
@@ -85520,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
@@ -85540,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
@@ -85561,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
@@ -85581,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
@@ -85601,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
@@ -85621,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
@@ -85641,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
@@ -85661,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
@@ -85681,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
@@ -85701,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
@@ -85721,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
@@ -85741,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
@@ -85761,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
@@ -85781,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
@@ -85801,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
@@ -85821,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
@@ -85841,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
@@ -85861,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
@@ -85881,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
@@ -85901,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
@@ -85921,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
@@ -85941,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
@@ -85962,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
@@ -85982,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
@@ -86002,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
@@ -86022,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
@@ -86042,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
@@ -86062,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
@@ -86082,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
@@ -86102,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
@@ -86234,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
@@ -86254,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
@@ -86274,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
@@ -86294,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
@@ -86314,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
@@ -86334,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
@@ -86354,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
@@ -86374,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
@@ -86394,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
@@ -86414,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
@@ -86434,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
@@ -86454,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
@@ -86474,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
@@ -86494,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
@@ -86514,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
@@ -86534,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
@@ -86554,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
@@ -86574,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
@@ -86594,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
@@ -86614,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
@@ -86634,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
@@ -86654,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
@@ -86674,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
@@ -86694,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
@@ -86714,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
@@ -86734,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
@@ -86754,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
@@ -86774,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
@@ -86794,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
@@ -86814,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
@@ -86834,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
@@ -86854,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
@@ -86874,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
@@ -86894,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
@@ -86914,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
@@ -86934,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
@@ -86954,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
@@ -86974,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
@@ -86994,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
@@ -87014,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
@@ -87034,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
@@ -87054,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
@@ -87074,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
@@ -87094,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
@@ -87114,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
@@ -87134,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
@@ -87154,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
@@ -87174,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
@@ -87194,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
@@ -87214,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
@@ -87234,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
@@ -87254,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
@@ -87274,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
@@ -87294,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
@@ -87314,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
@@ -87334,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
@@ -87354,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
@@ -87374,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
@@ -87394,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
@@ -87414,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
@@ -87434,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
@@ -87454,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
@@ -87474,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
@@ -87494,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
@@ -87514,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
@@ -87534,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
@@ -87554,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
@@ -87574,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
@@ -87594,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
@@ -87614,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
@@ -87634,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
@@ -87654,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
@@ -87674,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
@@ -87694,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
@@ -87715,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"
                 ],
@@ -87737,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"
                 ],
@@ -87759,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"
                 ],
@@ -87781,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"
                 ],
@@ -87803,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"
                 ],
@@ -87825,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"
                 ],
@@ -87847,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"
                 ],
@@ -87869,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"
                 ],
@@ -87892,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"
                 ],
@@ -87914,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"
                 ],
@@ -87936,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"
                 ],
@@ -87958,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"
                 ],
@@ -87980,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"
                 ],
@@ -88002,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"
                 ],
@@ -88025,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"
                 ],
@@ -88047,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"
                 ],
@@ -88069,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"
                 ],
@@ -88091,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"
                 ],
@@ -88114,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"
                 ],
@@ -88136,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"
                 ],
@@ -88158,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"
                 ],
@@ -88180,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"
                 ],
@@ -88202,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"
                 ],
@@ -88224,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"
                 ],
@@ -88246,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"
                 ],
@@ -88268,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"
                 ],
@@ -88291,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"
                 ],
@@ -88313,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"
                 ],
@@ -88335,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
             },
@@ -88354,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
             },
@@ -88373,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
             },
@@ -88392,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
             },
@@ -88411,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
             },
@@ -88430,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
             },
@@ -88449,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
             },
@@ -88468,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
             },
@@ -88487,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
             },
@@ -88506,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
             },
@@ -88525,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
             },
@@ -88544,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
             },
@@ -88563,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
             },
@@ -88582,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
             },
@@ -88601,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
             },
@@ -88620,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
             },
@@ -88639,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
             },
@@ -88658,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
             },
@@ -88677,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
             },
@@ -88696,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
             },
@@ -88715,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
             },
@@ -88734,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
             },
@@ -88753,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
             },
@@ -88772,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
             },
@@ -88791,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
             },
@@ -88810,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
             },
@@ -88829,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
             },
@@ -88848,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
             },
@@ -88867,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
             },
@@ -88886,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
             },
@@ -88905,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
             },
@@ -88924,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
             },
@@ -88943,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
             },
@@ -88962,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
             },
@@ -88981,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
             },
@@ -89000,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
             },
@@ -89019,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
             },
@@ -89038,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
             },
@@ -89057,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
             },
@@ -89076,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
             },
@@ -89095,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
             },
@@ -89114,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
             },
@@ -89133,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
             },
@@ -89152,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
             },
@@ -89171,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
             },
@@ -89190,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
             },
@@ -89209,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
             },
@@ -89228,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
             },
@@ -89247,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
             },
@@ -89266,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
             },
@@ -89285,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
             },
@@ -89304,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
             },
@@ -89323,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
             },
@@ -89342,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
             },
@@ -89361,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
             },
@@ -89380,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
             },
@@ -89399,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
             },
@@ -89418,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
             },
@@ -89437,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
             },
@@ -89456,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
             },
@@ -89475,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
             },
@@ -89494,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
             },
@@ -89513,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
             },
@@ -89532,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
             },
@@ -89551,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
             },
@@ -89570,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
             },
@@ -89589,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
             },
@@ -89608,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
             },
@@ -89627,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
             },
@@ -89646,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
             },
@@ -89665,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
             },
@@ -89684,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
             },
@@ -89703,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
             },
@@ -89722,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
             },
@@ -89741,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
             },
@@ -89760,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
             },
@@ -89779,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
             },
@@ -89798,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
             },
@@ -89817,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
             },
@@ -89836,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
             },
@@ -89855,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
             },
@@ -89874,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
             },
@@ -89893,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
             },
@@ -89912,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
             },
@@ -89931,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
             },
@@ -89950,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
             },
@@ -89969,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
             },
@@ -89988,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
             },
@@ -90007,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
             },
@@ -90026,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
             },
@@ -90045,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
             },
@@ -90064,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
             },
@@ -90083,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
             },
@@ -90102,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
             },
@@ -90121,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
             },
@@ -90140,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
             },
@@ -90159,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
             },
@@ -90178,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
             },
@@ -90197,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
             },
@@ -90216,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
             },
@@ -90235,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
             },
@@ -90254,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
             },
@@ -90273,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
             },
@@ -90292,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
             },
@@ -90311,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
             },
@@ -90330,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
             },
@@ -90349,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
             },
@@ -90368,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
             },
@@ -90387,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
             },
@@ -90406,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
             },
@@ -90425,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
             },
@@ -90444,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
             },
@@ -90463,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
             },
@@ -90482,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
             },
@@ -90501,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
             },
@@ -90520,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
             },
@@ -90539,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
             },
@@ -90558,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
             },
@@ -90577,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
             },
@@ -90596,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
             },
@@ -90615,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
             },
@@ -90634,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
             },
@@ -90653,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
             },
@@ -90672,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
             },
@@ -90691,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
             },
@@ -90710,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
             },
@@ -90729,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
             },
@@ -90748,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
             },
@@ -90767,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
             },
@@ -90786,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
             },
@@ -90805,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
             },
@@ -90824,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
             },
@@ -90843,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
             },
@@ -90862,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
             },
@@ -90881,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
             },
@@ -90900,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
             },
@@ -90919,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
             },
@@ -90938,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
             },
@@ -90957,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
             },
@@ -90976,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
             },
@@ -90995,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
             },
@@ -91014,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
             },
@@ -91033,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
             },
@@ -91052,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
             },
@@ -91071,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
             },
@@ -91090,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
             },
@@ -91109,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
             },
@@ -91128,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
             },
@@ -91147,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
             },
@@ -91166,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
             },
@@ -91185,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
             },
@@ -91204,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
             },
@@ -91223,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
             },
@@ -91242,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
             },
@@ -91261,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
             },
@@ -91280,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
             },
@@ -91299,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
             },
@@ -91318,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
             },
@@ -91337,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
             },
@@ -91356,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
             },
@@ -91375,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
             },
@@ -91394,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
             },
@@ -91413,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
             },
@@ -91432,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
             },
@@ -91451,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
             },
@@ -91470,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
             },
@@ -91489,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
             },
@@ -91508,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
             },
@@ -91527,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
             },
@@ -91546,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
             },
@@ -91565,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
             },
@@ -91584,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
             },
@@ -91603,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
             },
@@ -91622,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
             },
@@ -91641,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
             },
@@ -91660,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
             },
@@ -91679,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
             },
@@ -91698,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
             },
@@ -91717,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
             },
@@ -91736,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
             },
@@ -91755,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
             },
@@ -91774,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
             },
@@ -91793,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
             },
@@ -91812,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
             },
@@ -91831,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
             },
@@ -91850,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
             },
@@ -91869,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
             },
@@ -91888,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
             },
@@ -91907,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
             },
@@ -91926,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
             },
@@ -91945,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
             },
@@ -91964,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
             },
@@ -91983,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
             },
@@ -92002,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
             },
@@ -92021,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
             },
@@ -92040,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
             },
@@ -92059,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
             },
@@ -92078,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
             },
@@ -92097,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
             },
@@ -92116,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
             },
@@ -92135,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
             },
@@ -92154,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
             },
@@ -92173,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
             },
@@ -92192,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
             },
@@ -92211,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
             },
@@ -92230,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
             },
@@ -92249,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
             },
@@ -92268,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
             },
@@ -92287,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
             },
@@ -92306,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
             },
@@ -92325,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
             },
@@ -92344,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
             },
@@ -92363,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
             },
@@ -92382,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
             },
@@ -92401,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
             },
@@ -92420,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
             },
@@ -92439,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
             },
@@ -92458,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
             },
@@ -92477,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
             },
@@ -92496,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
             },
@@ -92515,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
             },
@@ -92534,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
             },
@@ -92553,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
             },
@@ -92572,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
             },
@@ -92591,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
             },
@@ -92610,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
             },
@@ -92629,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
             },
@@ -92648,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
             },
@@ -92667,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
             },
@@ -92686,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
             },
@@ -92705,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
             },
@@ -92724,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
             },
@@ -92743,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"
@@ -92762,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"
@@ -92781,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"
@@ -92800,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"
@@ -92819,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"
@@ -92838,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"
@@ -92857,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"
@@ -92876,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"
@@ -92895,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"
@@ -92914,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"
@@ -92933,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"
@@ -92952,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"
@@ -92971,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"
@@ -92990,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"
@@ -93009,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"
@@ -93028,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"
@@ -93047,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"
@@ -93066,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"
@@ -93085,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"
@@ -93104,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"
@@ -93123,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"
@@ -93142,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"
@@ -93161,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"
@@ -93180,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"
@@ -93199,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"
@@ -93218,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"
@@ -93237,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"
@@ -93256,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"
@@ -93276,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"
@@ -93296,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"
@@ -93315,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"
@@ -93334,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"
@@ -93353,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"
@@ -93372,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"
@@ -93391,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"
@@ -93410,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"
@@ -93429,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"
@@ -93448,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"
@@ -93467,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"
@@ -93486,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"
@@ -93505,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"
@@ -93524,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"
@@ -93543,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"
@@ -93563,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"
@@ -93583,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"
@@ -93602,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"
@@ -93621,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"
@@ -93640,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"
@@ -93659,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"
@@ -93678,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"
@@ -93697,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"
@@ -93717,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"
@@ -93736,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"
@@ -93755,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"
@@ -93774,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"
@@ -93793,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"
@@ -93812,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"
@@ -93831,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"
@@ -93850,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"
@@ -93870,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"
@@ -93889,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"
@@ -93908,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"
@@ -93927,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"
@@ -93946,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"
@@ -93965,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"
@@ -93984,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"
@@ -94003,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"
@@ -94022,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"
@@ -94041,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"
@@ -94060,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"
@@ -94079,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"
@@ -94098,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"
@@ -94117,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"
@@ -94136,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"
@@ -94155,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"
@@ -94174,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"
@@ -94193,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"
@@ -94212,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"
@@ -94231,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"
@@ -94250,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"
@@ -94269,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"
@@ -94288,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"
@@ -94307,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"
@@ -94326,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"
@@ -94345,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"
@@ -94364,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"
@@ -94383,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"
@@ -94402,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"
@@ -94421,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"
@@ -94440,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"
@@ -94459,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"
@@ -94478,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"
@@ -94497,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"
@@ -94516,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"
@@ -94535,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"
@@ -94554,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"
@@ -94573,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"
@@ -94592,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"
@@ -94611,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"
@@ -94630,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"
@@ -94649,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"
@@ -94668,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"
@@ -94687,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"
@@ -94706,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"
@@ -94725,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"
@@ -94744,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"
@@ -94763,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"
@@ -94782,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"
@@ -94801,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"
@@ -94820,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"
@@ -94839,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"
@@ -94858,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"
@@ -94877,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"
@@ -94896,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"
@@ -94915,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"
@@ -94934,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"
@@ -94953,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"
@@ -94972,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"
@@ -94991,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"
@@ -95010,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"
@@ -95029,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"
@@ -95048,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"
@@ -95067,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"
@@ -95086,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"
@@ -95105,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"
@@ -95124,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"
@@ -95143,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"
@@ -95162,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"
@@ -95181,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"
@@ -95200,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"
@@ -95219,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"
@@ -95238,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"
@@ -95257,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"
@@ -95276,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"
@@ -95295,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"
@@ -95314,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"
@@ -95333,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"
@@ -95352,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"
@@ -95371,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"
@@ -95390,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"
@@ -95409,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"
@@ -95428,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"
@@ -95447,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"
@@ -95466,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"
@@ -95485,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"
@@ -95504,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"
@@ -95523,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"
@@ -95542,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"
@@ -95561,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"
@@ -95580,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"
@@ -95599,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"
@@ -95618,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"
@@ -95637,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"
@@ -95656,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"
@@ -95675,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"
@@ -95694,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"
@@ -95713,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"
@@ -95732,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"
@@ -95751,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"
@@ -95770,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"
@@ -95789,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"
@@ -95808,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"
@@ -95827,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"
@@ -95846,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"
@@ -95865,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"
@@ -95884,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"
@@ -95903,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"
@@ -95922,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"
@@ -95941,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"
@@ -95960,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"
@@ -95979,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"
@@ -95998,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"
@@ -96017,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"
@@ -96036,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"
@@ -96055,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"
@@ -96074,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"
@@ -96093,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"
@@ -96112,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"
@@ -96131,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"
@@ -96150,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"
@@ -96169,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"
@@ -96188,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"
@@ -96207,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"
@@ -96226,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"
@@ -96245,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"
@@ -96264,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"
@@ -96283,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"
@@ -96302,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"
@@ -96321,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"
@@ -96340,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"
@@ -96359,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"
@@ -96378,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"
@@ -96397,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"
@@ -96416,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"
@@ -96435,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"
@@ -96454,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
@@ -96472,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
@@ -96490,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
@@ -96508,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
@@ -96526,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
@@ -96544,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
@@ -96562,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
@@ -96580,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
@@ -96598,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
@@ -96616,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
@@ -96634,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
@@ -96652,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
@@ -96670,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
@@ -96688,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
@@ -96706,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
@@ -96724,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
@@ -96742,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
@@ -96760,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
@@ -96778,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
@@ -96796,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
@@ -96814,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
@@ -96832,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
@@ -96850,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
@@ -96868,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"
@@ -96887,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"
@@ -96906,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"
@@ -96925,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"
@@ -96944,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"
@@ -96963,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"
@@ -96982,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"
@@ -97001,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"
@@ -97020,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"
@@ -97039,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"
@@ -97058,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"
@@ -97077,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"
@@ -97096,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"
@@ -97115,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"
@@ -97134,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"
@@ -97153,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"
@@ -97172,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"
@@ -97191,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"
@@ -97210,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"
@@ -97229,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"
@@ -97248,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"
@@ -97267,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"
@@ -97286,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"
@@ -97305,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"
@@ -97324,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"
@@ -97343,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"
@@ -97362,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"
@@ -97381,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"
@@ -97400,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"
@@ -97419,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"
@@ -97438,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"
@@ -97457,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"
@@ -97476,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"
@@ -97495,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"
@@ -97514,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"
@@ -97533,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"
@@ -97552,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"
@@ -97571,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"
@@ -97590,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"
@@ -97609,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"
@@ -97628,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"
@@ -97647,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"
@@ -97666,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"
@@ -97685,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"
@@ -97704,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"
@@ -97723,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"
@@ -97742,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"
@@ -97761,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"
@@ -97780,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"
@@ -97799,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"
@@ -97818,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"
@@ -97837,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"
@@ -97856,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"
@@ -97875,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"
@@ -97894,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"
@@ -97913,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"
@@ -97932,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"
@@ -97951,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"
@@ -97970,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"
@@ -97989,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"
@@ -98008,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"
@@ -98027,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"
@@ -98046,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"
@@ -98065,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"
@@ -98084,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"
@@ -98103,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"
@@ -98122,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"
@@ -98141,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"
@@ -98160,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"
@@ -98179,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"
@@ -98198,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"
@@ -98217,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"
@@ -98236,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"
@@ -98255,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"
@@ -98274,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"
@@ -98293,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"
@@ -98312,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"
@@ -98331,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"
@@ -98350,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"
@@ -98369,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"
@@ -98388,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"
@@ -98407,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"
@@ -98426,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"
@@ -98445,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"
@@ -98464,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"
@@ -98483,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"
@@ -98502,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"
@@ -98521,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"
@@ -98540,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"
@@ -98559,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"
@@ -98578,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"
@@ -98597,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"
@@ -98616,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"
@@ -98635,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"
@@ -98654,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"
@@ -98673,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"
@@ -98692,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"
@@ -98711,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"
@@ -98730,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"
@@ -98749,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"
@@ -98768,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"
@@ -98787,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"
@@ -98806,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"
@@ -98825,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"
@@ -98844,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"
@@ -98863,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"
@@ -98882,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"
@@ -98901,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"
@@ -98920,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"
@@ -98939,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"
@@ -98958,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"
@@ -98977,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"
@@ -98996,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"
@@ -99015,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"
@@ -99034,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"
@@ -99053,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"
@@ -99072,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"
@@ -99091,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"
@@ -99110,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"
@@ -99129,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"
@@ -99148,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"
@@ -99167,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"
@@ -99186,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"
@@ -99205,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"
@@ -99224,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"
@@ -99243,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"
@@ -99262,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"
@@ -99281,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"
@@ -99300,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"
@@ -99319,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"
@@ -99338,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"
@@ -99357,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"
@@ -99376,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"
@@ -99395,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"
@@ -99414,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"
@@ -99433,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"
@@ -99452,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"
@@ -99471,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"
@@ -99490,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"
@@ -99509,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"
@@ -99528,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"
@@ -99547,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"
@@ -99566,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"
@@ -99585,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"
@@ -99604,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"
@@ -99623,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"
@@ -99642,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"
@@ -99661,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"
@@ -99680,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"
@@ -99699,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"
@@ -99718,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"
@@ -99737,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"
@@ -99756,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"
@@ -99775,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"
@@ -99794,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"
@@ -99813,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"
@@ -99832,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"
@@ -99851,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"
@@ -99870,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"
@@ -99889,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"
@@ -99908,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"
@@ -99927,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"
@@ -99946,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"
@@ -99965,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"
@@ -99984,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"
@@ -100003,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"
@@ -100022,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"
@@ -100041,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"
@@ -100060,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"
@@ -100079,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"
@@ -100098,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"
@@ -100117,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"
@@ -100136,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"
@@ -100155,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"
@@ -100174,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"
@@ -100193,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"
@@ -100212,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"
@@ -100231,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"
@@ -100250,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"
@@ -100269,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"
@@ -100288,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"
@@ -100307,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"
@@ -100326,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"
@@ -100345,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"
@@ -100364,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"
@@ -100383,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"
@@ -100402,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"
@@ -100421,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"
@@ -100440,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"
@@ -100459,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"
@@ -100478,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"
@@ -100497,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"
@@ -100516,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"
@@ -100535,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"
@@ -100554,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"
@@ -100573,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"
@@ -100592,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"
@@ -100611,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"
@@ -100630,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"
@@ -100649,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"
@@ -100668,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"
@@ -100687,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"
@@ -100706,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"
@@ -100725,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"
@@ -100744,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"
@@ -100763,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"
@@ -100782,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"
@@ -100801,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"
@@ -100820,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"
@@ -100839,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"
@@ -100858,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"
@@ -100877,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"
@@ -100896,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"
@@ -100915,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"
@@ -100934,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"
@@ -100953,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"
@@ -100972,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"
@@ -100991,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"
@@ -101010,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"
@@ -101029,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"
@@ -101048,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"
@@ -101067,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"
@@ -101086,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"
@@ -101416,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",
@@ -101454,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",
@@ -101527,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": {
@@ -101581,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",
@@ -101594,7 +104958,6 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
             "cuisine": {
                 "key": "cuisine",
                 "type": "combo",
-                "indexed": true,
                 "label": "Cuisine"
             },
             "denomination": {
@@ -101616,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",
@@ -101659,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",
@@ -101793,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": {
@@ -101869,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",
@@ -101945,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",
@@ -101967,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",
@@ -102032,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",
@@ -102081,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",
@@ -102091,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",
@@ -102108,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": {
@@ -102132,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",
@@ -102177,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",
@@ -102210,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",
@@ -102234,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",
@@ -102249,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",
@@ -113807,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,
@@ -114299,6 +117821,7 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
     "locales": [
         "af",
         "sq",
+        "sq-AL",
         "ar",
         "ar-AA",
         "hy",
@@ -114319,6 +117842,7 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
         "da",
         "nl",
         "en-GB",
+        "eo",
         "et",
         "fi",
         "fr",
@@ -114331,6 +117855,8 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
         "it",
         "ja",
         "kn",
+        "km",
+        "km-KH",
         "ko",
         "ko-KR",
         "lv",
@@ -114457,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.",
@@ -114591,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",
@@ -114661,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"
         },
@@ -114714,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",
@@ -114749,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}'.**",
@@ -114878,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"
@@ -114899,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"
@@ -114939,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",
@@ -114960,6 +118521,9 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "covered": {
                     "label": "Covered"
                 },
+                "craft": {
+                    "label": "Type"
+                },
                 "crop": {
                     "label": "Crop"
                 },
@@ -114979,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"
@@ -115001,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"
@@ -115124,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)"
@@ -115170,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"
@@ -115216,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"
@@ -115240,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"
@@ -115261,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",
@@ -115276,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",
@@ -115300,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"
@@ -115309,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"
@@ -115439,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",
@@ -115463,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",
@@ -115494,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",
@@ -115523,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",
@@ -115543,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",
@@ -115563,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",
@@ -115591,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",
@@ -115603,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",
@@ -115635,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",
@@ -115658,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",
@@ -115667,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",
@@ -115691,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",
@@ -115707,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",
@@ -115817,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": ""
@@ -115869,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": ""
@@ -115887,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",
@@ -115911,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",
@@ -116103,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",
@@ -116123,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",
@@ -116143,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",
@@ -116171,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",
@@ -116183,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",
@@ -116215,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",
@@ -116229,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",
@@ -116299,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",
@@ -116315,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",
@@ -116471,7 +120203,7 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 },
                 "leisure/marina": {
                     "name": "Marina",
-                    "terms": ""
+                    "terms": "boat"
                 },
                 "leisure/park": {
                     "name": "Park",
@@ -116479,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",
@@ -116517,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",
@@ -116534,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": {
@@ -116587,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": {
@@ -116723,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",
@@ -116853,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": ""
@@ -116939,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": ""
@@ -116966,7 +120730,7 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                     "terms": ""
                 },
                 "shop/books": {
-                    "name": "Bookstore",
+                    "name": "Book Store",
                     "terms": ""
                 },
                 "shop/boutique": {
@@ -116975,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": ""
@@ -117002,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",
@@ -117022,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",
@@ -117059,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",
@@ -117069,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",
@@ -117097,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": ""
@@ -117143,15 +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": "tailor,clothes"
+                    "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",
@@ -117169,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",
@@ -117199,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",
@@ -117211,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",
@@ -117231,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",
@@ -117249,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": ""
@@ -122368,6 +126308,38 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                     "postcode"
                 ]
             ]
+        },
+        {
+            "countryCodes": [
+                "us"
+            ],
+            "format": [
+                [
+                    "housenumber",
+                    "street"
+                ],
+                [
+                    "city",
+                    "state",
+                    "postcode"
+                ]
+            ]
+        },
+        {
+            "countryCodes": [
+                "ca"
+            ],
+            "format": [
+                [
+                    "housenumber",
+                    "street"
+                ],
+                [
+                    "city",
+                    "province",
+                    "postcode"
+                ]
+            ]
         }
     ]
 };
\ No newline at end of file