pax_global_header00006660000000000000000000000064121715512630014515gustar00rootroot0000000000000052 comment=a17a4e5633b2f15fbdfbd1e66bcb05b31fe5a7d4 tilelive-vector-0.1.3/000077500000000000000000000000001217155126300146335ustar00rootroot00000000000000tilelive-vector-0.1.3/.gitignore000066400000000000000000000000261217155126300166210ustar00rootroot00000000000000.DS_Store node_modulestilelive-vector-0.1.3/CHANGELOG.md000066400000000000000000000001531217155126300164430ustar00rootroot00000000000000# Changlog ## 0.1.3 - Updated to work with and expect >= node-mapnik v1.1.1 - Added vector json output tilelive-vector-0.1.3/README.md000066400000000000000000000041031217155126300161100ustar00rootroot00000000000000tilelive-vector --------------- Implements the tilelive API for rendering mapnik vector tiles to raster images. ### new Vector(options, callback) - *xml*: a Mapnik XML string that will be used to render vector tiles. - *source*: Optional, a uri string suitable for use with `tilelive.load()`. This is fallback source that will be used if no source is found as part of the Mapnik XML parameters. - *base*: Optional, basepath for Mapnik map. Defaults to `__dirname`. - *format*: Optional, target output format. Defaults to `png8:m=h`. - *scale*: Optional, Mapnik scale factor. Defaults to `1`. - *deflate*: Optional, whether to expect deflated vector tiles. Defaults to `true`. - *maxAge*: Optional, length of time to hold vector tiles in memory cache. Defaults to `300e3` (300 seconds). - *reap*: Optional, time between reaps of vector tiles in memory cache. Defaults to `60e3` (60 seconds). ### Code concepts - *Backend z/x/y*: a request for a raster tile at, say, 3/3/3 does not always mean 3/3/3 is requested from the backend source. The z/x/y requested from the backend source is referred in code by `bz/bx/by` and generally represent the same or lower zoom level. This allows for features like *overzooming*, *maskLevel tiles*, and *scale factor adjustment*. - *Overzooming*: if a tile beyond the `maxzoom` of the backend is requested, Vector will attempt to render the tile using the parent of the request at `maxzoom`. - *maskLevel tiles*: to avoid requiring many duplicate or empty vector tiles to be generated at high zoom levels, the backend source can specify a `maskLevel`. If a vector tile is not initially found at some `z > maskLevel`, Vector will issue an additional request to the backend using the parent tile of of the request at `maskLevel`. This allows a lower zoom level to "backfill" high zoom levels. - *Scale factor adjustment*: the scale argument decrements the backend zoom level such that the requested tile is the visual equivalent (when viewed on the proper dpi device) of its parent counterpart. For example, `scale: 2` decrements `bz` by 1, `scale: 4` decrements by 2, and so on. tilelive-vector-0.1.3/index.js000066400000000000000000000305251217155126300163050ustar00rootroot00000000000000var tilelive = require('tilelive'); var mapnik = require('mapnik'); var zlib = require('zlib'); var path = require('path'); var util = require('util'); var crypto = require('crypto'); module.exports = Vector; function Task() { this.err = null; this.headers = {}; this.access = +new Date; this.done; this.body; return; }; util.inherits(Task, require('events').EventEmitter); function Vector(uri, callback) { if (!uri.xml) return callback && callback(new Error('No xml')); this._uri = uri; this._scale = uri.scale || undefined; this._format = uri.format || undefined; this._source = uri.source || undefined; this._maxAge = typeof uri.maxAge === 'number' ? uri.maxAge : 60e3; this._deflate = typeof uri.deflate === 'boolean' ? uri.deflate : true; this._reap = typeof uri.reap === 'number' ? uri.reap : 60e3; this._base = path.resolve(uri.base || __dirname); if (callback) this.once('open', callback); this.update(uri, function(err) { this.emit('open', err, this); }.bind(this)); }; util.inherits(Vector, require('events').EventEmitter); // Helper for callers to ensure source is open. This is not built directly // into the constructor because there is no good auto cache-keying system // for these tile sources (ie. sharing/caching is best left to the caller). Vector.prototype.open = function(callback) { if (this._map) return callback(null, this); this.once('open', callback); }; // Allows in-place update of XML/backends. Vector.prototype.update = function(opts, callback) { // If the XML has changed update the map. if (!opts.xml || this._xml === opts.xml) return callback(); var map = new mapnik.Map(256,256); map.fromString(opts.xml, { strict: false, base: this._base + '/' }, function(err) { delete this._info; this._xml = opts.xml; this._map = map; this._md5 = crypto.createHash('md5').update(opts.xml).digest('hex'); this._format = opts.format || map.parameters.format || this._format || 'png8:m=h'; this._scale = opts.scale || +map.parameters.scale || this._scale || 1; map.bufferSize = 256 * this._scale; var source = map.parameters.source || opts.source; if (!this._backend || this._source !== source) { if (!source) return callback(new Error('No backend')); tilelive.load(source, function(err, backend) { if (err) return callback(err); if (!backend) return callback(new Error('No backend')); this._source = map.parameters.source || opts.source; if (this._backend !== backend) { backend._vectorCache = {}; this._backend = backend; delete this._minzoom; delete this._maxzoom; delete this._maskLevel; } return callback(); }.bind(this)); } else { return callback(); } }.bind(this)); return; }; // Wrapper around backend.getTile that implements a "locking" cache. Vector.prototype.sourceTile = function(backend, z, x, y, callback) { var source = this; var now = +new Date; var key = z + '/' + x + '/' + y; var cache = backend._vectorCache[key]; // Reap cached vector tiles with stale access times on an interval. if (source._reap && !backend._vectorTimeout) backend._vectorTimeout = setTimeout(function() { var now = +new Date; Object.keys(backend._vectorCache).forEach(function(key) { if ((now - backend._vectorCache[key].access) < source._maxAge) return; delete backend._vectorCache[key]; }); delete backend._vectorTimeout; }, source._reap); // Expire cached tiles when they are past maxAge. if (cache && (now-cache.access) >= source._maxAge) cache = false; // Return cache if finished. if (cache && cache.done) { return callback(null, cache.body, cache.headers); // Otherwise add listener if task is in progress. } else if (cache) { return cache.once('done', callback); } var task = new Task(); task.once('done', callback); var done = function(err, body, headers) { if (err) delete backend._vectorCache[key]; task.done = true; task.body = body; task.headers = headers; task.emit('done', err, body, headers); }; backend._vectorCache[key] = task; backend.getTile(z, x, y, function(err, body, headers) { if (err) return done(err); // If the source vector tiles are not using deflate, we're done. if (!source._deflate) return done(err, body, headers); // Otherwise, inflate the data. zlib.inflate(body, function(err, body) { return done(err, body, headers); }); }); }; Vector.prototype.drawTile = function(bz, bx, by, z, x, y, format, callback) { var source = this; var drawtime; var loadtime = +new Date; source.sourceTile(this._backend, bz, bx, by, function(err, data, head) { if (err && err.message !== 'Tile does not exist') return callback(err); if (err && source._maskLevel && bz > source._maskLevel) return callback(format === 'utf' ? new Error('Grid does not exist') : err); var headers = {}; switch (format.match(/^[a-z]+/i)[0]) { case 'headers': // No content type for header-only. break; case 'json': case 'utf': headers['Content-Type'] = 'application/json'; break; case 'jpeg': headers['Content-Type'] = 'image/jpeg'; break; case 'svg': headers['Content-Type'] = 'image/svg+xml'; break; case 'png': default: headers['Content-Type'] = 'image/png'; break; } headers['ETag'] = JSON.stringify(crypto.createHash('md5') .update(source._scale + source._md5 + (head && head['ETag'] || (z+','+x+','+y))) .digest('hex')); headers['Last-Modified'] = new Date(head && head['Last-Modified'] || 0).toUTCString(); // Return headers for 'headers' format. if (format === 'headers') return callback(null, headers, headers); loadtime = (+new Date) - loadtime; drawtime = +new Date; var vtile = new mapnik.VectorTile(bz, bx, by); vtile.setData(data || new Buffer(0), function(err) { // Errors for null data are ignored as a solid tile be painted. if (data && err) return callback(err); var opts = {z:z, x:x, y:y, scale:source._scale}; if (format === 'json') { try { return callback(null, vtile.toJSON(), headers); } catch(err) { return callback(err); } } else if (format === 'utf') { var surface = new mapnik.Grid(256,256); opts.layer = source._map.parameters.interactivity_layer; opts.fields = source._map.parameters.interactivity_fields.split(','); } else if (format === 'svg') { var surface = new mapnik.CairoSurface('svg',256,256); } else { var surface = new mapnik.Image(256,256); } vtile.render(source._map, surface, opts, function(err, image) { if (err) return callback(err); if (format == 'svg') { headers['Content-Type'] = 'image/svg+xml'; return callback(null, image.getData(), headers); } else if (format === 'utf') { image.encode(format, {}, function(err, buffer) { if (err) return callback(err); return callback(null, buffer, headers); }); } else { image.encode(format, {}, function(err, buffer) { if (err) return callback(err); buffer._loadtime = loadtime; buffer._drawtime = (+new Date) - drawtime; buffer._srcbytes = data ? data.length : 0; return callback(null, buffer, headers); }); } }); }); }); }; Vector.prototype.getTile = function(z, x, y, callback) { if (!this._map) return callback(new Error('Tilesource not loaded')); // Lazy load min/maxzoom/maskLevel info. if (this._maxzoom === undefined) return this._backend.getInfo(function(err, info) { if (err) return callback(err); this._minzoom = info.minzoom || 0; this._maxzoom = info.maxzoom || 22; // @TODO some sources filter out custom keys @ getInfo forcing us // to access info/data properties directly. Fix this. if ('maskLevel' in info) { this._maskLevel = parseInt(info.maskLevel, 10); } else if (this._backend.data && 'maskLevel' in this._backend.data) { this._maskLevel = this._backend.data.maskLevel; } return this.getTile(z, x, y, callback); }.bind(this)); // If scale > 1 adjusts source data zoom level inversely. // scale 2x => z-1, scale 4x => z-2, scale 8x => z-3, etc. var d = Math.round(Math.log(this._scale)/Math.log(2)); var bz = (z - d) > this._minzoom ? z - d : this._minzoom; var bx = Math.floor(x / Math.pow(2, z - bz)); var by = Math.floor(y / Math.pow(2, z - bz)); // Overzooming support. if (bz > this._maxzoom) { bz = this._maxzoom; bx = Math.floor(x / Math.pow(2, z - this._maxzoom)); by = Math.floor(y / Math.pow(2, z - this._maxzoom)); } // Hack around tilelive API - allow params to be passed per request // as attributes of the callback function. var format = callback.format || this._format || this._map.parameters.format || 'png8:m=h'; // For nonmasked sources or bz within the maskrange attempt 1 draw. if (!this._maskLevel || bz <= this._maskLevel) return this.drawTile(bz,bx,by,z,x,y,format,callback); // Above the maskLevel errors should attempt a second draw using the mask. this.drawTile(bz,bx,by,z,x,y,format,function(err, buffer, headers) { if (!err) return callback(err, buffer, headers); if (err && err.message !== 'Tile does not exist') return callback(err); bz = this._maskLevel; bx = Math.floor(x / Math.pow(2, z - this._maskLevel)); by = Math.floor(y / Math.pow(2, z - this._maskLevel)); this.drawTile(bz, bx, by, z, x, y, format, callback); }.bind(this)); }; Vector.prototype.getGrid = function(z, x, y, callback) { if (!this._map) return callback(new Error('Tilesource not loaded')); if (!this._map.parameters.interactivity_layer) return callback(new Error('Tilesource has no interactivity_layer')); if (!this._map.parameters.interactivity_fields) return callback(new Error('Tilesource has no interactivity_fields')); callback.format = 'utf'; return this.getTile(z, x, y, callback); }; Vector.prototype.getHeaders = function(z, x, y, callback) { callback.format = 'headers'; return this.getTile(z, x, y, callback); }; Vector.prototype.getInfo = function(callback) { if (!this._map) return callback(new Error('Tilesource not loaded')); if (this._info) return callback(null, this._info); var params = this._map.parameters; this._info = Object.keys(params).reduce(function(memo, key) { switch (key) { // The special "json" key/value pair allows JSON to be serialized // and merged into the metadata of a mapnik XML based source. This // enables nested properties and non-string datatypes to be // captured by mapnik XML. case 'json': try { var jsondata = JSON.parse(params[key]); } catch (err) { return callback(err); } Object.keys(jsondata).reduce(function(memo, key) { memo[key] = memo[key] || jsondata[key]; return memo; }, memo); break; case 'bounds': case 'center': memo[key] = params[key].split(',').map(function(v) { return parseFloat(v) }); break; case 'minzoom': case 'maxzoom': memo[key] = parseInt(params[key], 10); break; default: memo[key] = params[key]; break; } return memo; }, {}); return callback(null, this._info); }; tilelive-vector-0.1.3/package.json000066400000000000000000000010521217155126300171170ustar00rootroot00000000000000{ "name": "tilelive-vector", "version": "0.1.3", "main": "./index.js", "description": "Vector tile => raster tile backend for tilelive", "repository": { "type": "git", "url": "git://github.com/mapbox/tilelive-vector.git" }, "licenses": [{ "type": "BSD" }], "dependencies": { "mapnik": "1.1.x", "tilelive": "4.5.x" }, "devDependencies": { "mocha": "1.3.x" }, "scripts": { "test": "mocha -R spec" }, "engines": { "node": "0.6.x || 0.8.x || 0.10.x" } } tilelive-vector-0.1.3/test/000077500000000000000000000000001217155126300156125ustar00rootroot00000000000000tilelive-vector-0.1.3/test/expected/000077500000000000000000000000001217155126300174135ustar00rootroot00000000000000tilelive-vector-0.1.3/test/expected/a.0.0.0.jpeg000066400000000000000000000431171217155126300211420ustar00rootroot00000000000000JFIFC  !"$"$C" }!1AQa"q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz w!1AQaq"2B #3Rbr $4%&'()*56789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz ?.((((~ Z=3O3, +FZF 8V85ߴ :gIgkCowˆ<3F9# E`񾆺ׅH&mIP28 ) CRz|)xTh)U$F 0G&6h?m.k?1/ZGd mP ]@~ GW_ߓoukco=˨;k<9*+]">x-A$RE#!# ( ( ( ( ( ( ( ( ( ( ( 5Kd^/7EI{0Ux}IŒ(=vLꚭJ [!艸9~&_kOn<5{iMo$PkǷqX0d%2 ͆PxRݴ'u_#Obt m;+9q$h= OទQ_]M=0z;*>!v#cz??{چ;[-bOZKsݏ,]9W#$d>c^ߧ^;I.7|6L'$!4}%!Q v?ᮓ%$j0Jk+Zn234+1Y9qbS7:^>g`γ9HD P0xJG5=m-ྞw.䲛͆K" P v@SbcqG*"* ςlG-szudda`ݠ/ѿh{[{VUæ[a=l!AlaPVW4H,z׀W V[+2[(UPGjϕ,]snhX230E|+*վ-Ʒ\hGL0 ae  hU;gPGicn1#E$|^[]'ދ =r[j fTcσ,OQIƩjjoriA+⅐` ̶D.w)\:OwYۡi$qY{Oj|wA 7xNho5iqIml".9 +[pnXUE{soei5o %F¢wjBe5[{fӢi$ 6FY+-z]hdgKkhyqUNMSUcP]?It։z[]$p 8zد3gǒ]E7b T)hT9G>:l:Zj63̲ Uyp{P( ( ( ( ( 򟋿gwMO.$" O*xfDbRXzngiWzrVp=pƊY +?_ 55/;Ʉ:A(rvHț4dk~x(Očw7ɐ) +tZ::kkVhvڝƟ,aUO#7짓-mwEKs_kFPbРNFQ)ah©o|4ִLo,9#bH (^52: J`oVd_NυVl^X񺗖6,6U iac֋ln/.5qE1hْ7g<<ͦ6mpZwa][G xԫd- y[&c}}g-âVʱ22FҪ@^0AP@go6iv ʼ)j=CS/VDԡoe _xD{˛29;Q%ֶ` S c˼lYXgTu Qū]І#-Ԩl@'V}@}/w:otQR؅#-m*rTU_iӖB..罸F<$v z ֠kh48D@fcw5xOnial1+ҕRV5'G^ҼGαkPhŻ*VF&%uډH>P II 9XpA9fx{H4;=Keg ,BݎI''y#Ş#|we[\xV}4_,1AedxcS*H a_Nt!']qw^%R)1Ŕ1~Ǻε}#Ė[$2iݚ8.dB3Gள5yω&7{)Mb,\qV#w$!y?⏏skz$P Bf9vڅQHEoxWvz(#iM!noj>["@ Oqp D3$HT1e`!k?g{~#XlMV+煬+z(dʻc-Fk?\Z'o&:6w$DcP`²/j?=֡b>99n.Y6),1~ ܰ<-^\>tYt5y/lcV3@Ao$x_.[ n7v,x_q%XZ-,lRcjX.֑ܫEp!xY`jTׁK.DžuID1MRDҲ n+8AK;w]D$޼oDdkM#Hmú[g!PqV"~]Kk(K5ܖDm EVe;zm/G xF@i_M:LPJ<N: p+[Q-Kw܂D8u5igj$FI%@3jET@UF ZGeDgv 2I8zϞ'|m_6t uI,'iB C !ZG|cwhJ %r1y'~~^wv0kDcg+H>rHL24ASwkZz&ntdgTy"Xઐ g~%~^RnnH$.0>˯xW} t>;FL(wgיW?|u^xv5K]tTU(.;e`*pZi|G3qm6ēI'4i%MG$ 0Tʾ"|HpYip_j6tMBKC;VC>xoDWe5j}6X/!HqRQ1!v򚾽g@վi>-l,MwY-ĮN0nT_Cѭ5[Ķl$dcbDl:ehzƟ <=bVVŦi3c@\Yذ9AF<mt?Z=),uY)||J̎@8u?= U<'Agm5P,a1DSRW9=!Ub%NA#hi<]"7<&}Dž4lyQi  ك1*so2Kg7G?Zsf+|. $½2ni_YN x26 A >(4 vٴ>P3O}yxZ&߳XRHT&` Ш3|%8x_Ey!RIbҀCd"!\A~)'$ZY]Q%؋.<c2!cExڷ4K>{EcX>XI'OB$%F88'i@rr|Y/ xr[zHTpI5xn~utzY .nR̪N*2v|NmKJNvgv$O0ܢL#vxVE;VRza,bfl$ƦhF.@|9{=_|^x#eb^R" mV/;xs^-McGuhFf ?s ? ĖWc&4-Ƌx*0ԁ#r$WEP 7DѴ;II{=G%ˌet|1ԭO>kB}F2r/ cn⠑^u:]?zh"#Iq#VH²줃~o4 K.gi V;POImR@00y{s,ၐy$(G>xGD#6׌.て9aOloQ73PEPʾ#/>|lo^ǫIkdYGO^X$ +Igiq͝)=ќ = 5+i;qqx uֵ| xs6ƱYEoV0s=s4EP~ Ś$Z]7)( mzw/ IŇ| dvkAYb y(9淫篏> E}LJf8|=oD\23HTȖh q!hφg~7Լ2[X;d־D#\Ke >~v'hMqua 52 "RA! d5 ~@R__iZ漹Ѵ{[|@RT}o |t].V[nmJ%2Hrq Ջ1 =Q@|G+.gxEQ#R5)M,+< 16wGr_Om'GkR[Cp1dk)1wu|?Ҥ.4 %goQ˩J1w˴QU +|?lWOW:z9m7ޱ ISxV;1*%x-isxSZt]F==Z"iZDrw  )##^&-5g;) 5%rnla"{MsG j:Iaw*Wv'{3}Þ+ԿhMRKi;I 7Yl?^_-I;-@r6vJ}/]FHү|[[-;YYYvPc@>+W7RH"hqشq6TU9Qu[xCV*c1/r@l0h_~ G4']~iI-#8Y}"[U}%'ies%r=]bI#!,C"#u=J3'ck趚#i"$$ddj>Κ,qHZ5t\4rFTFJLj~]j?-YhKD5rƱ `[҂؃6Exw&ொ_~ Iof$ʡPÐ B8wW tg«?Mql=BIC2(2 YRmG\z+3IQo~Ψӧ[  7AR lz^>\GmknIe,T|?i~ -5:1--u=  ՛kX˫`LG 8@fLe֫k]XZydAI&<=(ƾ >1/M EF6pZC>Lo18B.Yܨ4ހ ( eKE24nJqRPsPm0rK%5ܗ2ᘶ 3; *PA(]}>TJ[+Y]|AžڅL4N%UP)A(nc%W@?|g]C7!WIJY,Ъm続&j]@|B _| MsFY?ammûn`ٰ|6{?<񞳫jT.␯.Fяdc ~xr^!!RIDcWhx8:dݱ_h'5 Xi*wh(u3gv^38vjn_4 BiFO;,s%fƍzyqא)ֵ ~kiwGF2ꓶF1-7ǵS&F,3@=qdWTCN=+˾hb&C=:@ >֝EGM躤{+ 20pG 2Ag*64 ^U2]$_0RϘp][Yij]EoH‚r{2u;񦴞'cL["^"sFeʇtn-JLQOi6ڕωȶM;#O; 'wc_2 H Ulq]<%Vw}\GPu{H** xwCՋh:Uny$sd+R(qրA \??|C\X?C']`x¶^${Ԭ.]V&U]vgaAG➷}xi `7ifFav85Ae}$~O5nH-V%  tTA%주{nvHř U@v((?gnl>Y)q7:e|L9POM8'uW%嶯qPR5NW=7Ë}JI∭u R6,̪ 1EZBZ B=YZ:mժn #%y$:('3ɕ$Nvp:G]LuKaCN XSޅ{$Ho ҵ[ Mo藷M&o1$u#a&yfp@ʃ|;\?j"E\G3f{ѳ wpV )d(mF%F[l \u1y~l嵝LҒ;Р;(((/xÞ aԼK&g5v3F̪.\񹰣|Nsw᫷nSSvIhuߊ<"FX':|vv[#9G[i:߉SP7ңR13v؅(PUA$t+?i>д SºwYNN.HD#pR#J>2bxQ-ΉpY R`6U1&q։/$վT 7PC幌FQ(E9"0ao^L[=QeL97%GF ؑ㩯vմ_?|\[ۈm~]xm#C DZE$@E%ͼr$OO9jv>osgŴavN u=&Oյ;\mFaL`Ȭ[/x6 x:x47 UGdP!PLnb@5S.|#VGj%CcUH7^K6~iFv+% ~g$!2}Zz귶wڞYqlIn*}iQ@]//6IrײǨ^4ܱ;xlwm;+%FP|9iw1,2ApAs' <'ГaSWc_ 6܌P/N-S'є47qJS,U|FG@"xsiEfogng;ԁ]rH=밯yš^([Y$I p:7@]M~ះ|P-%}7iVCVqSԀuTQ\/čWHmBƑ4VILȪ<6;?>iuv+u+s,HI$sM`W¾[M&쾡0bIJ)Ŗ:Loo<1yjO&[O}ۻB&;Ǜ 9dPՏ'pa'/{NtlXmĎ]qU<94} CƹuY|d#arYc@A;Ay?[ MĸiYYrsPOO|1tFYt(qwZM4k!GLpO8ᶃxcz~jhc[%k;p 3ttP@$Oj#{??MMp+&rH / &'3}o᧎ ]&]ͦpݣFFV?jr kß Mm[ZYn>&e1)fbbvO:O*C{Zt<:d9Xr@:]M}Y_\Xa5żrk9Hm$nRppHȮ[ĺ<5{icq^\Z.(4H0'\lrArnjXA!-e3{+3k#h 湏xkπW@Z7{&JM&<7t`w~vOMveVN9r[s;lMr \^4YFgmA.TnwFg Jj((((((((2U5rEewXke2.;adnM>8\_D>Tz,W/VXMmw Nɔ*Ua7X}i!eEO2VOs@OOM`dNck>a' 03`.{VU-EwmsVĺ/u}_t~0el,˹< 4><ƙψ-}ǫ,:;[\K$JYg6mjI%?o$;SP@.} ( (9^iI_pڤB 9qHPbKL5,ֻj.2H @B$(PX]Ge.xEzGp<Ċ8 *w.$d  kx]Kѡ1=9(Q^EhG[zlr;mXZXxx}T<uY_|=Gx&' A*x? \H_uOD@O7Hdfc/-%PD0 N>_UM|? 5*-u 1kIUlq |Nju3_K(!f}c{ !QL`Ho.UBJp? WVTR53^ݹ&K$I0 ݬk&igt+V(= kPEPEPEPGq%g ZE֜^m${dYT UbH0>=E QEQEQEQEQEQEQEQEQE]ύj~ԿnB<%X:e*A 7fP;J>,x&+A.`re?ĿyA=cx:G9w;Yp@1 >tilelive-vector-0.1.3/test/expected/a.0.0.0.json000066400000000000000000052060561217155126300211760ustar00rootroot00000000000000[ { "name": "coastline", "extent": 4096, "version": 2, "features": [ { "id": 1, "type": 2, "geometry": [ 9, 5102, 4568, 250, 0, 0, 4, 23, 7, 27, 2, 23, 6, 23, 26, 5, 24, 11, 24, 13, 4, 23, 24, 17, 6, 23, 16, 24, 6, 24, 4, 24, 13, 24, 3, 26, 1, 24, 9, 28, 7, 24, 5, 24, 9, 24, 3, 24, 9, 24, 13, 24, 23, 8, 23, 5, 21, 23, 2, 23, 9, 23, 4, 23, 16, 23 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 0 } }, { "id": 2, "type": 2, "geometry": [ 9, 5958, 3934, 58, 0, 5, 9, 23, 21, 27, 11, 24, 1, 30, 6, 24, 24, 2 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3, "type": 2, "geometry": [ 9, 6622, 3638, 50, 1, 0, 23, 7, 23, 14, 0, 24, 24, 0, 18, 23 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 0 } }, { "id": 4, "type": 2, "geometry": [ 9, 6870, 3508, 66, 0, 0, 23, 2, 13, 24, 1, 24, 12, 24, 14, 23, 6, 23, 6, 23 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 0 } }, { "id": 5, "type": 2, "geometry": [ 9, 7090, 3314, 58, 2, 0, 3, 23, 23, 13, 11, 24, 8, 24, 4, 24, 24, 15 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 0 } }, { "id": 6, "type": 2, "geometry": [ 9, 7160, 3276, 50, 0, 0, 23, 9, 23, 14, 2, 24, 24, 19, 24, 7 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 1 } }, { "id": 7, "type": 2, "geometry": [ 9, 7132, 3260, 250, 1, 0, 23, 2, 23, 12, 14, 23, 24, 19, 24, 0, 24, 5, 24, 2, 12, 27, 10, 23, 24, 10, 26, 25, 14, 29, 2, 23, 0, 23, 24, 7, 18, 24, 4, 24, 11, 24, 9, 24, 3, 24, 1, 30, 17, 24, 23, 8, 25, 0, 23, 9, 9, 24, 23, 10, 6, 23, 23, 3, 23, 10 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 0 } }, { "id": 8, "type": 2, "geometry": [ 9, 7412, 2998, 130, 0, 0, 11, 23, 23, 0, 23, 11, 19, 25, 11, 28, 7, 24, 23, 10, 11, 24, 8, 24, 24, 0, 15, 23, 24, 0, 28, 14, 24, 19, 24, 5 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 0 } }, { "id": 9, "type": 2, "geometry": [ 9, 7338, 2618, 226, 1, 0, 4, 24, 15, 24, 5, 24, 4, 24, 10, 24, 3, 24, 2, 24, 1, 24, 0, 24, 1, 24, 1, 32, 2, 24, 12, 23, 24, 14, 11, 23, 11, 25, 6, 25, 8, 23, 26, 4, 3, 23, 7, 27, 3, 23, 7, 23, 0, 23, 0, 23, 7, 23, 3, 23 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 0 } }, { "id": 10, "type": 2, "geometry": [ 9, 5264, 1706, 186, 0, 3, 24, 15, 6, 23, 5, 23, 20, 23, 24, 21, 26, 0, 24, 12, 7, 24, 13, 24, 0, 26, 1, 24, 6, 24, 18, 34, 24, 22, 23, 4, 23, 1, 23, 3, 23, 5, 14, 23, 11, 23, 23, 1, 23, 13 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 0 } }, { "id": 11, "type": 2, "geometry": [ 9, 5392, 1478, 346, 9, 0, 23, 4, 5, 24, 11, 24, 19, 24, 24, 4, 13, 24, 26, 8, 26, 6, 8, 25, 7, 23, 24, 8, 7, 23, 24, 1, 6, 23, 12, 23, 26, 5, 7, 23, 24, 13, 24, 21, 24, 15, 24, 9, 26, 13, 24, 13, 24, 15, 24, 17, 10, 25, 1, 23, 25, 13, 23, 14, 15, 24, 23, 14, 25, 14, 23, 10, 23, 5, 17, 24, 23, 12, 25, 12, 23, 24, 13, 24, 23, 8, 0, 28, 24, 12 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 0 } }, { "id": 12, "type": 2, "geometry": [ 9, 6810, 3974, 250, 0, 1, 23, 9, 23, 21, 23, 14, 13, 24, 25, 12, 23, 24, 23, 14, 23, 12, 1, 24, 23, 7, 23, 4, 1, 24, 4, 24, 20, 24, 4, 24, 26, 6, 24, 8, 24, 1, 24, 6, 26, 8, 16, 25, 2, 23, 24, 15, 0, 23, 24, 15, 13, 23, 3, 23, 1, 23, 14, 23, 24, 3 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 0 } }, { "id": 13, "type": 2, "geometry": [ 9, 6392, 4054, 218, 0, 0, 24, 8, 24, 20, 12, 24, 20, 24, 6, 24, 24, 2, 2, 24, 0, 24, 1, 24, 23, 7, 23, 11, 25, 17, 21, 23, 15, 23, 9, 23, 15, 23, 17, 23, 15, 23, 21, 23, 23, 19, 19, 23, 24, 1, 26, 0, 18, 24, 24, 18, 24, 24 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 0 } }, { "id": 14, "type": 2, "geometry": [ 9, 6596, 4274, 146, 0, 0, 24, 8, 24, 2, 24, 0, 24, 8, 1, 23, 23, 2, 23, 19, 23, 7, 25, 10, 23, 1, 23, 11, 23, 5, 23, 16, 24, 6, 24, 14, 24, 2, 24, 4 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 0 } }, { "id": 15, "type": 2, "geometry": [ 9, 6822, 4114, 234, 0, 0, 1, 23, 24, 17, 26, 1, 24, 4, 26, 0, 24, 17, 13, 24, 23, 8, 27, 3, 23, 0, 23, 4, 2, 28, 24, 4, 24, 7, 24, 1, 23, 18, 23, 8, 20, 24, 8, 24, 23, 18, 13, 25, 11, 24, 2, 24, 23, 1, 4, 23, 1, 23, 7, 23, 4, 23 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 0 } }, { "id": 16, "type": 2, "geometry": [ 9, 7262, 4254, 354, 0, 0, 19, 23, 23, 19, 23, 9, 27, 5, 23, 13, 23, 6, 9, 23, 24, 9, 23, 5, 23, 17, 18, 23, 24, 4, 24, 18, 1, 24, 26, 22, 24, 21, 26, 17, 24, 4, 26, 12, 24, 4, 24, 10, 24, 8, 24, 10, 24, 10, 18, 24, 24, 14, 24, 12, 15, 24, 24, 20, 24, 16, 14, 24, 23, 6, 23, 3, 19, 23, 19, 23, 23, 3, 23, 3, 23, 14, 3, 24, 23, 1, 23, 9, 23, 13, 7, 23 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 0 } }, { "id": 17, "type": 2, "geometry": [ 9, 6878, 3668, 130, 0, 0, 1, 24, 0, 24, 15, 24, 4, 24, 24, 2, 24, 10, 8, 24, 23, 13, 23, 7, 23, 0, 7, 23, 15, 23, 8, 23, 4, 23, 24, 13 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 0 } }, { "id": 18, "type": 2, "geometry": [ 9, 6976, 3928, 106, 0, 0, 5, 23, 7, 23, 23, 10, 23, 20, 23, 0, 21, 24, 24, 9, 24, 3, 2, 24, 24, 18, 8, 23, 24, 3 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 0 } }, { "id": 19, "type": 2, "geometry": [ 9, 8020, 5190, 178, 4, 0, 20, 23, 16, 23, 1, 23, 23, 12, 7, 23, 15, 24, 15, 24, 5, 24, 23, 12, 23, 18, 23, 18, 15, 24, 15, 24, 24, 8, 24, 14, 24, 0, 24, 21, 6, 23, 6, 23, 16, 23, 24, 8 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 0 } }, { "id": 20, "type": 2, "geometry": [ 9, 8122, 5080, 178, 0, 0, 7, 24, 13, 24, 23, 4, 6, 23, 11, 23, 9, 23, 10, 23, 2, 23, 13, 23, 17, 25, 11, 27, 24, 12, 16, 24, 4, 24, 24, 0, 6, 24, 24, 12, 26, 11, 2, 24, 9, 24, 23, 6 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 0 } }, { "id": 21, "type": 2, "geometry": [ 9, 3764, 2054, 266, 0, 0, 1, 24, 2, 24, 20, 24, 13, 24, 23, 16, 23, 18, 23, 12, 23, 18, 23, 3, 23, 11, 23, 5, 23, 2, 24, 19, 0, 23, 23, 7, 23, 2, 24, 15, 24, 21, 23, 3, 25, 6, 0, 23, 24, 9, 1, 23, 24, 14, 12, 24, 2, 24, 22, 23, 24, 17, 24, 18, 22, 23, 24, 17, 24, 14 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 0 } }, { "id": 22, "type": 2, "geometry": [ 9, 0, 2128, 234, 0, 1, 14, 23, 11, 23, 16, 23, 6, 24, 8, 24, 24, 2, 24, 1, 14, 24, 24, 18, 24, 22, 24, 3, 7, 23, 18, 23, 24, 9, 16, 23, 0, 23, 21, 23, 27, 13, 23, 5, 5, 24, 2, 24, 23, 19, 0, 23, 0, 23, 21, 23, 25, 17, 29, 23, 23, 17 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 0 } }, { "id": 23, "type": 2, "geometry": [ 9, 3956, 2648, 138, 0, 2, 0, 24, 5, 24, 23, 2, 23, 16, 23, 6, 19, 23, 24, 13, 8, 23, 23, 7, 4, 23, 24, 7, 6, 23, 24, 11, 24, 3, 12, 24, 1, 24 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 0 } }, { "id": 24, "type": 2, "geometry": [ 9, 4020, 2534, 362, 0, 2, 26, 18, 14, 24, 6, 24, 24, 20, 8, 24, 1, 24, 28, 0, 8, 24, 15, 24, 2, 24, 25, 6, 23, 0, 25, 6, 23, 2, 23, 10, 23, 6, 22, 23, 24, 13, 24, 19, 25, 14, 23, 13, 12, 23, 5, 23, 24, 11, 10, 23, 15, 25, 23, 3, 3, 23, 1, 23, 13, 24, 1, 23, 12, 23, 23, 5, 10, 23, 3, 23, 16, 23, 24, 7, 24, 3, 15, 26, 11, 24, 24, 7, 24, 0, 2, 24, 11, 24 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 0 } }, { "id": 25, "type": 2, "geometry": [ 9, 3172, 530, 1778, 1, 1, 13, 23, 9, 24, 9, 25, 63, 7, 1, 28, 18, 24, 10, 24, 34, 18, 29, 5, 23, 2, 4, 24, 2, 24, 2, 24, 23, 5, 13, 25, 27, 25, 33, 31, 53, 25, 6, 26, 2, 26, 30, 44, 35, 1, 12, 26, 20, 24, 25, 21, 29, 25, 21, 24, 9, 30, 5, 25, 6, 27, 1, 25, 7, 23, 29, 13, 4, 24, 23, 13, 35, 16, 39, 28, 22, 24, 8, 26, 22, 24, 14, 26, 21, 25, 25, 21, 1, 23, 29, 17, 27, 20, 0, 24, 12, 24, 11, 24, 8, 26, 27, 1, 23, 0, 2, 36, 10, 24, 13, 23, 3, 25, 23, 18, 9, 24, 11, 24, 27, 16, 9, 24, 7, 24, 24, 16, 24, 2, 24, 9, 11, 24, 1, 24, 4, 24, 7, 24, 15, 26, 23, 10, 25, 2, 23, 14, 19, 24, 25, 16, 31, 12, 2, 24, 3, 24, 24, 18, 24, 10, 24, 8, 6, 32, 36, 7, 24, 13, 10, 24, 29, 6, 37, 10, 26, 6, 30, 8, 27, 5, 37, 1, 29, 4, 3, 26, 24, 0, 16, 24, 28, 1, 33, 26, 16, 24, 40, 20, 1, 23, 24, 3, 18, 24, 16, 23, 24, 2, 28, 2, 26, 6, 24, 14, 24, 18, 16, 24, 0, 24, 6, 24, 24, 10, 8, 24, 14, 24, 23, 16, 24, 9, 4, 24, 4, 24, 14, 24, 5, 24, 18, 24, 1, 24, 11, 26, 1, 24, 5, 24, 24, 8, 10, 23, 12, 23, 7, 23, 12, 24, 2, 24, 26, 6, 1, 24, 24, 10, 6, 24, 1, 24, 23, 7, 25, 13, 23, 3, 2, 24, 36, 18, 24, 12, 24, 0, 5, 24, 3, 24, 14, 24, 23, 22, 27, 4, 30, 14, 26, 20, 23, 5, 23, 3, 23, 3, 26, 14, 23, 5, 7, 24, 24, 9, 24, 4, 24, 7, 2, 24, 23, 11, 23, 3, 23, 16, 24, 6, 30, 1, 23, 4, 25, 6, 24, 20, 23, 12, 7, 24, 30, 11, 24, 21, 24, 5, 23, 8, 23, 24, 23, 20, 24, 10, 5, 24, 26, 17, 21, 24, 6, 24, 2, 24, 24, 17, 24, 3, 6, 24, 23, 11, 11, 24, 26, 3, 27, 10, 0, 24, 24, 10, 3, 24, 6, 24, 24, 22, 2, 24, 24, 8, 3, 24, 24, 5, 24, 1, 12, 24, 24, 0, 24, 16, 15, 23, 24, 8, 8, 23, 4, 23, 10, 23, 17, 23, 24, 15, 8, 23, 4, 23, 1, 23, 24, 5, 11, 23, 22, 23, 6, 23, 24, 4, 4, 23, 14, 23, 0, 24, 24, 6 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 0 } }, { "id": 26, "type": 2, "geometry": [ 9, 3276, 2076, 1858, 2, 0, 0, 23, 24, 4, 18, 23, 12, 23, 8, 23, 24, 15, 7, 23, 0, 23, 12, 24, 24, 12, 24, 21, 24, 2, 24, 5, 24, 13, 24, 9, 14, 23, 14, 23, 24, 9, 24, 15, 29, 7, 23, 9, 27, 1, 23, 4, 23, 16, 24, 21, 25, 3, 23, 0, 24, 21, 6, 23, 32, 6, 22, 25, 23, 9, 25, 9, 17, 23, 24, 10, 24, 16, 24, 14, 24, 24, 2, 24, 24, 20, 10, 23, 14, 24, 8, 23, 1, 23, 0, 23, 15, 23, 25, 25, 23, 19, 23, 2, 24, 9, 17, 23, 23, 20, 5, 23, 24, 1, 5, 23, 25, 6, 5, 23, 24, 10, 24, 11, 1, 23, 24, 0, 26, 8, 2, 24, 26, 2, 32, 7, 0, 23, 23, 25, 3, 24, 13, 23, 10, 23, 26, 9, 26, 18, 8, 23, 23, 11, 7, 23, 23, 1, 24, 13, 15, 25, 23, 7, 24, 6, 24, 10, 20, 23, 5, 27, 35, 5, 24, 1, 10, 23, 23, 5, 29, 9, 2, 23, 24, 13, 26, 13, 24, 14, 14, 27, 7, 23, 23, 0, 25, 19, 32, 5, 13, 25, 31, 2, 3, 24, 5, 23, 4, 23, 10, 25, 4, 23, 1, 25, 28, 17, 0, 23, 22, 23, 11, 23, 2, 25, 15, 23, 1, 25, 12, 25, 40, 8, 24, 5, 24, 27, 23, 21, 27, 10, 31, 19, 17, 24, 18, 27, 26, 16, 24, 23, 24, 12, 34, 15, 6, 29, 26, 7, 18, 23, 20, 31, 1, 23, 23, 25, 25, 15, 29, 0, 27, 10, 9, 24, 5, 24, 23, 5, 27, 16, 4, 23, 7, 23, 3, 24, 19, 28, 15, 24, 11, 24, 23, 22, 3, 24, 1, 23, 14, 25, 12, 23, 20, 43, 2, 23, 2, 23, 1, 25, 41, 9, 7, 24, 0, 24, 23, 12, 23, 18, 23, 16, 4, 25, 36, 25, 0, 23, 67, 21, 23, 10, 29, 12, 35, 16, 9, 24, 15, 23, 24, 17, 42, 23, 37, 19, 28, 2, 148, 13, 32, 9, 14, 25, 12, 23, 23, 23, 23, 15, 23, 9, 23, 22, 10, 23, 4, 23, 5, 23, 31, 16, 29, 0, 49, 7, 29, 20, 37, 8, 13, 26, 27, 11, 9, 24, 0, 23, 52, 17, 0, 25, 50, 6, 110, 19, 51, 51, 51, 25, 25, 0, 49, 4, 4, 24, 11, 23, 55, 10, 2, 24, 27, 15, 4, 24, 23, 11, 2, 24, 18, 24, 24, 6, 43, 18, 28, 4, 33, 8, 6, 24, 41, 21, 15, 23, 17, 23, 25, 3, 10, 30, 39, 13, 13, 24, 42, 24, 29, 7, 23, 15, 5, 24, 24, 14, 90, 14, 24, 14, 1, 24, 6, 24, 9, 23 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 0 } }, { "id": 27, "type": 2, "geometry": [ 9, 4646, 3078, 986, 1, 0, 1, 24, 23, 11, 0, 24, 2, 24, 22, 24, 23, 0, 0, 24, 23, 2, 13, 23, 24, 9, 23, 9, 21, 23, 13, 23, 7, 23, 4, 23, 23, 21, 23, 11, 23, 19, 23, 17, 9, 23, 23, 0, 5, 23, 23, 2, 5, 24, 10, 24, 24, 22, 10, 26, 24, 16, 24, 18, 24, 14, 24, 16, 23, 0, 11, 24, 5, 24, 11, 24, 1, 23, 0, 23, 23, 19, 21, 23, 23, 11, 23, 19, 23, 21, 9, 23, 21, 23, 23, 4, 23, 16, 23, 16, 23, 5, 23, 5, 23, 18, 2, 24, 19, 24, 23, 10, 17, 24, 15, 24, 10, 24, 19, 24, 23, 16, 23, 16, 25, 0, 23, 6, 23, 8, 13, 25, 23, 2, 23, 0, 0, 23, 7, 23, 0, 23, 8, 27, 2, 23, 3, 25, 5, 23, 24, 17, 24, 1, 24, 1, 24, 4, 24, 0, 24, 0, 24, 2, 12, 27, 2, 25, 2, 23, 15, 23, 7, 23, 23, 9, 23, 5, 11, 23, 24, 7, 24, 6, 24, 1, 0, 23, 24, 1, 24, 3, 22, 23, 4, 23, 24, 11, 24, 7, 10, 23, 10, 25, 24, 21, 24, 5, 28, 9, 24, 3, 1, 23, 5, 23, 11, 23, 0, 35, 24, 7, 14, 29, 10, 24, 14, 26, 23, 24, 5, 24, 8, 24, 24, 2, 26, 8, 24, 3, 24, 22, 24, 15, 24, 7, 24, 15, 24, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 0 } }, { "id": 28, "type": 2, "geometry": [ 9, 4410, 4348, 458, 0, 2, 3, 24, 19, 24, 9, 24, 5, 24, 5, 30, 1, 24, 8, 24, 16, 24, 10, 24, 14, 24, 14, 24, 0, 24, 4, 24, 4, 24, 4, 24, 6, 24, 16, 24, 20, 24, 8, 24, 10, 24, 14, 24, 1, 24, 4, 24, 24, 24, 24, 2, 24, 5, 24, 9, 24, 0, 24, 6, 24, 3, 24, 11, 24, 13, 24, 21, 22, 23, 18, 23, 12, 23, 24, 21, 8, 23, 8, 23, 9, 23, 26, 17, 24, 9, 20, 23, 2, 23, 7, 23, 3, 23, 7, 23, 26, 21, 24, 21, 24, 17, 24, 7, 24, 21, 12, 23, 0, 23, 1, 23, 1, 23 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 0 } }, { "id": 29, "type": 2, "geometry": [ 9, 5066, 4100, 266, 2, 1, 24, 23, 24, 17, 26, 15, 22, 23, 24, 25, 18, 27, 10, 23, 12, 23, 16, 23, 10, 23, 4, 23, 23, 9, 23, 6, 23, 2, 23, 6, 23, 0, 23, 10, 23, 9, 23, 15, 12, 25, 23, 23, 25, 21, 23, 19, 17, 23, 5, 23, 19, 23, 17, 23, 0, 23, 5, 23, 13, 23, 17, 23, 5, 23 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 0 } }, { "id": 30, "type": 2, "geometry": [ 9, 5016, 4358, 90, 0, 1, 0, 23, 17, 23, 9, 23, 2, 23, 9, 23, 4, 23, 14, 23, 10, 23, 18, 23, 24, 19 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 0 } }, { "id": 31, "type": 2, "geometry": [ 9, 4200, 3954, 162, 2, 0, 16, 24, 24, 18, 24, 3, 24, 3, 24, 16, 6, 24, 1, 24, 3, 24, 7, 24, 5, 24, 12, 24, 24, 20, 20, 24, 16, 24, 24, 12, 9, 24, 10, 26, 3, 24, 8, 24 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 0 } }, { "id": 32, "type": 2, "geometry": [ 9, 4746, 2350, 10, 0, 2 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 33, "type": 2, "geometry": [ 9, 4528, 2616, 1434, 8, 1, 24, 21, 14, 25, 11, 24, 16, 23, 5, 23, 2, 23, 10, 23, 24, 15, 16, 26, 24, 1, 0, 23, 4, 23, 23, 19, 8, 23, 24, 7, 24, 3, 24, 4, 24, 2, 24, 19, 24, 0, 23, 13, 7, 23, 23, 10, 23, 2, 23, 4, 23, 16, 23, 2, 23, 19, 23, 13, 4, 23, 0, 23, 1, 23, 7, 23, 10, 23, 24, 19, 20, 23, 18, 23, 24, 17, 0, 23, 13, 23, 23, 3, 23, 0, 23, 22, 1, 24, 0, 24, 11, 24, 21, 24, 23, 16, 13, 24, 17, 24, 1, 24, 1, 24, 0, 24, 24, 20, 16, 24, 23, 18, 23, 5, 24, 10, 11, 24, 27, 6, 12, 24, 1, 24, 3, 24, 9, 30, 23, 4, 13, 24, 23, 8, 11, 23, 4, 23, 15, 23, 9, 23, 0, 23, 13, 23, 9, 23, 1, 23, 5, 24, 23, 20, 15, 24, 23, 12, 23, 1, 23, 23, 26, 17, 7, 23, 23, 8, 24, 17, 0, 23, 23, 6, 12, 23, 24, 19, 23, 0, 17, 23, 24, 7, 2, 23, 24, 10, 19, 23, 24, 0, 24, 5, 12, 23, 24, 11, 24, 13, 23, 12, 4, 23, 10, 23, 24, 1, 2, 23, 24, 15, 9, 23, 16, 23, 24, 11, 23, 6, 10, 23, 12, 23, 24, 11, 8, 23, 12, 23, 16, 23, 24, 0, 23, 1, 24, 13, 1, 23, 12, 23, 28, 6, 5, 23, 24, 13, 2, 24, 18, 25, 24, 14, 1, 23, 24, 4, 12, 23, 24, 15, 1, 23, 24, 6, 11, 26, 1, 24, 20, 27, 16, 25, 0, 26, 24, 15, 6, 24, 4, 24, 6, 23, 6, 23, 24, 4, 24, 18, 7, 24, 25, 0, 10, 24, 24, 1, 24, 6, 26, 5, 15, 24, 24, 1, 1, 24, 28, 13, 32, 6, 24, 16, 24, 22, 24, 20, 24, 16, 24, 22, 0, 24, 2, 26, 15, 24, 23, 14, 33, 4, 23, 11, 25, 3, 23, 11, 23, 13, 25, 17, 12, 24, 20, 26, 22, 24, 9, 24, 10, 24, 2, 24, 24, 14 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 0 } }, { "id": 34, "type": 2, "geometry": [ 9, 4910, 2892, 178, 1, 2, 17, 24, 24, 16, 23, 16, 23, 16, 7, 23, 23, 7, 24, 15, 23, 7, 11, 23, 23, 8, 15, 24, 11, 24, 21, 24, 1, 24, 15, 24, 2, 24, 20, 24, 23, 10, 23, 14, 23, 11, 23, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 0 } }, { "id": 35, "type": 2, "geometry": [ 9, 5186, 3390, 122, 0, 1, 24, 19, 24, 6, 14, 24, 12, 24, 24, 16, 26, 18, 24, 10, 24, 3, 24, 9, 14, 24, 24, 18, 24, 2, 24, 2, 26, 8 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 0 } }, { "id": 36, "type": 2, "geometry": [ 9, 4910, 2892, 354, 2, 0, 24, 5, 24, 7, 24, 5, 23, 20, 2, 24, 23, 22, 24, 24, 24, 16, 24, 20, 24, 18, 12, 24, 15, 24, 23, 8, 25, 1, 23, 0, 23, 9, 23, 9, 23, 7, 23, 1, 23, 6, 23, 14, 25, 4, 25, 0, 1, 24, 23, 0, 23, 0, 19, 24, 18, 24, 4, 24, 10, 24, 24, 8, 24, 18, 24, 19, 24, 8, 24, 18, 24, 7, 24, 13, 24, 3, 0, 24, 0, 24, 5, 24, 9, 24, 7, 24 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 0 } }, { "id": 37, "type": 2, "geometry": [ 9, 5542, 1856, 386, 3, 1, 27, 3, 23, 5, 17, 24, 14, 24, 19, 26, 23, 4, 2, 23, 25, 8, 25, 18, 23, 1, 19, 24, 23, 0, 1, 23, 16, 23, 23, 4, 23, 18, 25, 16, 23, 16, 25, 16, 25, 16, 3, 24, 23, 22, 23, 21, 9, 23, 24, 11, 6, 23, 25, 21, 23, 0, 1, 24, 1, 24, 7, 26, 18, 24, 3, 24, 3, 24, 23, 19, 23, 0, 23, 24, 23, 20, 4, 30, 8, 24, 23, 2, 23, 7, 25, 21, 11, 24, 24, 14, 6, 26, 23, 2 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 0 } }, { "id": 38, "type": 2, "geometry": [ 9, 3736, 3824, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 0 } }, { "id": 39, "type": 2, "geometry": [ 9, 4888, 3314, 138, 0, 4, 11, 24, 23, 8, 23, 5, 23, 7, 23, 10, 23, 10, 23, 5, 23, 9, 23, 3, 23, 9, 25, 5, 25, 15, 23, 0, 23, 10, 9, 24, 5, 28 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 0 } }, { "id": 40, "type": 2, "geometry": [ 9, 4888, 3504, 482, 0, 1, 13, 23, 7, 23, 9, 23, 17, 23, 3, 23, 16, 24, 14, 24, 20, 23, 1, 24, 24, 16, 16, 24, 14, 24, 12, 28, 24, 18, 10, 24, 2, 24, 8, 24, 24, 18, 16, 24, 10, 24, 16, 24, 12, 26, 2, 24, 6, 24, 6, 24, 24, 2, 24, 9, 24, 5, 24, 9, 24, 3, 24, 17, 24, 5, 24, 7, 14, 23, 24, 7, 24, 5, 24, 21, 24, 17, 24, 5, 0, 23, 22, 23, 20, 23, 7, 23, 23, 19, 23, 5, 17, 23, 0, 23, 23, 12, 17, 24, 23, 8, 23, 0, 23, 5, 6, 23, 23, 6, 9, 23, 7, 23, 23, 19, 7, 23, 11, 23 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 0 } }, { "id": 41, "type": 2, "geometry": [ 9, 4534, 3372, 626, 1, 0, 23, 13, 27, 9, 25, 5, 9, 23, 23, 9, 23, 7, 23, 2, 23, 9, 23, 19, 18, 23, 0, 23, 0, 25, 23, 17, 23, 8, 23, 0, 23, 0, 23, 6, 23, 3, 23, 4, 23, 6, 23, 0, 23, 10, 23, 14, 23, 16, 23, 1, 23, 0, 23, 3, 23, 5, 11, 30, 21, 24, 23, 10, 15, 24, 11, 24, 0, 24, 3, 24, 23, 24, 23, 16, 23, 10, 9, 24, 23, 26, 5, 24, 21, 24, 7, 24, 15, 24, 3, 24, 18, 24, 4, 26, 2, 26, 9, 26, 3, 26, 9, 24, 12, 24, 24, 0, 23, 6, 24, 14, 23, 2, 24, 16, 10, 24, 24, 16, 16, 24, 8, 24, 26, 22, 24, 18, 24, 18, 26, 18, 24, 10, 24, 9, 26, 7, 30, 1, 24, 2, 24, 8, 24, 9, 24, 11, 24, 7, 24, 5, 24, 0, 24, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 0 } }, { "id": 42, "type": 2, "geometry": [ 9, 4822, 3338, 10, 0, 2 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 0 } }, { "id": 43, "type": 2, "geometry": [ 9, 4846, 3350, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 0 } }, { "id": 44, "type": 2, "geometry": [ 9, 4884, 3424, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 0 } }, { "id": 45, "type": 2, "geometry": [ 9, 4826, 3350, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 0 } }, { "id": 46, "type": 2, "geometry": [ 9, 4826, 3350, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 0 } }, { "id": 47, "type": 2, "geometry": [ 9, 6536, 3606, 618, 2, 0, 24, 15, 24, 6, 10, 24, 10, 23, 24, 1, 24, 11, 24, 3, 1, 23, 24, 14, 24, 1, 24, 13, 24, 15, 24, 17, 12, 23, 10, 23, 20, 23, 10, 23, 12, 23, 1, 23, 23, 1, 24, 13, 7, 23, 23, 5, 24, 2, 5, 23, 5, 23, 13, 23, 11, 23, 16, 23, 24, 11, 24, 9, 23, 15, 23, 2, 23, 8, 1, 23, 23, 5, 3, 23, 24, 1, 20, 23, 24, 15, 24, 9, 2, 24, 5, 24, 24, 9, 24, 9, 24, 8, 8, 24, 0, 24, 24, 6, 16, 24, 5, 24, 5, 24, 4, 24, 24, 13, 24, 5, 20, 23, 0, 23, 7, 23, 15, 23, 23, 21, 12, 23, 24, 11, 18, 25, 6, 23, 24, 17, 24, 15, 24, 14, 24, 11, 24, 17, 14, 23, 20, 23, 22, 23, 14, 23, 14, 23, 14, 23, 14, 23 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 0 } }, { "id": 48, "type": 2, "geometry": [ 9, 6190, 1386, 1018, 1, 0, 23, 10, 23, 10, 25, 8, 9, 24, 23, 1, 0, 24, 5, 24, 23, 7, 18, 24, 0, 24, 12, 24, 23, 24, 2, 24, 3, 25, 24, 19, 25, 1, 23, 10, 27, 4, 25, 2, 23, 2, 23, 12, 3, 24, 12, 24, 0, 24, 24, 18, 16, 28, 24, 22, 7, 24, 2, 24, 8, 24, 15, 24, 2, 23, 3, 23, 9, 24, 3, 26, 3, 23, 2, 25, 14, 29, 10, 23, 23, 2, 35, 23, 25, 23, 23, 1, 23, 18, 8, 24, 31, 13, 1, 26, 28, 24, 24, 20, 25, 7, 27, 5, 13, 23, 5, 23, 8, 23, 0, 23, 11, 25, 1, 24, 2, 24, 25, 24, 13, 24, 4, 24, 8, 24, 10, 24, 13, 26, 1, 24, 6, 26, 24, 20, 26, 7, 26, 16, 12, 24, 4, 24, 9, 24, 24, 10, 23, 0, 5, 23, 2, 23, 13, 23, 23, 3, 25, 10, 1, 24, 10, 26, 15, 30, 5, 24, 23, 22, 17, 24, 25, 7, 23, 3, 15, 23, 24, 6, 24, 6, 16, 23, 10, 23, 18, 23, 0, 23, 1, 29, 13, 23, 4, 23, 0, 25, 3, 23, 6, 23, 0, 23, 13, 23, 2, 23, 8, 23, 8, 23, 3, 23, 23, 21, 23, 0, 23, 0, 13, 24, 3, 24, 3, 24, 13, 26, 23, 20, 3, 24, 10, 28, 0, 24, 7, 24, 26, 22, 8, 28, 14, 24, 9, 24, 25, 23, 23, 17, 27, 19, 27, 19 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 0 } }, { "id": 49, "type": 2, "geometry": [ 9, 7572, 1776, 1002, 3, 0, 17, 23, 23, 11, 17, 23, 25, 0, 26, 11, 13, 25, 27, 9, 23, 2, 13, 24, 25, 24, 7, 23, 24, 7, 23, 11, 24, 7, 27, 17, 23, 5, 23, 1, 23, 5, 23, 7, 12, 24, 23, 6, 19, 24, 24, 3, 13, 24, 8, 26, 23, 3, 23, 14, 23, 7, 25, 7, 21, 24, 23, 9, 19, 23, 15, 24, 5, 24, 11, 24, 23, 15, 15, 23, 15, 23, 6, 25, 23, 19, 24, 14, 6, 23, 23, 11, 24, 9, 27, 5, 24, 23, 27, 19, 23, 15, 5, 24, 5, 23, 23, 0, 23, 17, 19, 24, 8, 24, 23, 10, 27, 4, 27, 0, 25, 9, 15, 23, 29, 15, 25, 5, 23, 6, 25, 8, 3, 24, 3, 26, 4, 23, 7, 23, 0, 27, 23, 10, 19, 23, 27, 0, 7, 24, 24, 5, 19, 26, 25, 10, 25, 14, 25, 1, 9, 24, 2, 23, 24, 27, 30, 17, 18, 23, 18, 23, 24, 19, 24, 21, 22, 23, 14, 23, 7, 23, 12, 23, 9, 23, 25, 27, 15, 23, 27, 5, 23, 0, 23, 2, 27, 22, 0, 23, 6, 23, 23, 7, 23, 3, 23, 2, 24, 11, 24, 15, 27, 23, 25, 11, 27, 22, 17, 24, 13, 24, 5, 24, 1, 24, 24, 10, 23, 7, 23, 6, 3, 24, 6, 24, 13, 23, 25, 4, 19, 24, 23, 1, 23, 17, 23, 0, 23, 6, 24, 14, 27, 12 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 0 } }, { "id": 50, "type": 2, "geometry": [ 9, 7290, 2800, 274, 2, 1, 4, 23, 3, 23, 8, 23, 10, 23, 0, 23, 1, 23, 19, 23, 23, 7, 15, 24, 25, 2, 1, 23, 23, 17, 23, 3, 20, 23, 24, 21, 20, 23, 16, 23, 24, 19, 18, 25, 22, 23, 22, 25, 24, 3, 26, 1, 24, 0, 24, 0, 24, 0, 24, 6, 10, 23, 24, 8, 24, 2, 7, 24, 24, 0, 24, 3 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 0 } }, { "id": 51, "type": 2, "geometry": [ 9, 7582, 2418, 666, 2, 0, 24, 0, 3, 23, 12, 25, 24, 21, 16, 23, 14, 23, 24, 1, 24, 7, 24, 0, 5, 24, 8, 24, 24, 9, 20, 23, 24, 3, 5, 23, 24, 21, 26, 8, 23, 8, 3, 24, 0, 24, 13, 24, 23, 12, 21, 24, 21, 24, 15, 24, 15, 24, 23, 20, 25, 8, 1, 24, 17, 24, 5, 24, 1, 24, 0, 24, 4, 26, 4, 24, 4, 24, 6, 26, 2, 24, 4, 24, 26, 23, 14, 23, 4, 23, 24, 13, 6, 27, 26, 23, 24, 5, 7, 23, 6, 23, 22, 23, 3, 23, 8, 23, 23, 7, 0, 23, 18, 23, 6, 23, 10, 23, 24, 0, 24, 9, 26, 2, 28, 15, 24, 0, 18, 24, 24, 21, 24, 19, 18, 23, 24, 9, 30, 17, 24, 13, 16, 23, 24, 14, 24, 10, 10, 23, 9, 23, 7, 25, 11, 31, 23, 15, 23, 8, 23, 9, 24, 11, 26, 10, 24, 6, 26, 7 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 0 } }, { "id": 52, "type": 2, "geometry": [ 9, 8190, 1898, 274, 3, 0, 23, 17, 23, 15, 23, 11, 23, 11, 27, 0, 23, 3, 29, 3, 29, 7, 1, 24, 4, 24, 8, 24, 33, 16, 11, 23, 17, 23, 29, 2, 25, 5, 27, 1, 23, 5, 25, 2, 19, 24, 2, 24, 9, 24, 6, 25, 9, 23, 13, 23, 11, 23, 4, 23, 17, 27, 23, 11, 33, 5, 23, 2, 31, 6, 27, 10 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 0 } }, { "id": 53, "type": 2, "geometry": [ 9, 7148, 4878, 522, 0, 1, 23, 5, 23, 7, 23, 9, 23, 2, 23, 2, 25, 12, 23, 4, 23, 4, 25, 14, 17, 24, 23, 2, 23, 0, 23, 0, 23, 10, 23, 12, 23, 10, 23, 3, 23, 17, 6, 23, 4, 23, 0, 23, 11, 23, 5, 23, 5, 23, 11, 25, 7, 23, 11, 23, 24, 0, 13, 23, 5, 23, 8, 23, 2, 23, 24, 11, 24, 13, 24, 11, 26, 5, 24, 9, 24, 0, 24, 13, 16, 23, 2, 23, 20, 23, 8, 24, 6, 23, 24, 2, 0, 23, 22, 23, 24, 5, 24, 4, 8, 24, 24, 9, 14, 23, 12, 23, 24, 17, 24, 2, 11, 23, 24, 6, 24, 12, 24, 6, 24, 2, 8, 24, 15, 24, 6, 24, 24, 14 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 0 } }, { "id": 54, "type": 2, "geometry": [ 9, 7234, 4476, 490, 0, 0, 24, 8, 26, 20, 24, 23, 6, 23, 2, 23, 0, 25, 4, 23, 10, 27, 24, 16, 6, 24, 4, 24, 24, 12, 14, 24, 4, 24, 14, 24, 4, 24, 26, 20, 24, 18, 16, 24, 8, 24, 24, 12, 6, 24, 24, 14, 14, 24, 14, 24, 2, 24, 4, 24, 4, 24, 5, 24, 7, 26, 1, 24, 13, 24, 17, 24, 11, 24, 3, 24, 13, 24, 5, 24, 5, 24, 23, 2, 25, 12, 23, 14, 23, 13, 23, 4, 23, 12, 23, 11, 23, 7, 23, 17, 3, 23, 13, 23, 23, 3, 6, 23, 23, 10, 2, 23, 10, 23, 3, 23, 7, 24, 23, 18, 7, 24, 15, 23, 13, 23 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 0 } }, { "id": 55, "type": 2, "geometry": [ 9, 866, 2378, 962, 1, 1, 27, 1, 23, 2, 11, 23, 23, 4, 19, 23, 23, 4, 5, 24, 23, 20, 23, 12, 23, 18, 13, 23, 10, 23, 14, 25, 24, 3, 10, 23, 23, 12, 23, 12, 21, 24, 7, 24, 23, 18, 9, 24, 6, 24, 23, 20, 23, 18, 11, 24, 23, 12, 23, 18, 19, 24, 23, 6, 23, 1, 11, 24, 23, 3, 24, 23, 24, 11, 26, 17, 24, 15, 20, 23, 10, 23, 4, 23, 14, 23, 25, 18, 23, 10, 23, 19, 23, 4, 23, 6, 4, 25, 0, 25, 7, 23, 21, 24, 23, 11, 23, 21, 24, 11, 17, 23, 19, 23, 16, 25, 10, 23, 26, 17, 24, 0, 24, 11, 20, 23, 9, 23, 8, 23, 23, 4, 23, 10, 31, 0, 23, 2, 23, 9, 9, 23, 23, 21, 24, 17, 28, 11, 22, 23, 24, 3, 11, 24, 26, 6, 26, 2, 2, 23, 17, 23, 22, 24, 24, 6, 23, 13, 2, 23, 23, 0, 23, 5, 7, 25, 25, 25, 23, 15, 0, 23, 28, 15, 24, 5, 18, 27, 4, 23, 18, 23, 26, 9, 24, 19, 4, 24, 0, 23, 26, 13, 24, 7, 18, 27, 24, 8, 3, 24, 24, 17, 16, 24, 24, 9, 24, 22, 26, 10, 24, 3, 24, 6, 24, 8, 24, 8, 24, 4, 24, 10, 24, 7, 24, 8, 24, 18, 24, 6, 24, 4, 24, 18 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 0 } }, { "id": 56, "type": 2, "geometry": [ 9, 958, 1892, 482, 8, 4, 24, 6, 24, 14, 11, 23, 16, 23, 24, 13, 2, 24, 24, 7, 24, 19, 24, 19, 24, 3, 15, 24, 23, 10, 19, 24, 21, 24, 24, 0, 1, 23, 24, 15, 24, 11, 28, 13, 24, 21, 0, 23, 24, 24, 8, 26, 18, 24, 24, 15, 4, 23, 14, 24, 24, 9, 30, 2, 24, 16, 26, 16, 28, 14, 24, 12, 28, 6, 26, 0, 16, 24, 25, 14, 4, 24, 26, 4, 26, 2, 28, 1, 24, 11, 24, 14, 24, 20, 6, 24, 12, 24, 3, 23, 4, 23, 7, 23, 24, 19, 24, 19, 23, 2, 23, 14, 9, 25, 26, 7, 24, 13, 18, 24, 18, 24, 24, 6 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 0 } }, { "id": 57, "type": 2, "geometry": [ 9, 1262, 3012, 402, 0, 1, 8, 23, 2, 23, 2, 23, 0, 23, 2, 23, 9, 25, 7, 23, 24, 2, 12, 24, 16, 23, 7, 23, 11, 23, 13, 23, 23, 3, 23, 5, 23, 15, 9, 23, 2, 23, 8, 23, 17, 24, 5, 23, 15, 23, 23, 9, 7, 23, 8, 23, 2, 23, 5, 24, 1, 23, 3, 24, 13, 23, 23, 1, 10, 23, 23, 15, 21, 23, 0, 23, 9, 23, 23, 19, 7, 23, 4, 24, 2, 24, 19, 23, 23, 11, 20, 24, 23, 4, 21, 25, 23, 13, 7, 23, 23, 6, 23, 9 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 0 } }, { "id": 58, "type": 2, "geometry": [ 9, 2486, 3006, 1962, 0, 0, 16, 23, 24, 13, 24, 3, 16, 23, 24, 0, 26, 11, 24, 4, 23, 12, 25, 20, 2, 24, 24, 1, 16, 23, 24, 5, 24, 7, 24, 9, 25, 13, 23, 1, 23, 15, 9, 23, 0, 23, 23, 7, 24, 9, 6, 23, 23, 11, 23, 4, 23, 12, 23, 14, 23, 26, 21, 24, 23, 8, 23, 16, 13, 24, 25, 14, 22, 23, 24, 17, 24, 13, 24, 19, 16, 23, 23, 9, 24, 4, 24, 23, 24, 13, 16, 23, 24, 9, 24, 0, 24, 1, 24, 2, 24, 4, 24, 3, 24, 7, 22, 23, 24, 9, 24, 7, 18, 23, 1, 23, 9, 23, 23, 4, 0, 23, 23, 3, 23, 22, 25, 3, 24, 3, 24, 11, 23, 6, 24, 9, 24, 7, 23, 13, 25, 5, 23, 1, 8, 23, 23, 13, 5, 23, 6, 23, 23, 13, 1, 23, 23, 13, 12, 23, 21, 23, 3, 23, 23, 2, 6, 24, 17, 24, 23, 14, 19, 24, 3, 23, 19, 24, 12, 23, 23, 15, 7, 23, 1, 23, 23, 1, 24, 0, 1, 23, 8, 23, 23, 1, 23, 3, 1, 23, 23, 9, 13, 23, 23, 4, 23, 0, 23, 7, 23, 5, 13, 26, 16, 24, 7, 24, 6, 24, 6, 24, 13, 24, 9, 24, 8, 24, 24, 22, 8, 26, 2, 28, 3, 24, 21, 26, 23, 16, 23, 12, 16, 24, 2, 24, 6, 24, 4, 24, 5, 24, 13, 24, 23, 17, 11, 23, 17, 23, 9, 23, 2, 23, 5, 23, 4, 23, 23, 3, 25, 3, 23, 5, 23, 15, 23, 7, 19, 23, 23, 11, 23, 11, 27, 4, 23, 8, 8, 23, 5, 23, 7, 23, 23, 7, 3, 24, 2, 23, 9, 23, 1, 23, 4, 23, 8, 23, 6, 23, 12, 23, 18, 23, 12, 23, 24, 1, 4, 23, 23, 13, 23, 9, 24, 6, 24, 10, 24, 17, 24, 3, 22, 23, 14, 23, 29, 21, 23, 17, 23, 13, 24, 1, 26, 16, 24, 18, 22, 23, 12, 23, 10, 23, 22, 24, 6, 23, 9, 23, 16, 24, 24, 2, 22, 23, 16, 23, 13, 23, 1, 23, 10, 23, 3, 23, 11, 23, 23, 13, 24, 5, 23, 3, 23, 7, 23, 1, 1, 24, 8, 24, 8, 24, 23, 24, 5, 24, 7, 24, 19, 26, 11, 23, 11, 23, 2, 23, 8, 25, 19, 25, 19, 24, 5, 24, 13, 23, 5, 23, 8, 23, 23, 0, 23, 9, 14, 23, 0, 23, 15, 23, 3, 23, 7, 23, 11, 23, 33, 13, 11, 24, 6, 24, 23, 0, 0, 24, 12, 24, 11, 24, 10, 24, 24, 16, 24, 14, 3, 24, 10, 24, 9, 24, 23, 14, 7, 24, 8, 24, 17, 24, 10, 25, 17, 23, 8, 23, 23, 9, 23, 7, 5, 24, 24, 6, 25, 9, 23, 16, 23, 0, 23, 6 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 0 } }, { "id": 59, "type": 2, "geometry": [ 9, 1262, 3012, 362, 1, 2, 6, 24, 6, 24, 7, 24, 14, 24, 4, 24, 14, 24, 24, 3, 9, 24, 10, 24, 16, 24, 14, 24, 24, 10, 24, 10, 24, 20, 8, 24, 10, 24, 14, 24, 10, 24, 24, 18, 10, 24, 5, 24, 24, 10, 24, 16, 4, 24, 18, 24, 24, 18, 9, 23, 7, 23, 7, 23, 19, 23, 13, 23, 15, 23, 21, 23, 5, 23, 1, 23, 24, 8, 18, 26, 12, 24, 14, 24, 22, 24, 24, 20, 14, 24, 20, 24, 22, 24 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 0 } }, { "id": 60, "type": 2, "geometry": [ 9, 2486, 3006, 466, 1, 2, 3, 24, 24, 12, 23, 8, 23, 8, 23, 4, 23, 16, 2, 24, 15, 24, 11, 23, 1, 24, 4, 24, 13, 24, 1, 23, 9, 23, 1, 24, 4, 24, 23, 2, 24, 10, 12, 24, 23, 1, 24, 10, 23, 12, 9, 24, 23, 18, 23, 16, 23, 22, 17, 24, 7, 24, 6, 24, 12, 26, 6, 24, 7, 23, 10, 30, 8, 24, 1, 24, 23, 14, 13, 23, 15, 23, 3, 23, 1, 23, 19, 23, 23, 0, 23, 7, 23, 5, 25, 4, 23, 3, 23, 2, 12, 24, 23, 4, 23, 9, 23, 2, 23, 3, 23, 10, 23, 16, 23, 14, 13, 24, 4, 24 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 0 } }, { "id": 61, "type": 2, "geometry": [ 9, 2262, 3888, 274, 1, 0, 23, 2, 23, 15, 17, 25, 3, 23, 2, 23, 4, 23, 2, 23, 23, 21, 23, 1, 23, 2, 23, 1, 23, 1, 10, 23, 2, 25, 12, 23, 2, 23, 16, 23, 23, 9, 23, 2, 23, 4, 11, 24, 5, 24, 23, 20, 23, 1, 23, 6, 23, 5, 23, 11, 11, 23, 17, 25, 9, 23, 0, 29, 2, 29, 10, 25 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 0 } }, { "id": 62, "type": 2, "geometry": [ 9, 1654, 3528, 242, 2, 2, 20, 24, 14, 28, 10, 24, 5, 24, 24, 22, 24, 20, 26, 8, 26, 14, 24, 10, 26, 8, 24, 14, 24, 6, 24, 1, 24, 11, 24, 12, 26, 24, 26, 20, 28, 4, 24, 10, 24, 4, 24, 20, 22, 24, 4, 24, 24, 6, 24, 20, 18, 24, 24, 1, 24, 22, 10, 23 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 0 } }, { "id": 63, "type": 2, "geometry": [ 9, 2806, 4994, 522, 0, 4, 15, 24, 21, 24, 29, 8, 23, 4, 23, 2, 7, 24, 3, 24, 23, 16, 23, 7, 13, 24, 10, 24, 7, 24, 7, 24, 9, 24, 25, 14, 15, 24, 4, 24, 24, 14, 10, 24, 19, 24, 19, 24, 1, 24, 23, 3, 3, 24, 9, 24, 12, 24, 10, 24, 23, 5, 23, 18, 9, 24, 23, 12, 16, 23, 23, 0, 23, 1, 3, 23, 24, 7, 7, 23, 7, 24, 15, 23, 2, 23, 17, 23, 12, 23, 5, 23, 1, 23, 24, 4, 23, 13, 12, 23, 23, 9, 6, 23, 24, 16, 4, 23, 4, 23, 10, 23, 3, 23, 6, 23, 8, 23, 23, 5, 9, 25, 6, 23, 10, 23, 5, 23, 3, 23, 12, 23, 8, 23 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 0 } }, { "id": 64, "type": 2, "geometry": [ 9, 2446, 4958, 226, 0, 0, 10, 23, 8, 23, 4, 23, 0, 23, 3, 23, 6, 23, 1, 23, 8, 23, 4, 23, 6, 23, 4, 23, 1, 23, 6, 23, 2, 23, 4, 23, 1, 25, 0, 23, 3, 23, 23, 19, 23, 21, 23, 11, 25, 13, 23, 19, 13, 23, 5, 23, 13, 23, 13, 23 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 0 } }, { "id": 65, "type": 2, "geometry": [ 9, 2932, 4016, 538, 0, 2, 8, 24, 20, 24, 19, 26, 21, 26, 24, 14, 24, 6, 24, 7, 24, 19, 24, 8, 24, 6, 14, 24, 24, 4, 24, 2, 24, 6, 24, 0, 24, 6, 24, 14, 24, 22, 24, 8, 24, 8, 8, 24, 2, 24, 3, 24, 13, 24, 21, 24, 19, 26, 15, 24, 17, 24, 1, 24, 4, 24, 5, 24, 1, 24, 11, 26, 7, 24, 15, 24, 3, 26, 23, 22, 23, 2, 23, 2, 23, 12, 23, 10, 25, 18, 23, 14, 1, 24, 0, 24, 1, 24, 15, 24, 19, 32, 13, 26, 23, 20, 20, 23, 3, 23, 5, 24, 17, 24, 5, 24, 17, 24, 17, 26, 23, 6, 23, 2, 23, 13, 23, 11, 0, 23, 1, 24, 10, 24, 14, 24, 16, 24 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 0 } }, { "id": 66, "type": 2, "geometry": [ 9, 2262, 3888, 290, 2, 0, 24, 11, 24, 6, 24, 16, 24, 7, 14, 23, 14, 23, 24, 5, 24, 5, 24, 13, 2, 24, 3, 24, 4, 24, 12, 23, 8, 25, 24, 3, 24, 0, 26, 20, 24, 1, 26, 10, 24, 1, 24, 9, 24, 0, 1, 24, 24, 0, 2, 24, 24, 0, 24, 14, 14, 24, 24, 14, 24, 10, 24, 0, 24, 0, 24, 10, 24, 14, 22, 24 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 0 } }, { "id": 67, "type": 2, "geometry": [ 9, 2318, 4330, 186, 0, 1, 9, 23, 13, 23, 13, 23, 23, 17, 7, 23, 0, 23, 24, 19, 6, 23, 23, 2, 4, 23, 8, 23, 6, 23, 24, 7, 8, 23, 24, 11, 12, 23, 5, 23, 2, 23, 7, 23, 17, 23, 13, 23, 23, 16 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 0 } }, { "id": 68, "type": 2, "geometry": [ 9, 5498, 3502, 346, 0, 0, 26, 1, 26, 1, 24, 2, 24, 3, 24, 16, 8, 24, 24, 2, 18, 24, 24, 3, 23, 16, 14, 24, 24, 16, 24, 11, 6, 23, 10, 24, 0, 24, 6, 24, 2, 24, 4, 24, 4, 24, 12, 24, 12, 24, 6, 24, 10, 24, 16, 26, 10, 24, 6, 24, 24, 16, 24, 21, 12, 23, 14, 23, 4, 23, 6, 23, 3, 23, 0, 23, 24, 15, 24, 11, 18, 23, 24, 17, 22, 25, 24, 11, 20, 23 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 0 } }, { "id": 69, "type": 2, "geometry": [ 9, 6084, 3592, 498, 2, 0, 24, 7, 24, 3, 24, 7, 5, 23, 24, 16, 12, 24, 8, 24, 20, 24, 22, 24, 8, 24, 1, 24, 10, 24, 24, 11, 22, 23, 18, 24, 2, 24, 6, 24, 12, 24, 0, 24, 4, 24, 5, 24, 1, 24, 8, 24, 22, 24, 16, 26, 4, 24, 6, 24, 14, 24, 24, 14, 24, 16, 6, 25, 7, 23, 0, 25, 17, 23, 23, 19, 23, 13, 7, 23, 7, 23, 15, 23, 10, 23, 8, 23, 2, 23, 24, 18, 24, 6, 22, 24, 24, 20, 14, 24, 28, 4, 8, 23, 24, 1, 24, 13, 16, 23, 4, 23, 3, 23, 5, 23, 13, 23, 23, 15, 17, 23, 17, 23, 6, 23, 18, 23 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 0 } }, { "id": 70, "type": 2, "geometry": [ 9, 8190, 8018, 1922, 5, 3, 7, 29, 25, 11, 57, 39, 15, 27, 23, 6, 5, 23, 27, 13, 23, 25, 11, 25, 25, 11, 23, 6, 35, 33, 32, 8, 8, 29, 15, 27, 23, 0, 8, 23, 25, 31, 17, 23, 15, 27, 33, 14, 53, 12, 68, 45, 5, 23, 13, 23, 13, 23, 9, 25, 9, 23, 23, 11, 5, 23, 10, 23, 0, 25, 23, 5, 38, 5, 1, 23, 27, 2, 14, 25, 43, 2, 4, 23, 60, 47, 23, 9, 10, 27, 23, 1, 24, 19, 7, 23, 6, 23, 24, 1, 1, 23, 5, 25, 24, 16, 24, 0, 40, 19, 24, 6, 11, 25, 9, 23, 25, 2, 6, 23, 11, 23, 9, 23, 0, 23, 7, 23, 11, 27, 3, 23, 6, 25, 7, 23, 12, 23, 17, 23, 23, 15, 28, 9, 12, 23, 1, 23, 10, 23, 26, 6, 24, 8, 5, 23, 5, 23, 1, 23, 2, 23, 10, 24, 24, 1, 24, 15, 11, 23, 11, 23, 26, 18, 24, 9, 24, 6, 8, 27, 23, 9, 24, 1, 1, 23, 6, 23, 10, 25, 23, 3, 17, 23, 27, 11, 23, 17, 23, 11, 25, 5, 23, 8, 23, 19, 1, 24, 10, 26, 23, 7, 1, 23, 9, 23, 23, 15, 4, 23, 23, 11, 23, 15, 23, 2, 23, 15, 23, 15, 13, 23, 5, 26, 23, 2, 25, 3, 29, 15, 23, 1, 23, 0, 23, 0, 1, 23, 19, 23, 25, 0, 23, 18, 4, 23, 10, 23, 25, 15, 23, 10, 23, 9, 23, 5, 23, 9, 23, 2, 27, 15, 23, 3, 23, 6, 23, 11, 27, 2, 27, 2, 23, 4, 17, 24, 9, 26, 25, 7, 27, 9, 2, 23, 23, 3, 21, 24, 23, 7, 23, 10, 25, 16, 35, 12, 23, 8, 34, 23, 23, 6, 23, 4, 23, 3, 23, 2, 23, 10, 23, 10, 16, 23, 24, 17, 23, 15, 13, 23, 27, 15, 23, 8, 23, 10, 3, 24, 23, 20, 23, 3, 23, 15, 23, 7, 23, 9, 31, 13, 23, 3, 27, 4, 17, 24, 23, 10, 23, 18, 3, 23, 23, 10, 23, 1, 25, 2, 23, 2, 23, 3, 23, 5, 23, 4, 23, 12, 23, 0, 23, 0, 23, 14, 25, 8, 25, 1, 25, 18, 23, 14, 33, 14, 23, 8, 25, 14, 5, 24, 11, 24, 23, 16, 23, 16, 3, 24, 23, 0, 23, 5, 19, 24, 0, 24, 17, 24, 9, 24, 1, 24, 19, 24, 13, 24, 23, 22, 17, 24, 2, 24, 23, 14, 3, 23, 6, 23, 4, 23, 4, 23, 8, 23, 6, 23, 18, 23, 8, 23, 1, 25, 23, 10, 11, 23, 14, 23, 24, 8, 9, 23, 14, 23, 6, 23, 4, 27, 3, 25, 29, 2, 23, 5, 57, 7, 23, 9, 23, 10, 23, 7, 23, 7 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 0 } }, { "id": 71, "type": 2, "geometry": [ 9, 5458, 6194, 1322, 3, 0, 23, 1, 23, 21, 23, 8, 7, 23, 24, 0, 23, 19, 23, 23, 25, 1, 25, 4, 23, 4, 27, 16, 7, 24, 16, 24, 23, 4, 15, 23, 13, 24, 2, 24, 5, 24, 23, 15, 0, 23, 23, 1, 4, 24, 23, 1, 27, 18, 23, 4, 25, 22, 23, 18, 23, 8, 1, 24, 1, 24, 19, 26, 23, 13, 23, 7, 25, 4, 9, 23, 27, 13, 10, 23, 25, 3, 13, 24, 10, 26, 3, 24, 27, 26, 25, 4, 23, 10, 23, 18, 23, 10, 23, 12, 27, 3, 11, 23, 23, 6, 23, 6, 1, 23, 23, 10, 15, 24, 27, 0, 3, 29, 23, 4, 25, 3, 7, 23, 23, 14, 23, 3, 23, 0, 23, 6, 7, 24, 23, 1, 23, 19, 23, 1, 29, 11, 0, 24, 23, 4, 23, 2, 23, 8, 23, 8, 23, 6, 29, 16, 31, 42, 7, 23, 23, 2, 23, 13, 23, 2, 27, 4, 23, 1, 14, 23, 35, 11, 7, 24, 3, 24, 23, 4, 5, 23, 25, 17, 7, 24, 23, 10, 2, 24, 10, 24, 5, 24, 23, 12, 23, 22, 21, 24, 23, 5, 21, 26, 0, 24, 38, 8, 3, 24, 13, 24, 41, 3, 7, 24, 7, 24, 11, 24, 10, 26, 25, 6, 23, 5, 27, 18, 23, 2, 33, 6, 39, 18, 23, 22, 41, 18, 29, 26, 33, 34, 27, 22, 23, 24, 17, 28, 13, 26, 3, 24, 15, 28, 3, 24, 2, 24, 48, 32, 32, 20, 50, 19, 2, 24, 1, 36, 134, 28, 50, 16, 33, 12, 49, 12, 79, 10, 33, 16, 20, 24, 37, 3, 23, 12, 51, 12, 7, 24, 17, 24, 25, 10, 23, 21, 25, 26, 23, 22, 17, 30, 5, 24, 17, 42, 9, 24, 2, 24, 19, 48, 1, 25, 9, 24, 21, 24, 23, 3, 6, 33, 6, 23, 3, 23, 23, 8, 3, 23, 71, 12, 25, 12 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 0 } }, { "id": 72, "type": 2, "geometry": [ 9, 2918, 7574, 2954, 0, 0, 33, 10, 23, 12, 13, 24, 5, 26, 25, 24, 31, 52, 39, 104, 25, 5, 25, 11, 10, 29, 6, 25, 0, 23, 23, 18, 0, 27, 7, 25, 5, 29, 22, 29, 28, 31, 35, 12, 23, 5, 29, 26, 15, 23, 17, 27, 5, 23, 60, 13, 23, 11, 23, 1, 24, 25, 26, 4, 30, 8, 53, 23, 85, 63, 29, 19, 15, 23, 9, 27, 33, 22, 7, 24, 25, 11, 23, 10, 5, 25, 9, 23, 7, 35, 7, 23, 31, 8, 45, 21, 52, 0, 26, 27, 6, 23, 3, 23, 97, 19, 2, 28, 21, 23, 7, 23, 19, 23, 19, 23, 9, 27, 6, 23, 3, 23, 30, 50, 50, 44, 58, 11, 10, 23, 97, 73, 24, 15, 26, 16, 36, 8, 60, 22, 26, 0, 20, 27, 10, 23, 53, 23, 25, 15, 17, 25, 11, 29, 1, 23, 24, 8, 28, 4, 30, 8, 24, 2, 30, 6, 24, 1, 12, 23, 48, 27, 40, 19, 28, 19, 42, 33, 23, 7, 26, 15, 23, 13, 24, 5, 1, 23, 12, 24, 16, 23, 24, 17, 23, 9, 12, 23, 14, 23, 21, 23, 7, 23, 24, 16, 24, 3, 2, 23, 13, 23, 11, 23, 8, 23, 23, 2, 14, 23, 3, 25, 2, 23, 9, 23, 17, 23, 2, 23, 0, 23, 15, 23, 9, 25, 4, 23, 15, 24, 23, 11, 5, 23, 7, 23, 4, 23, 14, 23, 24, 7, 1, 23, 24, 1, 24, 3, 24, 17, 23, 2, 5, 23, 2, 23, 26, 19, 20, 23, 24, 6, 6, 23, 24, 23, 29, 3, 23, 18, 23, 10, 9, 24, 23, 4, 11, 24, 23, 6, 8, 24, 17, 24, 23, 4, 1, 24, 19, 26, 23, 10, 0, 24, 24, 1, 5, 24, 2, 24, 5, 24, 6, 24, 11, 24, 23, 9, 1, 24, 1, 24, 14, 24, 4, 24, 6, 24, 3, 24, 12, 24, 8, 24, 7, 24, 7, 24, 23, 22, 31, 16, 25, 4, 25, 10, 23, 14, 23, 8, 23, 1, 25, 14, 3, 23, 25, 0, 23, 8, 0, 23, 33, 27, 0, 26, 15, 24, 21, 24, 27, 13, 27, 11, 23, 13, 23, 3, 23, 11, 23, 3, 14, 23, 27, 13, 6, 24, 23, 14, 33, 8, 23, 3, 23, 2, 27, 2, 33, 4, 25, 11, 47, 9, 23, 1, 27, 6, 5, 23, 23, 0, 0, 24, 34, 20, 46, 4, 6, 24, 23, 6, 27, 5, 23, 5, 0, 26, 24, 8, 12, 24, 24, 16, 8, 24, 12, 26, 14, 24, 23, 0, 25, 8, 13, 23, 23, 1, 27, 2, 25, 3, 33, 18, 31, 2, 39, 15, 33, 4, 6, 23, 12, 23, 2, 23, 23, 13, 0, 24, 5, 24, 23, 8, 23, 10, 3, 23, 14, 25, 3, 23, 23, 15, 13, 24, 4, 24, 23, 5, 25, 10, 19, 23, 23, 16, 25, 20, 23, 8, 23, 2, 23, 1, 23, 3, 29, 1, 23, 0, 23, 0, 29, 12, 35, 0, 23, 3, 31, 4, 23, 2, 23, 25, 23, 14, 13, 24, 45, 12, 25, 18, 23, 14, 12, 24, 23, 7, 37, 11, 17, 26, 23, 8, 23, 6, 8, 28, 23, 4, 27, 19, 27, 20, 28, 16, 26, 3, 20, 24, 8, 24, 14, 32, 7, 24, 29, 19, 35, 15, 11, 24, 28, 12, 23, 12, 17, 24, 29, 21, 23, 21, 23, 10, 9, 23, 27, 9, 25, 7, 21, 26, 21, 25, 11, 24, 4, 26, 9, 30, 14, 24, 24, 22, 26, 5, 24, 4, 0, 24, 29, 6, 22, 58, 46, 18, 30, 7, 13, 26, 42, 30, 32, 12, 30, 18, 27, 12, 24, 16, 53, 12, 7, 24, 6, 24, 32, 22, 14, 24, 183, 56, 13, 24, 48, 26, 22, 24, 4, 24, 21, 24, 12, 26, 32, 46, 6, 24, 55, 52, 9, 28, 67, 30, 34, 18, 9, 26, 35, 22, 23, 4, 47, 10, 11, 25, 31, 0, 0, 26, 13, 25, 3, 23, 53, 13, 55, 8, 23, 13, 13, 39, 23, 15, 39, 19, 4, 28, 70, 66, 36, 28, 18, 26, 4, 24, 10, 24, 44, 10, 24, 3, 24, 30, 6, 24, 29, 2, 8, 28, 12, 24, 24, 12, 51, 6, 23, 0, 28, 16, 34, 1, 3, 24, 128, 58, 60, 16, 43, 14, 14, 30, 9, 55, 12, 82, 77, 41, 25, 2, 67, 17, 23, 9, 3, 31, 159, 55, 15, 30, 13, 25, 23, 7, 53, 9 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 0 } }, { "id": 73, "type": 2, "geometry": [ 9, 1176, 1788, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 74, "type": 2, "geometry": [ 9, 1252, 1822, 10, 0, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 75, "type": 2, "geometry": [ 9, 1438, 1794, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 76, "type": 2, "geometry": [ 9, 1432, 1794, 10, 3, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 77, "type": 2, "geometry": [ 9, 1440, 1798, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 78, "type": 2, "geometry": [ 9, 1458, 1794, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 79, "type": 2, "geometry": [ 9, 1450, 1796, 10, 1, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 80, "type": 2, "geometry": [ 9, 1520, 1812, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 81, "type": 2, "geometry": [ 9, 1548, 1810, 10, 3, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 82, "type": 2, "geometry": [ 9, 1580, 1648, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 83, "type": 2, "geometry": [ 9, 1582, 1646, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 84, "type": 2, "geometry": [ 9, 1584, 1644, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 85, "type": 2, "geometry": [ 9, 400, 2204, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 86, "type": 2, "geometry": [ 9, 382, 1858, 10, 0, 4 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 87, "type": 2, "geometry": [ 9, 384, 1846, 10, 1, 6 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 88, "type": 2, "geometry": [ 9, 392, 1830, 10, 0, 2 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 89, "type": 2, "geometry": [ 9, 398, 1820, 10, 0, 2 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 90, "type": 2, "geometry": [ 9, 418, 1810, 10, 5, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 91, "type": 2, "geometry": [ 9, 708, 1800, 10, 1, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 92, "type": 2, "geometry": [ 9, 876, 1850, 10, 1, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 93, "type": 2, "geometry": [ 9, 4868, 3462, 10, 0, 2 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 94, "type": 2, "geometry": [ 9, 4868, 3444, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 95, "type": 2, "geometry": [ 9, 4882, 3432, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 96, "type": 2, "geometry": [ 9, 5938, 3730, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 97, "type": 2, "geometry": [ 9, 6446, 3850, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 98, "type": 2, "geometry": [ 9, 6456, 3854, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 99, "type": 2, "geometry": [ 9, 6512, 3876, 10, 0, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 100, "type": 2, "geometry": [ 9, 6524, 3860, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 101, "type": 2, "geometry": [ 9, 6528, 3854, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 102, "type": 2, "geometry": [ 9, 6528, 3856, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 103, "type": 2, "geometry": [ 9, 6534, 3856, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 104, "type": 2, "geometry": [ 9, 6582, 3814, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 105, "type": 2, "geometry": [ 9, 6686, 3576, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 106, "type": 2, "geometry": [ 9, 6694, 3574, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 107, "type": 2, "geometry": [ 9, 6642, 3590, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 108, "type": 2, "geometry": [ 9, 6658, 3588, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 109, "type": 2, "geometry": [ 9, 6662, 3588, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 110, "type": 2, "geometry": [ 9, 6674, 3578, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 111, "type": 2, "geometry": [ 9, 6676, 3580, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 112, "type": 2, "geometry": [ 9, 6680, 3562, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 113, "type": 2, "geometry": [ 9, 6760, 3546, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 114, "type": 2, "geometry": [ 9, 6768, 3538, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 115, "type": 2, "geometry": [ 9, 6810, 3482, 10, 0, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 116, "type": 2, "geometry": [ 9, 6854, 3428, 10, 0, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 117, "type": 2, "geometry": [ 9, 6876, 3370, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 118, "type": 2, "geometry": [ 9, 6880, 3366, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 119, "type": 2, "geometry": [ 9, 6868, 3342, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 120, "type": 2, "geometry": [ 9, 6822, 3322, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 121, "type": 2, "geometry": [ 9, 6858, 3116, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 122, "type": 2, "geometry": [ 9, 6878, 3124, 10, 0, 2 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 123, "type": 2, "geometry": [ 9, 6886, 3122, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 124, "type": 2, "geometry": [ 9, 6886, 3122, 10, 0, 2 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 125, "type": 2, "geometry": [ 9, 6894, 3114, 10, 0, 2 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 126, "type": 2, "geometry": [ 9, 6938, 3112, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 127, "type": 2, "geometry": [ 9, 6968, 3164, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 128, "type": 2, "geometry": [ 9, 6970, 3202, 10, 2, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 129, "type": 2, "geometry": [ 9, 7370, 2972, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 130, "type": 2, "geometry": [ 9, 7124, 3212, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 131, "type": 2, "geometry": [ 9, 7124, 3212, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 132, "type": 2, "geometry": [ 9, 7124, 3212, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 133, "type": 2, "geometry": [ 9, 7048, 3332, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 134, "type": 2, "geometry": [ 9, 7096, 3008, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 135, "type": 2, "geometry": [ 9, 174, 2140, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 136, "type": 2, "geometry": [ 9, 7774, 1862, 10, 0, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 137, "type": 2, "geometry": [ 9, 7770, 1896, 26, 1, 3, 0, 23, 5, 24 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 138, "type": 2, "geometry": [ 9, 6994, 1576, 10, 4, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 139, "type": 2, "geometry": [ 9, 6376, 960, 10, 3, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 140, "type": 2, "geometry": [ 9, 6242, 914, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 141, "type": 2, "geometry": [ 9, 6174, 984, 10, 3, 5 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 142, "type": 2, "geometry": [ 9, 6196, 988, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 143, "type": 2, "geometry": [ 9, 6212, 992, 10, 3, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 144, "type": 2, "geometry": [ 9, 6198, 1030, 10, 3, 3 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 145, "type": 2, "geometry": [ 9, 6228, 1138, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 146, "type": 2, "geometry": [ 9, 6306, 1352, 10, 9, 6 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 147, "type": 2, "geometry": [ 9, 6300, 1336, 10, 1, 4 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 148, "type": 2, "geometry": [ 9, 6292, 1328, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 149, "type": 2, "geometry": [ 9, 6238, 1304, 10, 5, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 150, "type": 2, "geometry": [ 9, 6262, 1296, 10, 0, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 151, "type": 2, "geometry": [ 9, 6256, 1334, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 152, "type": 2, "geometry": [ 9, 6260, 1344, 10, 0, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 153, "type": 2, "geometry": [ 9, 6072, 1562, 10, 0, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 154, "type": 2, "geometry": [ 9, 5690, 2044, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 155, "type": 2, "geometry": [ 9, 5718, 1586, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 156, "type": 2, "geometry": [ 9, 5354, 1900, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 157, "type": 2, "geometry": [ 9, 5338, 1896, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 158, "type": 2, "geometry": [ 9, 5262, 1930, 10, 1, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 159, "type": 2, "geometry": [ 9, 6786, 3962, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 160, "type": 2, "geometry": [ 9, 6676, 4288, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 161, "type": 2, "geometry": [ 9, 6472, 4102, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 162, "type": 2, "geometry": [ 9, 6474, 4076, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 163, "type": 2, "geometry": [ 9, 6454, 4076, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 164, "type": 2, "geometry": [ 9, 6450, 4080, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 165, "type": 2, "geometry": [ 9, 6450, 4074, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 166, "type": 2, "geometry": [ 9, 6440, 4080, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 167, "type": 2, "geometry": [ 9, 6442, 4076, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 168, "type": 2, "geometry": [ 9, 6436, 4088, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 169, "type": 2, "geometry": [ 9, 6582, 4122, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 170, "type": 2, "geometry": [ 9, 6580, 4124, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 171, "type": 2, "geometry": [ 9, 6568, 4134, 10, 2, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 172, "type": 2, "geometry": [ 9, 6772, 4282, 10, 1, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 173, "type": 2, "geometry": [ 9, 6898, 4288, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 174, "type": 2, "geometry": [ 9, 6990, 4278, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 175, "type": 2, "geometry": [ 9, 7002, 4282, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 176, "type": 2, "geometry": [ 9, 7012, 4284, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 177, "type": 2, "geometry": [ 9, 7032, 4282, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 178, "type": 2, "geometry": [ 9, 7078, 4270, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 179, "type": 2, "geometry": [ 9, 7076, 4266, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 180, "type": 2, "geometry": [ 9, 7080, 4264, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 181, "type": 2, "geometry": [ 9, 7082, 4262, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 182, "type": 2, "geometry": [ 9, 7090, 4248, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 183, "type": 2, "geometry": [ 9, 6848, 4262, 10, 1, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 184, "type": 2, "geometry": [ 9, 6842, 4256, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 185, "type": 2, "geometry": [ 9, 6834, 4070, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 186, "type": 2, "geometry": [ 9, 6840, 4070, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 187, "type": 2, "geometry": [ 9, 6910, 4138, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 188, "type": 2, "geometry": [ 9, 6908, 4138, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 189, "type": 2, "geometry": [ 9, 6914, 4140, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 190, "type": 2, "geometry": [ 9, 6924, 4140, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 191, "type": 2, "geometry": [ 9, 6882, 4172, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 192, "type": 2, "geometry": [ 9, 6878, 4174, 10, 0, 2 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 193, "type": 2, "geometry": [ 9, 6912, 4220, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 194, "type": 2, "geometry": [ 9, 6906, 4214, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 195, "type": 2, "geometry": [ 9, 6918, 4230, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 196, "type": 2, "geometry": [ 9, 6990, 4182, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 197, "type": 2, "geometry": [ 9, 6998, 4170, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 198, "type": 2, "geometry": [ 9, 7002, 4168, 10, 0, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 199, "type": 2, "geometry": [ 9, 7006, 4162, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 200, "type": 2, "geometry": [ 9, 7052, 4198, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 201, "type": 2, "geometry": [ 9, 7106, 4220, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 202, "type": 2, "geometry": [ 9, 7116, 4222, 10, 2, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 203, "type": 2, "geometry": [ 9, 7152, 4238, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 204, "type": 2, "geometry": [ 9, 7158, 4242, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 205, "type": 2, "geometry": [ 9, 7160, 4246, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 206, "type": 2, "geometry": [ 9, 7164, 4238, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 207, "type": 2, "geometry": [ 9, 6994, 4126, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 208, "type": 2, "geometry": [ 9, 7002, 4044, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 209, "type": 2, "geometry": [ 9, 7012, 4042, 10, 0, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 210, "type": 2, "geometry": [ 9, 7114, 4174, 10, 0, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 211, "type": 2, "geometry": [ 9, 7252, 4250, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 212, "type": 2, "geometry": [ 9, 6918, 3790, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 213, "type": 2, "geometry": [ 9, 6936, 3828, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 214, "type": 2, "geometry": [ 9, 6930, 3830, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 215, "type": 2, "geometry": [ 9, 6958, 3850, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 216, "type": 2, "geometry": [ 9, 6962, 3874, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 217, "type": 2, "geometry": [ 9, 6958, 3936, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 218, "type": 2, "geometry": [ 9, 6894, 3926, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 219, "type": 2, "geometry": [ 9, 6868, 3958, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 220, "type": 2, "geometry": [ 9, 6846, 3968, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 221, "type": 2, "geometry": [ 9, 6854, 3874, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 222, "type": 2, "geometry": [ 9, 6946, 3866, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 223, "type": 2, "geometry": [ 9, 6928, 3850, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 224, "type": 2, "geometry": [ 9, 6926, 3850, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 225, "type": 2, "geometry": [ 9, 6816, 3838, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 226, "type": 2, "geometry": [ 9, 6818, 3842, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 227, "type": 2, "geometry": [ 9, 6974, 4414, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 228, "type": 2, "geometry": [ 9, 7042, 4436, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 229, "type": 2, "geometry": [ 9, 7044, 4436, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 230, "type": 2, "geometry": [ 9, 7130, 4360, 10, 0, 2 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 231, "type": 2, "geometry": [ 9, 7132, 4358, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 232, "type": 2, "geometry": [ 9, 7166, 4370, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 233, "type": 2, "geometry": [ 9, 7164, 4372, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 234, "type": 2, "geometry": [ 9, 7170, 4368, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 235, "type": 2, "geometry": [ 9, 7012, 4442, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 236, "type": 2, "geometry": [ 9, 7018, 4440, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 237, "type": 2, "geometry": [ 9, 7876, 5444, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 238, "type": 2, "geometry": [ 9, 7894, 5250, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 239, "type": 2, "geometry": [ 9, 8074, 4986, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 240, "type": 2, "geometry": [ 9, 8080, 4980, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 241, "type": 2, "geometry": [ 9, 8096, 4992, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 242, "type": 2, "geometry": [ 9, 8096, 4992, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 243, "type": 2, "geometry": [ 9, 7826, 4560, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 244, "type": 2, "geometry": [ 9, 1544, 3516, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 245, "type": 2, "geometry": [ 9, 1540, 3410, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 246, "type": 2, "geometry": [ 9, 1566, 3482, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 247, "type": 2, "geometry": [ 9, 1552, 3522, 10, 0, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 248, "type": 2, "geometry": [ 9, 1532, 3412, 10, 0, 2 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 249, "type": 2, "geometry": [ 9, 1556, 3522, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 250, "type": 2, "geometry": [ 9, 1526, 3414, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 251, "type": 2, "geometry": [ 9, 1474, 3422, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 252, "type": 2, "geometry": [ 9, 1482, 3330, 10, 0, 2 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 253, "type": 2, "geometry": [ 9, 1574, 3492, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 254, "type": 2, "geometry": [ 9, 1520, 3404, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 255, "type": 2, "geometry": [ 9, 1592, 3454, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 256, "type": 2, "geometry": [ 9, 1578, 3448, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 257, "type": 2, "geometry": [ 9, 1584, 3520, 10, 0, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 258, "type": 2, "geometry": [ 9, 1576, 3504, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 259, "type": 2, "geometry": [ 9, 1618, 3496, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 260, "type": 2, "geometry": [ 9, 1596, 3526, 10, 1, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 261, "type": 2, "geometry": [ 9, 1576, 3504, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 262, "type": 2, "geometry": [ 9, 1576, 3504, 10, 0, 2 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 263, "type": 2, "geometry": [ 9, 1580, 3448, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 264, "type": 2, "geometry": [ 9, 1668, 3586, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 265, "type": 2, "geometry": [ 9, 1668, 3590, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 266, "type": 2, "geometry": [ 9, 1574, 3646, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 267, "type": 2, "geometry": [ 9, 1484, 3670, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 268, "type": 2, "geometry": [ 9, 1570, 3660, 10, 0, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 269, "type": 2, "geometry": [ 9, 1678, 3598, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 270, "type": 2, "geometry": [ 9, 1672, 3592, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 271, "type": 2, "geometry": [ 9, 1674, 3594, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 272, "type": 2, "geometry": [ 9, 2258, 4912, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 273, "type": 2, "geometry": [ 9, 1610, 4736, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 274, "type": 2, "geometry": [ 9, 2302, 4908, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 275, "type": 2, "geometry": [ 9, 2034, 4102, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 276, "type": 2, "geometry": [ 9, 2028, 4112, 10, 0, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 277, "type": 2, "geometry": [ 9, 2038, 4124, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 278, "type": 2, "geometry": [ 9, 2016, 4106, 10, 0, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 279, "type": 2, "geometry": [ 9, 2028, 4080, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 280, "type": 2, "geometry": [ 9, 2248, 3922, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 281, "type": 2, "geometry": [ 9, 2036, 4088, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 282, "type": 2, "geometry": [ 9, 2234, 3928, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 283, "type": 2, "geometry": [ 9, 2054, 4126, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 284, "type": 2, "geometry": [ 9, 2224, 3908, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 285, "type": 2, "geometry": [ 9, 2236, 3926, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 286, "type": 2, "geometry": [ 9, 2062, 4110, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 287, "type": 2, "geometry": [ 9, 2222, 3906, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 288, "type": 2, "geometry": [ 9, 2042, 4108, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 289, "type": 2, "geometry": [ 9, 2956, 4088, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 290, "type": 2, "geometry": [ 9, 2956, 4074, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 291, "type": 2, "geometry": [ 9, 2952, 4078, 10, 2, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 292, "type": 2, "geometry": [ 9, 2950, 4086, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 293, "type": 2, "geometry": [ 9, 2950, 4090, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 294, "type": 2, "geometry": [ 9, 2962, 4098, 10, 2, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 295, "type": 2, "geometry": [ 9, 2710, 3886, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 296, "type": 2, "geometry": [ 9, 2936, 4102, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 297, "type": 2, "geometry": [ 9, 2948, 4046, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 298, "type": 2, "geometry": [ 9, 2704, 3892, 10, 2, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 299, "type": 2, "geometry": [ 9, 2942, 4094, 10, 2, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 300, "type": 2, "geometry": [ 9, 2944, 4046, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 301, "type": 2, "geometry": [ 9, 2956, 4090, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 302, "type": 2, "geometry": [ 9, 3004, 4110, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 303, "type": 2, "geometry": [ 9, 2998, 4114, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 304, "type": 2, "geometry": [ 9, 3010, 4108, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 305, "type": 2, "geometry": [ 9, 2996, 4120, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 306, "type": 2, "geometry": [ 9, 3074, 4124, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 307, "type": 2, "geometry": [ 9, 2974, 4136, 10, 0, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 308, "type": 2, "geometry": [ 9, 3208, 4402, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 309, "type": 2, "geometry": [ 9, 3216, 4392, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 310, "type": 2, "geometry": [ 9, 2938, 4110, 10, 0, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 311, "type": 2, "geometry": [ 9, 3102, 4146, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 312, "type": 2, "geometry": [ 9, 3082, 4158, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 313, "type": 2, "geometry": [ 9, 3138, 4156, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 314, "type": 2, "geometry": [ 9, 2712, 3884, 10, 1, 2 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 315, "type": 2, "geometry": [ 9, 2318, 4036, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 316, "type": 2, "geometry": [ 9, 2930, 4098, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 317, "type": 2, "geometry": [ 9, 2324, 4034, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 318, "type": 2, "geometry": [ 9, 2300, 4064, 10, 1, 2 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 319, "type": 2, "geometry": [ 9, 2296, 3906, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 320, "type": 2, "geometry": [ 9, 2334, 3998, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 321, "type": 2, "geometry": [ 9, 2322, 4034, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 322, "type": 2, "geometry": [ 9, 2930, 4108, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 323, "type": 2, "geometry": [ 9, 2706, 3898, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 324, "type": 2, "geometry": [ 9, 2766, 3936, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 325, "type": 2, "geometry": [ 9, 2274, 4156, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 326, "type": 2, "geometry": [ 9, 2708, 3888, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 327, "type": 2, "geometry": [ 9, 2992, 4108, 50, 0, 1, 23, 5, 23, 0, 5, 24, 24, 12, 24, 13 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 1 } }, { "id": 328, "type": 2, "geometry": [ 9, 2436, 2034, 1450, 1, 1, 16, 23, 3, 23, 9, 23, 7, 23, 25, 9, 5, 23, 23, 4, 2, 23, 21, 23, 23, 13, 0, 23, 23, 11, 0, 24, 23, 8, 23, 11, 1, 24, 23, 21, 23, 17, 24, 20, 23, 2, 23, 0, 23, 7, 25, 1, 0, 23, 25, 12, 23, 9, 19, 23, 24, 9, 24, 3, 29, 17, 27, 5, 1, 23, 3, 23, 2, 23, 6, 23, 8, 23, 8, 25, 22, 29, 26, 11, 26, 1, 6, 26, 15, 30, 11, 24, 8, 24, 1, 24, 6, 26, 16, 24, 0, 24, 23, 10, 24, 9, 20, 25, 21, 25, 2, 23, 24, 10, 9, 23, 19, 23, 30, 7, 25, 15, 26, 1, 9, 25, 24, 3, 22, 23, 30, 2, 8, 24, 14, 24, 6, 24, 13, 26, 4, 24, 24, 2, 3, 23, 18, 24, 22, 24, 7, 23, 26, 5, 27, 17, 22, 23, 32, 12, 24, 18, 21, 24, 2, 24, 18, 23, 24, 0, 17, 24, 4, 24, 10, 23, 6, 24, 14, 24, 10, 23, 24, 13, 18, 24, 23, 18, 9, 24, 24, 15, 24, 9, 11, 24, 15, 24, 20, 23, 24, 15, 13, 24, 24, 17, 24, 14, 23, 24, 21, 24, 26, 19, 3, 24, 24, 15, 24, 6, 23, 22, 31, 4, 26, 0, 24, 8, 33, 6, 2, 24, 28, 3, 23, 16, 18, 24, 24, 1, 0, 24, 24, 5, 1, 24, 26, 15, 7, 24, 24, 0, 15, 24, 24, 1, 4, 24, 24, 5, 24, 8, 9, 24, 7, 24, 23, 14, 1, 24, 23, 1, 7, 23, 2, 23, 23, 12, 8, 23, 23, 10, 9, 23, 23, 8, 16, 24, 23, 7, 2, 24, 24, 18, 8, 24, 24, 20, 12, 24, 14, 24, 2, 24, 11, 23, 4, 24, 3, 24, 23, 13, 23, 13, 23, 13, 6, 24, 24, 22, 22, 24, 23, 8, 23, 7, 25, 11, 23, 13, 23, 15, 1, 23, 23, 13, 13, 23, 23, 3, 11, 23, 23, 12, 23, 16, 23, 5, 5, 23, 14, 23, 30, 0, 16, 24, 9, 23, 24, 5, 24, 7, 9, 23, 8, 23 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 0 } }, { "id": 329, "type": 2, "geometry": [ 9, 1010, 1872, 10, 4, 4 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 330, "type": 2, "geometry": [ 9, 1010, 1860, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 331, "type": 2, "geometry": [ 9, 1048, 1860, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 332, "type": 2, "geometry": [ 9, 930, 1856, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 333, "type": 2, "geometry": [ 9, 1132, 2624, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 334, "type": 2, "geometry": [ 9, 1126, 2598, 10, 2, 2 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 335, "type": 2, "geometry": [ 9, 1128, 2618, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 336, "type": 2, "geometry": [ 9, 1128, 2618, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 337, "type": 2, "geometry": [ 9, 1132, 2598, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 338, "type": 2, "geometry": [ 9, 1112, 2698, 26, 0, 0, 13, 23, 8, 24 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 1 } }, { "id": 339, "type": 2, "geometry": [ 9, 1124, 2600, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 340, "type": 2, "geometry": [ 9, 1102, 2678, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 341, "type": 2, "geometry": [ 9, 1120, 2616, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 342, "type": 2, "geometry": [ 9, 1078, 2660, 34, 0, 0, 16, 23, 23, 11, 0, 24 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 1 } }, { "id": 343, "type": 2, "geometry": [ 9, 1170, 2678, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 344, "type": 2, "geometry": [ 9, 1176, 2678, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 345, "type": 2, "geometry": [ 9, 1180, 2696, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 346, "type": 2, "geometry": [ 9, 1156, 2652, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 347, "type": 2, "geometry": [ 9, 1184, 2698, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 348, "type": 2, "geometry": [ 9, 1132, 2634, 26, 1, 0, 16, 24, 9, 23 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 349, "type": 2, "geometry": [ 9, 1162, 2652, 10, 1, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 350, "type": 2, "geometry": [ 9, 1128, 2618, 10, 0, 2 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 351, "type": 2, "geometry": [ 9, 1128, 2642, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 352, "type": 2, "geometry": [ 9, 1152, 2664, 10, 2, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 353, "type": 2, "geometry": [ 9, 1152, 2666, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 354, "type": 2, "geometry": [ 9, 1176, 2704, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 355, "type": 2, "geometry": [ 9, 1178, 2698, 10, 1, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 356, "type": 2, "geometry": [ 9, 1176, 2688, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 357, "type": 2, "geometry": [ 9, 1170, 2682, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 358, "type": 2, "geometry": [ 9, 1200, 2690, 10, 0, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 359, "type": 2, "geometry": [ 9, 1168, 2688, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 360, "type": 2, "geometry": [ 9, 1184, 2722, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 361, "type": 2, "geometry": [ 9, 1180, 2710, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 362, "type": 2, "geometry": [ 9, 1142, 2658, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 363, "type": 2, "geometry": [ 9, 1122, 2624, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 364, "type": 2, "geometry": [ 9, 1126, 2630, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 365, "type": 2, "geometry": [ 9, 1114, 2700, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 366, "type": 2, "geometry": [ 9, 1120, 2606, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 367, "type": 2, "geometry": [ 9, 1162, 2682, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 368, "type": 2, "geometry": [ 9, 1164, 2678, 26, 0, 2, 1, 23, 0, 24 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 369, "type": 2, "geometry": [ 9, 1146, 2666, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 370, "type": 2, "geometry": [ 9, 1144, 2662, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 371, "type": 2, "geometry": [ 9, 1146, 2668, 10, 0, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 372, "type": 2, "geometry": [ 9, 2636, 2388, 10, 2, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 373, "type": 2, "geometry": [ 9, 2520, 2420, 10, 0, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 374, "type": 2, "geometry": [ 9, 2686, 2476, 10, 0, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 375, "type": 2, "geometry": [ 9, 2688, 2484, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 376, "type": 2, "geometry": [ 9, 2686, 2476, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 377, "type": 2, "geometry": [ 9, 2702, 2526, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 378, "type": 2, "geometry": [ 9, 2692, 2516, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 379, "type": 2, "geometry": [ 9, 2706, 2548, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 380, "type": 2, "geometry": [ 9, 2712, 2552, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 381, "type": 2, "geometry": [ 9, 2778, 2598, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 382, "type": 2, "geometry": [ 9, 2692, 2492, 10, 0, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 383, "type": 2, "geometry": [ 9, 2702, 2532, 10, 0, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 384, "type": 2, "geometry": [ 9, 2698, 2534, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 385, "type": 2, "geometry": [ 9, 1228, 1696, 10, 2, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 386, "type": 2, "geometry": [ 9, 1470, 1576, 226, 0, 0, 17, 25, 27, 31, 23, 1, 23, 2, 31, 15, 27, 7, 25, 4, 25, 8, 0, 24, 14, 24, 7, 24, 11, 24, 0, 24, 5, 24, 13, 24, 14, 26, 26, 24, 10, 28, 24, 3, 24, 11, 18, 23, 6, 25, 20, 23, 12, 25, 24, 17, 24, 15, 24, 17 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 1 } }, { "id": 387, "type": 2, "geometry": [ 9, 1502, 1922, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 388, "type": 2, "geometry": [ 9, 1498, 1918, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 389, "type": 2, "geometry": [ 9, 1490, 1904, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 390, "type": 2, "geometry": [ 9, 1570, 1656, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 391, "type": 2, "geometry": [ 9, 1800, 1846, 602, 0, 5, 17, 23, 23, 15, 23, 13, 19, 25, 6, 23, 3, 23, 7, 23, 7, 23, 3, 23, 7, 23, 23, 23, 25, 3, 3, 24, 2, 24, 6, 24, 4, 24, 2, 24, 19, 23, 5, 23, 9, 23, 35, 19, 20, 24, 23, 14, 19, 24, 6, 23, 5, 23, 23, 11, 13, 24, 23, 8, 10, 23, 2, 23, 25, 7, 25, 14, 25, 16, 19, 24, 4, 26, 21, 24, 2, 24, 28, 5, 24, 16, 24, 7, 25, 20, 23, 8, 7, 24, 26, 16, 30, 0, 28, 3, 24, 0, 24, 10, 25, 16, 27, 1, 29, 6, 25, 8, 2, 24, 22, 26, 24, 6, 24, 0, 10, 24, 12, 24, 36, 3, 24, 3, 24, 5, 24, 15, 24, 5, 12, 23, 28, 18, 24, 16, 24, 6, 24, 7, 8, 23, 23, 6, 5, 23, 24, 13, 24, 8 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 0 } }, { "id": 392, "type": 2, "geometry": [ 9, 1572, 1926, 10, 3, 2 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 393, "type": 2, "geometry": [ 9, 1578, 1926, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 394, "type": 2, "geometry": [ 9, 1590, 1954, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 395, "type": 2, "geometry": [ 9, 1596, 1950, 10, 0, 2 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 396, "type": 2, "geometry": [ 9, 1568, 1968, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 397, "type": 2, "geometry": [ 9, 1606, 1956, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 398, "type": 2, "geometry": [ 9, 1634, 1980, 10, 0, 2 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 399, "type": 2, "geometry": [ 9, 1554, 1940, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 400, "type": 2, "geometry": [ 9, 1498, 1966, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 401, "type": 2, "geometry": [ 9, 1514, 1964, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 402, "type": 2, "geometry": [ 9, 1630, 1988, 10, 0, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 403, "type": 2, "geometry": [ 9, 1650, 2012, 10, 1, 3 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 404, "type": 2, "geometry": [ 9, 1640, 2022, 10, 0, 2 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 405, "type": 2, "geometry": [ 9, 1636, 2020, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 406, "type": 2, "geometry": [ 9, 1636, 1962, 10, 0, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 407, "type": 2, "geometry": [ 9, 1616, 1964, 10, 2, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 408, "type": 2, "geometry": [ 9, 1610, 1972, 10, 0, 2 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 409, "type": 2, "geometry": [ 9, 1638, 1998, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 410, "type": 2, "geometry": [ 9, 1802, 1812, 10, 0, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 411, "type": 2, "geometry": [ 9, 1718, 1928, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 412, "type": 2, "geometry": [ 9, 1780, 1912, 10, 0, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 413, "type": 2, "geometry": [ 9, 1798, 1866, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 414, "type": 2, "geometry": [ 9, 1784, 1886, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 415, "type": 2, "geometry": [ 9, 1912, 1870, 10, 1, 2 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 416, "type": 2, "geometry": [ 9, 1772, 1852, 10, 1, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 417, "type": 2, "geometry": [ 9, 1878, 1838, 10, 0, 2 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 418, "type": 2, "geometry": [ 9, 1898, 1866, 10, 0, 2 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 419, "type": 2, "geometry": [ 9, 1928, 1906, 82, 0, 0, 17, 23, 23, 21, 23, 15, 2, 24, 23, 20, 12, 24, 26, 14, 26, 4, 24, 19 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 1 } }, { "id": 420, "type": 2, "geometry": [ 9, 1842, 1956, 10, 0, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 421, "type": 2, "geometry": [ 9, 1878, 1978, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 422, "type": 2, "geometry": [ 9, 1812, 1800, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 423, "type": 2, "geometry": [ 9, 1818, 1892, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 424, "type": 2, "geometry": [ 9, 1814, 1910, 10, 2, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 425, "type": 2, "geometry": [ 9, 1818, 1936, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 426, "type": 2, "geometry": [ 9, 2864, 2858, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 427, "type": 2, "geometry": [ 9, 2766, 2732, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 428, "type": 2, "geometry": [ 9, 2814, 2884, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 429, "type": 2, "geometry": [ 9, 2818, 2888, 10, 0, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 430, "type": 2, "geometry": [ 9, 2744, 2756, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 431, "type": 2, "geometry": [ 9, 2860, 2792, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 432, "type": 2, "geometry": [ 9, 2836, 2710, 10, 0, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 433, "type": 2, "geometry": [ 9, 2846, 2792, 10, 0, 2 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 434, "type": 2, "geometry": [ 9, 2852, 2796, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 435, "type": 2, "geometry": [ 9, 2824, 2872, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 436, "type": 2, "geometry": [ 9, 2832, 2742, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 437, "type": 2, "geometry": [ 9, 2822, 2858, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 438, "type": 2, "geometry": [ 9, 2826, 2792, 10, 0, 2 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 439, "type": 2, "geometry": [ 9, 2830, 2792, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 440, "type": 2, "geometry": [ 9, 2832, 2748, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 441, "type": 2, "geometry": [ 9, 2876, 2840, 10, 1, 2 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 442, "type": 2, "geometry": [ 9, 2864, 2860, 10, 0, 2 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 443, "type": 2, "geometry": [ 9, 2898, 2862, 194, 0, 0, 23, 0, 5, 23, 2, 23, 23, 15, 23, 3, 13, 23, 10, 23, 16, 23, 23, 4, 13, 24, 13, 24, 3, 24, 17, 24, 13, 24, 24, 10, 24, 4, 24, 1, 24, 2, 19, 24, 24, 13, 24, 3, 4, 24, 22, 23 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 0 } }, { "id": 444, "type": 2, "geometry": [ 9, 1062, 2558, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 445, "type": 2, "geometry": [ 9, 1032, 2456, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 446, "type": 2, "geometry": [ 9, 1004, 2492, 26, 0, 0, 24, 3, 23, 17 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 447, "type": 2, "geometry": [ 9, 992, 2468, 10, 0, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 448, "type": 2, "geometry": [ 9, 1038, 2504, 42, 0, 0, 6, 23, 13, 23, 0, 24, 2, 24 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 449, "type": 2, "geometry": [ 9, 1010, 2502, 10, 0, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 450, "type": 2, "geometry": [ 9, 1032, 2520, 34, 0, 1, 7, 23, 7, 24, 12, 24 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 451, "type": 2, "geometry": [ 9, 1054, 2546, 10, 0, 2 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 452, "type": 2, "geometry": [ 9, 1078, 2534, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 453, "type": 2, "geometry": [ 9, 1078, 2538, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 454, "type": 2, "geometry": [ 9, 1070, 2518, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 455, "type": 2, "geometry": [ 9, 1056, 2570, 10, 0, 2 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 456, "type": 2, "geometry": [ 9, 1048, 2506, 26, 0, 0, 6, 24, 2, 23 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 457, "type": 2, "geometry": [ 9, 1060, 2572, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 458, "type": 2, "geometry": [ 9, 1042, 2554, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 459, "type": 2, "geometry": [ 9, 1062, 2554, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 460, "type": 2, "geometry": [ 9, 1096, 2574, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 461, "type": 2, "geometry": [ 9, 1092, 2536, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 462, "type": 2, "geometry": [ 9, 1104, 2590, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 463, "type": 2, "geometry": [ 9, 1092, 2596, 42, 0, 0, 9, 23, 9, 23, 5, 24, 18, 24 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 464, "type": 2, "geometry": [ 9, 1114, 2566, 10, 2, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 465, "type": 2, "geometry": [ 9, 1108, 2592, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 466, "type": 2, "geometry": [ 9, 1048, 2554, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 467, "type": 2, "geometry": [ 9, 1054, 2570, 10, 2, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 468, "type": 2, "geometry": [ 9, 1048, 2530, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 469, "type": 2, "geometry": [ 9, 1058, 2574, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 470, "type": 2, "geometry": [ 9, 1076, 2598, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 471, "type": 2, "geometry": [ 9, 1072, 2588, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 472, "type": 2, "geometry": [ 9, 1062, 2580, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 473, "type": 2, "geometry": [ 9, 1076, 2602, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 474, "type": 2, "geometry": [ 9, 726, 2342, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 475, "type": 2, "geometry": [ 9, 724, 2348, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 476, "type": 2, "geometry": [ 9, 728, 2344, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 477, "type": 2, "geometry": [ 9, 738, 2348, 10, 2, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 478, "type": 2, "geometry": [ 9, 732, 2360, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 479, "type": 2, "geometry": [ 9, 728, 2374, 10, 2, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 480, "type": 2, "geometry": [ 9, 728, 2360, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 481, "type": 2, "geometry": [ 9, 748, 2364, 18, 2, 1, 19, 24 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 482, "type": 2, "geometry": [ 9, 810, 2378, 10, 0, 2 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 483, "type": 2, "geometry": [ 9, 778, 2350, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 484, "type": 2, "geometry": [ 9, 792, 2360, 10, 3, 2 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 485, "type": 2, "geometry": [ 9, 724, 2376, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 486, "type": 2, "geometry": [ 9, 728, 2376, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 487, "type": 2, "geometry": [ 9, 732, 2376, 10, 0, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 488, "type": 2, "geometry": [ 9, 768, 2360, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 489, "type": 2, "geometry": [ 9, 588, 2528, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 490, "type": 2, "geometry": [ 9, 520, 2526, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 491, "type": 2, "geometry": [ 9, 580, 2526, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 492, "type": 2, "geometry": [ 9, 602, 2408, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 493, "type": 2, "geometry": [ 9, 554, 2554, 10, 1, 2 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 494, "type": 2, "geometry": [ 9, 606, 2474, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 495, "type": 2, "geometry": [ 9, 622, 2444, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 496, "type": 2, "geometry": [ 9, 604, 2464, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 497, "type": 2, "geometry": [ 9, 630, 2426, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 498, "type": 2, "geometry": [ 9, 590, 2528, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 499, "type": 2, "geometry": [ 9, 640, 2456, 10, 1, 2 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 500, "type": 2, "geometry": [ 9, 674, 2402, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 501, "type": 2, "geometry": [ 9, 640, 2356, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 502, "type": 2, "geometry": [ 9, 666, 2406, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 503, "type": 2, "geometry": [ 9, 616, 2502, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 504, "type": 2, "geometry": [ 9, 636, 2452, 26, 0, 0, 23, 2, 24, 4 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 505, "type": 2, "geometry": [ 9, 632, 2482, 58, 3, 0, 23, 7, 3, 24, 23, 11, 2, 24, 24, 3, 24, 17 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 1 } }, { "id": 506, "type": 2, "geometry": [ 9, 432, 2434, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 507, "type": 2, "geometry": [ 9, 2446, 3588, 10, 0, 2 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 508, "type": 2, "geometry": [ 9, 2438, 3628, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 509, "type": 2, "geometry": [ 9, 2448, 3586, 10, 2, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 510, "type": 2, "geometry": [ 9, 2468, 3588, 10, 0, 2 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 511, "type": 2, "geometry": [ 9, 2456, 3584, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 512, "type": 2, "geometry": [ 9, 2434, 3594, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 513, "type": 2, "geometry": [ 9, 2462, 3586, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 514, "type": 2, "geometry": [ 9, 2502, 3806, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 515, "type": 2, "geometry": [ 9, 2530, 3818, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 516, "type": 2, "geometry": [ 9, 2430, 3572, 10, 2, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 517, "type": 2, "geometry": [ 9, 2468, 3690, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 518, "type": 2, "geometry": [ 9, 2424, 3566, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 519, "type": 2, "geometry": [ 9, 2420, 3676, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 520, "type": 2, "geometry": [ 9, 2416, 3664, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 521, "type": 2, "geometry": [ 9, 2704, 3794, 10, 0, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 522, "type": 2, "geometry": [ 9, 2694, 3720, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 523, "type": 2, "geometry": [ 9, 2476, 3594, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 524, "type": 2, "geometry": [ 9, 2532, 3674, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 525, "type": 2, "geometry": [ 9, 2694, 3720, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 526, "type": 2, "geometry": [ 9, 2708, 3718, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 527, "type": 2, "geometry": [ 9, 2698, 3744, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 528, "type": 2, "geometry": [ 9, 2702, 3796, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 529, "type": 2, "geometry": [ 9, 2686, 3702, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 530, "type": 2, "geometry": [ 9, 2698, 3810, 10, 0, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 531, "type": 2, "geometry": [ 9, 2610, 3672, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 532, "type": 2, "geometry": [ 9, 2622, 3670, 10, 2, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 533, "type": 2, "geometry": [ 9, 2702, 3728, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 534, "type": 2, "geometry": [ 9, 2688, 3688, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 535, "type": 2, "geometry": [ 9, 2692, 3814, 10, 2, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 536, "type": 2, "geometry": [ 9, 2626, 3684, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 537, "type": 2, "geometry": [ 9, 2610, 3844, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 538, "type": 2, "geometry": [ 9, 2620, 3670, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 539, "type": 2, "geometry": [ 9, 2608, 3676, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 540, "type": 2, "geometry": [ 9, 2590, 3824, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 541, "type": 2, "geometry": [ 9, 2662, 3672, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 542, "type": 2, "geometry": [ 9, 2602, 3672, 26, 0, 0, 23, 5, 24, 8 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 1 } }, { "id": 543, "type": 2, "geometry": [ 9, 2642, 3840, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 544, "type": 2, "geometry": [ 9, 2660, 3676, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 545, "type": 2, "geometry": [ 9, 2640, 3848, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 546, "type": 2, "geometry": [ 9, 2742, 3792, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 547, "type": 2, "geometry": [ 9, 2624, 3822, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 548, "type": 2, "geometry": [ 9, 2630, 3666, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 549, "type": 2, "geometry": [ 9, 2550, 3676, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 550, "type": 2, "geometry": [ 9, 2680, 3708, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 551, "type": 2, "geometry": [ 9, 2718, 3834, 10, 0, 2 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 552, "type": 2, "geometry": [ 9, 2542, 3814, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 553, "type": 2, "geometry": [ 9, 2428, 3658, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 554, "type": 2, "geometry": [ 9, 2706, 3850, 10, 2, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 555, "type": 2, "geometry": [ 9, 2540, 3662, 98, 1, 0, 23, 9, 23, 15, 23, 3, 23, 0, 1, 24, 23, 10, 24, 8, 24, 4, 24, 9, 24, 0, 24, 2 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 0 } }, { "id": 556, "type": 2, "geometry": [ 9, 2712, 3762, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 557, "type": 2, "geometry": [ 9, 2580, 3824, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 558, "type": 2, "geometry": [ 9, 2710, 3772, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 559, "type": 2, "geometry": [ 9, 2670, 3698, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 560, "type": 2, "geometry": [ 9, 2662, 3690, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 561, "type": 2, "geometry": [ 9, 2666, 3682, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 562, "type": 2, "geometry": [ 9, 2670, 3696, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 563, "type": 2, "geometry": [ 9, 2624, 3668, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 564, "type": 2, "geometry": [ 9, 2630, 3662, 10, 2, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 565, "type": 2, "geometry": [ 9, 2158, 3864, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 566, "type": 2, "geometry": [ 9, 2190, 3822, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 567, "type": 2, "geometry": [ 9, 2120, 3616, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 568, "type": 2, "geometry": [ 9, 2140, 3714, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 569, "type": 2, "geometry": [ 9, 2236, 3808, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 570, "type": 2, "geometry": [ 9, 2248, 3646, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 571, "type": 2, "geometry": [ 9, 2212, 3764, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 572, "type": 2, "geometry": [ 9, 2274, 3638, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 573, "type": 2, "geometry": [ 9, 2278, 3636, 10, 1, 2 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 574, "type": 2, "geometry": [ 9, 2222, 3880, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 575, "type": 2, "geometry": [ 9, 2226, 3882, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 576, "type": 2, "geometry": [ 9, 2090, 3688, 10, 2, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 577, "type": 2, "geometry": [ 9, 2118, 3724, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 578, "type": 2, "geometry": [ 9, 2096, 3694, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 579, "type": 2, "geometry": [ 9, 2010, 3660, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 580, "type": 2, "geometry": [ 9, 2088, 3686, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 581, "type": 2, "geometry": [ 9, 2096, 3690, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 582, "type": 2, "geometry": [ 9, 2094, 3678, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 583, "type": 2, "geometry": [ 9, 2108, 3666, 10, 0, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 584, "type": 2, "geometry": [ 9, 2110, 3660, 10, 0, 2 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 585, "type": 2, "geometry": [ 9, 2102, 3790, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 586, "type": 2, "geometry": [ 9, 2108, 3666, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 587, "type": 2, "geometry": [ 9, 2102, 3788, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 588, "type": 2, "geometry": [ 9, 2108, 3668, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 589, "type": 2, "geometry": [ 9, 2122, 3602, 10, 0, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 590, "type": 2, "geometry": [ 9, 2360, 3678, 26, 1, 1, 23, 7, 24, 14 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 1 } }, { "id": 591, "type": 2, "geometry": [ 9, 2270, 3554, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 592, "type": 2, "geometry": [ 9, 2256, 3552, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 593, "type": 2, "geometry": [ 9, 2276, 3558, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 594, "type": 2, "geometry": [ 9, 2268, 3558, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 595, "type": 2, "geometry": [ 9, 2256, 3512, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 596, "type": 2, "geometry": [ 9, 2264, 3552, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 597, "type": 2, "geometry": [ 9, 2268, 3500, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 598, "type": 2, "geometry": [ 9, 2270, 3496, 10, 0, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 599, "type": 2, "geometry": [ 9, 2302, 3612, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 600, "type": 2, "geometry": [ 9, 2306, 3468, 10, 2, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 601, "type": 2, "geometry": [ 9, 2290, 3566, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 602, "type": 2, "geometry": [ 9, 2298, 3610, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 603, "type": 2, "geometry": [ 9, 2288, 3604, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 604, "type": 2, "geometry": [ 9, 2296, 3608, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 605, "type": 2, "geometry": [ 9, 2296, 3608, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 606, "type": 2, "geometry": [ 9, 2242, 3514, 10, 2, 2 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 607, "type": 2, "geometry": [ 9, 2226, 3468, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 608, "type": 2, "geometry": [ 9, 2216, 3590, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 609, "type": 2, "geometry": [ 9, 2214, 3446, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 610, "type": 2, "geometry": [ 9, 2222, 3462, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 611, "type": 2, "geometry": [ 9, 2270, 3490, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 612, "type": 2, "geometry": [ 9, 2266, 3438, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 613, "type": 2, "geometry": [ 9, 2298, 3566, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 614, "type": 2, "geometry": [ 9, 2224, 3464, 10, 0, 2 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 615, "type": 2, "geometry": [ 9, 2240, 3516, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 616, "type": 2, "geometry": [ 9, 2312, 3516, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 617, "type": 2, "geometry": [ 9, 2244, 3588, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 618, "type": 2, "geometry": [ 9, 2250, 3516, 10, 0, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 619, "type": 2, "geometry": [ 9, 2236, 3518, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 620, "type": 2, "geometry": [ 9, 2234, 3518, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 621, "type": 2, "geometry": [ 9, 2226, 3470, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 622, "type": 2, "geometry": [ 9, 2254, 3512, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 623, "type": 2, "geometry": [ 9, 2320, 3578, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 624, "type": 2, "geometry": [ 9, 2374, 3546, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 625, "type": 2, "geometry": [ 9, 2376, 3612, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 626, "type": 2, "geometry": [ 9, 2382, 3526, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 627, "type": 2, "geometry": [ 9, 2392, 3558, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 628, "type": 2, "geometry": [ 9, 2324, 3490, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 629, "type": 2, "geometry": [ 9, 2358, 3532, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 630, "type": 2, "geometry": [ 9, 2370, 3544, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 631, "type": 2, "geometry": [ 9, 2362, 3502, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 632, "type": 2, "geometry": [ 9, 2412, 3566, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 633, "type": 2, "geometry": [ 9, 2418, 3604, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 634, "type": 2, "geometry": [ 9, 2390, 3540, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 635, "type": 2, "geometry": [ 9, 2418, 3554, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 636, "type": 2, "geometry": [ 9, 2400, 3532, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 637, "type": 2, "geometry": [ 9, 2404, 3566, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 638, "type": 2, "geometry": [ 9, 2404, 3564, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 639, "type": 2, "geometry": [ 9, 2356, 3526, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 640, "type": 2, "geometry": [ 9, 2312, 3616, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 641, "type": 2, "geometry": [ 9, 2324, 3458, 26, 0, 2, 12, 24, 3, 23 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 642, "type": 2, "geometry": [ 9, 2310, 3570, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 643, "type": 2, "geometry": [ 9, 2324, 3576, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 644, "type": 2, "geometry": [ 9, 2316, 3574, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 645, "type": 2, "geometry": [ 9, 2326, 3524, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 646, "type": 2, "geometry": [ 9, 2322, 3526, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 647, "type": 2, "geometry": [ 9, 2322, 3528, 10, 2, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 648, "type": 2, "geometry": [ 9, 2310, 3612, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 649, "type": 2, "geometry": [ 9, 2332, 3508, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 650, "type": 2, "geometry": [ 9, 2328, 3580, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 651, "type": 2, "geometry": [ 9, 2330, 3474, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 652, "type": 2, "geometry": [ 9, 2330, 3534, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 653, "type": 2, "geometry": [ 9, 2072, 3378, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 654, "type": 2, "geometry": [ 9, 2068, 3372, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 655, "type": 2, "geometry": [ 9, 2066, 3392, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 656, "type": 2, "geometry": [ 9, 2082, 3374, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 657, "type": 2, "geometry": [ 9, 2078, 3372, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 658, "type": 2, "geometry": [ 9, 2006, 3392, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 659, "type": 2, "geometry": [ 9, 2026, 3404, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 660, "type": 2, "geometry": [ 9, 2048, 3398, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 661, "type": 2, "geometry": [ 9, 2062, 3384, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 662, "type": 2, "geometry": [ 9, 2066, 3376, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 663, "type": 2, "geometry": [ 9, 2040, 3404, 10, 0, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 664, "type": 2, "geometry": [ 9, 2060, 3384, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 665, "type": 2, "geometry": [ 9, 2260, 3426, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 666, "type": 2, "geometry": [ 9, 2260, 3416, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 667, "type": 2, "geometry": [ 9, 2240, 3358, 10, 2, 2 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 668, "type": 2, "geometry": [ 9, 2290, 3298, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 669, "type": 2, "geometry": [ 9, 2170, 3384, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 670, "type": 2, "geometry": [ 9, 2122, 3368, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 671, "type": 2, "geometry": [ 9, 2158, 3388, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 672, "type": 2, "geometry": [ 9, 2090, 3372, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 673, "type": 2, "geometry": [ 9, 2166, 3386, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 674, "type": 2, "geometry": [ 9, 1870, 3564, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 675, "type": 2, "geometry": [ 9, 1872, 3586, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 676, "type": 2, "geometry": [ 9, 1884, 3474, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 677, "type": 2, "geometry": [ 9, 1902, 3420, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 678, "type": 2, "geometry": [ 9, 1938, 3396, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 679, "type": 2, "geometry": [ 9, 1886, 3436, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 680, "type": 2, "geometry": [ 9, 1900, 3420, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 681, "type": 2, "geometry": [ 9, 1890, 3428, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 682, "type": 2, "geometry": [ 9, 2332, 3258, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 683, "type": 2, "geometry": [ 9, 2346, 3252, 10, 3, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 684, "type": 2, "geometry": [ 9, 2360, 3246, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 685, "type": 2, "geometry": [ 9, 2352, 3252, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 686, "type": 2, "geometry": [ 9, 2378, 3224, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 687, "type": 2, "geometry": [ 9, 2366, 3158, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 688, "type": 2, "geometry": [ 9, 2364, 3242, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 689, "type": 2, "geometry": [ 9, 2374, 3174, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 690, "type": 2, "geometry": [ 9, 2384, 3152, 10, 0, 2 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 691, "type": 2, "geometry": [ 9, 2372, 3218, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 692, "type": 2, "geometry": [ 9, 2322, 3270, 10, 2, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 693, "type": 2, "geometry": [ 9, 2456, 3062, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 694, "type": 2, "geometry": [ 9, 2320, 3274, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 695, "type": 2, "geometry": [ 9, 2366, 3154, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 696, "type": 2, "geometry": [ 9, 2370, 3178, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 697, "type": 2, "geometry": [ 9, 2366, 3240, 10, 0, 2 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 698, "type": 2, "geometry": [ 9, 2490, 3058, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 699, "type": 2, "geometry": [ 9, 2502, 3058, 10, 0, 2 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 700, "type": 2, "geometry": [ 9, 2472, 3052, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 701, "type": 2, "geometry": [ 9, 2488, 3058, 10, 2, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 702, "type": 2, "geometry": [ 9, 2502, 3050, 10, 0, 2 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 703, "type": 2, "geometry": [ 9, 2624, 3316, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 704, "type": 2, "geometry": [ 9, 2428, 3080, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 705, "type": 2, "geometry": [ 9, 2408, 3082, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 706, "type": 2, "geometry": [ 9, 2402, 3116, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 707, "type": 2, "geometry": [ 9, 2408, 3108, 10, 0, 2 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 708, "type": 2, "geometry": [ 9, 2436, 3078, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 709, "type": 2, "geometry": [ 9, 2466, 3064, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 710, "type": 2, "geometry": [ 9, 2458, 3068, 26, 0, 0, 25, 4, 24, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 711, "type": 2, "geometry": [ 9, 2472, 3054, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 712, "type": 2, "geometry": [ 9, 1356, 3270, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 713, "type": 2, "geometry": [ 9, 1398, 3288, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 714, "type": 2, "geometry": [ 9, 1374, 3270, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 715, "type": 2, "geometry": [ 9, 1364, 3270, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 716, "type": 2, "geometry": [ 9, 1376, 3292, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 717, "type": 2, "geometry": [ 9, 1404, 3404, 10, 0, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 718, "type": 2, "geometry": [ 9, 1402, 3304, 10, 0, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 719, "type": 2, "geometry": [ 9, 1214, 2754, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 720, "type": 2, "geometry": [ 9, 1246, 2776, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 721, "type": 2, "geometry": [ 9, 1242, 2766, 10, 2, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 722, "type": 2, "geometry": [ 9, 1212, 2784, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 723, "type": 2, "geometry": [ 9, 1250, 2772, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 724, "type": 2, "geometry": [ 9, 1210, 2750, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 725, "type": 2, "geometry": [ 9, 1220, 2756, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 726, "type": 2, "geometry": [ 9, 1254, 2770, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 727, "type": 2, "geometry": [ 9, 1286, 2796, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 728, "type": 2, "geometry": [ 9, 1288, 2820, 10, 1, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 729, "type": 2, "geometry": [ 9, 1282, 2812, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 730, "type": 2, "geometry": [ 9, 1270, 2788, 10, 2, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 731, "type": 2, "geometry": [ 9, 1258, 2786, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 732, "type": 2, "geometry": [ 9, 1310, 2848, 10, 0, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 733, "type": 2, "geometry": [ 9, 1296, 2830, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 734, "type": 2, "geometry": [ 9, 1300, 2830, 10, 0, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 735, "type": 2, "geometry": [ 9, 1302, 2844, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 736, "type": 2, "geometry": [ 9, 1302, 2824, 10, 1, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 737, "type": 2, "geometry": [ 9, 1308, 2860, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 738, "type": 2, "geometry": [ 9, 1274, 2896, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 739, "type": 2, "geometry": [ 9, 1308, 2866, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 740, "type": 2, "geometry": [ 9, 1226, 2802, 10, 0, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 741, "type": 2, "geometry": [ 9, 1182, 2760, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 742, "type": 2, "geometry": [ 9, 1288, 2830, 90, 0, 0, 13, 23, 27, 25, 23, 19, 23, 5, 23, 5, 12, 24, 24, 8, 18, 24, 24, 8, 24, 22 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 1 } }, { "id": 743, "type": 2, "geometry": [ 9, 1930, 1694, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 744, "type": 2, "geometry": [ 9, 1926, 1704, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 745, "type": 2, "geometry": [ 9, 1916, 1626, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 746, "type": 2, "geometry": [ 9, 2040, 1542, 146, 0, 0, 23, 5, 23, 3, 23, 9, 25, 6, 11, 24, 11, 24, 2, 24, 1, 24, 8, 24, 4, 24, 24, 22, 6, 23, 4, 23, 24, 9, 22, 23, 10, 23, 14, 23 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 1 } }, { "id": 747, "type": 2, "geometry": [ 9, 1636, 1570, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 748, "type": 2, "geometry": [ 9, 1712, 1566, 50, 1, 0, 39, 5, 1, 24, 18, 24, 24, 3, 6, 23 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 749, "type": 2, "geometry": [ 9, 1736, 1434, 34, 0, 0, 23, 11, 0, 24, 24, 5 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 750, "type": 2, "geometry": [ 9, 1482, 1288, 26, 0, 0, 26, 4, 25, 9 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 751, "type": 2, "geometry": [ 9, 1414, 1370, 42, 2, 0, 23, 2, 13, 24, 26, 2, 10, 23 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 752, "type": 2, "geometry": [ 9, 1548, 1440, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 753, "type": 2, "geometry": [ 9, 1504, 1468, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 754, "type": 2, "geometry": [ 9, 1696, 1390, 378, 0, 0, 3, 23, 23, 11, 0, 24, 23, 5, 15, 23, 2, 25, 9, 23, 23, 6, 11, 24, 24, 22, 15, 24, 24, 14, 25, 14, 25, 2, 5, 23, 21, 23, 23, 17, 21, 25, 23, 4, 12, 24, 25, 2, 13, 24, 24, 6, 25, 8, 24, 16, 31, 12, 7, 24, 24, 2, 24, 8, 24, 2, 8, 23, 2, 24, 24, 1, 26, 5, 23, 16, 23, 16, 2, 30, 26, 4, 24, 9, 28, 21, 28, 17, 24, 4, 24, 2, 26, 19, 4, 23, 6, 23 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 1 } }, { "id": 755, "type": 2, "geometry": [ 9, 1616, 1390, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 756, "type": 2, "geometry": [ 9, 1342, 1368, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 757, "type": 2, "geometry": [ 9, 1380, 1342, 178, 0, 0, 14, 23, 6, 23, 8, 24, 24, 10, 14, 23, 8, 23, 5, 25, 20, 23, 21, 23, 7, 24, 23, 3, 23, 0, 17, 24, 15, 24, 19, 24, 25, 24, 11, 24, 24, 10, 24, 13, 8, 24, 20, 23 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 1 } }, { "id": 758, "type": 2, "geometry": [ 9, 1508, 1172, 26, 0, 1, 23, 11, 4, 24 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 759, "type": 2, "geometry": [ 9, 1600, 1150, 90, 1, 1, 23, 2, 23, 2, 23, 14, 7, 24, 6, 24, 26, 12, 24, 5, 16, 23, 17, 23, 24, 7 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 1 } }, { "id": 760, "type": 2, "geometry": [ 9, 1608, 1106, 66, 0, 0, 11, 23, 23, 5, 23, 18, 25, 16, 24, 8, 24, 0, 24, 6 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 1 } }, { "id": 761, "type": 2, "geometry": [ 9, 1920, 1468, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 762, "type": 2, "geometry": [ 9, 1968, 1456, 74, 0, 1, 1, 23, 17, 31, 23, 4, 17, 24, 9, 24, 26, 18, 24, 16, 24, 17 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 1 } }, { "id": 763, "type": 2, "geometry": [ 9, 1924, 1486, 10, 0, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 764, "type": 2, "geometry": [ 9, 2244, 1346, 10, 2, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 765, "type": 2, "geometry": [ 9, 1898, 1412, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 766, "type": 2, "geometry": [ 9, 1944, 1362, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 767, "type": 2, "geometry": [ 9, 2062, 1318, 10, 1, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 768, "type": 2, "geometry": [ 9, 2184, 1320, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 769, "type": 2, "geometry": [ 9, 2054, 1290, 18, 0, 1, 9, 24 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 770, "type": 2, "geometry": [ 9, 2054, 1226, 42, 0, 0, 9, 23, 23, 1, 2, 24, 30, 12 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 771, "type": 2, "geometry": [ 9, 2092, 1108, 18, 1, 1, 5, 24 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 772, "type": 2, "geometry": [ 9, 1914, 830, 10, 4, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 773, "type": 2, "geometry": [ 9, 1890, 1180, 90, 0, 0, 24, 11, 18, 27, 4, 25, 23, 9, 13, 23, 35, 13, 1, 24, 4, 24, 20, 24, 3, 24 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 1 } }, { "id": 774, "type": 2, "geometry": [ 9, 1908, 1396, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 775, "type": 2, "geometry": [ 9, 1816, 918, 34, 0, 2, 20, 24, 12, 23, 23, 21 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 776, "type": 2, "geometry": [ 9, 1972, 1196, 50, 2, 0, 25, 13, 23, 4, 15, 24, 40, 4, 24, 17 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 1 } }, { "id": 777, "type": 2, "geometry": [ 9, 2398, 1070, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 778, "type": 2, "geometry": [ 9, 2158, 1216, 10, 2, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 779, "type": 2, "geometry": [ 9, 2172, 1186, 10, 0, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 780, "type": 2, "geometry": [ 9, 2330, 1174, 10, 0, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 781, "type": 2, "geometry": [ 9, 2300, 1348, 26, 0, 0, 19, 24, 20, 23 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 782, "type": 2, "geometry": [ 9, 2220, 1494, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 783, "type": 2, "geometry": [ 9, 2098, 1400, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 784, "type": 2, "geometry": [ 9, 2288, 1428, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 785, "type": 2, "geometry": [ 9, 2056, 1374, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 786, "type": 2, "geometry": [ 9, 2284, 1452, 402, 0, 0, 2, 23, 11, 23, 23, 9, 27, 17, 23, 8, 29, 6, 23, 12, 23, 6, 25, 5, 23, 10, 3, 23, 15, 23, 23, 4, 7, 23, 24, 2, 24, 5, 29, 17, 23, 7, 24, 2, 33, 19, 25, 4, 7, 24, 4, 23, 5, 23, 31, 9, 23, 7, 5, 24, 6, 24, 26, 22, 24, 6, 24, 6, 6, 24, 10, 26, 9, 28, 12, 24, 1, 24, 26, 0, 18, 24, 24, 7, 24, 14, 24, 1, 32, 0, 24, 0, 24, 5, 1, 25, 14, 28, 24, 8, 30, 7, 10, 23 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 1 } }, { "id": 787, "type": 2, "geometry": [ 9, 2054, 1396, 10, 2, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 788, "type": 2, "geometry": [ 9, 2078, 1392, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 789, "type": 2, "geometry": [ 9, 2704, 572, 2050, 0, 5, 21, 23, 29, 10, 10, 25, 19, 23, 19, 23, 25, 4, 27, 22, 33, 16, 24, 21, 26, 25, 27, 13, 23, 1, 23, 13, 23, 9, 1, 38, 19, 25, 23, 7, 17, 24, 12, 30, 19, 25, 23, 19, 25, 1, 23, 6, 12, 26, 10, 28, 14, 24, 11, 24, 6, 23, 19, 27, 23, 31, 25, 8, 27, 9, 4, 24, 34, 20, 31, 3, 33, 19, 8, 24, 10, 24, 31, 19, 2, 24, 17, 24, 34, 40, 32, 22, 14, 34, 17, 23, 35, 25, 31, 29, 8, 34, 15, 23, 23, 19, 29, 17, 6, 24, 23, 14, 40, 42, 27, 3, 25, 6, 23, 17, 17, 24, 27, 6, 25, 20, 13, 24, 24, 10, 24, 9, 21, 26, 24, 2, 26, 15, 30, 6, 25, 1, 25, 24, 2, 24, 11, 24, 50, 5, 30, 5, 30, 25, 11, 24, 29, 20, 23, 0, 25, 8, 14, 26, 26, 18, 20, 27, 20, 27, 34, 9, 42, 11, 39, 16, 23, 8, 29, 44, 10, 24, 26, 2, 24, 1, 2, 23, 28, 3, 13, 24, 32, 3, 26, 15, 24, 15, 10, 23, 7, 27, 24, 5, 36, 35, 17, 24, 15, 24, 11, 24, 34, 10, 25, 18, 23, 16, 36, 10, 23, 6, 29, 6, 27, 14, 35, 10, 16, 30, 24, 20, 3, 24, 26, 12, 25, 10, 9, 27, 23, 33, 21, 25, 27, 0, 25, 5, 3, 24, 24, 24, 21, 24, 28, 12, 10, 24, 10, 24, 16, 24, 23, 2, 26, 18, 24, 4, 24, 19, 3, 26, 29, 1, 18, 30, 23, 15, 31, 15, 23, 6, 27, 14, 11, 30, 0, 24, 24, 2, 24, 8, 10, 23, 6, 25, 3, 24, 14, 24, 31, 24, 26, 2, 17, 24, 28, 20, 22, 29, 8, 23, 1, 24, 9, 24, 3, 24, 23, 5, 23, 3, 7, 23, 21, 23, 25, 8, 2, 24, 4, 24, 24, 18, 23, 6, 27, 14, 9, 24, 0, 24, 18, 23, 6, 24, 28, 6, 24, 8, 38, 6, 13, 25, 24, 4, 14, 23, 6, 24, 24, 3, 15, 23, 16, 24, 24, 8, 1, 24, 34, 7, 18, 23, 24, 9, 3, 23, 23, 6, 1, 23, 27, 0, 27, 13, 5, 23, 3, 23, 14, 24, 24, 16, 26, 2, 26, 19, 0, 23, 9, 23, 30, 1, 24, 5, 19, 23, 30, 2, 9, 29, 24, 7, 4, 23, 31, 15, 33, 9, 25, 11, 24, 0, 26, 3, 31, 9, 26, 1, 24, 4, 26, 14, 1, 23, 25, 2, 25, 3, 5, 23, 26, 14, 21, 23, 24, 6, 26, 14, 24, 9, 18, 23, 25, 19, 26, 1, 24, 18, 24, 15, 8, 23, 25, 9, 26, 17, 6, 23, 7, 23, 12, 24, 24, 15, 12, 25, 20, 23, 22, 23, 14, 23, 26, 21, 14, 23, 27, 1, 25, 16, 59, 32, 24, 19, 26, 19, 29, 9, 13, 29, 36, 18, 28, 3, 24, 9, 24, 9, 26, 27, 24, 23, 22, 29 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 0 } }, { "id": 790, "type": 2, "geometry": [ 9, 2196, 1222, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 791, "type": 2, "geometry": [ 9, 2448, 910, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 792, "type": 2, "geometry": [ 9, 2172, 1184, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 793, "type": 2, "geometry": [ 9, 2652, 522, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 794, "type": 2, "geometry": [ 9, 2320, 794, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 795, "type": 2, "geometry": [ 9, 2172, 1184, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 796, "type": 2, "geometry": [ 9, 1896, 912, 466, 2, 0, 0, 24, 16, 28, 24, 3, 21, 24, 12, 24, 26, 11, 24, 0, 28, 6, 24, 12, 25, 10, 25, 0, 25, 18, 20, 24, 1, 24, 38, 6, 25, 6, 12, 24, 26, 12, 24, 15, 2, 23, 16, 24, 14, 25, 12, 23, 0, 25, 6, 30, 22, 23, 30, 25, 14, 25, 11, 23, 23, 11, 7, 29, 5, 23, 7, 23, 19, 25, 3, 24, 9, 23, 31, 17, 13, 25, 7, 23, 9, 23, 7, 25, 23, 15, 23, 12, 26, 12, 23, 12, 3, 24, 23, 8, 18, 24, 20, 28, 25, 7, 23, 2, 6, 24, 3, 28, 28, 2, 6, 24, 23, 5, 27, 11 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 1 } }, { "id": 797, "type": 2, "geometry": [ 9, 1920, 996, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 798, "type": 2, "geometry": [ 9, 1764, 1186, 26, 0, 0, 24, 2, 23, 17 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 799, "type": 2, "geometry": [ 9, 1754, 1128, 10, 3, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 800, "type": 2, "geometry": [ 9, 1720, 1244, 50, 0, 3, 13, 23, 11, 27, 3, 24, 6, 24, 24, 8 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 801, "type": 2, "geometry": [ 9, 1692, 1032, 178, 0, 0, 16, 24, 24, 1, 8, 24, 0, 24, 25, 9, 3, 26, 24, 6, 24, 7, 28, 16, 14, 24, 20, 26, 22, 23, 9, 23, 7, 23, 0, 23, 23, 17, 11, 23, 23, 1, 11, 23, 49, 9, 9, 24 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 1 } }, { "id": 802, "type": 2, "geometry": [ 9, 1720, 1316, 26, 0, 2, 24, 10, 9, 25 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 803, "type": 2, "geometry": [ 9, 1794, 1304, 18, 18, 11, 25, 6 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 804, "type": 2, "geometry": [ 9, 1732, 1358, 26, 14, 1, 14, 23, 23, 4 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 805, "type": 2, "geometry": [ 9, 1878, 1404, 202, 0, 0, 7, 23, 4, 23, 1, 23, 9, 23, 23, 12, 23, 21, 9, 26, 22, 24, 3, 24, 11, 23, 19, 25, 11, 24, 6, 24, 23, 18, 26, 8, 26, 3, 32, 3, 23, 14, 11, 24, 4, 24, 24, 9, 28, 10, 4, 23, 0, 23 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 1 } }, { "id": 806, "type": 2, "geometry": [ 9, 1760, 1362, 18, 6, 1, 25, 2 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 807, "type": 2, "geometry": [ 9, 1754, 1382, 10, 2, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 808, "type": 2, "geometry": [ 9, 1996, 2264, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 809, "type": 2, "geometry": [ 9, 1978, 2288, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 810, "type": 2, "geometry": [ 9, 1980, 2188, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 811, "type": 2, "geometry": [ 9, 1988, 2264, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 812, "type": 2, "geometry": [ 9, 2160, 2076, 26, 0, 0, 6, 24, 1, 23 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 813, "type": 2, "geometry": [ 9, 2124, 1942, 18, 0, 1, 5, 24 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 814, "type": 2, "geometry": [ 9, 2172, 2070, 26, 0, 0, 16, 24, 11, 23 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 815, "type": 2, "geometry": [ 9, 2146, 1790, 10, 2, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 816, "type": 2, "geometry": [ 9, 2022, 2250, 10, 3, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 817, "type": 2, "geometry": [ 9, 2010, 2252, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 818, "type": 2, "geometry": [ 9, 2114, 1834, 10, 0, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 819, "type": 2, "geometry": [ 9, 2032, 2210, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 820, "type": 2, "geometry": [ 9, 2290, 2270, 26, 0, 0, 21, 24, 24, 17 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 821, "type": 2, "geometry": [ 9, 2224, 2236, 42, 0, 0, 23, 2, 15, 24, 24, 10, 22, 23 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 822, "type": 2, "geometry": [ 9, 2014, 2204, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 823, "type": 2, "geometry": [ 9, 2032, 2208, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 824, "type": 2, "geometry": [ 9, 2188, 1848, 10, 2, 2 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 825, "type": 2, "geometry": [ 9, 2402, 1936, 10, 2, 2 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 826, "type": 2, "geometry": [ 9, 2610, 2288, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 827, "type": 2, "geometry": [ 9, 2350, 1872, 10, 0, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 828, "type": 2, "geometry": [ 9, 2254, 1568, 90, 0, 2, 2, 24, 16, 24, 26, 14, 36, 5, 24, 4, 3, 23, 13, 23, 23, 17, 27, 2, 23, 9 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 829, "type": 2, "geometry": [ 9, 2392, 1924, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 830, "type": 2, "geometry": [ 9, 2616, 2258, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 831, "type": 2, "geometry": [ 9, 2622, 2194, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 832, "type": 2, "geometry": [ 9, 2618, 2194, 10, 2, 2 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 833, "type": 2, "geometry": [ 9, 2296, 1906, 26, 2, 1, 16, 23, 23, 20 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 834, "type": 2, "geometry": [ 9, 2228, 1940, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 835, "type": 2, "geometry": [ 9, 2200, 2058, 10, 0, 2 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 836, "type": 2, "geometry": [ 9, 2242, 2174, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 837, "type": 2, "geometry": [ 9, 2320, 2186, 10, 2, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 838, "type": 2, "geometry": [ 9, 2312, 1856, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 839, "type": 2, "geometry": [ 9, 2276, 1856, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 840, "type": 2, "geometry": [ 9, 2194, 2086, 10, 2, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 841, "type": 2, "geometry": [ 9, 2550, 1864, 10, 0, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 842, "type": 2, "geometry": [ 9, 2586, 1942, 10, 0, 2 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 843, "type": 2, "geometry": [ 9, 2548, 1912, 10, 5, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 844, "type": 2, "geometry": [ 9, 2560, 1860, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 845, "type": 2, "geometry": [ 9, 2620, 2316, 10, 0, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 846, "type": 2, "geometry": [ 9, 2604, 2156, 10, 2, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 847, "type": 2, "geometry": [ 9, 2600, 2294, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 848, "type": 2, "geometry": [ 9, 2468, 1762, 10, 5, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 849, "type": 2, "geometry": [ 9, 2446, 2198, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 850, "type": 2, "geometry": [ 9, 2496, 2254, 10, 0, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 851, "type": 2, "geometry": [ 9, 2550, 2354, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 852, "type": 2, "geometry": [ 9, 2636, 2218, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 853, "type": 2, "geometry": [ 9, 2674, 2008, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 854, "type": 2, "geometry": [ 9, 2650, 2000, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 855, "type": 2, "geometry": [ 9, 2682, 2094, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 856, "type": 2, "geometry": [ 9, 2644, 1988, 10, 0, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 857, "type": 2, "geometry": [ 9, 2624, 2346, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 858, "type": 2, "geometry": [ 9, 2628, 2362, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 859, "type": 2, "geometry": [ 9, 2630, 2258, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 860, "type": 2, "geometry": [ 9, 2440, 1718, 10, 3, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 861, "type": 2, "geometry": [ 9, 2326, 2256, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 862, "type": 2, "geometry": [ 9, 2434, 1728, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 863, "type": 2, "geometry": [ 9, 2350, 2210, 10, 2, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 864, "type": 2, "geometry": [ 9, 2300, 1940, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 865, "type": 2, "geometry": [ 9, 2324, 2256, 10, 1, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 866, "type": 2, "geometry": [ 9, 2306, 1928, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 867, "type": 2, "geometry": [ 9, 2314, 2340, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 868, "type": 2, "geometry": [ 9, 2388, 1948, 58, 0, 0, 23, 7, 25, 28, 0, 24, 24, 12, 24, 13, 0, 25 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 869, "type": 2, "geometry": [ 9, 2330, 2220, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 870, "type": 2, "geometry": [ 9, 2426, 1970, 26, 0, 1, 23, 17, 22, 24 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 871, "type": 2, "geometry": [ 9, 2422, 2158, 10, 0, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 872, "type": 2, "geometry": [ 9, 2418, 1958, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 873, "type": 2, "geometry": [ 9, 2428, 2172, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 874, "type": 2, "geometry": [ 9, 2392, 1934, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 875, "type": 2, "geometry": [ 9, 2410, 2252, 10, 0, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 876, "type": 2, "geometry": [ 9, 2270, 2196, 154, 0, 0, 23, 15, 11, 23, 23, 15, 23, 17, 23, 1, 1, 23, 23, 2, 1, 24, 3, 28, 2, 24, 19, 24, 28, 2, 8, 24, 24, 7, 20, 23, 24, 5, 24, 20, 24, 5 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 1 } }, { "id": 877, "type": 2, "geometry": [ 9, 2036, 1882, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 878, "type": 2, "geometry": [ 9, 2014, 1848, 10, 0, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 879, "type": 2, "geometry": [ 9, 2004, 1842, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 880, "type": 2, "geometry": [ 9, 2042, 1890, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 881, "type": 2, "geometry": [ 9, 2042, 1878, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 882, "type": 2, "geometry": [ 9, 1836, 1548, 26, 10, 0, 24, 9, 23, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 883, "type": 2, "geometry": [ 9, 1850, 1556, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 884, "type": 2, "geometry": [ 9, 1810, 1616, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 885, "type": 2, "geometry": [ 9, 1870, 1498, 10, 2, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 886, "type": 2, "geometry": [ 9, 1886, 1606, 10, 0, 2 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 887, "type": 2, "geometry": [ 9, 1890, 1638, 10, 2, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 888, "type": 2, "geometry": [ 9, 1904, 1658, 202, 0, 1, 19, 23, 23, 13, 8, 23, 10, 23, 3, 23, 23, 8, 23, 3, 23, 2, 4, 24, 23, 2, 26, 14, 8, 24, 15, 24, 19, 23, 23, 16, 18, 24, 24, 24, 24, 22, 12, 24, 24, 10, 3, 23, 24, 8, 16, 23, 4, 23 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 1 } }, { "id": 889, "type": 2, "geometry": [ 9, 1810, 1616, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 890, "type": 2, "geometry": [ 9, 1772, 1610, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 891, "type": 2, "geometry": [ 9, 1810, 1638, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 892, "type": 2, "geometry": [ 9, 1800, 1568, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 893, "type": 2, "geometry": [ 9, 1808, 1636, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 894, "type": 2, "geometry": [ 9, 3050, 2346, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 895, "type": 2, "geometry": [ 9, 3042, 2342, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 896, "type": 2, "geometry": [ 9, 3036, 2332, 10, 0, 2 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 897, "type": 2, "geometry": [ 9, 3034, 2344, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 898, "type": 2, "geometry": [ 9, 3042, 2340, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 899, "type": 2, "geometry": [ 9, 3036, 2342, 10, 0, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 900, "type": 2, "geometry": [ 9, 3026, 2340, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 901, "type": 2, "geometry": [ 9, 3024, 2336, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 902, "type": 2, "geometry": [ 9, 3062, 2356, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 903, "type": 2, "geometry": [ 9, 3080, 2380, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 904, "type": 2, "geometry": [ 9, 3072, 2360, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 905, "type": 2, "geometry": [ 9, 3086, 2378, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 906, "type": 2, "geometry": [ 9, 3070, 2360, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 907, "type": 2, "geometry": [ 9, 3068, 2360, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 908, "type": 2, "geometry": [ 9, 3022, 2338, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 909, "type": 2, "geometry": [ 9, 3064, 2372, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 910, "type": 2, "geometry": [ 9, 3048, 2348, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 911, "type": 2, "geometry": [ 9, 3000, 2330, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 912, "type": 2, "geometry": [ 9, 2942, 2228, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 913, "type": 2, "geometry": [ 9, 2976, 2298, 10, 0, 2 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 914, "type": 2, "geometry": [ 9, 2942, 2230, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 915, "type": 2, "geometry": [ 9, 2946, 2226, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 916, "type": 2, "geometry": [ 9, 2938, 2156, 10, 0, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 917, "type": 2, "geometry": [ 9, 3090, 2374, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 918, "type": 2, "geometry": [ 9, 2910, 2176, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 919, "type": 2, "geometry": [ 9, 2928, 2164, 10, 0, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 920, "type": 2, "geometry": [ 9, 3022, 2340, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 921, "type": 2, "geometry": [ 9, 3022, 2338, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 922, "type": 2, "geometry": [ 9, 3020, 2340, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 923, "type": 2, "geometry": [ 9, 2982, 2320, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 924, "type": 2, "geometry": [ 9, 3018, 2340, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 925, "type": 2, "geometry": [ 9, 2988, 2314, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 926, "type": 2, "geometry": [ 9, 3090, 2382, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 927, "type": 2, "geometry": [ 9, 3010, 2344, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 928, "type": 2, "geometry": [ 9, 2930, 2208, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 929, "type": 2, "geometry": [ 9, 3158, 2226, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 930, "type": 2, "geometry": [ 9, 3138, 2246, 10, 2, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 931, "type": 2, "geometry": [ 9, 3150, 2230, 10, 0, 2 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 932, "type": 2, "geometry": [ 9, 3142, 2244, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 933, "type": 2, "geometry": [ 9, 3148, 2234, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 934, "type": 2, "geometry": [ 9, 3158, 2220, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 935, "type": 2, "geometry": [ 9, 3182, 2158, 26, 1, 0, 11, 23, 6, 24 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 936, "type": 2, "geometry": [ 9, 3168, 2202, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 937, "type": 2, "geometry": [ 9, 3170, 2172, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 938, "type": 2, "geometry": [ 9, 3100, 2382, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 939, "type": 2, "geometry": [ 9, 3108, 2378, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 940, "type": 2, "geometry": [ 9, 3094, 2378, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 941, "type": 2, "geometry": [ 9, 3138, 2290, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 942, "type": 2, "geometry": [ 9, 3112, 2380, 10, 0, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 943, "type": 2, "geometry": [ 9, 3122, 2336, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 944, "type": 2, "geometry": [ 9, 3132, 2256, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 945, "type": 2, "geometry": [ 9, 3112, 2374, 10, 19, 3 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 946, "type": 2, "geometry": [ 9, 3128, 2310, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 947, "type": 2, "geometry": [ 9, 2828, 1698, 10, 1, 2 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 948, "type": 2, "geometry": [ 9, 2904, 1920, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 949, "type": 2, "geometry": [ 9, 2892, 1876, 58, 0, 1, 24, 15, 23, 25, 23, 19, 7, 24, 9, 24, 24, 6 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 950, "type": 2, "geometry": [ 9, 2842, 1668, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 951, "type": 2, "geometry": [ 9, 2850, 1806, 10, 2, 2 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 952, "type": 2, "geometry": [ 9, 2866, 1862, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 953, "type": 2, "geometry": [ 9, 2886, 1932, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 954, "type": 2, "geometry": [ 9, 2890, 2094, 10, 5, 2 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 955, "type": 2, "geometry": [ 9, 2916, 1768, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 956, "type": 2, "geometry": [ 9, 2826, 1646, 10, 2, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 957, "type": 2, "geometry": [ 9, 2820, 1572, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 958, "type": 2, "geometry": [ 9, 2830, 1614, 10, 1, 2 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 959, "type": 2, "geometry": [ 9, 2882, 1726, 10, 2, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 960, "type": 2, "geometry": [ 9, 2900, 1746, 10, 2, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 961, "type": 2, "geometry": [ 9, 2868, 1758, 10, 2, 2 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 962, "type": 2, "geometry": [ 9, 2466, 1222, 10, 1, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 963, "type": 2, "geometry": [ 9, 2818, 1550, 10, 2, 2 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 964, "type": 2, "geometry": [ 9, 2826, 1640, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 965, "type": 2, "geometry": [ 9, 2494, 1220, 10, 11, 5 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 966, "type": 2, "geometry": [ 9, 2808, 1496, 18, 2, 1, 23, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 967, "type": 2, "geometry": [ 9, 2514, 1304, 10, 1, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 968, "type": 2, "geometry": [ 9, 3258, 2084, 10, 0, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 969, "type": 2, "geometry": [ 9, 3258, 2082, 10, 2, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 970, "type": 2, "geometry": [ 9, 3286, 2064, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 971, "type": 2, "geometry": [ 9, 3270, 2080, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 972, "type": 2, "geometry": [ 9, 3254, 2094, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 973, "type": 2, "geometry": [ 9, 3248, 2100, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 974, "type": 2, "geometry": [ 9, 3324, 2030, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 975, "type": 2, "geometry": [ 9, 3418, 1946, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 976, "type": 2, "geometry": [ 9, 3242, 2088, 10, 2, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 977, "type": 2, "geometry": [ 9, 3334, 2008, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 978, "type": 2, "geometry": [ 9, 3338, 1998, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 979, "type": 2, "geometry": [ 9, 3198, 432, 18, 9, 3, 2, 24 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 980, "type": 2, "geometry": [ 9, 2882, 598, 34, 2, 2, 22, 24, 24, 4, 27, 33 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 981, "type": 2, "geometry": [ 9, 3212, 420, 34, 15, 9, 17, 25, 8, 24, 24, 24 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 982, "type": 2, "geometry": [ 9, 2920, 1784, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 983, "type": 2, "geometry": [ 9, 2916, 1922, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 984, "type": 2, "geometry": [ 9, 2912, 1920, 10, 0, 2 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 985, "type": 2, "geometry": [ 9, 2930, 1838, 26, 0, 0, 0, 24, 8, 23 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 986, "type": 2, "geometry": [ 9, 3196, 2114, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 987, "type": 2, "geometry": [ 9, 3182, 442, 26, 0, 1, 29, 21, 16, 28 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 988, "type": 2, "geometry": [ 9, 3006, 492, 10, 8, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 989, "type": 2, "geometry": [ 9, 3082, 558, 58, 7, 11, 33, 35, 29, 6, 10, 24, 8, 26, 34, 30, 20, 25 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 990, "type": 2, "geometry": [ 9, 4186, 2716, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 991, "type": 2, "geometry": [ 9, 4588, 3194, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 992, "type": 2, "geometry": [ 9, 4618, 3208, 10, 0, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 993, "type": 2, "geometry": [ 9, 4590, 3194, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 994, "type": 2, "geometry": [ 9, 4624, 3218, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 995, "type": 2, "geometry": [ 9, 4630, 3166, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 996, "type": 2, "geometry": [ 9, 4630, 3172, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 997, "type": 2, "geometry": [ 9, 4628, 3162, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 998, "type": 2, "geometry": [ 9, 4622, 3180, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 999, "type": 2, "geometry": [ 9, 4632, 3176, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1000, "type": 2, "geometry": [ 9, 4552, 3118, 10, 0, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1001, "type": 2, "geometry": [ 9, 4566, 3148, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1002, "type": 2, "geometry": [ 9, 4572, 3142, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1003, "type": 2, "geometry": [ 9, 4564, 3140, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1004, "type": 2, "geometry": [ 9, 4554, 3122, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1005, "type": 2, "geometry": [ 9, 4570, 3164, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1006, "type": 2, "geometry": [ 9, 4566, 3158, 10, 2, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1007, "type": 2, "geometry": [ 9, 4468, 2998, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1008, "type": 2, "geometry": [ 9, 4464, 3006, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1009, "type": 2, "geometry": [ 9, 4470, 3000, 10, 2, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1010, "type": 2, "geometry": [ 9, 4474, 3006, 10, 12, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1011, "type": 2, "geometry": [ 9, 4496, 3018, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1012, "type": 2, "geometry": [ 9, 4478, 3016, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1013, "type": 2, "geometry": [ 9, 4484, 3010, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1014, "type": 2, "geometry": [ 9, 4426, 2958, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1015, "type": 2, "geometry": [ 9, 4426, 2956, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1016, "type": 2, "geometry": [ 9, 4424, 2960, 10, 1, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1017, "type": 2, "geometry": [ 9, 4444, 2978, 10, 0, 2 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1018, "type": 2, "geometry": [ 9, 4376, 2932, 10, 0, 2 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1019, "type": 2, "geometry": [ 9, 4422, 2960, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1020, "type": 2, "geometry": [ 9, 4440, 2980, 10, 1, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1021, "type": 2, "geometry": [ 9, 4442, 2982, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1022, "type": 2, "geometry": [ 9, 4452, 2988, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1023, "type": 2, "geometry": [ 9, 4434, 2960, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1024, "type": 2, "geometry": [ 9, 4430, 2952, 10, 2, 2 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1025, "type": 2, "geometry": [ 9, 4430, 2948, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1026, "type": 2, "geometry": [ 9, 4432, 2974, 10, 0, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1027, "type": 2, "geometry": [ 9, 4442, 2978, 10, 0, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1028, "type": 2, "geometry": [ 9, 4434, 3142, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1029, "type": 2, "geometry": [ 9, 4368, 3192, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1030, "type": 2, "geometry": [ 9, 4412, 3080, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1031, "type": 2, "geometry": [ 9, 4436, 3146, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1032, "type": 2, "geometry": [ 9, 4434, 3146, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1033, "type": 2, "geometry": [ 9, 4420, 3214, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1034, "type": 2, "geometry": [ 9, 4448, 3150, 50, 0, 0, 23, 8, 23, 1, 2, 24, 24, 14, 14, 23 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 1 } }, { "id": 1035, "type": 2, "geometry": [ 9, 4426, 3218, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1036, "type": 2, "geometry": [ 9, 4374, 3160, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1037, "type": 2, "geometry": [ 9, 3522, 3162, 10, 3, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 1038, "type": 2, "geometry": [ 9, 3524, 3186, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1039, "type": 2, "geometry": [ 9, 3456, 3146, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 1040, "type": 2, "geometry": [ 9, 3444, 3142, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 1041, "type": 2, "geometry": [ 9, 3458, 3130, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1042, "type": 2, "geometry": [ 9, 3460, 3142, 10, 1, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 1043, "type": 2, "geometry": [ 9, 3480, 3138, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 1044, "type": 2, "geometry": [ 9, 3386, 3108, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1045, "type": 2, "geometry": [ 9, 3384, 3114, 10, 2, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 1046, "type": 2, "geometry": [ 9, 4172, 3106, 26, 0, 0, 23, 6, 24, 2 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 1047, "type": 2, "geometry": [ 9, 4132, 3126, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1048, "type": 2, "geometry": [ 9, 4130, 3138, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1049, "type": 2, "geometry": [ 9, 4194, 3102, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1050, "type": 2, "geometry": [ 9, 3914, 3188, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1051, "type": 2, "geometry": [ 9, 4078, 3166, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1052, "type": 2, "geometry": [ 9, 4290, 3034, 42, 0, 0, 12, 24, 10, 23, 1, 23, 19, 24 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 0 } }, { "id": 1053, "type": 2, "geometry": [ 9, 4284, 3124, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1054, "type": 2, "geometry": [ 9, 4284, 3068, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1055, "type": 2, "geometry": [ 9, 4310, 3020, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1056, "type": 2, "geometry": [ 9, 4288, 3128, 10, 0, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1057, "type": 2, "geometry": [ 9, 4332, 3014, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1058, "type": 2, "geometry": [ 9, 4342, 3028, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1059, "type": 2, "geometry": [ 9, 4318, 3008, 10, 0, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1060, "type": 2, "geometry": [ 9, 4318, 3084, 50, 0, 0, 23, 11, 5, 24, 1, 24, 24, 6, 6, 23 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 1 } }, { "id": 1061, "type": 2, "geometry": [ 9, 4236, 2648, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1062, "type": 2, "geometry": [ 9, 4242, 2646, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1063, "type": 2, "geometry": [ 9, 4250, 2644, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1064, "type": 2, "geometry": [ 9, 4206, 2660, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1065, "type": 2, "geometry": [ 9, 4206, 2664, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1066, "type": 2, "geometry": [ 9, 4218, 2652, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1067, "type": 2, "geometry": [ 9, 4224, 2650, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1068, "type": 2, "geometry": [ 9, 4258, 2640, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1069, "type": 2, "geometry": [ 9, 4280, 2640, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1070, "type": 2, "geometry": [ 9, 4274, 2638, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1071, "type": 2, "geometry": [ 9, 4252, 2642, 10, 4, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1072, "type": 2, "geometry": [ 9, 4262, 2640, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1073, "type": 2, "geometry": [ 9, 4266, 2638, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1074, "type": 2, "geometry": [ 9, 4270, 2638, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1075, "type": 2, "geometry": [ 9, 4048, 2804, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1076, "type": 2, "geometry": [ 9, 4042, 2890, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1077, "type": 2, "geometry": [ 9, 4044, 2880, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1078, "type": 2, "geometry": [ 9, 4036, 2796, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1079, "type": 2, "geometry": [ 9, 3980, 2830, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1080, "type": 2, "geometry": [ 9, 4024, 2870, 10, 0, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1081, "type": 2, "geometry": [ 9, 4066, 2908, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1082, "type": 2, "geometry": [ 9, 4116, 2726, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1083, "type": 2, "geometry": [ 9, 4074, 2748, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1084, "type": 2, "geometry": [ 9, 4070, 2752, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1085, "type": 2, "geometry": [ 9, 4068, 2916, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1086, "type": 2, "geometry": [ 9, 4284, 2602, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1087, "type": 2, "geometry": [ 9, 4288, 2600, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1088, "type": 2, "geometry": [ 9, 4288, 2576, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1089, "type": 2, "geometry": [ 9, 4286, 2592, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1090, "type": 2, "geometry": [ 9, 4296, 2520, 10, 0, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1091, "type": 2, "geometry": [ 9, 4298, 2608, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1092, "type": 2, "geometry": [ 9, 4472, 1900, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1093, "type": 2, "geometry": [ 9, 4472, 1914, 34, 0, 0, 23, 7, 5, 24, 24, 3 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 1094, "type": 2, "geometry": [ 9, 4484, 1908, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1095, "type": 2, "geometry": [ 9, 4528, 1844, 26, 0, 0, 23, 14, 24, 7 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1096, "type": 2, "geometry": [ 9, 4506, 1870, 34, 0, 1, 23, 4, 0, 24, 24, 19 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 1097, "type": 2, "geometry": [ 9, 4468, 1930, 10, 0, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1098, "type": 2, "geometry": [ 9, 4486, 1904, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1099, "type": 2, "geometry": [ 9, 4422, 1918, 26, 0, 0, 24, 1, 23, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1100, "type": 2, "geometry": [ 9, 4392, 1954, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1101, "type": 2, "geometry": [ 9, 4436, 1938, 10, 0, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1102, "type": 2, "geometry": [ 9, 4574, 1828, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1103, "type": 2, "geometry": [ 9, 4398, 1952, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1104, "type": 2, "geometry": [ 9, 4414, 1944, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1105, "type": 2, "geometry": [ 9, 4448, 1902, 10, 2, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1106, "type": 2, "geometry": [ 9, 4642, 1788, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1107, "type": 2, "geometry": [ 9, 4642, 1766, 10, 2, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1108, "type": 2, "geometry": [ 9, 4634, 1798, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1109, "type": 2, "geometry": [ 9, 4542, 1832, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1110, "type": 2, "geometry": [ 9, 4690, 1762, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1111, "type": 2, "geometry": [ 9, 4616, 1812, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1112, "type": 2, "geometry": [ 9, 4568, 1826, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1113, "type": 2, "geometry": [ 9, 4606, 1798, 26, 0, 0, 24, 19, 23, 8 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1114, "type": 2, "geometry": [ 9, 4548, 1832, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1115, "type": 2, "geometry": [ 9, 4550, 1822, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1116, "type": 2, "geometry": [ 9, 4588, 1836, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1117, "type": 2, "geometry": [ 9, 4572, 1832, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1118, "type": 2, "geometry": [ 9, 4348, 2136, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1119, "type": 2, "geometry": [ 9, 4352, 2154, 10, 0, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1120, "type": 2, "geometry": [ 9, 4382, 2072, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1121, "type": 2, "geometry": [ 9, 4342, 2138, 10, 2, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1122, "type": 2, "geometry": [ 9, 4368, 2094, 10, 0, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1123, "type": 2, "geometry": [ 9, 4374, 2124, 10, 0, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1124, "type": 2, "geometry": [ 9, 4420, 2010, 10, 0, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1125, "type": 2, "geometry": [ 9, 4384, 2076, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1126, "type": 2, "geometry": [ 9, 4378, 2108, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1127, "type": 2, "geometry": [ 9, 4238, 2264, 10, 1, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1128, "type": 2, "geometry": [ 9, 4232, 2264, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1129, "type": 2, "geometry": [ 9, 4250, 2248, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1130, "type": 2, "geometry": [ 9, 4250, 2242, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1131, "type": 2, "geometry": [ 9, 4286, 2200, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1132, "type": 2, "geometry": [ 9, 4206, 2290, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1133, "type": 2, "geometry": [ 9, 4226, 2270, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1134, "type": 2, "geometry": [ 9, 4280, 2222, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1135, "type": 2, "geometry": [ 9, 4302, 2206, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1136, "type": 2, "geometry": [ 9, 4268, 2232, 10, 2, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1137, "type": 2, "geometry": [ 9, 4288, 2222, 10, 0, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1138, "type": 2, "geometry": [ 9, 4276, 2218, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1139, "type": 2, "geometry": [ 9, 4272, 2230, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1140, "type": 2, "geometry": [ 9, 4212, 2368, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1141, "type": 2, "geometry": [ 9, 4216, 2388, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1142, "type": 2, "geometry": [ 9, 4216, 2410, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1143, "type": 2, "geometry": [ 9, 4208, 2324, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1144, "type": 2, "geometry": [ 9, 4208, 2354, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1145, "type": 2, "geometry": [ 9, 4220, 2384, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1146, "type": 2, "geometry": [ 9, 4224, 2346, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1147, "type": 2, "geometry": [ 9, 4222, 2374, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1148, "type": 2, "geometry": [ 9, 4356, 2522, 10, 2, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1149, "type": 2, "geometry": [ 9, 4348, 2494, 10, 1, 2 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1150, "type": 2, "geometry": [ 9, 4362, 2464, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1151, "type": 2, "geometry": [ 9, 4364, 2456, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1152, "type": 2, "geometry": [ 9, 4352, 2610, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1153, "type": 2, "geometry": [ 9, 4354, 2630, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1154, "type": 2, "geometry": [ 9, 4336, 2556, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1155, "type": 2, "geometry": [ 9, 4342, 2588, 10, 1, 2 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1156, "type": 2, "geometry": [ 9, 4322, 2592, 10, 0, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1157, "type": 2, "geometry": [ 9, 4332, 2594, 10, 2, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1158, "type": 2, "geometry": [ 9, 4364, 2600, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1159, "type": 2, "geometry": [ 9, 4382, 2562, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1160, "type": 2, "geometry": [ 9, 4358, 2626, 10, 0, 2 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1161, "type": 2, "geometry": [ 9, 4378, 2588, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1162, "type": 2, "geometry": [ 9, 4338, 2588, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 1163, "type": 2, "geometry": [ 9, 4368, 2594, 50, 0, 0, 4, 23, 8, 23, 23, 6, 7, 24, 18, 24 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 1 } }, { "id": 1164, "type": 2, "geometry": [ 9, 4406, 2614, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1165, "type": 2, "geometry": [ 9, 4440, 2584, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 1166, "type": 2, "geometry": [ 9, 4394, 2606, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1167, "type": 2, "geometry": [ 9, 4484, 2496, 26, 0, 0, 13, 28, 12, 23 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1168, "type": 2, "geometry": [ 9, 4534, 2450, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1169, "type": 2, "geometry": [ 9, 4514, 2412, 10, 2, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1170, "type": 2, "geometry": [ 9, 4534, 2468, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1171, "type": 2, "geometry": [ 9, 4528, 2472, 26, 0, 0, 19, 24, 20, 23 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 1172, "type": 2, "geometry": [ 9, 4580, 2220, 10, 2, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1173, "type": 2, "geometry": [ 9, 4570, 2196, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1174, "type": 2, "geometry": [ 9, 4662, 2128, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1175, "type": 2, "geometry": [ 9, 4582, 2222, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1176, "type": 2, "geometry": [ 9, 4568, 2368, 10, 0, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1177, "type": 2, "geometry": [ 9, 4578, 2338, 10, 2, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1178, "type": 2, "geometry": [ 9, 4580, 2356, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1179, "type": 2, "geometry": [ 9, 4580, 2352, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1180, "type": 2, "geometry": [ 9, 4580, 2368, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1181, "type": 2, "geometry": [ 9, 4582, 2352, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1182, "type": 2, "geometry": [ 9, 4560, 2366, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1183, "type": 2, "geometry": [ 9, 4604, 2364, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1184, "type": 2, "geometry": [ 9, 4518, 2362, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1185, "type": 2, "geometry": [ 9, 4556, 2372, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1186, "type": 2, "geometry": [ 9, 4554, 2368, 10, 2, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 1187, "type": 2, "geometry": [ 9, 4542, 2368, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1188, "type": 2, "geometry": [ 9, 4598, 2364, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1189, "type": 2, "geometry": [ 9, 4678, 2368, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1190, "type": 2, "geometry": [ 9, 4614, 2366, 10, 0, 2 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 1191, "type": 2, "geometry": [ 9, 4682, 2368, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1192, "type": 2, "geometry": [ 9, 4604, 2376, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1193, "type": 2, "geometry": [ 9, 4584, 2372, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1194, "type": 2, "geometry": [ 9, 4590, 2356, 10, 0, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1195, "type": 2, "geometry": [ 9, 4600, 2368, 10, 0, 2 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1196, "type": 2, "geometry": [ 9, 4590, 2370, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1197, "type": 2, "geometry": [ 9, 4596, 2368, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1198, "type": 2, "geometry": [ 9, 4596, 2362, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1199, "type": 2, "geometry": [ 9, 3902, 2590, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1200, "type": 2, "geometry": [ 9, 3926, 2508, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1201, "type": 2, "geometry": [ 9, 3868, 2632, 10, 0, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1202, "type": 2, "geometry": [ 9, 3898, 2474, 10, 2, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1203, "type": 2, "geometry": [ 9, 3930, 2488, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1204, "type": 2, "geometry": [ 9, 3876, 2658, 10, 1, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1205, "type": 2, "geometry": [ 9, 3930, 2496, 10, 0, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1206, "type": 2, "geometry": [ 9, 3932, 2482, 10, 0, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1207, "type": 2, "geometry": [ 9, 3934, 2470, 10, 2, 2 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1208, "type": 2, "geometry": [ 9, 3946, 2494, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1209, "type": 2, "geometry": [ 9, 3952, 2506, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1210, "type": 2, "geometry": [ 9, 3936, 2478, 26, 2, 1, 14, 23, 17, 24 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 1211, "type": 2, "geometry": [ 9, 3940, 2470, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1212, "type": 2, "geometry": [ 9, 3940, 2528, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1213, "type": 2, "geometry": [ 9, 3946, 2274, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1214, "type": 2, "geometry": [ 9, 3960, 2496, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1215, "type": 2, "geometry": [ 9, 3958, 2494, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1216, "type": 2, "geometry": [ 9, 3960, 2486, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1217, "type": 2, "geometry": [ 9, 4026, 2418, 10, 2, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1218, "type": 2, "geometry": [ 9, 4030, 2414, 10, 0, 2 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1219, "type": 2, "geometry": [ 9, 4026, 2408, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1220, "type": 2, "geometry": [ 9, 3930, 2478, 10, 2, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1221, "type": 2, "geometry": [ 9, 3930, 2276, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1222, "type": 2, "geometry": [ 9, 3926, 2280, 10, 2, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1223, "type": 2, "geometry": [ 9, 3934, 2270, 10, 2, 2 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1224, "type": 2, "geometry": [ 9, 3944, 2314, 10, 0, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1225, "type": 2, "geometry": [ 9, 3944, 2292, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1226, "type": 2, "geometry": [ 9, 3938, 2458, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1227, "type": 2, "geometry": [ 9, 3944, 2506, 10, 2, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1228, "type": 2, "geometry": [ 9, 4032, 2424, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1229, "type": 2, "geometry": [ 9, 4028, 2430, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1230, "type": 2, "geometry": [ 9, 4038, 2418, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1231, "type": 2, "geometry": [ 9, 4040, 2410, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1232, "type": 2, "geometry": [ 9, 4002, 2656, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1233, "type": 2, "geometry": [ 9, 4022, 2432, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1234, "type": 2, "geometry": [ 9, 4058, 2400, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1235, "type": 2, "geometry": [ 9, 4078, 2350, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1236, "type": 2, "geometry": [ 9, 3990, 2658, 10, 0, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1237, "type": 2, "geometry": [ 9, 4074, 2346, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1238, "type": 2, "geometry": [ 9, 4070, 2358, 26, 0, 0, 5, 24, 8, 23 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1239, "type": 2, "geometry": [ 9, 4072, 2346, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1240, "type": 2, "geometry": [ 9, 3954, 2530, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1241, "type": 2, "geometry": [ 9, 3964, 2546, 10, 1, 2 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1242, "type": 2, "geometry": [ 9, 3954, 2546, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1243, "type": 2, "geometry": [ 9, 3966, 2542, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1244, "type": 2, "geometry": [ 9, 3954, 2578, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1245, "type": 2, "geometry": [ 9, 3958, 2560, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1246, "type": 2, "geometry": [ 9, 3966, 2532, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1247, "type": 2, "geometry": [ 9, 3966, 2540, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1248, "type": 2, "geometry": [ 9, 3980, 2570, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1249, "type": 2, "geometry": [ 9, 3968, 2532, 10, 0, 2 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1250, "type": 2, "geometry": [ 9, 3980, 2560, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1251, "type": 2, "geometry": [ 9, 3948, 2522, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1252, "type": 2, "geometry": [ 9, 3966, 2536, 10, 0, 2 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1253, "type": 2, "geometry": [ 9, 3990, 2628, 10, 0, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1254, "type": 2, "geometry": [ 9, 4854, 3348, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1255, "type": 2, "geometry": [ 9, 4848, 3346, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1256, "type": 2, "geometry": [ 9, 4344, 3254, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1257, "type": 2, "geometry": [ 9, 4346, 3276, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1258, "type": 2, "geometry": [ 9, 4352, 3250, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1259, "type": 2, "geometry": [ 9, 3066, 4656, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1260, "type": 2, "geometry": [ 9, 3040, 4656, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1261, "type": 2, "geometry": [ 9, 3014, 4676, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1262, "type": 2, "geometry": [ 9, 2992, 4744, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1263, "type": 2, "geometry": [ 9, 2990, 4716, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1264, "type": 2, "geometry": [ 9, 3870, 5100, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1265, "type": 2, "geometry": [ 9, 3814, 5004, 10, 0, 2 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1266, "type": 2, "geometry": [ 9, 3092, 4636, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1267, "type": 2, "geometry": [ 9, 4260, 3992, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1268, "type": 2, "geometry": [ 9, 4264, 4056, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 1269, "type": 2, "geometry": [ 9, 4248, 4086, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 1270, "type": 2, "geometry": [ 9, 4266, 3992, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1271, "type": 2, "geometry": [ 9, 4300, 4110, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1272, "type": 2, "geometry": [ 9, 4844, 4710, 10, 0, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1273, "type": 2, "geometry": [ 9, 4362, 4478, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1274, "type": 2, "geometry": [ 9, 4224, 4128, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1275, "type": 2, "geometry": [ 9, 4298, 4010, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 1276, "type": 2, "geometry": [ 9, 5356, 4200, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1277, "type": 2, "geometry": [ 9, 3768, 4274, 10, 0, 2 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1278, "type": 2, "geometry": [ 9, 4998, 4218, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 1279, "type": 2, "geometry": [ 9, 3358, 4182, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1280, "type": 2, "geometry": [ 9, 4902, 4598, 10, 0, 2 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1281, "type": 2, "geometry": [ 9, 5364, 4194, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1282, "type": 2, "geometry": [ 9, 5148, 4308, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1283, "type": 2, "geometry": [ 9, 3964, 4462, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1284, "type": 2, "geometry": [ 9, 5382, 4332, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1285, "type": 2, "geometry": [ 9, 5232, 4482, 10, 1, 2 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1286, "type": 2, "geometry": [ 9, 5352, 4198, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1287, "type": 2, "geometry": [ 9, 5154, 4308, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1288, "type": 2, "geometry": [ 9, 5194, 4402, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 1289, "type": 2, "geometry": [ 9, 5364, 4586, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 1290, "type": 2, "geometry": [ 9, 5382, 4332, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1291, "type": 2, "geometry": [ 9, 5382, 4332, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1292, "type": 2, "geometry": [ 9, 5374, 4260, 10, 2, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1293, "type": 2, "geometry": [ 9, 5410, 4566, 10, 0, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 1294, "type": 2, "geometry": [ 9, 4994, 4240, 10, 0, 3 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 1295, "type": 2, "geometry": [ 9, 5030, 4142, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1296, "type": 2, "geometry": [ 9, 5002, 4270, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 1297, "type": 2, "geometry": [ 9, 5124, 4388, 10, 2, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1298, "type": 2, "geometry": [ 9, 5084, 4366, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 1299, "type": 2, "geometry": [ 9, 5124, 4386, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 1300, "type": 2, "geometry": [ 9, 5092, 4378, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1301, "type": 2, "geometry": [ 9, 5108, 4376, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 1302, "type": 2, "geometry": [ 9, 4388, 4228, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1303, "type": 2, "geometry": [ 9, 3562, 3750, 10, 0, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 1304, "type": 2, "geometry": [ 9, 3568, 3742, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 1305, "type": 2, "geometry": [ 9, 3574, 3712, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 1306, "type": 2, "geometry": [ 9, 3548, 3712, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 1307, "type": 2, "geometry": [ 9, 3690, 3410, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 1308, "type": 2, "geometry": [ 9, 3542, 3752, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 1309, "type": 2, "geometry": [ 9, 3578, 3724, 10, 0, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 1310, "type": 2, "geometry": [ 9, 3686, 3434, 10, 0, 2 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 1311, "type": 2, "geometry": [ 9, 3532, 3752, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1312, "type": 2, "geometry": [ 9, 3724, 3298, 10, 0, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1313, "type": 2, "geometry": [ 9, 3728, 3822, 10, 0, 2 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1314, "type": 2, "geometry": [ 9, 3730, 3832, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 1315, "type": 2, "geometry": [ 9, 3788, 3398, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 1316, "type": 2, "geometry": [ 9, 3720, 3312, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1317, "type": 2, "geometry": [ 9, 3702, 3426, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 1318, "type": 2, "geometry": [ 9, 3528, 3704, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 1319, "type": 2, "geometry": [ 9, 3526, 3702, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 1320, "type": 2, "geometry": [ 9, 3742, 3828, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1321, "type": 2, "geometry": [ 9, 3738, 3832, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1322, "type": 2, "geometry": [ 9, 3738, 3836, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1323, "type": 2, "geometry": [ 9, 3744, 3430, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 1324, "type": 2, "geometry": [ 9, 3810, 3922, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1325, "type": 2, "geometry": [ 9, 3734, 3836, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1326, "type": 2, "geometry": [ 9, 3778, 3412, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 1327, "type": 2, "geometry": [ 9, 3788, 3398, 10, 0, 2 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 1328, "type": 2, "geometry": [ 9, 3722, 3428, 10, 0, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 1329, "type": 2, "geometry": [ 9, 3724, 3832, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1330, "type": 2, "geometry": [ 9, 3726, 3832, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1331, "type": 2, "geometry": [ 9, 3732, 3838, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1332, "type": 2, "geometry": [ 9, 3712, 3308, 10, 2, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 1333, "type": 2, "geometry": [ 9, 3722, 3634, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1334, "type": 2, "geometry": [ 9, 3726, 3838, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1335, "type": 2, "geometry": [ 9, 3732, 3840, 10, 0, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1336, "type": 2, "geometry": [ 9, 3730, 3840, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 1337, "type": 2, "geometry": [ 9, 4882, 3224, 26, 5, 2, 23, 8, 24, 3 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 1 } }, { "id": 1338, "type": 2, "geometry": [ 9, 4686, 3096, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1339, "type": 2, "geometry": [ 9, 4660, 3078, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1340, "type": 2, "geometry": [ 9, 4674, 3100, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1341, "type": 2, "geometry": [ 9, 4680, 3086, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1342, "type": 2, "geometry": [ 9, 4724, 3080, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1343, "type": 2, "geometry": [ 9, 4688, 3106, 10, 0, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1344, "type": 2, "geometry": [ 9, 4654, 3154, 26, 1, 0, 23, 19, 20, 24 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 1345, "type": 2, "geometry": [ 9, 4628, 3126, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1346, "type": 2, "geometry": [ 9, 4656, 3136, 10, 0, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1347, "type": 2, "geometry": [ 9, 4640, 3124, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1348, "type": 2, "geometry": [ 9, 4634, 3126, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1349, "type": 2, "geometry": [ 9, 4700, 3128, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1350, "type": 2, "geometry": [ 9, 4664, 3114, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1351, "type": 2, "geometry": [ 9, 4690, 3144, 10, 0, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1352, "type": 2, "geometry": [ 9, 4678, 3142, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1353, "type": 2, "geometry": [ 9, 4658, 3186, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1354, "type": 2, "geometry": [ 9, 4660, 3198, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1355, "type": 2, "geometry": [ 9, 4656, 3194, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1356, "type": 2, "geometry": [ 9, 4666, 3188, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1357, "type": 2, "geometry": [ 9, 4666, 3170, 10, 0, 2 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1358, "type": 2, "geometry": [ 9, 4664, 3166, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1359, "type": 2, "geometry": [ 9, 4662, 3176, 10, 0, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1360, "type": 2, "geometry": [ 9, 4654, 3192, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1361, "type": 2, "geometry": [ 9, 4682, 3184, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1362, "type": 2, "geometry": [ 9, 4652, 3182, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1363, "type": 2, "geometry": [ 9, 4672, 3176, 10, 2, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1364, "type": 2, "geometry": [ 9, 4652, 3194, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1365, "type": 2, "geometry": [ 9, 4650, 3176, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1366, "type": 2, "geometry": [ 9, 4650, 3168, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1367, "type": 2, "geometry": [ 9, 4694, 3198, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1368, "type": 2, "geometry": [ 9, 4680, 3206, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1369, "type": 2, "geometry": [ 9, 4686, 3190, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1370, "type": 2, "geometry": [ 9, 4694, 3168, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1371, "type": 2, "geometry": [ 9, 4710, 3166, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1372, "type": 2, "geometry": [ 9, 4670, 3196, 10, 2, 2 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1373, "type": 2, "geometry": [ 9, 4668, 3196, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1374, "type": 2, "geometry": [ 9, 4672, 3202, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1375, "type": 2, "geometry": [ 9, 4678, 3190, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1376, "type": 2, "geometry": [ 9, 4670, 3186, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1377, "type": 2, "geometry": [ 9, 4674, 3192, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1378, "type": 2, "geometry": [ 9, 4676, 3182, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1379, "type": 2, "geometry": [ 9, 4716, 3190, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1380, "type": 2, "geometry": [ 9, 4708, 3190, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1381, "type": 2, "geometry": [ 9, 4730, 3200, 10, 0, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1382, "type": 2, "geometry": [ 9, 4718, 3204, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1383, "type": 2, "geometry": [ 9, 4694, 3236, 42, 0, 0, 23, 1, 23, 3, 24, 14, 24, 3 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 1 } }, { "id": 1384, "type": 2, "geometry": [ 9, 4644, 3248, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1385, "type": 2, "geometry": [ 9, 4708, 3232, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1386, "type": 2, "geometry": [ 9, 4714, 3230, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1387, "type": 2, "geometry": [ 9, 4738, 3204, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 1388, "type": 2, "geometry": [ 9, 4956, 5298, 10, 2, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1389, "type": 2, "geometry": [ 9, 4952, 5304, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1390, "type": 2, "geometry": [ 9, 5658, 5364, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1391, "type": 2, "geometry": [ 9, 5274, 5288, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1392, "type": 2, "geometry": [ 9, 5236, 5278, 10, 0, 2 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1393, "type": 2, "geometry": [ 9, 5670, 5378, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1394, "type": 2, "geometry": [ 9, 5670, 5372, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1395, "type": 2, "geometry": [ 9, 5660, 5364, 10, 2, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1396, "type": 2, "geometry": [ 9, 5676, 5374, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1397, "type": 2, "geometry": [ 9, 5772, 5526, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1398, "type": 2, "geometry": [ 9, 5678, 5384, 10, 2, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1399, "type": 2, "geometry": [ 9, 5660, 5390, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1400, "type": 2, "geometry": [ 9, 5686, 5396, 10, 2, 2 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1401, "type": 2, "geometry": [ 9, 5700, 5384, 26, 0, 1, 23, 6, 24, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 1402, "type": 2, "geometry": [ 9, 26, 2712, 10, 0, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1403, "type": 2, "geometry": [ 9, 50, 2712, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 1404, "type": 2, "geometry": [ 9, 64, 2708, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 1405, "type": 2, "geometry": [ 9, 22, 2728, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1406, "type": 2, "geometry": [ 9, 18, 2732, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1407, "type": 2, "geometry": [ 9, 86, 2706, 10, 2, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 1408, "type": 2, "geometry": [ 9, 80, 2712, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 1409, "type": 2, "geometry": [ 9, 84, 2712, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 1410, "type": 2, "geometry": [ 9, 96, 2706, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1411, "type": 2, "geometry": [ 9, 94, 2706, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1412, "type": 2, "geometry": [ 9, 90, 2710, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1413, "type": 2, "geometry": [ 9, 90, 2712, 10, 0, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 1414, "type": 2, "geometry": [ 9, 134, 2696, 26, 0, 0, 23, 8, 24, 3 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 1415, "type": 2, "geometry": [ 9, 156, 2700, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 1416, "type": 2, "geometry": [ 9, 172, 2690, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 1417, "type": 2, "geometry": [ 9, 314, 2636, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1418, "type": 2, "geometry": [ 9, 310, 2640, 26, 0, 0, 23, 12, 24, 9 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 1419, "type": 2, "geometry": [ 9, 276, 2652, 26, 0, 0, 23, 14, 24, 13 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 1420, "type": 2, "geometry": [ 9, 330, 2622, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 1421, "type": 2, "geometry": [ 9, 324, 2624, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 1422, "type": 2, "geometry": [ 9, 334, 2626, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1423, "type": 2, "geometry": [ 9, 224, 2676, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1424, "type": 2, "geometry": [ 9, 198, 2686, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1425, "type": 2, "geometry": [ 9, 212, 2680, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 1426, "type": 2, "geometry": [ 9, 382, 2574, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1427, "type": 2, "geometry": [ 9, 234, 2672, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 1428, "type": 2, "geometry": [ 9, 234, 2666, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1429, "type": 2, "geometry": [ 9, 224, 2670, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1430, "type": 2, "geometry": [ 9, 292, 2650, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1431, "type": 2, "geometry": [ 9, 464, 2588, 10, 0, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 1432, "type": 2, "geometry": [ 9, 456, 2584, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 1433, "type": 2, "geometry": [ 9, 468, 2590, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1434, "type": 2, "geometry": [ 9, 470, 2592, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1435, "type": 2, "geometry": [ 9, 340, 2624, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1436, "type": 2, "geometry": [ 9, 484, 2556, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1437, "type": 2, "geometry": [ 9, 450, 2574, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1438, "type": 2, "geometry": [ 9, 400, 2614, 10, 1, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1439, "type": 2, "geometry": [ 9, 396, 2612, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 1440, "type": 2, "geometry": [ 9, 384, 2602, 26, 0, 0, 23, 9, 24, 10 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 1 } }, { "id": 1441, "type": 2, "geometry": [ 9, 400, 2592, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1442, "type": 2, "geometry": [ 9, 442, 2582, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 1443, "type": 2, "geometry": [ 9, 414, 2584, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1444, "type": 2, "geometry": [ 9, 446, 2576, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1445, "type": 2, "geometry": [ 9, 328, 2380, 26, 0, 0, 23, 17, 6, 24 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 1 } }, { "id": 1446, "type": 2, "geometry": [ 9, 222, 2500, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 1447, "type": 2, "geometry": [ 9, 174, 2362, 10, 1, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 1448, "type": 2, "geometry": [ 9, 236, 2524, 10, 0, 2 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 1449, "type": 2, "geometry": [ 9, 210, 2214, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1450, "type": 2, "geometry": [ 9, 230, 2232, 10, 0, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1451, "type": 2, "geometry": [ 9, 220, 2222, 10, 1, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1452, "type": 2, "geometry": [ 9, 230, 2232, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1453, "type": 2, "geometry": [ 9, 228, 2226, 10, 0, 2 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1454, "type": 2, "geometry": [ 9, 202, 2204, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 1455, "type": 2, "geometry": [ 9, 204, 2212, 10, 4, 2 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 1456, "type": 2, "geometry": [ 9, 256, 2220, 58, 0, 0, 23, 7, 23, 7, 23, 0, 24, 8, 24, 18, 24, 7 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 1 } }, { "id": 1457, "type": 2, "geometry": [ 9, 240, 2216, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1458, "type": 2, "geometry": [ 9, 200, 2204, 10, 2, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 1459, "type": 2, "geometry": [ 9, 248, 2086, 10, 0, 2 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1460, "type": 2, "geometry": [ 9, 8056, 2678, 10, 2, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1461, "type": 2, "geometry": [ 9, 8098, 2690, 10, 0, 2 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1462, "type": 2, "geometry": [ 9, 8040, 2674, 10, 2, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 1463, "type": 2, "geometry": [ 9, 8050, 2686, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1464, "type": 2, "geometry": [ 9, 8138, 2700, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 1465, "type": 2, "geometry": [ 9, 8152, 2712, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1466, "type": 2, "geometry": [ 9, 8186, 2706, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 1467, "type": 2, "geometry": [ 9, 8158, 2706, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1468, "type": 2, "geometry": [ 9, 8178, 2726, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1469, "type": 2, "geometry": [ 9, 526, 3610, 10, 0, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1470, "type": 2, "geometry": [ 9, 470, 3578, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 1 } }, { "id": 1471, "type": 2, "geometry": [ 9, 506, 3598, 10, 0, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 1 } }, { "id": 1472, "type": 2, "geometry": [ 9, 452, 3582, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1473, "type": 2, "geometry": [ 9, 546, 3610, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 1 } }, { "id": 1474, "type": 2, "geometry": [ 9, 528, 3602, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 1 } }, { "id": 1475, "type": 2, "geometry": [ 9, 570, 3640, 26, 0, 0, 23, 5, 24, 10 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 1 } }, { "id": 1476, "type": 2, "geometry": [ 9, 532, 3616, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1477, "type": 2, "geometry": [ 9, 3914, 1752, 26, 0, 0, 23, 18, 24, 7 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1478, "type": 2, "geometry": [ 9, 4776, 2924, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1479, "type": 2, "geometry": [ 9, 6098, 3588, 10, 0, 2 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1480, "type": 2, "geometry": [ 9, 6100, 3586, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1481, "type": 2, "geometry": [ 9, 6118, 3592, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1482, "type": 2, "geometry": [ 9, 6112, 3584, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1483, "type": 2, "geometry": [ 9, 5758, 4108, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1484, "type": 2, "geometry": [ 9, 5744, 4262, 10, 0, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1485, "type": 2, "geometry": [ 9, 5744, 4264, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1486, "type": 2, "geometry": [ 9, 5744, 4262, 10, 0, 2 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1487, "type": 2, "geometry": [ 9, 5758, 3906, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1488, "type": 2, "geometry": [ 9, 5908, 3888, 10, 2, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1489, "type": 2, "geometry": [ 9, 5914, 3876, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1490, "type": 2, "geometry": [ 9, 5956, 3920, 10, 0, 2 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1491, "type": 2, "geometry": [ 9, 5910, 3878, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1492, "type": 2, "geometry": [ 9, 6122, 3586, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1493, "type": 2, "geometry": [ 9, 6152, 3580, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1494, "type": 2, "geometry": [ 9, 6150, 3584, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1495, "type": 2, "geometry": [ 9, 6152, 3580, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1496, "type": 2, "geometry": [ 9, 6156, 3580, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1497, "type": 2, "geometry": [ 9, 6156, 3582, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1498, "type": 2, "geometry": [ 9, 6158, 3572, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1499, "type": 2, "geometry": [ 9, 6158, 3572, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1500, "type": 2, "geometry": [ 9, 6162, 3568, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1501, "type": 2, "geometry": [ 9, 6158, 3560, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1502, "type": 2, "geometry": [ 9, 6154, 3548, 10, 2, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1503, "type": 2, "geometry": [ 9, 6154, 3556, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1504, "type": 2, "geometry": [ 9, 6158, 3558, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1505, "type": 2, "geometry": [ 9, 6166, 3578, 10, 0, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1506, "type": 2, "geometry": [ 9, 6164, 3576, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1507, "type": 2, "geometry": [ 9, 6164, 3576, 10, 2, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1508, "type": 2, "geometry": [ 9, 6176, 3566, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1509, "type": 2, "geometry": [ 9, 6170, 3570, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1510, "type": 2, "geometry": [ 9, 6170, 3572, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1511, "type": 2, "geometry": [ 9, 6188, 3588, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1512, "type": 2, "geometry": [ 9, 6186, 3584, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1513, "type": 2, "geometry": [ 9, 6234, 3644, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1514, "type": 2, "geometry": [ 9, 6210, 3630, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1515, "type": 2, "geometry": [ 9, 6222, 3636, 10, 0, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1516, "type": 2, "geometry": [ 9, 6228, 3660, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 1517, "type": 2, "geometry": [ 9, 6220, 3770, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1518, "type": 2, "geometry": [ 9, 6226, 3754, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1519, "type": 2, "geometry": [ 9, 6250, 3720, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1520, "type": 2, "geometry": [ 9, 6252, 3728, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1521, "type": 2, "geometry": [ 9, 6350, 3920, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1522, "type": 2, "geometry": [ 9, 6348, 3920, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1523, "type": 2, "geometry": [ 9, 6316, 3716, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1524, "type": 2, "geometry": [ 9, 6318, 3736, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1525, "type": 2, "geometry": [ 9, 6324, 3776, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1526, "type": 2, "geometry": [ 9, 6330, 3806, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1527, "type": 2, "geometry": [ 9, 6332, 3794, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1528, "type": 2, "geometry": [ 9, 6336, 3808, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1529, "type": 2, "geometry": [ 9, 6336, 3806, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 1530, "type": 2, "geometry": [ 9, 6326, 3812, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1531, "type": 2, "geometry": [ 9, 6328, 3816, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1532, "type": 2, "geometry": [ 9, 6322, 3806, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1533, "type": 2, "geometry": [ 9, 6332, 3838, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1534, "type": 2, "geometry": [ 9, 6338, 3824, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 1535, "type": 2, "geometry": [ 9, 6332, 3822, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1536, "type": 2, "geometry": [ 9, 6318, 3822, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1537, "type": 2, "geometry": [ 9, 6326, 3826, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1538, "type": 2, "geometry": [ 9, 6338, 3820, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1539, "type": 2, "geometry": [ 9, 6330, 3824, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1540, "type": 2, "geometry": [ 9, 6332, 3824, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1541, "type": 2, "geometry": [ 9, 6324, 3854, 10, 1, 2 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1542, "type": 2, "geometry": [ 9, 6330, 3864, 10, 0, 2 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1543, "type": 2, "geometry": [ 9, 6332, 3866, 10, 0, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1544, "type": 2, "geometry": [ 9, 6332, 3846, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1545, "type": 2, "geometry": [ 9, 6322, 3846, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1546, "type": 2, "geometry": [ 9, 6338, 3844, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1547, "type": 2, "geometry": [ 9, 6336, 3846, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1548, "type": 2, "geometry": [ 9, 6212, 3780, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1549, "type": 2, "geometry": [ 9, 6212, 3790, 26, 0, 0, 5, 24, 8, 23 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 1550, "type": 2, "geometry": [ 9, 6206, 3798, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1551, "type": 2, "geometry": [ 9, 6194, 3830, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1552, "type": 2, "geometry": [ 9, 6214, 3816, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1553, "type": 2, "geometry": [ 9, 6212, 3820, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1554, "type": 2, "geometry": [ 9, 6204, 3834, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1555, "type": 2, "geometry": [ 9, 6202, 3848, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 1556, "type": 2, "geometry": [ 9, 6206, 3884, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1557, "type": 2, "geometry": [ 9, 6224, 3912, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1558, "type": 2, "geometry": [ 9, 6224, 3912, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1559, "type": 2, "geometry": [ 9, 6222, 3914, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1560, "type": 2, "geometry": [ 9, 6214, 3906, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1561, "type": 2, "geometry": [ 9, 6226, 3900, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1562, "type": 2, "geometry": [ 9, 6228, 3926, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1563, "type": 2, "geometry": [ 9, 6232, 3934, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 1564, "type": 2, "geometry": [ 9, 6334, 3872, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1565, "type": 2, "geometry": [ 9, 6332, 3886, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1566, "type": 2, "geometry": [ 9, 6334, 3914, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 1567, "type": 2, "geometry": [ 9, 6338, 3910, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1568, "type": 2, "geometry": [ 9, 6340, 3908, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1569, "type": 2, "geometry": [ 9, 6358, 3930, 10, 1, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1570, "type": 2, "geometry": [ 9, 6354, 3946, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1571, "type": 2, "geometry": [ 9, 6372, 3876, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 1572, "type": 2, "geometry": [ 9, 6372, 3872, 10, 0, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1573, "type": 2, "geometry": [ 9, 6364, 3946, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1574, "type": 2, "geometry": [ 9, 6366, 3952, 10, 0, 2 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1575, "type": 2, "geometry": [ 9, 6368, 3950, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 1576, "type": 2, "geometry": [ 9, 6378, 3970, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 1577, "type": 2, "geometry": [ 9, 6466, 4032, 10, 0, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 1578, "type": 2, "geometry": [ 9, 6460, 4064, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 1579, "type": 2, "geometry": [ 9, 6426, 3818, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1580, "type": 2, "geometry": [ 9, 6428, 3826, 10, 2, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1581, "type": 2, "geometry": [ 9, 6440, 3832, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1582, "type": 2, "geometry": [ 9, 6440, 3834, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1583, "type": 2, "geometry": [ 9, 6464, 3858, 10, 1, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 1584, "type": 2, "geometry": [ 9, 6522, 3896, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1585, "type": 2, "geometry": [ 9, 6518, 3868, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1586, "type": 2, "geometry": [ 9, 6526, 3856, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1587, "type": 2, "geometry": [ 9, 6526, 3608, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1588, "type": 2, "geometry": [ 9, 6532, 3610, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1589, "type": 2, "geometry": [ 9, 6542, 3608, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1590, "type": 2, "geometry": [ 9, 6542, 3606, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1591, "type": 2, "geometry": [ 9, 6546, 3606, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1592, "type": 2, "geometry": [ 9, 6544, 3604, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1593, "type": 2, "geometry": [ 9, 6544, 3600, 10, 1, 2 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1594, "type": 2, "geometry": [ 9, 6548, 3598, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1595, "type": 2, "geometry": [ 9, 6550, 3596, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1596, "type": 2, "geometry": [ 9, 6610, 3606, 10, 0, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1597, "type": 2, "geometry": [ 9, 6612, 3608, 10, 0, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1598, "type": 2, "geometry": [ 9, 6612, 3602, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1599, "type": 2, "geometry": [ 9, 6822, 3494, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1600, "type": 2, "geometry": [ 9, 6870, 3402, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1601, "type": 2, "geometry": [ 9, 6880, 3382, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1602, "type": 2, "geometry": [ 9, 6868, 3376, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1603, "type": 2, "geometry": [ 9, 6874, 3386, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1604, "type": 2, "geometry": [ 9, 6878, 3378, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1605, "type": 2, "geometry": [ 9, 6866, 3338, 10, 1, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1606, "type": 2, "geometry": [ 9, 6936, 3144, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1607, "type": 2, "geometry": [ 9, 6934, 3160, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1608, "type": 2, "geometry": [ 9, 6970, 3168, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1609, "type": 2, "geometry": [ 9, 6976, 3172, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1610, "type": 2, "geometry": [ 9, 6974, 3170, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1611, "type": 2, "geometry": [ 9, 6964, 3242, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1612, "type": 2, "geometry": [ 9, 6964, 3246, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1613, "type": 2, "geometry": [ 9, 6962, 3250, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1614, "type": 2, "geometry": [ 9, 6962, 3252, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1615, "type": 2, "geometry": [ 9, 6970, 3258, 10, 0, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 1616, "type": 2, "geometry": [ 9, 6984, 3286, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 1617, "type": 2, "geometry": [ 9, 6988, 3258, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1618, "type": 2, "geometry": [ 9, 7002, 3252, 10, 2, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1619, "type": 2, "geometry": [ 9, 7010, 3248, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1620, "type": 2, "geometry": [ 9, 7024, 3248, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1621, "type": 2, "geometry": [ 9, 7074, 3172, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 1622, "type": 2, "geometry": [ 9, 6862, 3580, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1623, "type": 2, "geometry": [ 9, 6782, 3518, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1624, "type": 2, "geometry": [ 9, 6790, 3520, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1625, "type": 2, "geometry": [ 9, 7104, 3278, 10, 0, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1626, "type": 2, "geometry": [ 9, 7104, 3276, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1627, "type": 2, "geometry": [ 9, 7112, 3270, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1628, "type": 2, "geometry": [ 9, 7122, 3266, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1629, "type": 2, "geometry": [ 9, 7382, 2980, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1630, "type": 2, "geometry": [ 9, 7402, 2990, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1631, "type": 2, "geometry": [ 9, 7040, 3254, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 1632, "type": 2, "geometry": [ 9, 7038, 3264, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 1633, "type": 2, "geometry": [ 9, 7048, 3278, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1634, "type": 2, "geometry": [ 9, 7044, 3288, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1635, "type": 2, "geometry": [ 9, 7032, 3300, 10, 0, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1636, "type": 2, "geometry": [ 9, 7168, 3256, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 1637, "type": 2, "geometry": [ 9, 7268, 3250, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1638, "type": 2, "geometry": [ 9, 7276, 3296, 10, 0, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1639, "type": 2, "geometry": [ 9, 7270, 3270, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1640, "type": 2, "geometry": [ 9, 7264, 3260, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1641, "type": 2, "geometry": [ 9, 7310, 2940, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1642, "type": 2, "geometry": [ 9, 7304, 2932, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1643, "type": 2, "geometry": [ 9, 7270, 3032, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1644, "type": 2, "geometry": [ 9, 7246, 3156, 10, 0, 2 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 1645, "type": 2, "geometry": [ 9, 7122, 3216, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1646, "type": 2, "geometry": [ 9, 7130, 3208, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 1647, "type": 2, "geometry": [ 9, 7062, 3312, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1648, "type": 2, "geometry": [ 9, 7056, 3320, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1649, "type": 2, "geometry": [ 9, 7056, 3312, 10, 0, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 1650, "type": 2, "geometry": [ 9, 7028, 3306, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 1651, "type": 2, "geometry": [ 9, 7078, 3356, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 1652, "type": 2, "geometry": [ 9, 7068, 3368, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 1653, "type": 2, "geometry": [ 9, 7050, 3382, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1654, "type": 2, "geometry": [ 9, 7046, 3388, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1655, "type": 2, "geometry": [ 9, 7038, 3428, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1656, "type": 2, "geometry": [ 9, 7054, 3422, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1657, "type": 2, "geometry": [ 9, 7046, 3418, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 1658, "type": 2, "geometry": [ 9, 7030, 3436, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1659, "type": 2, "geometry": [ 9, 7024, 3444, 10, 1, 2 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1660, "type": 2, "geometry": [ 9, 7016, 3462, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 1661, "type": 2, "geometry": [ 9, 6980, 3474, 10, 0, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1662, "type": 2, "geometry": [ 9, 7082, 3486, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1663, "type": 2, "geometry": [ 9, 6948, 3512, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1664, "type": 2, "geometry": [ 9, 6912, 3522, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1665, "type": 2, "geometry": [ 9, 6894, 3520, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1666, "type": 2, "geometry": [ 9, 6924, 3518, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1667, "type": 2, "geometry": [ 9, 7330, 3454, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1668, "type": 2, "geometry": [ 9, 7330, 3466, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1669, "type": 2, "geometry": [ 9, 7312, 3512, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1670, "type": 2, "geometry": [ 9, 7428, 2964, 26, 1, 0, 17, 24, 22, 23 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 1671, "type": 2, "geometry": [ 9, 7422, 2992, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1672, "type": 2, "geometry": [ 9, 7438, 2982, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1673, "type": 2, "geometry": [ 9, 7338, 2618, 10, 2, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1674, "type": 2, "geometry": [ 9, 7216, 2586, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1675, "type": 2, "geometry": [ 9, 7226, 2608, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1676, "type": 2, "geometry": [ 9, 7232, 2612, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1677, "type": 2, "geometry": [ 9, 7236, 2588, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1678, "type": 2, "geometry": [ 9, 7524, 2418, 10, 0, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1679, "type": 2, "geometry": [ 9, 7634, 2408, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1680, "type": 2, "geometry": [ 9, 7482, 2932, 34, 1, 0, 23, 8, 19, 24, 24, 17 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 1681, "type": 2, "geometry": [ 9, 7516, 2906, 10, 0, 2 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 1682, "type": 2, "geometry": [ 9, 7566, 2868, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1683, "type": 2, "geometry": [ 9, 7558, 2876, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 1684, "type": 2, "geometry": [ 9, 7578, 2852, 10, 1, 2 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1685, "type": 2, "geometry": [ 9, 7584, 2844, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1686, "type": 2, "geometry": [ 9, 7612, 2806, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1687, "type": 2, "geometry": [ 9, 7634, 2748, 10, 2, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1688, "type": 2, "geometry": [ 9, 7610, 2784, 10, 1, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1689, "type": 2, "geometry": [ 9, 7600, 2814, 10, 1, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1690, "type": 2, "geometry": [ 9, 7604, 2816, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1691, "type": 2, "geometry": [ 9, 7648, 2754, 26, 0, 0, 17, 24, 18, 23 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 1692, "type": 2, "geometry": [ 9, 7656, 2746, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1693, "type": 2, "geometry": [ 9, 7888, 2600, 26, 0, 0, 9, 23, 8, 24 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 1694, "type": 2, "geometry": [ 9, 7920, 2608, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 1695, "type": 2, "geometry": [ 9, 7842, 2424, 26, 0, 1, 23, 14, 24, 7 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1696, "type": 2, "geometry": [ 9, 7950, 1842, 26, 0, 1, 25, 9, 14, 30 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1697, "type": 2, "geometry": [ 9, 7790, 1786, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1698, "type": 2, "geometry": [ 9, 7774, 1778, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1699, "type": 2, "geometry": [ 9, 7750, 1774, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1700, "type": 2, "geometry": [ 9, 7234, 1724, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1701, "type": 2, "geometry": [ 9, 7196, 1540, 10, 0, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1702, "type": 2, "geometry": [ 9, 7528, 1436, 74, 3, 0, 35, 7, 27, 13, 23, 4, 4, 28, 26, 22, 24, 4, 32, 11, 6, 23 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 1 } }, { "id": 1703, "type": 2, "geometry": [ 9, 7492, 1288, 10, 2, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1704, "type": 2, "geometry": [ 9, 7306, 1524, 26, 0, 1, 23, 0, 24, 10 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1705, "type": 2, "geometry": [ 9, 7360, 1592, 58, 0, 0, 7, 25, 23, 21, 25, 8, 13, 28, 26, 8, 28, 8 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1706, "type": 2, "geometry": [ 9, 7282, 1466, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1707, "type": 2, "geometry": [ 9, 7402, 1404, 210, 1, 3, 23, 17, 25, 3, 25, 23, 23, 14, 4, 24, 23, 15, 19, 23, 23, 6, 5, 24, 11, 24, 3, 28, 18, 24, 26, 24, 12, 23, 24, 4, 24, 7, 24, 12, 24, 9, 23, 11, 11, 23, 1, 23, 10, 24, 16, 24, 26, 4, 8, 25 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 1 } }, { "id": 1708, "type": 2, "geometry": [ 9, 7236, 1354, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1709, "type": 2, "geometry": [ 9, 7238, 1352, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1710, "type": 2, "geometry": [ 9, 7214, 1394, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1711, "type": 2, "geometry": [ 9, 7212, 1398, 10, 0, 2 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1712, "type": 2, "geometry": [ 9, 7190, 1404, 26, 4, 5, 9, 23, 3, 24 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1713, "type": 2, "geometry": [ 9, 7026, 1644, 10, 3, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1714, "type": 2, "geometry": [ 9, 7014, 1632, 10, 16, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1715, "type": 2, "geometry": [ 9, 6930, 1544, 10, 1, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1716, "type": 2, "geometry": [ 9, 6832, 1608, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1717, "type": 2, "geometry": [ 9, 6736, 1508, 10, 0, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1718, "type": 2, "geometry": [ 9, 6676, 1500, 42, 1, 1, 27, 7, 11, 24, 24, 14, 16, 23 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1719, "type": 2, "geometry": [ 9, 6674, 1326, 10, 2, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1720, "type": 2, "geometry": [ 9, 6642, 1302, 10, 2, 2 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1721, "type": 2, "geometry": [ 9, 6546, 1230, 10, 0, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1722, "type": 2, "geometry": [ 9, 6516, 1230, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1723, "type": 2, "geometry": [ 9, 6502, 1234, 10, 0, 2 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1724, "type": 2, "geometry": [ 9, 6526, 1218, 10, 2, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1725, "type": 2, "geometry": [ 9, 6520, 1130, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1726, "type": 2, "geometry": [ 9, 6546, 1142, 26, 0, 0, 27, 1, 24, 10 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1727, "type": 2, "geometry": [ 9, 6494, 1092, 162, 0, 1, 5, 23, 23, 21, 25, 7, 9, 26, 4, 23, 6, 27, 23, 1, 19, 24, 5, 24, 9, 24, 3, 24, 7, 24, 11, 24, 24, 4, 30, 19, 24, 1, 24, 3, 24, 9, 12, 23 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 1 } }, { "id": 1728, "type": 2, "geometry": [ 9, 6368, 1038, 186, 0, 0, 17, 27, 14, 23, 2, 23, 4, 23, 17, 23, 23, 16, 17, 24, 10, 23, 2, 23, 25, 1, 27, 0, 23, 18, 5, 26, 19, 28, 24, 10, 0, 24, 10, 26, 24, 8, 24, 4, 24, 18, 26, 1, 18, 23 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 1 } }, { "id": 1729, "type": 2, "geometry": [ 9, 6320, 818, 130, 0, 1, 19, 25, 13, 29, 25, 19, 13, 26, 23, 8, 17, 24, 4, 28, 1, 24, 25, 18, 26, 10, 4, 26, 28, 10, 68, 25, 2, 23, 3, 23 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 1 } }, { "id": 1730, "type": 2, "geometry": [ 9, 6190, 864, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1731, "type": 2, "geometry": [ 9, 6178, 758, 26, 1, 5, 31, 1, 26, 22 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1732, "type": 2, "geometry": [ 9, 5912, 784, 26, 1, 0, 13, 24, 26, 7 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1733, "type": 2, "geometry": [ 9, 5862, 980, 26, 1, 1, 23, 13, 24, 20 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1734, "type": 2, "geometry": [ 9, 6226, 928, 42, 21, 7, 23, 5, 11, 24, 26, 10, 24, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1735, "type": 2, "geometry": [ 9, 6136, 1234, 10, 0, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1736, "type": 2, "geometry": [ 9, 6292, 1242, 26, 1, 0, 23, 16, 24, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1737, "type": 2, "geometry": [ 9, 6314, 1298, 10, 0, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1738, "type": 2, "geometry": [ 9, 6294, 1336, 26, 0, 0, 23, 2, 24, 8 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1739, "type": 2, "geometry": [ 9, 6272, 1296, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1740, "type": 2, "geometry": [ 9, 6290, 1294, 10, 0, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1741, "type": 2, "geometry": [ 9, 5964, 1370, 10, 9, 3 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1742, "type": 2, "geometry": [ 9, 5966, 1418, 10, 0, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1743, "type": 2, "geometry": [ 9, 5964, 1438, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1744, "type": 2, "geometry": [ 9, 6076, 1452, 10, 3, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1745, "type": 2, "geometry": [ 9, 6034, 1474, 10, 4, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1746, "type": 2, "geometry": [ 9, 6054, 1490, 10, 1, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1747, "type": 2, "geometry": [ 9, 6042, 1488, 10, 7, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1748, "type": 2, "geometry": [ 9, 6026, 1494, 10, 5, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1749, "type": 2, "geometry": [ 9, 6014, 1536, 10, 2, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1750, "type": 2, "geometry": [ 9, 5996, 1526, 10, 7, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1751, "type": 2, "geometry": [ 9, 5974, 1524, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1752, "type": 2, "geometry": [ 9, 5906, 1486, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1753, "type": 2, "geometry": [ 9, 5990, 1364, 26, 0, 0, 23, 0, 24, 4 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1754, "type": 2, "geometry": [ 9, 5906, 1634, 26, 0, 0, 7, 23, 11, 24 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1755, "type": 2, "geometry": [ 9, 5876, 1652, 26, 0, 1, 23, 8, 24, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1756, "type": 2, "geometry": [ 9, 5840, 1602, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1757, "type": 2, "geometry": [ 9, 5842, 1582, 10, 0, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1758, "type": 2, "geometry": [ 9, 5822, 1576, 10, 4, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1759, "type": 2, "geometry": [ 9, 5796, 1608, 10, 5, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1760, "type": 2, "geometry": [ 9, 5726, 1598, 34, 1, 0, 23, 19, 11, 24, 30, 4 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1761, "type": 2, "geometry": [ 9, 5444, 1886, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1762, "type": 2, "geometry": [ 9, 5472, 1844, 42, 0, 0, 15, 23, 23, 15, 3, 24, 24, 16 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1763, "type": 2, "geometry": [ 9, 5240, 1888, 42, 0, 1, 23, 21, 21, 24, 4, 24, 24, 3 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1764, "type": 2, "geometry": [ 9, 5306, 1750, 10, 0, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1765, "type": 2, "geometry": [ 9, 5394, 1794, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1766, "type": 2, "geometry": [ 9, 4564, 818, 10, 0, 2 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1767, "type": 2, "geometry": [ 9, 4548, 854, 10, 2, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1768, "type": 2, "geometry": [ 9, 4568, 834, 10, 0, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1769, "type": 2, "geometry": [ 9, 4648, 854, 10, 1, 3 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1770, "type": 2, "geometry": [ 9, 4576, 830, 10, 6, 3 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1771, "type": 2, "geometry": [ 9, 4346, 956, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1772, "type": 2, "geometry": [ 9, 4532, 1492, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1773, "type": 2, "geometry": [ 9, 4372, 1132, 58, 0, 1, 13, 25, 11, 23, 9, 25, 4, 26, 6, 24, 18, 24 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1774, "type": 2, "geometry": [ 9, 4338, 952, 10, 6, 2 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1775, "type": 2, "geometry": [ 9, 4512, 882, 10, 2, 4 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1776, "type": 2, "geometry": [ 9, 5422, 672, 18, 24, 5, 27, 11 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1777, "type": 2, "geometry": [ 9, 4644, 858, 10, 0, 2 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1778, "type": 2, "geometry": [ 9, 5518, 682, 26, 0, 2, 26, 4, 23, 15 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1779, "type": 2, "geometry": [ 9, 5430, 774, 18, 13, 9, 4, 24 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1780, "type": 2, "geometry": [ 9, 5400, 796, 34, 2, 2, 3, 25, 23, 7, 22, 24 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1781, "type": 2, "geometry": [ 9, 5244, 770, 10, 0, 2 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1782, "type": 2, "geometry": [ 9, 5336, 782, 50, 8, 1, 40, 28, 24, 4, 23, 23, 23, 7, 23, 11 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1783, "type": 2, "geometry": [ 9, 5398, 718, 34, 4, 1, 24, 4, 15, 23, 23, 16 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1784, "type": 2, "geometry": [ 9, 5418, 812, 10, 6, 4 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1785, "type": 2, "geometry": [ 9, 5272, 820, 122, 5, 1, 23, 4, 12, 25, 25, 0, 17, 24, 4, 24, 23, 2, 3, 24, 29, 6, 24, 10, 1, 24, 26, 11, 2, 25, 28, 19, 24, 13 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 1 } }, { "id": 1786, "type": 2, "geometry": [ 9, 5158, 848, 58, 1, 3, 20, 25, 26, 16, 3, 23, 29, 5, 45, 26, 20, 24 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 1 } }, { "id": 1787, "type": 2, "geometry": [ 9, 4780, 1042, 10, 0, 4 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1788, "type": 2, "geometry": [ 9, 4848, 888, 26, 0, 2, 35, 14, 30, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1789, "type": 2, "geometry": [ 9, 5264, 924, 26, 0, 0, 25, 3, 28, 10 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1790, "type": 2, "geometry": [ 9, 5234, 910, 10, 0, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1791, "type": 2, "geometry": [ 9, 5510, 808, 66, 0, 1, 35, 0, 23, 2, 7, 24, 10, 28, 32, 4, 14, 23, 14, 25 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1792, "type": 2, "geometry": [ 9, 5364, 832, 26, 2, 2, 24, 5, 25, 13 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1793, "type": 2, "geometry": [ 9, 5364, 812, 18, 4, 1, 23, 7 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1794, "type": 2, "geometry": [ 9, 4928, 898, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1795, "type": 2, "geometry": [ 9, 4552, 1028, 10, 0, 2 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1796, "type": 2, "geometry": [ 9, 4552, 998, 10, 3, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1797, "type": 2, "geometry": [ 9, 4574, 1134, 50, 0, 0, 28, 5, 0, 23, 25, 15, 11, 24, 0, 24 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1798, "type": 2, "geometry": [ 9, 4554, 1086, 562, 2, 0, 24, 1, 4, 23, 23, 9, 13, 23, 25, 11, 4, 23, 11, 23, 7, 24, 1, 25, 3, 27, 23, 7, 23, 12, 4, 24, 4, 24, 4, 26, 4, 24, 11, 23, 7, 23, 3, 23, 23, 1, 3, 24, 2, 24, 9, 23, 23, 11, 26, 19, 23, 7, 23, 7, 3, 24, 11, 24, 2, 24, 24, 5, 5, 24, 16, 24, 27, 7, 8, 26, 16, 24, 12, 24, 24, 10, 16, 23, 3, 23, 24, 15, 5, 24, 24, 4, 14, 24, 23, 2, 19, 24, 23, 4, 5, 24, 24, 10, 24, 5, 28, 11, 43, 26, 24, 22, 23, 7, 25, 4, 4, 24, 24, 22, 24, 8, 5, 24, 24, 16, 2, 23, 6, 23, 4, 23, 18, 23, 2, 23, 0, 23, 14, 23, 0, 23, 24, 21 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 0 } }, { "id": 1799, "type": 2, "geometry": [ 9, 4714, 908, 210, 0, 1, 27, 11, 23, 9, 23, 5, 5, 24, 5, 23, 7, 23, 9, 24, 3, 24, 23, 11, 19, 23, 13, 24, 25, 2, 4, 24, 11, 24, 24, 12, 58, 9, 33, 18, 7, 24, 32, 12, 24, 0, 34, 24, 26, 17, 16, 27, 14, 23, 14, 25 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 0 } }, { "id": 1800, "type": 2, "geometry": [ 9, 4764, 1054, 26, 7, 0, 23, 4, 28, 2 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1801, "type": 2, "geometry": [ 9, 4654, 1176, 106, 0, 0, 23, 9, 1, 23, 23, 5, 31, 6, 16, 24, 9, 24, 7, 24, 30, 3, 4, 24, 24, 9, 14, 23, 12, 23 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 1 } }, { "id": 1802, "type": 2, "geometry": [ 9, 4710, 1080, 10, 3, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1803, "type": 2, "geometry": [ 9, 4674, 1292, 26, 0, 0, 11, 24, 16, 23 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1804, "type": 2, "geometry": [ 9, 5066, 2034, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1805, "type": 2, "geometry": [ 9, 4832, 2012, 10, 0, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1806, "type": 2, "geometry": [ 9, 4870, 1872, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1807, "type": 2, "geometry": [ 9, 4778, 1844, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1808, "type": 2, "geometry": [ 9, 4912, 2162, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1809, "type": 2, "geometry": [ 9, 4912, 2130, 10, 1, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1810, "type": 2, "geometry": [ 9, 4626, 2422, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1811, "type": 2, "geometry": [ 9, 4628, 2442, 10, 1, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1812, "type": 2, "geometry": [ 9, 4640, 2462, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1813, "type": 2, "geometry": [ 9, 4602, 2428, 10, 2, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1814, "type": 2, "geometry": [ 9, 4594, 2444, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1815, "type": 2, "geometry": [ 9, 4624, 2444, 34, 1, 0, 23, 0, 1, 24, 24, 17 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 1816, "type": 2, "geometry": [ 9, 4846, 2912, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1817, "type": 2, "geometry": [ 9, 4822, 2906, 10, 7, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1818, "type": 2, "geometry": [ 9, 7462, 5188, 98, 0, 0, 23, 6, 23, 5, 13, 23, 7, 23, 5, 23, 24, 2, 24, 4, 24, 5, 12, 24, 5, 24, 1, 24 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 0 } }, { "id": 1819, "type": 2, "geometry": [ 9, 6300, 4374, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1820, "type": 2, "geometry": [ 9, 6792, 3990, 10, 0, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1821, "type": 2, "geometry": [ 9, 6796, 3992, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1822, "type": 2, "geometry": [ 9, 6768, 3940, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1823, "type": 2, "geometry": [ 9, 6762, 3928, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1824, "type": 2, "geometry": [ 9, 6758, 3928, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1825, "type": 2, "geometry": [ 9, 6718, 3972, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1826, "type": 2, "geometry": [ 9, 6630, 4040, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1827, "type": 2, "geometry": [ 9, 6260, 3966, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1828, "type": 2, "geometry": [ 9, 6260, 3964, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1829, "type": 2, "geometry": [ 9, 6264, 3960, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1830, "type": 2, "geometry": [ 9, 6290, 4040, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 1831, "type": 2, "geometry": [ 9, 6294, 4046, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1832, "type": 2, "geometry": [ 9, 6306, 4048, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1833, "type": 2, "geometry": [ 9, 6310, 4046, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 1834, "type": 2, "geometry": [ 9, 6338, 4056, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1835, "type": 2, "geometry": [ 9, 6336, 4098, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 1836, "type": 2, "geometry": [ 9, 6336, 4106, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 1837, "type": 2, "geometry": [ 9, 6354, 4132, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 1838, "type": 2, "geometry": [ 9, 6366, 4148, 10, 0, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 1839, "type": 2, "geometry": [ 9, 6376, 4156, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 1840, "type": 2, "geometry": [ 9, 6380, 4168, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 1841, "type": 2, "geometry": [ 9, 6382, 4166, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1842, "type": 2, "geometry": [ 9, 6426, 4218, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 1843, "type": 2, "geometry": [ 9, 6324, 4072, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 1844, "type": 2, "geometry": [ 9, 6480, 4226, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1845, "type": 2, "geometry": [ 9, 6490, 4244, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1846, "type": 2, "geometry": [ 9, 6528, 4162, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1847, "type": 2, "geometry": [ 9, 6532, 4160, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1848, "type": 2, "geometry": [ 9, 6524, 4154, 26, 0, 0, 15, 23, 1, 24 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 1849, "type": 2, "geometry": [ 9, 6538, 4160, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1850, "type": 2, "geometry": [ 9, 6560, 4160, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 1851, "type": 2, "geometry": [ 9, 6456, 4102, 10, 1, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 1852, "type": 2, "geometry": [ 9, 6474, 4104, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 1853, "type": 2, "geometry": [ 9, 6482, 4100, 10, 0, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 1854, "type": 2, "geometry": [ 9, 6478, 4094, 10, 3, 3 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1855, "type": 2, "geometry": [ 9, 6472, 4094, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1856, "type": 2, "geometry": [ 9, 6470, 4088, 10, 0, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1857, "type": 2, "geometry": [ 9, 6468, 4078, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1858, "type": 2, "geometry": [ 9, 6466, 4078, 10, 0, 2 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1859, "type": 2, "geometry": [ 9, 6466, 4074, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1860, "type": 2, "geometry": [ 9, 6480, 4072, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1861, "type": 2, "geometry": [ 9, 6476, 4070, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 1862, "type": 2, "geometry": [ 9, 6464, 4068, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 1863, "type": 2, "geometry": [ 9, 6460, 4072, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1864, "type": 2, "geometry": [ 9, 6458, 4074, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1865, "type": 2, "geometry": [ 9, 6458, 4076, 10, 1, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1866, "type": 2, "geometry": [ 9, 6450, 4076, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1867, "type": 2, "geometry": [ 9, 6450, 4078, 10, 0, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 1868, "type": 2, "geometry": [ 9, 6448, 4072, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1869, "type": 2, "geometry": [ 9, 6446, 4080, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1870, "type": 2, "geometry": [ 9, 6442, 4074, 10, 1, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 1871, "type": 2, "geometry": [ 9, 6440, 4076, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 1872, "type": 2, "geometry": [ 9, 6428, 4064, 10, 0, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 1873, "type": 2, "geometry": [ 9, 6426, 4066, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 1874, "type": 2, "geometry": [ 9, 6410, 4048, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 1875, "type": 2, "geometry": [ 9, 6502, 4026, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 1876, "type": 2, "geometry": [ 9, 6512, 4032, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1877, "type": 2, "geometry": [ 9, 6514, 4022, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1878, "type": 2, "geometry": [ 9, 6514, 4018, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1879, "type": 2, "geometry": [ 9, 6552, 3986, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1880, "type": 2, "geometry": [ 9, 6562, 4006, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 1881, "type": 2, "geometry": [ 9, 6548, 4026, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1882, "type": 2, "geometry": [ 9, 6572, 4028, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1883, "type": 2, "geometry": [ 9, 6578, 4038, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1884, "type": 2, "geometry": [ 9, 6542, 4072, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1885, "type": 2, "geometry": [ 9, 6592, 4120, 10, 0, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 1886, "type": 2, "geometry": [ 9, 6574, 4130, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1887, "type": 2, "geometry": [ 9, 6732, 4204, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1888, "type": 2, "geometry": [ 9, 6742, 4180, 10, 0, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1889, "type": 2, "geometry": [ 9, 6744, 4172, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1890, "type": 2, "geometry": [ 9, 6794, 4044, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1891, "type": 2, "geometry": [ 9, 6768, 4020, 10, 0, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1892, "type": 2, "geometry": [ 9, 6776, 4008, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1893, "type": 2, "geometry": [ 9, 6772, 4016, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1894, "type": 2, "geometry": [ 9, 6770, 4016, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1895, "type": 2, "geometry": [ 9, 6778, 4016, 10, 0, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1896, "type": 2, "geometry": [ 9, 6774, 4002, 10, 1, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1897, "type": 2, "geometry": [ 9, 6776, 4000, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1898, "type": 2, "geometry": [ 9, 6576, 4272, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1899, "type": 2, "geometry": [ 9, 6660, 4226, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1900, "type": 2, "geometry": [ 9, 6724, 4252, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1901, "type": 2, "geometry": [ 9, 6724, 4292, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1902, "type": 2, "geometry": [ 9, 6726, 4284, 26, 1, 1, 23, 1, 24, 10 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1903, "type": 2, "geometry": [ 9, 6750, 4284, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1904, "type": 2, "geometry": [ 9, 6808, 4292, 42, 0, 0, 23, 7, 23, 2, 24, 12, 24, 3 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 1 } }, { "id": 1905, "type": 2, "geometry": [ 9, 6804, 4280, 10, 0, 2 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1906, "type": 2, "geometry": [ 9, 6844, 4322, 26, 0, 0, 25, 11, 24, 18 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 1 } }, { "id": 1907, "type": 2, "geometry": [ 9, 6816, 4290, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1908, "type": 2, "geometry": [ 9, 6820, 4292, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1909, "type": 2, "geometry": [ 9, 6894, 4284, 50, 0, 0, 23, 4, 23, 1, 23, 2, 24, 10, 26, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 1 } }, { "id": 1910, "type": 2, "geometry": [ 9, 6902, 4284, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1911, "type": 2, "geometry": [ 9, 6916, 4282, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 1912, "type": 2, "geometry": [ 9, 6924, 4282, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1913, "type": 2, "geometry": [ 9, 6942, 4282, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 1914, "type": 2, "geometry": [ 9, 6870, 4334, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1915, "type": 2, "geometry": [ 9, 6902, 4338, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1916, "type": 2, "geometry": [ 9, 6904, 4328, 10, 0, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1917, "type": 2, "geometry": [ 9, 6928, 4304, 58, 1, 0, 15, 24, 24, 5, 24, 17, 24, 9, 23, 5, 23, 14 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 1 } }, { "id": 1918, "type": 2, "geometry": [ 9, 6952, 4282, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1919, "type": 2, "geometry": [ 9, 6982, 4272, 26, 0, 0, 23, 2, 24, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 1920, "type": 2, "geometry": [ 9, 6996, 4266, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1921, "type": 2, "geometry": [ 9, 7010, 4280, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1922, "type": 2, "geometry": [ 9, 7022, 4258, 10, 2, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1923, "type": 2, "geometry": [ 9, 7050, 4274, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1924, "type": 2, "geometry": [ 9, 7092, 4260, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 1925, "type": 2, "geometry": [ 9, 7078, 4280, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1926, "type": 2, "geometry": [ 9, 7098, 4260, 10, 0, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1927, "type": 2, "geometry": [ 9, 6838, 4230, 10, 0, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1928, "type": 2, "geometry": [ 9, 6946, 4060, 10, 0, 2 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1929, "type": 2, "geometry": [ 9, 6950, 4040, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1930, "type": 2, "geometry": [ 9, 6950, 4032, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1931, "type": 2, "geometry": [ 9, 6954, 4016, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1932, "type": 2, "geometry": [ 9, 6980, 4006, 10, 0, 2 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1933, "type": 2, "geometry": [ 9, 6978, 4004, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1934, "type": 2, "geometry": [ 9, 6982, 3996, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1935, "type": 2, "geometry": [ 9, 6868, 4104, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1936, "type": 2, "geometry": [ 9, 6872, 4102, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1937, "type": 2, "geometry": [ 9, 6862, 4100, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1938, "type": 2, "geometry": [ 9, 6880, 4102, 10, 0, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1939, "type": 2, "geometry": [ 9, 6876, 4100, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1940, "type": 2, "geometry": [ 9, 6896, 4136, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1941, "type": 2, "geometry": [ 9, 6906, 4124, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 1942, "type": 2, "geometry": [ 9, 6914, 4140, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1943, "type": 2, "geometry": [ 9, 6946, 4136, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 1944, "type": 2, "geometry": [ 9, 6970, 4136, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 1945, "type": 2, "geometry": [ 9, 6964, 4150, 10, 0, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1946, "type": 2, "geometry": [ 9, 6898, 4176, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1947, "type": 2, "geometry": [ 9, 6898, 4186, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1948, "type": 2, "geometry": [ 9, 6872, 4214, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1949, "type": 2, "geometry": [ 9, 6888, 4208, 10, 0, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 1950, "type": 2, "geometry": [ 9, 6898, 4214, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 1951, "type": 2, "geometry": [ 9, 6990, 4174, 26, 0, 0, 23, 5, 24, 10 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 1 } }, { "id": 1952, "type": 2, "geometry": [ 9, 7074, 4176, 42, 1, 0, 23, 13, 25, 1, 28, 10, 24, 8 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 1 } }, { "id": 1953, "type": 2, "geometry": [ 9, 7016, 4174, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1954, "type": 2, "geometry": [ 9, 7020, 4176, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1955, "type": 2, "geometry": [ 9, 7024, 4176, 10, 0, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1956, "type": 2, "geometry": [ 9, 7026, 4178, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1957, "type": 2, "geometry": [ 9, 7082, 4186, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1958, "type": 2, "geometry": [ 9, 7084, 4188, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1959, "type": 2, "geometry": [ 9, 7086, 4186, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1960, "type": 2, "geometry": [ 9, 7090, 4196, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1961, "type": 2, "geometry": [ 9, 7092, 4202, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1962, "type": 2, "geometry": [ 9, 7116, 4226, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1963, "type": 2, "geometry": [ 9, 7126, 4216, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1964, "type": 2, "geometry": [ 9, 7156, 4244, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 1 } }, { "id": 1965, "type": 2, "geometry": [ 9, 7162, 4236, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 1 } }, { "id": 1966, "type": 2, "geometry": [ 9, 7012, 4132, 10, 1, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1967, "type": 2, "geometry": [ 9, 7000, 4122, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1968, "type": 2, "geometry": [ 9, 7006, 4112, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1969, "type": 2, "geometry": [ 9, 6992, 4112, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1970, "type": 2, "geometry": [ 9, 6990, 4106, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1971, "type": 2, "geometry": [ 9, 6994, 4078, 10, 0, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1972, "type": 2, "geometry": [ 9, 6994, 4080, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1973, "type": 2, "geometry": [ 9, 6996, 4096, 10, 1, 3 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1974, "type": 2, "geometry": [ 9, 6994, 4086, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1975, "type": 2, "geometry": [ 9, 7024, 4038, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1976, "type": 2, "geometry": [ 9, 7000, 4100, 50, 0, 0, 0, 23, 0, 23, 2, 24, 24, 12, 13, 24 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 1 } }, { "id": 1977, "type": 2, "geometry": [ 9, 7042, 4098, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1978, "type": 2, "geometry": [ 9, 7082, 4100, 26, 0, 0, 23, 0, 24, 4 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1979, "type": 2, "geometry": [ 9, 7068, 4104, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1980, "type": 2, "geometry": [ 9, 7074, 4112, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1981, "type": 2, "geometry": [ 9, 7078, 4118, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1982, "type": 2, "geometry": [ 9, 7052, 4122, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1983, "type": 2, "geometry": [ 9, 7062, 4138, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1984, "type": 2, "geometry": [ 9, 7090, 4154, 10, 0, 2 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1985, "type": 2, "geometry": [ 9, 7134, 4192, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1986, "type": 2, "geometry": [ 9, 7256, 4268, 26, 0, 1, 23, 8, 24, 6 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1987, "type": 2, "geometry": [ 9, 7256, 4286, 10, 1, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1988, "type": 2, "geometry": [ 9, 7150, 4134, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1989, "type": 2, "geometry": [ 9, 7154, 4140, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1990, "type": 2, "geometry": [ 9, 7158, 4150, 10, 0, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1991, "type": 2, "geometry": [ 9, 7166, 4118, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1992, "type": 2, "geometry": [ 9, 7174, 4128, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1993, "type": 2, "geometry": [ 9, 7210, 4136, 26, 1, 0, 23, 3, 24, 4 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1994, "type": 2, "geometry": [ 9, 7198, 4120, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1995, "type": 2, "geometry": [ 9, 7362, 4292, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1996, "type": 2, "geometry": [ 9, 7358, 4288, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 1997, "type": 2, "geometry": [ 9, 7580, 4354, 10, 2, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1998, "type": 2, "geometry": [ 9, 7572, 4338, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 1999, "type": 2, "geometry": [ 9, 7594, 4360, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2000, "type": 2, "geometry": [ 9, 7606, 4354, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2001, "type": 2, "geometry": [ 9, 7528, 4336, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2002, "type": 2, "geometry": [ 9, 7532, 4338, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2003, "type": 2, "geometry": [ 9, 7576, 4304, 10, 0, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2004, "type": 2, "geometry": [ 9, 7534, 4296, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2005, "type": 2, "geometry": [ 9, 7526, 4316, 10, 2, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2006, "type": 2, "geometry": [ 9, 7516, 4310, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2007, "type": 2, "geometry": [ 9, 7536, 4322, 10, 1, 2 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2008, "type": 2, "geometry": [ 9, 7564, 4194, 58, 0, 0, 23, 12, 23, 14, 25, 2, 24, 16, 24, 9, 24, 21 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 0 } }, { "id": 2009, "type": 2, "geometry": [ 9, 7580, 4192, 42, 0, 0, 23, 21, 23, 11, 24, 16, 14, 24 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 1 } }, { "id": 2010, "type": 2, "geometry": [ 9, 7530, 4162, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2011, "type": 2, "geometry": [ 9, 7518, 4152, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2012, "type": 2, "geometry": [ 9, 7502, 4128, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2013, "type": 2, "geometry": [ 9, 7554, 4156, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2014, "type": 2, "geometry": [ 9, 7554, 4158, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2015, "type": 2, "geometry": [ 9, 7556, 4162, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2016, "type": 2, "geometry": [ 9, 7568, 4166, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2017, "type": 2, "geometry": [ 9, 7580, 4174, 10, 2, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2018, "type": 2, "geometry": [ 9, 7584, 4172, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2019, "type": 2, "geometry": [ 9, 7618, 4174, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2020, "type": 2, "geometry": [ 9, 7644, 4246, 26, 0, 0, 19, 23, 6, 26 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 1 } }, { "id": 2021, "type": 2, "geometry": [ 9, 7616, 4214, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 1 } }, { "id": 2022, "type": 2, "geometry": [ 9, 7488, 4206, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2023, "type": 2, "geometry": [ 9, 7498, 4200, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2024, "type": 2, "geometry": [ 9, 7450, 4140, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2025, "type": 2, "geometry": [ 9, 7458, 4146, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2026, "type": 2, "geometry": [ 9, 7418, 4198, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2027, "type": 2, "geometry": [ 9, 7422, 4204, 10, 0, 2 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2028, "type": 2, "geometry": [ 9, 7444, 4216, 10, 0, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2029, "type": 2, "geometry": [ 9, 7396, 4188, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2030, "type": 2, "geometry": [ 9, 7454, 4216, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2031, "type": 2, "geometry": [ 9, 7466, 4218, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2032, "type": 2, "geometry": [ 9, 7464, 4222, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2033, "type": 2, "geometry": [ 9, 6868, 3622, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2034, "type": 2, "geometry": [ 9, 6868, 3612, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2035, "type": 2, "geometry": [ 9, 6872, 3618, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2036, "type": 2, "geometry": [ 9, 6870, 3640, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2037, "type": 2, "geometry": [ 9, 6860, 3646, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2038, "type": 2, "geometry": [ 9, 6858, 3656, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2039, "type": 2, "geometry": [ 9, 6854, 3650, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2040, "type": 2, "geometry": [ 9, 6870, 3654, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2041, "type": 2, "geometry": [ 9, 6872, 3750, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2042, "type": 2, "geometry": [ 9, 6876, 3754, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2043, "type": 2, "geometry": [ 9, 6874, 3770, 10, 3, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2044, "type": 2, "geometry": [ 9, 6926, 3776, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2045, "type": 2, "geometry": [ 9, 6918, 3824, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 2046, "type": 2, "geometry": [ 9, 6912, 3812, 10, 0, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2047, "type": 2, "geometry": [ 9, 6900, 3800, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2048, "type": 2, "geometry": [ 9, 6886, 3810, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2049, "type": 2, "geometry": [ 9, 6878, 3806, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2050, "type": 2, "geometry": [ 9, 6874, 3804, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2051, "type": 2, "geometry": [ 9, 6874, 3786, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2052, "type": 2, "geometry": [ 9, 6860, 3804, 26, 0, 0, 23, 19, 10, 24 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 1 } }, { "id": 2053, "type": 2, "geometry": [ 9, 6832, 3780, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2054, "type": 2, "geometry": [ 9, 6956, 3840, 34, 0, 0, 5, 23, 23, 7, 10, 24 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 2055, "type": 2, "geometry": [ 9, 6946, 3858, 26, 0, 0, 5, 23, 5, 24 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 2056, "type": 2, "geometry": [ 9, 6956, 3868, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2057, "type": 2, "geometry": [ 9, 6966, 3870, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2058, "type": 2, "geometry": [ 9, 6878, 3944, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2059, "type": 2, "geometry": [ 9, 6840, 3950, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2060, "type": 2, "geometry": [ 9, 6832, 3974, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2061, "type": 2, "geometry": [ 9, 6792, 3936, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2062, "type": 2, "geometry": [ 9, 6910, 3886, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2063, "type": 2, "geometry": [ 9, 6934, 3884, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2064, "type": 2, "geometry": [ 9, 6930, 3870, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2065, "type": 2, "geometry": [ 9, 6912, 3838, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2066, "type": 2, "geometry": [ 9, 6918, 3846, 26, 0, 0, 13, 24, 14, 23 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 1 } }, { "id": 2067, "type": 2, "geometry": [ 9, 6908, 3848, 26, 1, 1, 23, 20, 24, 15 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 1 } }, { "id": 2068, "type": 2, "geometry": [ 9, 6888, 3850, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2069, "type": 2, "geometry": [ 9, 6898, 3832, 34, 0, 0, 23, 7, 3, 24, 24, 5 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 1 } }, { "id": 2070, "type": 2, "geometry": [ 9, 6826, 3822, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2071, "type": 2, "geometry": [ 9, 6834, 3820, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2072, "type": 2, "geometry": [ 9, 6822, 3832, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2073, "type": 2, "geometry": [ 9, 6824, 3852, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2074, "type": 2, "geometry": [ 9, 6758, 3910, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2075, "type": 2, "geometry": [ 9, 6762, 3908, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2076, "type": 2, "geometry": [ 9, 6760, 3912, 10, 0, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2077, "type": 2, "geometry": [ 9, 6762, 3906, 10, 0, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2078, "type": 2, "geometry": [ 9, 6764, 3904, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2079, "type": 2, "geometry": [ 9, 6818, 3854, 42, 0, 0, 23, 14, 23, 24, 24, 11, 22, 23 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 1 } }, { "id": 2080, "type": 2, "geometry": [ 9, 7506, 4610, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2081, "type": 2, "geometry": [ 9, 7502, 4616, 10, 0, 2 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2082, "type": 2, "geometry": [ 9, 7516, 4600, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2083, "type": 2, "geometry": [ 9, 7516, 4602, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2084, "type": 2, "geometry": [ 9, 7520, 4616, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2085, "type": 2, "geometry": [ 9, 7540, 4654, 10, 0, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2086, "type": 2, "geometry": [ 9, 7538, 4650, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2087, "type": 2, "geometry": [ 9, 7576, 4690, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2088, "type": 2, "geometry": [ 9, 7586, 4682, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 2089, "type": 2, "geometry": [ 9, 7586, 4742, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2090, "type": 2, "geometry": [ 9, 7588, 4744, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2091, "type": 2, "geometry": [ 9, 7402, 5046, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2092, "type": 2, "geometry": [ 9, 7404, 5040, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2093, "type": 2, "geometry": [ 9, 7432, 5054, 10, 0, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2094, "type": 2, "geometry": [ 9, 7194, 4946, 10, 1, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2095, "type": 2, "geometry": [ 9, 7220, 4932, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2096, "type": 2, "geometry": [ 9, 7200, 4950, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2097, "type": 2, "geometry": [ 9, 7238, 4968, 26, 0, 0, 23, 3, 24, 6 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 2098, "type": 2, "geometry": [ 9, 7134, 4872, 10, 2, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2099, "type": 2, "geometry": [ 9, 7156, 4910, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2100, "type": 2, "geometry": [ 9, 7466, 5106, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2101, "type": 2, "geometry": [ 9, 7464, 5094, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 2102, "type": 2, "geometry": [ 9, 7472, 5100, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2103, "type": 2, "geometry": [ 9, 7374, 5086, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2104, "type": 2, "geometry": [ 9, 7390, 5102, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2105, "type": 2, "geometry": [ 9, 7394, 5110, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2106, "type": 2, "geometry": [ 9, 7392, 5104, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2107, "type": 2, "geometry": [ 9, 7450, 5184, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2108, "type": 2, "geometry": [ 9, 7466, 5168, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2109, "type": 2, "geometry": [ 9, 7448, 5192, 10, 0, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2110, "type": 2, "geometry": [ 9, 7470, 5160, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2111, "type": 2, "geometry": [ 9, 6670, 4682, 10, 0, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2112, "type": 2, "geometry": [ 9, 6668, 4690, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2113, "type": 2, "geometry": [ 9, 6672, 4710, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2114, "type": 2, "geometry": [ 9, 6722, 4578, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2115, "type": 2, "geometry": [ 9, 6930, 4448, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2116, "type": 2, "geometry": [ 9, 6938, 4440, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2117, "type": 2, "geometry": [ 9, 6926, 4446, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2118, "type": 2, "geometry": [ 9, 6944, 4428, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2119, "type": 2, "geometry": [ 9, 7088, 4356, 26, 0, 0, 23, 1, 24, 4 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 2120, "type": 2, "geometry": [ 9, 7066, 4364, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 2121, "type": 2, "geometry": [ 9, 7200, 4358, 10, 1, 2 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2122, "type": 2, "geometry": [ 9, 7190, 4364, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2123, "type": 2, "geometry": [ 9, 7208, 4348, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2124, "type": 2, "geometry": [ 9, 7196, 4370, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2125, "type": 2, "geometry": [ 9, 7200, 4368, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2126, "type": 2, "geometry": [ 9, 7208, 4372, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2127, "type": 2, "geometry": [ 9, 7204, 4364, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2128, "type": 2, "geometry": [ 9, 7192, 4404, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2129, "type": 2, "geometry": [ 9, 7196, 4410, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2130, "type": 2, "geometry": [ 9, 7212, 4422, 10, 0, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 2131, "type": 2, "geometry": [ 9, 7208, 4412, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2132, "type": 2, "geometry": [ 9, 7184, 4438, 10, 0, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2133, "type": 2, "geometry": [ 9, 7270, 4488, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2134, "type": 2, "geometry": [ 9, 7260, 4484, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2135, "type": 2, "geometry": [ 9, 7274, 4474, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2136, "type": 2, "geometry": [ 9, 7330, 4326, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2137, "type": 2, "geometry": [ 9, 7332, 4326, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2138, "type": 2, "geometry": [ 9, 7332, 4340, 10, 0, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2139, "type": 2, "geometry": [ 9, 7332, 4338, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2140, "type": 2, "geometry": [ 9, 7436, 4538, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2141, "type": 2, "geometry": [ 9, 7424, 4520, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2142, "type": 2, "geometry": [ 9, 7474, 4558, 10, 1, 2 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2143, "type": 2, "geometry": [ 9, 7484, 4564, 10, 0, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2144, "type": 2, "geometry": [ 9, 7488, 4568, 10, 0, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2145, "type": 2, "geometry": [ 9, 7488, 4570, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2146, "type": 2, "geometry": [ 9, 7108, 4372, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2147, "type": 2, "geometry": [ 9, 7110, 4350, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2148, "type": 2, "geometry": [ 9, 7112, 4362, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2149, "type": 2, "geometry": [ 9, 7206, 4456, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2150, "type": 2, "geometry": [ 9, 7204, 4454, 10, 0, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2151, "type": 2, "geometry": [ 9, 7208, 4456, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2152, "type": 2, "geometry": [ 9, 7210, 4454, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2153, "type": 2, "geometry": [ 9, 7214, 4458, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2154, "type": 2, "geometry": [ 9, 7714, 4852, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2155, "type": 2, "geometry": [ 9, 7918, 4786, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2156, "type": 2, "geometry": [ 9, 7912, 5302, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2157, "type": 2, "geometry": [ 9, 7922, 5312, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2158, "type": 2, "geometry": [ 9, 7886, 5344, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2159, "type": 2, "geometry": [ 9, 7878, 5434, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2160, "type": 2, "geometry": [ 9, 7944, 5504, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2161, "type": 2, "geometry": [ 9, 8164, 5400, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2162, "type": 2, "geometry": [ 9, 86, 5220, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2163, "type": 2, "geometry": [ 9, 82, 5210, 10, 0, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 2164, "type": 2, "geometry": [ 9, 7888, 5264, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2165, "type": 2, "geometry": [ 9, 8058, 5126, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2166, "type": 2, "geometry": [ 9, 8054, 5112, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2167, "type": 2, "geometry": [ 9, 8060, 5126, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2168, "type": 2, "geometry": [ 9, 8064, 5122, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2169, "type": 2, "geometry": [ 9, 8090, 4982, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2170, "type": 2, "geometry": [ 9, 8082, 4996, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2171, "type": 2, "geometry": [ 9, 46, 4792, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2172, "type": 2, "geometry": [ 9, 7904, 5318, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2173, "type": 2, "geometry": [ 9, 7932, 5300, 10, 0, 2 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2174, "type": 2, "geometry": [ 9, 7696, 3936, 10, 2, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2175, "type": 2, "geometry": [ 9, 7804, 3974, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2176, "type": 2, "geometry": [ 9, 7544, 3926, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2177, "type": 2, "geometry": [ 9, 7552, 3924, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2178, "type": 2, "geometry": [ 9, 7894, 4106, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2179, "type": 2, "geometry": [ 9, 7954, 3962, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2180, "type": 2, "geometry": [ 9, 8030, 4024, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2181, "type": 2, "geometry": [ 9, 8026, 4026, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2182, "type": 2, "geometry": [ 9, 8032, 4052, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2183, "type": 2, "geometry": [ 9, 8032, 4054, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2184, "type": 2, "geometry": [ 9, 8034, 4074, 10, 0, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2185, "type": 2, "geometry": [ 9, 8032, 4076, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2186, "type": 2, "geometry": [ 9, 8032, 4076, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2187, "type": 2, "geometry": [ 9, 8032, 4060, 10, 0, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2188, "type": 2, "geometry": [ 9, 8046, 4090, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2189, "type": 2, "geometry": [ 9, 8046, 4092, 10, 0, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2190, "type": 2, "geometry": [ 9, 8050, 4084, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2191, "type": 2, "geometry": [ 9, 8046, 4090, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2192, "type": 2, "geometry": [ 9, 8064, 4110, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2193, "type": 2, "geometry": [ 9, 8066, 4112, 10, 0, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2194, "type": 2, "geometry": [ 9, 8078, 4128, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2195, "type": 2, "geometry": [ 9, 8072, 4122, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2196, "type": 2, "geometry": [ 9, 8100, 4126, 10, 0, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2197, "type": 2, "geometry": [ 9, 8090, 4138, 10, 0, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2198, "type": 2, "geometry": [ 9, 8110, 4126, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2199, "type": 2, "geometry": [ 9, 8172, 4290, 10, 2, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2200, "type": 2, "geometry": [ 9, 8118, 4154, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2201, "type": 2, "geometry": [ 9, 7934, 3990, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2202, "type": 2, "geometry": [ 9, 8010, 3956, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2203, "type": 2, "geometry": [ 9, 7892, 3840, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2204, "type": 2, "geometry": [ 9, 7932, 3926, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2205, "type": 2, "geometry": [ 9, 7936, 3928, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2206, "type": 2, "geometry": [ 9, 8004, 3936, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2207, "type": 2, "geometry": [ 9, 7996, 3932, 10, 1, 2 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2208, "type": 2, "geometry": [ 9, 7640, 4256, 10, 0, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2209, "type": 2, "geometry": [ 9, 7636, 4262, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2210, "type": 2, "geometry": [ 9, 7648, 4252, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2211, "type": 2, "geometry": [ 9, 7664, 4278, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2212, "type": 2, "geometry": [ 9, 7670, 4280, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2213, "type": 2, "geometry": [ 9, 7670, 4284, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2214, "type": 2, "geometry": [ 9, 7658, 4280, 10, 0, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2215, "type": 2, "geometry": [ 9, 7664, 4272, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2216, "type": 2, "geometry": [ 9, 7672, 4284, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2217, "type": 2, "geometry": [ 9, 7676, 4290, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2218, "type": 2, "geometry": [ 9, 7692, 4290, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2219, "type": 2, "geometry": [ 9, 7696, 4296, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2220, "type": 2, "geometry": [ 9, 7682, 4294, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2221, "type": 2, "geometry": [ 9, 7686, 4290, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2222, "type": 2, "geometry": [ 9, 7728, 4290, 10, 0, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2223, "type": 2, "geometry": [ 9, 7738, 4302, 10, 0, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2224, "type": 2, "geometry": [ 9, 7732, 4304, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2225, "type": 2, "geometry": [ 9, 7738, 4302, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2226, "type": 2, "geometry": [ 9, 7742, 4304, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2227, "type": 2, "geometry": [ 9, 7716, 4302, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2228, "type": 2, "geometry": [ 9, 7754, 4320, 26, 0, 0, 23, 11, 24, 14 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 1 } }, { "id": 2229, "type": 2, "geometry": [ 9, 7718, 4302, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2230, "type": 2, "geometry": [ 9, 7776, 4330, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2231, "type": 2, "geometry": [ 9, 7780, 4320, 10, 2, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2232, "type": 2, "geometry": [ 9, 7768, 4310, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2233, "type": 2, "geometry": [ 9, 7790, 4342, 26, 0, 0, 23, 13, 24, 16 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 1 } }, { "id": 2234, "type": 2, "geometry": [ 9, 7766, 4314, 18, 2, 2, 9, 23 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 1 } }, { "id": 2235, "type": 2, "geometry": [ 9, 7748, 4364, 10, 3, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2236, "type": 2, "geometry": [ 9, 7732, 4354, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2237, "type": 2, "geometry": [ 9, 7876, 4340, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2238, "type": 2, "geometry": [ 9, 7886, 4354, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2239, "type": 2, "geometry": [ 9, 7892, 4362, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2240, "type": 2, "geometry": [ 9, 7734, 4538, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2241, "type": 2, "geometry": [ 9, 7820, 4554, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2242, "type": 2, "geometry": [ 9, 7832, 4562, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2243, "type": 2, "geometry": [ 9, 7896, 4614, 42, 0, 0, 23, 19, 23, 17, 10, 24, 24, 14 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 1 } }, { "id": 2244, "type": 2, "geometry": [ 9, 7908, 4622, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2245, "type": 2, "geometry": [ 9, 7890, 4618, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2246, "type": 2, "geometry": [ 9, 7906, 4584, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2247, "type": 2, "geometry": [ 9, 7882, 4578, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2248, "type": 2, "geometry": [ 9, 7886, 4570, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2249, "type": 2, "geometry": [ 9, 7922, 4594, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2250, "type": 2, "geometry": [ 9, 7948, 4534, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2251, "type": 2, "geometry": [ 9, 7950, 4548, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2252, "type": 2, "geometry": [ 9, 7960, 4564, 10, 0, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2253, "type": 2, "geometry": [ 9, 7886, 4398, 10, 0, 2 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2254, "type": 2, "geometry": [ 9, 7902, 4406, 10, 2, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2255, "type": 2, "geometry": [ 9, 7886, 4396, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2256, "type": 2, "geometry": [ 9, 7906, 4414, 10, 0, 2 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2257, "type": 2, "geometry": [ 9, 7906, 4420, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2258, "type": 2, "geometry": [ 9, 7912, 4408, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2259, "type": 2, "geometry": [ 9, 8126, 4382, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2260, "type": 2, "geometry": [ 9, 8138, 4524, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2261, "type": 2, "geometry": [ 9, 8148, 4520, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2262, "type": 2, "geometry": [ 9, 8162, 4512, 26, 0, 0, 23, 13, 24, 16 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 1 } }, { "id": 2263, "type": 2, "geometry": [ 9, 8156, 4534, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2264, "type": 2, "geometry": [ 9, 8158, 4532, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2265, "type": 2, "geometry": [ 9, 8186, 4538, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2266, "type": 2, "geometry": [ 9, 7240, 3876, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2267, "type": 2, "geometry": [ 9, 7400, 3768, 10, 1, 2 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2268, "type": 2, "geometry": [ 9, 7410, 3748, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2269, "type": 2, "geometry": [ 9, 7392, 3782, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2270, "type": 2, "geometry": [ 9, 7410, 3718, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2271, "type": 2, "geometry": [ 9, 7412, 3744, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2272, "type": 2, "geometry": [ 9, 7412, 3674, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2273, "type": 2, "geometry": [ 9, 7410, 3662, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2274, "type": 2, "geometry": [ 9, 7154, 3926, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2275, "type": 2, "geometry": [ 9, 7154, 3928, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2276, "type": 2, "geometry": [ 9, 7150, 3934, 10, 0, 2 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2277, "type": 2, "geometry": [ 9, 7158, 3918, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2278, "type": 2, "geometry": [ 9, 128, 4554, 10, 0, 2 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2279, "type": 2, "geometry": [ 9, 128, 4554, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2280, "type": 2, "geometry": [ 9, 130, 4550, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2281, "type": 2, "geometry": [ 9, 114, 4592, 10, 0, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2282, "type": 2, "geometry": [ 9, 112, 4552, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2283, "type": 2, "geometry": [ 9, 86, 4398, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2284, "type": 2, "geometry": [ 9, 112, 4586, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2285, "type": 2, "geometry": [ 9, 98, 4454, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2286, "type": 2, "geometry": [ 9, 238, 4422, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2287, "type": 2, "geometry": [ 9, 176, 4198, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2288, "type": 2, "geometry": [ 9, 458, 4588, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2289, "type": 2, "geometry": [ 9, 230, 4534, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2290, "type": 2, "geometry": [ 9, 214, 4424, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2291, "type": 2, "geometry": [ 9, 190, 4416, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 2292, "type": 2, "geometry": [ 9, 32, 4538, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2293, "type": 2, "geometry": [ 9, 188, 4160, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2294, "type": 2, "geometry": [ 9, 188, 4158, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2295, "type": 2, "geometry": [ 9, 188, 4160, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2296, "type": 2, "geometry": [ 9, 42, 4422, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2297, "type": 2, "geometry": [ 9, 894, 4278, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2298, "type": 2, "geometry": [ 9, 190, 4160, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2299, "type": 2, "geometry": [ 9, 188, 4160, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2300, "type": 2, "geometry": [ 9, 2, 4534, 10, 0, 2 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2301, "type": 2, "geometry": [ 9, 470, 4006, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2302, "type": 2, "geometry": [ 9, 38, 4508, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2303, "type": 2, "geometry": [ 9, 28, 4516, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2304, "type": 2, "geometry": [ 9, 20, 4510, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2305, "type": 2, "geometry": [ 9, 22, 4492, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2306, "type": 2, "geometry": [ 9, 22, 4534, 10, 0, 2 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2307, "type": 2, "geometry": [ 9, 176, 4408, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 2308, "type": 2, "geometry": [ 9, 908, 4308, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2309, "type": 2, "geometry": [ 9, 908, 4296, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2310, "type": 2, "geometry": [ 9, 920, 4298, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2311, "type": 2, "geometry": [ 9, 894, 4600, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2312, "type": 2, "geometry": [ 9, 700, 4506, 10, 1, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 2313, "type": 2, "geometry": [ 9, 734, 4654, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2314, "type": 2, "geometry": [ 9, 764, 4466, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2315, "type": 2, "geometry": [ 9, 694, 4642, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2316, "type": 2, "geometry": [ 9, 1022, 4636, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2317, "type": 2, "geometry": [ 9, 1174, 4666, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2318, "type": 2, "geometry": [ 9, 938, 4334, 10, 2, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2319, "type": 2, "geometry": [ 9, 930, 4322, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2320, "type": 2, "geometry": [ 9, 936, 4318, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2321, "type": 2, "geometry": [ 9, 642, 4476, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2322, "type": 2, "geometry": [ 9, 568, 4188, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2323, "type": 2, "geometry": [ 9, 640, 4356, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2324, "type": 2, "geometry": [ 9, 548, 4224, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2325, "type": 2, "geometry": [ 9, 500, 4300, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2326, "type": 2, "geometry": [ 9, 518, 4054, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2327, "type": 2, "geometry": [ 9, 502, 4606, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2328, "type": 2, "geometry": [ 9, 506, 4554, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2329, "type": 2, "geometry": [ 9, 658, 4482, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2330, "type": 2, "geometry": [ 9, 686, 4498, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2331, "type": 2, "geometry": [ 9, 648, 4482, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2332, "type": 2, "geometry": [ 9, 658, 4480, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2333, "type": 2, "geometry": [ 9, 648, 4478, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2334, "type": 2, "geometry": [ 9, 650, 4618, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2335, "type": 2, "geometry": [ 9, 136, 4526, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2336, "type": 2, "geometry": [ 9, 894, 4506, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2337, "type": 2, "geometry": [ 9, 7710, 5580, 10, 0, 2 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2338, "type": 2, "geometry": [ 9, 3608, 1172, 10, 2, 2 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2339, "type": 2, "geometry": [ 9, 3464, 1782, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2340, "type": 2, "geometry": [ 9, 3650, 914, 10, 18, 9 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2341, "type": 2, "geometry": [ 9, 3498, 1794, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2342, "type": 2, "geometry": [ 9, 3518, 1782, 42, 0, 1, 29, 7, 27, 18, 30, 8, 24, 7 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 2343, "type": 2, "geometry": [ 9, 3514, 1756, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2344, "type": 2, "geometry": [ 9, 3652, 634, 34, 10, 20, 0, 23, 7, 23, 1, 28 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2345, "type": 2, "geometry": [ 9, 3680, 1088, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2346, "type": 2, "geometry": [ 9, 3672, 1356, 42, 0, 1, 1, 23, 0, 25, 5, 24, 6, 34 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2347, "type": 2, "geometry": [ 9, 3530, 1624, 10, 3, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2348, "type": 2, "geometry": [ 9, 3692, 692, 26, 8, 0, 9, 23, 2, 24 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2349, "type": 2, "geometry": [ 9, 3660, 1078, 26, 0, 1, 2, 23, 7, 26 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2350, "type": 2, "geometry": [ 9, 3686, 1196, 26, 2, 0, 4, 23, 11, 24 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2351, "type": 2, "geometry": [ 9, 3696, 1040, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2352, "type": 2, "geometry": [ 9, 3680, 1074, 10, 0, 2 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2353, "type": 2, "geometry": [ 9, 3536, 1614, 50, 2, 0, 34, 5, 29, 11, 24, 4, 25, 15, 23, 10 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2354, "type": 2, "geometry": [ 9, 3644, 1460, 10, 3, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2355, "type": 2, "geometry": [ 9, 3666, 1480, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2356, "type": 2, "geometry": [ 9, 3656, 1170, 26, 1, 1, 23, 7, 26, 20 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2357, "type": 2, "geometry": [ 9, 3668, 1484, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2358, "type": 2, "geometry": [ 9, 3676, 1476, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2359, "type": 2, "geometry": [ 9, 3700, 1440, 34, 0, 1, 13, 23, 19, 24, 24, 10 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2360, "type": 2, "geometry": [ 9, 3658, 1490, 10, 0, 2 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2361, "type": 2, "geometry": [ 9, 3610, 1606, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2362, "type": 2, "geometry": [ 9, 3596, 1638, 42, 0, 1, 29, 25, 29, 8, 26, 8, 26, 14 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2363, "type": 2, "geometry": [ 9, 3596, 1660, 50, 0, 0, 23, 21, 31, 9, 4, 24, 26, 18, 24, 2 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2364, "type": 2, "geometry": [ 9, 3632, 1516, 26, 1, 1, 31, 5, 24, 18 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2365, "type": 2, "geometry": [ 9, 3562, 1850, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2366, "type": 2, "geometry": [ 9, 3634, 1448, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2367, "type": 2, "geometry": [ 9, 3668, 922, 42, 0, 1, 7, 26, 30, 6, 10, 25, 27, 9 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2368, "type": 2, "geometry": [ 9, 3632, 1142, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2369, "type": 2, "geometry": [ 9, 3652, 1136, 10, 2, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2370, "type": 2, "geometry": [ 9, 3664, 1108, 18, 0, 1, 7, 24 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2371, "type": 2, "geometry": [ 9, 3658, 1158, 10, 0, 2 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2372, "type": 2, "geometry": [ 9, 6690, 4252, 26, 0, 0, 23, 0, 24, 2 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 2373, "type": 2, "geometry": [ 9, 2284, 2518, 10, 0, 2 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2374, "type": 2, "geometry": [ 9, 2272, 2388, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 2375, "type": 2, "geometry": [ 9, 2276, 2654, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2376, "type": 2, "geometry": [ 9, 2278, 2662, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2377, "type": 2, "geometry": [ 9, 2278, 2632, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2378, "type": 2, "geometry": [ 9, 2270, 2390, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2379, "type": 2, "geometry": [ 9, 2276, 2542, 10, 6, 3 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2380, "type": 2, "geometry": [ 9, 2264, 2400, 10, 0, 2 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2381, "type": 2, "geometry": [ 9, 2280, 2490, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2382, "type": 2, "geometry": [ 9, 2276, 2514, 10, 2, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2383, "type": 2, "geometry": [ 9, 2258, 2670, 26, 0, 0, 23, 9, 24, 18 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 2384, "type": 2, "geometry": [ 9, 2276, 2514, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2385, "type": 2, "geometry": [ 9, 2306, 2440, 10, 0, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2386, "type": 2, "geometry": [ 9, 2284, 2548, 26, 1, 4, 12, 23, 17, 24 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 2387, "type": 2, "geometry": [ 9, 2322, 2452, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2388, "type": 2, "geometry": [ 9, 2302, 2544, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 2389, "type": 2, "geometry": [ 9, 2336, 2566, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2390, "type": 2, "geometry": [ 9, 2304, 2738, 10, 1, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2391, "type": 2, "geometry": [ 9, 2288, 2702, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 2392, "type": 2, "geometry": [ 9, 2280, 2648, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2393, "type": 2, "geometry": [ 9, 2290, 2594, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2394, "type": 2, "geometry": [ 9, 2298, 2550, 10, 0, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2395, "type": 2, "geometry": [ 9, 2298, 2548, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2396, "type": 2, "geometry": [ 9, 2542, 2964, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2397, "type": 2, "geometry": [ 9, 2574, 2954, 10, 0, 2 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2398, "type": 2, "geometry": [ 9, 2534, 2968, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2399, "type": 2, "geometry": [ 9, 2588, 2966, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2400, "type": 2, "geometry": [ 9, 2642, 2770, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2401, "type": 2, "geometry": [ 9, 2528, 2974, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2402, "type": 2, "geometry": [ 9, 2412, 2936, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2403, "type": 2, "geometry": [ 9, 2602, 2994, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2404, "type": 2, "geometry": [ 9, 2482, 2880, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2405, "type": 2, "geometry": [ 9, 2626, 2848, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2406, "type": 2, "geometry": [ 9, 2734, 2980, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 2407, "type": 2, "geometry": [ 9, 2728, 2920, 42, 0, 0, 23, 4, 14, 23, 23, 12, 24, 14 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 2408, "type": 2, "geometry": [ 9, 2632, 2784, 42, 0, 2, 24, 16, 26, 8, 19, 23, 23, 5 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 2409, "type": 2, "geometry": [ 9, 2628, 2850, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2410, "type": 2, "geometry": [ 9, 2684, 2898, 42, 1, 0, 25, 2, 23, 15, 20, 24, 24, 3 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2411, "type": 2, "geometry": [ 9, 2692, 2862, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 2412, "type": 2, "geometry": [ 9, 2708, 2928, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2413, "type": 2, "geometry": [ 9, 2414, 2934, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2414, "type": 2, "geometry": [ 9, 2412, 2930, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2415, "type": 2, "geometry": [ 9, 2414, 2928, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2416, "type": 2, "geometry": [ 9, 2422, 2922, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2417, "type": 2, "geometry": [ 9, 2398, 5432, 10, 1, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2418, "type": 2, "geometry": [ 9, 2402, 5400, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2419, "type": 2, "geometry": [ 9, 2404, 5442, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 2420, "type": 2, "geometry": [ 9, 2400, 5268, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 2421, "type": 2, "geometry": [ 9, 2398, 5354, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2422, "type": 2, "geometry": [ 9, 2406, 5458, 10, 0, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2423, "type": 2, "geometry": [ 9, 2396, 5446, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2424, "type": 2, "geometry": [ 9, 2394, 5430, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2425, "type": 2, "geometry": [ 9, 2404, 5242, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 2426, "type": 2, "geometry": [ 9, 2396, 5446, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2427, "type": 2, "geometry": [ 9, 2390, 5442, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2428, "type": 2, "geometry": [ 9, 2402, 5448, 10, 0, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 2429, "type": 2, "geometry": [ 9, 2408, 5220, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 2430, "type": 2, "geometry": [ 9, 2410, 5266, 10, 0, 2 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 2431, "type": 2, "geometry": [ 9, 2412, 5268, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2432, "type": 2, "geometry": [ 9, 2416, 5256, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2433, "type": 2, "geometry": [ 9, 2412, 5238, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 2434, "type": 2, "geometry": [ 9, 2416, 5270, 10, 0, 2 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 2435, "type": 2, "geometry": [ 9, 2402, 5342, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 2436, "type": 2, "geometry": [ 9, 2416, 5252, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 2437, "type": 2, "geometry": [ 9, 2414, 5216, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2438, "type": 2, "geometry": [ 9, 2418, 5274, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2439, "type": 2, "geometry": [ 9, 2406, 5464, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2440, "type": 2, "geometry": [ 9, 2416, 5476, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2441, "type": 2, "geometry": [ 9, 2414, 5222, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2442, "type": 2, "geometry": [ 9, 2412, 5238, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 2443, "type": 2, "geometry": [ 9, 2428, 5224, 10, 2, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2444, "type": 2, "geometry": [ 9, 2426, 5230, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 2445, "type": 2, "geometry": [ 9, 2428, 5212, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2446, "type": 2, "geometry": [ 9, 2432, 5146, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2447, "type": 2, "geometry": [ 9, 2414, 5512, 10, 2, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 2448, "type": 2, "geometry": [ 9, 2408, 5500, 10, 2, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 2449, "type": 2, "geometry": [ 9, 2494, 5568, 10, 1, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2450, "type": 2, "geometry": [ 9, 2444, 5154, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2451, "type": 2, "geometry": [ 9, 2416, 5500, 10, 0, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2452, "type": 2, "geometry": [ 9, 2482, 5558, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 2453, "type": 2, "geometry": [ 9, 2402, 5480, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2454, "type": 2, "geometry": [ 9, 2464, 5564, 10, 2, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 2455, "type": 2, "geometry": [ 9, 2736, 5458, 10, 2, 2 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2456, "type": 2, "geometry": [ 9, 2382, 5344, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2457, "type": 2, "geometry": [ 9, 2408, 5206, 10, 0, 2 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2458, "type": 2, "geometry": [ 9, 2390, 5334, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2459, "type": 2, "geometry": [ 9, 2404, 5216, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2460, "type": 2, "geometry": [ 9, 2394, 5486, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 2461, "type": 2, "geometry": [ 9, 2418, 5258, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 2462, "type": 2, "geometry": [ 9, 2416, 5210, 10, 0, 2 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2463, "type": 2, "geometry": [ 9, 2380, 5364, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2464, "type": 2, "geometry": [ 9, 2388, 5424, 10, 0, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 2465, "type": 2, "geometry": [ 9, 2394, 5462, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 2466, "type": 2, "geometry": [ 9, 2384, 5404, 18, 0, 2, 16, 23 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 2467, "type": 2, "geometry": [ 9, 2384, 5354, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 2468, "type": 2, "geometry": [ 9, 2502, 5612, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2469, "type": 2, "geometry": [ 9, 2562, 5630, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2470, "type": 2, "geometry": [ 9, 2496, 5604, 10, 0, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 2471, "type": 2, "geometry": [ 9, 2556, 5620, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2472, "type": 2, "geometry": [ 9, 2480, 5598, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 2473, "type": 2, "geometry": [ 9, 2558, 5632, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2474, "type": 2, "geometry": [ 9, 2550, 5610, 10, 2, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 2475, "type": 2, "geometry": [ 9, 2444, 5564, 26, 0, 1, 7, 23, 5, 24 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 2476, "type": 2, "geometry": [ 9, 2416, 5540, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2477, "type": 2, "geometry": [ 9, 2450, 5564, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2478, "type": 2, "geometry": [ 9, 2448, 5574, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2479, "type": 2, "geometry": [ 9, 2456, 5568, 10, 2, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 2480, "type": 2, "geometry": [ 9, 2430, 5564, 10, 0, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2481, "type": 2, "geometry": [ 9, 2416, 5458, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2482, "type": 2, "geometry": [ 9, 2708, 5484, 10, 2, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2483, "type": 2, "geometry": [ 9, 2700, 5474, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2484, "type": 2, "geometry": [ 9, 2736, 5492, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2485, "type": 2, "geometry": [ 9, 2702, 5478, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2486, "type": 2, "geometry": [ 9, 2564, 5634, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2487, "type": 2, "geometry": [ 9, 2686, 5064, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2488, "type": 2, "geometry": [ 9, 2566, 5630, 10, 1, 2 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2489, "type": 2, "geometry": [ 9, 2568, 5634, 10, 0, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2490, "type": 2, "geometry": [ 9, 2642, 5590, 10, 0, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2491, "type": 2, "geometry": [ 9, 2682, 5060, 10, 2, 2 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2492, "type": 2, "geometry": [ 9, 2738, 5476, 26, 2, 1, 23, 11, 2, 24 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 1 } }, { "id": 2493, "type": 2, "geometry": [ 9, 2398, 5262, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2494, "type": 2, "geometry": [ 9, 2406, 5228, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2495, "type": 2, "geometry": [ 9, 2410, 5228, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2496, "type": 2, "geometry": [ 9, 2418, 5226, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2497, "type": 2, "geometry": [ 9, 2388, 5366, 10, 0, 2 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2498, "type": 2, "geometry": [ 9, 2404, 5488, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2499, "type": 2, "geometry": [ 9, 2394, 5492, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2500, "type": 2, "geometry": [ 9, 2410, 5360, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2501, "type": 2, "geometry": [ 9, 2416, 5220, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2502, "type": 2, "geometry": [ 9, 2400, 5356, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2503, "type": 2, "geometry": [ 9, 2418, 5234, 10, 2, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 2504, "type": 2, "geometry": [ 9, 2400, 5358, 10, 0, 2 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2505, "type": 2, "geometry": [ 9, 2426, 5510, 10, 0, 2 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2506, "type": 2, "geometry": [ 9, 2378, 5404, 10, 2, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2507, "type": 2, "geometry": [ 9, 2376, 5394, 10, 0, 2 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2508, "type": 2, "geometry": [ 9, 2386, 5480, 10, 2, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2509, "type": 2, "geometry": [ 9, 2396, 5496, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2510, "type": 2, "geometry": [ 9, 2376, 5386, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 2511, "type": 2, "geometry": [ 9, 2390, 5486, 10, 2, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 2512, "type": 2, "geometry": [ 9, 2402, 5230, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2513, "type": 2, "geometry": [ 9, 2420, 5178, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2514, "type": 2, "geometry": [ 9, 2404, 5190, 42, 0, 0, 12, 23, 5, 23, 3, 24, 3, 24 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 2515, "type": 2, "geometry": [ 9, 2392, 5200, 10, 0, 2 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2516, "type": 2, "geometry": [ 9, 2408, 5532, 10, 1, 2 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2517, "type": 2, "geometry": [ 9, 2384, 5338, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2518, "type": 2, "geometry": [ 9, 7152, 3256, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2519, "type": 2, "geometry": [ 9, 7058, 3366, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2520, "type": 2, "geometry": [ 9, 7008, 3454, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2521, "type": 2, "geometry": [ 9, 7004, 3464, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2522, "type": 2, "geometry": [ 9, 6818, 3542, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2523, "type": 2, "geometry": [ 9, 6816, 3542, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2524, "type": 2, "geometry": [ 9, 6814, 3542, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2525, "type": 2, "geometry": [ 9, 6698, 4256, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2526, "type": 2, "geometry": [ 9, 6702, 4258, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2527, "type": 2, "geometry": [ 9, 6864, 4284, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2528, "type": 2, "geometry": [ 9, 6880, 4288, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2529, "type": 2, "geometry": [ 9, 6866, 4262, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2530, "type": 2, "geometry": [ 9, 6862, 3944, 10, 0, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2531, "type": 2, "geometry": [ 9, 6854, 3962, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2532, "type": 2, "geometry": [ 9, 6858, 3958, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2533, "type": 2, "geometry": [ 9, 6814, 3984, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2534, "type": 2, "geometry": [ 9, 7592, 4188, 10, 0, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2535, "type": 2, "geometry": [ 9, 7592, 4186, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2536, "type": 2, "geometry": [ 9, 7602, 4196, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2537, "type": 2, "geometry": [ 9, 7604, 4196, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2538, "type": 2, "geometry": [ 9, 7564, 4190, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2539, "type": 2, "geometry": [ 9, 7682, 4264, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2540, "type": 2, "geometry": [ 9, 7680, 4262, 26, 0, 0, 23, 15, 24, 18 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 1 } }, { "id": 2541, "type": 2, "geometry": [ 9, 7686, 4264, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2542, "type": 2, "geometry": [ 9, 7698, 4268, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2543, "type": 2, "geometry": [ 9, 7696, 4264, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2544, "type": 2, "geometry": [ 9, 7702, 4268, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2545, "type": 2, "geometry": [ 9, 7732, 4290, 26, 0, 1, 23, 17, 24, 20 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 1 } }, { "id": 2546, "type": 2, "geometry": [ 9, 7898, 4440, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2547, "type": 2, "geometry": [ 9, 7900, 4448, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2548, "type": 2, "geometry": [ 9, 7900, 4458, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2549, "type": 2, "geometry": [ 9, 7898, 4454, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2550, "type": 2, "geometry": [ 9, 7914, 4474, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 1 } }, { "id": 2551, "type": 2, "geometry": [ 9, 7926, 4476, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2552, "type": 2, "geometry": [ 9, 7930, 4486, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2553, "type": 2, "geometry": [ 9, 7920, 4440, 10, 0, 4 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2554, "type": 2, "geometry": [ 9, 7922, 4452, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2555, "type": 2, "geometry": [ 9, 7898, 4452, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 1 } }, { "id": 2556, "type": 2, "geometry": [ 9, 7916, 4450, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2557, "type": 2, "geometry": [ 9, 7930, 4504, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2558, "type": 2, "geometry": [ 9, 7922, 4502, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2559, "type": 2, "geometry": [ 9, 7926, 4498, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2560, "type": 2, "geometry": [ 9, 7922, 4472, 10, 2, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2561, "type": 2, "geometry": [ 9, 7926, 4490, 10, 2, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2562, "type": 2, "geometry": [ 9, 7922, 4476, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2563, "type": 2, "geometry": [ 9, 7922, 4484, 10, 2, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2564, "type": 2, "geometry": [ 9, 8154, 4482, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2565, "type": 2, "geometry": [ 9, 8158, 4478, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2566, "type": 2, "geometry": [ 9, 8168, 4502, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2567, "type": 2, "geometry": [ 9, 8164, 4502, 10, 1, 2 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2568, "type": 2, "geometry": [ 9, 8162, 4504, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2569, "type": 2, "geometry": [ 9, 8176, 4512, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2570, "type": 2, "geometry": [ 9, 8178, 4506, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2571, "type": 2, "geometry": [ 9, 8178, 4494, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2572, "type": 2, "geometry": [ 9, 8124, 4494, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2573, "type": 2, "geometry": [ 9, 8132, 4484, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2574, "type": 2, "geometry": [ 9, 8128, 4490, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2575, "type": 2, "geometry": [ 9, 8136, 4480, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2576, "type": 2, "geometry": [ 9, 5196, 3386, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2577, "type": 2, "geometry": [ 9, 5190, 3378, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2578, "type": 2, "geometry": [ 9, 5068, 3772, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2579, "type": 2, "geometry": [ 9, 5246, 3478, 10, 0, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2580, "type": 2, "geometry": [ 9, 5194, 3392, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2581, "type": 2, "geometry": [ 9, 5286, 3816, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2582, "type": 2, "geometry": [ 9, 5068, 3780, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2583, "type": 2, "geometry": [ 9, 5222, 3448, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2584, "type": 2, "geometry": [ 9, 5240, 3398, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2585, "type": 2, "geometry": [ 9, 5328, 3526, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2586, "type": 2, "geometry": [ 9, 5328, 3524, 10, 0, 2 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2587, "type": 2, "geometry": [ 9, 5324, 3470, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2588, "type": 2, "geometry": [ 9, 5332, 3522, 10, 2, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2589, "type": 2, "geometry": [ 9, 5014, 3734, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2590, "type": 2, "geometry": [ 9, 5054, 3710, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2591, "type": 2, "geometry": [ 9, 5316, 3528, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2592, "type": 2, "geometry": [ 9, 5048, 3708, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2593, "type": 2, "geometry": [ 9, 5084, 3804, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2594, "type": 2, "geometry": [ 9, 5380, 3454, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2595, "type": 2, "geometry": [ 9, 5374, 3456, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2596, "type": 2, "geometry": [ 9, 5376, 3460, 10, 2, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2597, "type": 2, "geometry": [ 9, 5628, 3530, 10, 0, 2 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2598, "type": 2, "geometry": [ 9, 5292, 3524, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2599, "type": 2, "geometry": [ 9, 5752, 3838, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2600, "type": 2, "geometry": [ 9, 5738, 3848, 10, 0, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2601, "type": 2, "geometry": [ 9, 5436, 3616, 10, 0, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2602, "type": 2, "geometry": [ 9, 5308, 3462, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2603, "type": 2, "geometry": [ 9, 5370, 3690, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2604, "type": 2, "geometry": [ 9, 5308, 3526, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2605, "type": 2, "geometry": [ 9, 5302, 3816, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2606, "type": 2, "geometry": [ 9, 5306, 3816, 10, 2, 2 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2607, "type": 2, "geometry": [ 9, 5366, 3690, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2608, "type": 2, "geometry": [ 9, 5334, 3806, 26, 0, 0, 23, 1, 24, 4 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2609, "type": 2, "geometry": [ 9, 5336, 3474, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2610, "type": 2, "geometry": [ 9, 6858, 3818, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2611, "type": 2, "geometry": [ 9, 6850, 3846, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2612, "type": 2, "geometry": [ 9, 6832, 3822, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2613, "type": 2, "geometry": [ 9, 3252, 5578, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2614, "type": 2, "geometry": [ 9, 3228, 5560, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2615, "type": 2, "geometry": [ 9, 3494, 5716, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2616, "type": 2, "geometry": [ 9, 3278, 5588, 42, 0, 1, 23, 21, 23, 3, 24, 14, 24, 20 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 2617, "type": 2, "geometry": [ 9, 3498, 5742, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2618, "type": 2, "geometry": [ 9, 3490, 5768, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2619, "type": 2, "geometry": [ 9, 3486, 5684, 10, 2, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2620, "type": 2, "geometry": [ 9, 3466, 5652, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2621, "type": 2, "geometry": [ 9, 3478, 5668, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2622, "type": 2, "geometry": [ 9, 3474, 5786, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2623, "type": 2, "geometry": [ 9, 3474, 5788, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2624, "type": 2, "geometry": [ 9, 2726, 5462, 10, 1, 2 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2625, "type": 2, "geometry": [ 9, 2732, 5460, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2626, "type": 2, "geometry": [ 9, 2780, 5474, 34, 1, 0, 23, 15, 13, 24, 24, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 1 } }, { "id": 2627, "type": 2, "geometry": [ 9, 2492, 5594, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2628, "type": 2, "geometry": [ 9, 2424, 5518, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2629, "type": 2, "geometry": [ 9, 2400, 5484, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 2630, "type": 2, "geometry": [ 9, 2392, 5452, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2631, "type": 2, "geometry": [ 9, 2386, 5376, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 2632, "type": 2, "geometry": [ 9, 2386, 5366, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2633, "type": 2, "geometry": [ 9, 2394, 5264, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2634, "type": 2, "geometry": [ 9, 2418, 5278, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 2635, "type": 2, "geometry": [ 9, 2420, 5236, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2636, "type": 2, "geometry": [ 9, 2404, 5212, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2637, "type": 2, "geometry": [ 9, 2508, 5614, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2638, "type": 2, "geometry": [ 9, 2548, 5624, 26, 0, 0, 23, 21, 20, 24 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 2639, "type": 2, "geometry": [ 9, 2504, 5600, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2640, "type": 2, "geometry": [ 9, 2458, 5588, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2641, "type": 2, "geometry": [ 9, 2424, 5538, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2642, "type": 2, "geometry": [ 9, 2430, 5534, 26, 0, 0, 23, 13, 24, 16 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 2643, "type": 2, "geometry": [ 9, 2418, 5492, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2644, "type": 2, "geometry": [ 9, 2412, 5476, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2645, "type": 2, "geometry": [ 9, 2388, 5460, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2646, "type": 2, "geometry": [ 9, 2402, 5452, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2647, "type": 2, "geometry": [ 9, 2388, 5442, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2648, "type": 2, "geometry": [ 9, 2386, 5430, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2649, "type": 2, "geometry": [ 9, 2390, 5380, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2650, "type": 2, "geometry": [ 9, 2384, 5378, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 2651, "type": 2, "geometry": [ 9, 2400, 5364, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 2652, "type": 2, "geometry": [ 9, 2380, 5362, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2653, "type": 2, "geometry": [ 9, 2384, 5366, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 2654, "type": 2, "geometry": [ 9, 2410, 5310, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2655, "type": 2, "geometry": [ 9, 2400, 5312, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2656, "type": 2, "geometry": [ 9, 2394, 5270, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2657, "type": 2, "geometry": [ 9, 2398, 5262, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2658, "type": 2, "geometry": [ 9, 2414, 5260, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2659, "type": 2, "geometry": [ 9, 2418, 5252, 10, 0, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 2660, "type": 2, "geometry": [ 9, 2404, 5256, 10, 1, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2661, "type": 2, "geometry": [ 9, 2404, 5250, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2662, "type": 2, "geometry": [ 9, 2404, 5238, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2663, "type": 2, "geometry": [ 9, 2386, 5238, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2664, "type": 2, "geometry": [ 9, 2400, 5232, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2665, "type": 2, "geometry": [ 9, 2394, 5230, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2666, "type": 2, "geometry": [ 9, 2412, 5232, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 2667, "type": 2, "geometry": [ 9, 2416, 5226, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2668, "type": 2, "geometry": [ 9, 2410, 5224, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 2669, "type": 2, "geometry": [ 9, 2402, 5220, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2670, "type": 2, "geometry": [ 9, 2432, 5158, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2671, "type": 2, "geometry": [ 9, 2420, 5168, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2672, "type": 2, "geometry": [ 9, 2424, 5166, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2673, "type": 2, "geometry": [ 9, 2574, 5600, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2674, "type": 2, "geometry": [ 9, 2574, 5610, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2675, "type": 2, "geometry": [ 9, 2584, 5608, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2676, "type": 2, "geometry": [ 9, 5438, 922, 26, 5, 3, 24, 11, 9, 24 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2677, "type": 2, "geometry": [ 9, 5404, 902, 42, 1, 0, 3, 25, 28, 19, 5, 24, 5, 24 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2678, "type": 2, "geometry": [ 9, 5362, 906, 34, 8, 11, 16, 23, 10, 24, 27, 14 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2679, "type": 2, "geometry": [ 9, 5292, 894, 34, 0, 1, 4, 23, 24, 14, 27, 14 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2680, "type": 2, "geometry": [ 9, 5524, 798, 66, 2, 1, 26, 13, 4, 23, 24, 2, 4, 24, 9, 24, 27, 14, 25, 11 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2681, "type": 2, "geometry": [ 9, 5466, 776, 26, 2, 1, 30, 9, 15, 28 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2682, "type": 2, "geometry": [ 9, 5362, 752, 34, 1, 1, 24, 7, 24, 9, 23, 22 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2683, "type": 2, "geometry": [ 9, 5504, 690, 10, 2, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2684, "type": 2, "geometry": [ 9, 5438, 1364, 10, 2, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2685, "type": 2, "geometry": [ 9, 5320, 856, 10, 0, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2686, "type": 2, "geometry": [ 9, 5400, 750, 10, 2, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2687, "type": 2, "geometry": [ 9, 5428, 732, 10, 1, 2 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2688, "type": 2, "geometry": [ 9, 7618, 2790, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2689, "type": 2, "geometry": [ 9, 7528, 2898, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2690, "type": 2, "geometry": [ 9, 6874, 4104, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2691, "type": 2, "geometry": [ 9, 6902, 4134, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2692, "type": 2, "geometry": [ 9, 2300, 3902, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 2693, "type": 2, "geometry": [ 9, 1012, 4596, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2694, "type": 2, "geometry": [ 9, 994, 4526, 10, 0, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2695, "type": 2, "geometry": [ 9, 978, 4520, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2696, "type": 2, "geometry": [ 9, 942, 4580, 10, 2, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2697, "type": 2, "geometry": [ 9, 936, 4606, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2698, "type": 2, "geometry": [ 9, 894, 4522, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2699, "type": 2, "geometry": [ 9, 890, 4516, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2700, "type": 2, "geometry": [ 9, 906, 4464, 10, 0, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2701, "type": 2, "geometry": [ 9, 852, 4466, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2702, "type": 2, "geometry": [ 9, 850, 4502, 10, 2, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2703, "type": 2, "geometry": [ 9, 832, 4498, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2704, "type": 2, "geometry": [ 9, 832, 4480, 10, 0, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2705, "type": 2, "geometry": [ 9, 828, 4478, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2706, "type": 2, "geometry": [ 9, 822, 4476, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2707, "type": 2, "geometry": [ 9, 812, 4476, 10, 0, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2708, "type": 2, "geometry": [ 9, 810, 4472, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2709, "type": 2, "geometry": [ 9, 792, 4462, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2710, "type": 2, "geometry": [ 9, 794, 4462, 10, 0, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2711, "type": 2, "geometry": [ 9, 796, 4428, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2712, "type": 2, "geometry": [ 9, 792, 4432, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2713, "type": 2, "geometry": [ 9, 776, 4426, 10, 0, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2714, "type": 2, "geometry": [ 9, 766, 4428, 10, 2, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2715, "type": 2, "geometry": [ 9, 782, 4466, 10, 0, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2716, "type": 2, "geometry": [ 9, 784, 4472, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2717, "type": 2, "geometry": [ 9, 786, 4500, 10, 0, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2718, "type": 2, "geometry": [ 9, 782, 4496, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2719, "type": 2, "geometry": [ 9, 726, 4440, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2720, "type": 2, "geometry": [ 9, 712, 4438, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2721, "type": 2, "geometry": [ 9, 4942, 3610, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2722, "type": 2, "geometry": [ 9, 6726, 4868, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2723, "type": 2, "geometry": [ 9, 8190, 4480, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2724, "type": 2, "geometry": [ 9, 2284, 3566, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2725, "type": 2, "geometry": [ 9, 2284, 3566, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2726, "type": 2, "geometry": [ 9, 2408, 3624, 170, 1, 0, 23, 11, 23, 11, 23, 7, 23, 15, 23, 7, 23, 9, 23, 3, 23, 2, 23, 6, 23, 20, 26, 3, 24, 13, 24, 14, 24, 2, 24, 12, 24, 16, 24, 4, 24, 18, 24, 2, 24, 5 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 0 } }, { "id": 2727, "type": 2, "geometry": [ 9, 5540, 4552, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2728, "type": 2, "geometry": [ 9, 5858, 5026, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2729, "type": 2, "geometry": [ 9, 4174, 5576, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2730, "type": 2, "geometry": [ 9, 8190, 1726, 34, 1, 2, 23, 22, 0, 26, 24, 9 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2731, "type": 2, "geometry": [ 9, 8190, 4468, 26, 0, 0, 23, 6, 24, 8 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 1 } }, { "id": 2732, "type": 2, "geometry": [ 9, 8190, 4524, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2733, "type": 2, "geometry": [ 9, 8190, 4482, 10, 0, 2 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2734, "type": 2, "geometry": [ 9, 812, 4748, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2735, "type": 2, "geometry": [ 9, 8176, 4472, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2736, "type": 2, "geometry": [ 9, 2612, 5586, 138, 3, 0, 23, 5, 25, 21, 13, 23, 9, 23, 23, 3, 17, 24, 24, 6, 15, 24, 24, 16, 23, 5, 23, 8, 24, 14, 24, 6, 26, 3, 24, 4, 24, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 0 } }, { "id": 2737, "type": 2, "geometry": [ 9, 0, 1764, 34, 2, 0, 36, 0, 12, 23, 29, 17 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 1 } }, { "id": 2738, "type": 2, "geometry": [ 9, 8190, 4476, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2739, "type": 2, "geometry": [ 9, 0, 4476, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 1 } }, { "id": 2740, "type": 2, "geometry": [ 9, 0, 4468, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 1 } }, { "id": 2741, "type": 2, "geometry": [ 9, 0, 4486, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2742, "type": 2, "geometry": [ 9, 2568, 6128, 10, 0, 2 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2743, "type": 2, "geometry": [ 9, 2554, 6192, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2744, "type": 2, "geometry": [ 9, 2558, 6184, 10, 1, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2745, "type": 2, "geometry": [ 9, 2522, 6208, 50, 0, 0, 24, 3, 8, 23, 0, 23, 23, 26, 7, 24 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2746, "type": 2, "geometry": [ 9, 2556, 6176, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2747, "type": 2, "geometry": [ 9, 2566, 6136, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2748, "type": 2, "geometry": [ 9, 2562, 6166, 10, 0, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2749, "type": 2, "geometry": [ 9, 2564, 6214, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2750, "type": 2, "geometry": [ 9, 2596, 6108, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2751, "type": 2, "geometry": [ 9, 2600, 6112, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2752, "type": 2, "geometry": [ 9, 2570, 6222, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2753, "type": 2, "geometry": [ 9, 2568, 6238, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2754, "type": 2, "geometry": [ 9, 2574, 6202, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2755, "type": 2, "geometry": [ 9, 2576, 6122, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2756, "type": 2, "geometry": [ 9, 2588, 6104, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2757, "type": 2, "geometry": [ 9, 2414, 6582, 10, 0, 2 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2758, "type": 2, "geometry": [ 9, 2392, 6562, 42, 1, 0, 25, 18, 34, 42, 0, 23, 8, 23 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2759, "type": 2, "geometry": [ 9, 2374, 7118, 10, 0, 2 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2760, "type": 2, "geometry": [ 9, 2416, 6604, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2761, "type": 2, "geometry": [ 9, 2484, 6378, 10, 0, 2 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2762, "type": 2, "geometry": [ 9, 2438, 6330, 10, 0, 2 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2763, "type": 2, "geometry": [ 9, 2464, 6386, 10, 0, 2 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2764, "type": 2, "geometry": [ 9, 2490, 6514, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2765, "type": 2, "geometry": [ 9, 2468, 6544, 290, 14, 2, 38, 7, 10, 23, 8, 23, 6, 23, 1, 23, 1, 25, 5, 27, 11, 27, 3, 23, 9, 23, 7, 23, 29, 3, 17, 24, 10, 24, 3, 24, 26, 12, 26, 14, 29, 6, 4, 26, 24, 2, 23, 10, 35, 4, 5, 24, 23, 3, 13, 24, 23, 3, 12, 32, 24, 6, 24, 17, 28, 3, 11, 24, 30, 0, 25, 14, 27, 2, 36, 18 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 1 } }, { "id": 2766, "type": 2, "geometry": [ 9, 1944, 6536, 10, 0, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2767, "type": 2, "geometry": [ 9, 1922, 6520, 106, 1, 0, 25, 1, 14, 25, 23, 8, 25, 8, 5, 27, 1, 24, 23, 5, 53, 1, 38, 20, 28, 10, 36, 14, 36, 2 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 1 } }, { "id": 2768, "type": 2, "geometry": [ 9, 1862, 6550, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2769, "type": 2, "geometry": [ 9, 1712, 6580, 10, 3, 7 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2770, "type": 2, "geometry": [ 9, 2378, 6366, 26, 14, 4, 2, 25, 23, 8 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2771, "type": 2, "geometry": [ 9, 2026, 6560, 18, 4, 5, 15, 24 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2772, "type": 2, "geometry": [ 9, 1962, 6564, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2773, "type": 2, "geometry": [ 9, 2462, 6590, 10, 1, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2774, "type": 2, "geometry": [ 9, 2390, 6428, 42, 12, 3, 12, 27, 23, 2, 25, 16, 26, 14 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2775, "type": 2, "geometry": [ 9, 1970, 6540, 10, 0, 2 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2776, "type": 2, "geometry": [ 9, 2050, 6564, 10, 1, 4 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2777, "type": 2, "geometry": [ 9, 2710, 5998, 10, 0, 2 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2778, "type": 2, "geometry": [ 9, 2718, 5954, 10, 0, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2779, "type": 2, "geometry": [ 9, 2718, 6430, 10, 0, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2780, "type": 2, "geometry": [ 9, 2712, 6540, 10, 1, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2781, "type": 2, "geometry": [ 9, 2720, 6398, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2782, "type": 2, "geometry": [ 9, 2696, 5946, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2783, "type": 2, "geometry": [ 9, 2724, 6512, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2784, "type": 2, "geometry": [ 9, 2710, 6278, 10, 2, 2 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2785, "type": 2, "geometry": [ 9, 2704, 6356, 10, 0, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2786, "type": 2, "geometry": [ 9, 2804, 5966, 10, 2, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2787, "type": 2, "geometry": [ 9, 2784, 5998, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2788, "type": 2, "geometry": [ 9, 2704, 5938, 26, 0, 0, 30, 1, 23, 3 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2789, "type": 2, "geometry": [ 9, 2786, 5990, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2790, "type": 2, "geometry": [ 9, 2808, 5960, 10, 4, 4 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2791, "type": 2, "geometry": [ 9, 2974, 7018, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2792, "type": 2, "geometry": [ 9, 2742, 6072, 10, 3, 5 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2793, "type": 2, "geometry": [ 9, 2736, 5924, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2794, "type": 2, "geometry": [ 9, 2736, 5932, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2795, "type": 2, "geometry": [ 9, 2734, 5984, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2796, "type": 2, "geometry": [ 9, 2670, 5958, 10, 4, 3 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2797, "type": 2, "geometry": [ 9, 2664, 6052, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2798, "type": 2, "geometry": [ 9, 2664, 6034, 26, 0, 0, 23, 3, 24, 6 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2799, "type": 2, "geometry": [ 9, 2670, 6032, 18, 0, 2, 8, 23 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2800, "type": 2, "geometry": [ 9, 2670, 6044, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2801, "type": 2, "geometry": [ 9, 2664, 6048, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2802, "type": 2, "geometry": [ 9, 2604, 6084, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2803, "type": 2, "geometry": [ 9, 2616, 6210, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2804, "type": 2, "geometry": [ 9, 2656, 6048, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2805, "type": 2, "geometry": [ 9, 2608, 6106, 10, 0, 2 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2806, "type": 2, "geometry": [ 9, 2680, 6036, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2807, "type": 2, "geometry": [ 9, 2684, 6040, 10, 0, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2808, "type": 2, "geometry": [ 9, 2692, 6026, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2809, "type": 2, "geometry": [ 9, 2690, 5994, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2810, "type": 2, "geometry": [ 9, 2690, 6322, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2811, "type": 2, "geometry": [ 9, 2692, 6016, 10, 0, 3 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2812, "type": 2, "geometry": [ 9, 2686, 5970, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2813, "type": 2, "geometry": [ 9, 2686, 6006, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2814, "type": 2, "geometry": [ 9, 2568, 6220, 10, 0, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2815, "type": 2, "geometry": [ 9, 2764, 5914, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2816, "type": 2, "geometry": [ 9, 2752, 5918, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2817, "type": 2, "geometry": [ 9, 2746, 7300, 146, 0, 1, 11, 23, 1, 23, 25, 3, 3, 24, 9, 24, 1, 26, 95, 4, 3, 23, 13, 24, 56, 50, 26, 21, 4, 26, 52, 26, 20, 31, 4, 25, 3, 23, 10, 23 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 1 } }, { "id": 2818, "type": 2, "geometry": [ 9, 2784, 6030, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2819, "type": 2, "geometry": [ 9, 3068, 7106, 234, 26, 5, 6, 23, 17, 39, 31, 21, 29, 5, 41, 28, 17, 46, 7, 24, 0, 24, 5, 26, 5, 24, 12, 24, 15, 32, 11, 26, 21, 34, 23, 3, 7, 28, 5, 24, 7, 24, 6, 24, 100, 11, 142, 81, 5, 25, 18, 27, 2, 33, 3, 23, 3, 23, 3, 25, 39, 11 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 1 } }, { "id": 2820, "type": 2, "geometry": [ 9, 2790, 6030, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2821, "type": 2, "geometry": [ 9, 2802, 6020, 10, 0, 2 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2822, "type": 2, "geometry": [ 9, 2828, 5980, 10, 1, 3 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2823, "type": 2, "geometry": [ 9, 2806, 5986, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2824, "type": 2, "geometry": [ 9, 2786, 6024, 26, 0, 0, 5, 23, 11, 24 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2825, "type": 2, "geometry": [ 9, 2840, 5966, 26, 5, 1, 23, 4, 24, 4 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2826, "type": 2, "geometry": [ 9, 2842, 5862, 10, 7, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2827, "type": 2, "geometry": [ 9, 2542, 7180, 26, 3, 4, 22, 24, 4, 23 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2828, "type": 2, "geometry": [ 9, 2554, 7162, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2829, "type": 2, "geometry": [ 9, 2576, 7082, 98, 0, 1, 61, 30, 25, 22, 17, 26, 7, 28, 0, 24, 32, 22, 16, 25, 4, 23, 12, 23, 36, 51, 14, 23 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2830, "type": 2, "geometry": [ 9, 2590, 7224, 50, 13, 1, 23, 9, 20, 32, 12, 24, 18, 23, 23, 11 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2831, "type": 2, "geometry": [ 9, 3082, 5846, 10, 0, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2832, "type": 2, "geometry": [ 9, 2866, 5870, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2833, "type": 2, "geometry": [ 9, 3048, 5840, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2834, "type": 2, "geometry": [ 9, 3364, 7228, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2835, "type": 2, "geometry": [ 9, 3806, 6502, 10, 0, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2836, "type": 2, "geometry": [ 9, 3726, 6542, 10, 1, 7 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2837, "type": 2, "geometry": [ 9, 3632, 6688, 42, 0, 1, 7, 23, 4, 23, 31, 18, 24, 28 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2838, "type": 2, "geometry": [ 9, 4016, 6394, 10, 14, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2839, "type": 2, "geometry": [ 9, 3324, 7184, 34, 3, 5, 31, 19, 27, 16, 60, 16 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2840, "type": 2, "geometry": [ 9, 3422, 7260, 50, 0, 0, 23, 21, 23, 13, 7, 24, 26, 14, 24, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2841, "type": 2, "geometry": [ 9, 4704, 6372, 10, 0, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2842, "type": 2, "geometry": [ 9, 4464, 6338, 26, 5, 0, 4, 24, 10, 23 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2843, "type": 2, "geometry": [ 9, 4238, 6366, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2844, "type": 2, "geometry": [ 9, 4346, 6360, 10, 3, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2845, "type": 2, "geometry": [ 9, 5184, 6204, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2846, "type": 2, "geometry": [ 9, 5204, 6154, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2847, "type": 2, "geometry": [ 9, 4188, 6378, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2848, "type": 2, "geometry": [ 9, 4034, 6414, 26, 1, 1, 1, 24, 16, 23 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2849, "type": 2, "geometry": [ 9, 4128, 6360, 26, 1, 0, 3, 24, 6, 23 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2850, "type": 2, "geometry": [ 9, 4022, 6430, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2851, "type": 2, "geometry": [ 9, 4168, 6384, 10, 1, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2852, "type": 2, "geometry": [ 9, 4140, 6398, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2853, "type": 2, "geometry": [ 9, 3960, 6386, 10, 1, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2854, "type": 2, "geometry": [ 9, 4220, 6374, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2855, "type": 2, "geometry": [ 9, 552, 7242, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2856, "type": 2, "geometry": [ 9, 492, 7548, 18, 0, 1, 6, 24 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2857, "type": 2, "geometry": [ 9, 688, 6940, 26, 10, 2, 11, 25, 0, 24 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2858, "type": 2, "geometry": [ 9, 588, 7276, 26, 4, 0, 37, 29, 24, 20 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2859, "type": 2, "geometry": [ 9, 670, 6962, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2860, "type": 2, "geometry": [ 9, 442, 7500, 34, 2, 0, 57, 49, 15, 28, 72, 22 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2861, "type": 2, "geometry": [ 9, 248, 7768, 26, 61, 61, 44, 60, 24, 12 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2862, "type": 2, "geometry": [ 9, 578, 6938, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2863, "type": 2, "geometry": [ 9, 754, 6886, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2864, "type": 2, "geometry": [ 9, 740, 6838, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2865, "type": 2, "geometry": [ 9, 676, 6904, 10, 2, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2866, "type": 2, "geometry": [ 9, 400, 7724, 42, 0, 5, 31, 9, 4, 24, 28, 34, 18, 23 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2867, "type": 2, "geometry": [ 9, 706, 6966, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2868, "type": 2, "geometry": [ 9, 384, 7238, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2869, "type": 2, "geometry": [ 9, 458, 7188, 90, 3, 1, 29, 39, 17, 23, 25, 9, 13, 24, 9, 24, 4, 26, 78, 66, 38, 3, 3, 23, 7, 23 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 1 } }, { "id": 2870, "type": 2, "geometry": [ 9, 612, 6952, 10, 0, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2871, "type": 2, "geometry": [ 9, 704, 6976, 10, 2, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2872, "type": 2, "geometry": [ 9, 1202, 6692, 26, 0, 0, 23, 13, 14, 30 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2873, "type": 2, "geometry": [ 9, 1194, 6616, 66, 0, 0, 24, 12, 14, 24, 24, 20, 12, 23, 23, 11, 7, 23, 31, 13 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 1 } }, { "id": 2874, "type": 2, "geometry": [ 9, 1452, 6646, 26, 3, 3, 23, 18, 24, 7 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2875, "type": 2, "geometry": [ 9, 1428, 6684, 10, 4, 3 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2876, "type": 2, "geometry": [ 9, 1368, 6664, 34, 4, 0, 18, 23, 23, 0, 2, 24 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2877, "type": 2, "geometry": [ 9, 1358, 6648, 58, 0, 1, 39, 15, 23, 3, 12, 24, 9, 24, 44, 8, 18, 27 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 1 } }, { "id": 2878, "type": 2, "geometry": [ 9, 710, 6898, 10, 4, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2879, "type": 2, "geometry": [ 9, 1116, 6690, 26, 0, 0, 23, 5, 24, 12 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2880, "type": 2, "geometry": [ 9, 716, 6906, 18, 2, 2, 23, 3 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2881, "type": 2, "geometry": [ 9, 716, 6922, 10, 15, 5 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2882, "type": 2, "geometry": [ 9, 1088, 6666, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2883, "type": 2, "geometry": [ 9, 1078, 6686, 10, 3, 2 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2884, "type": 2, "geometry": [ 9, 768, 6920, 10, 0, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2885, "type": 2, "geometry": [ 9, 786, 6790, 10, 7, 5 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2886, "type": 2, "geometry": [ 9, 744, 6946, 10, 5, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2887, "type": 2, "geometry": [ 9, 734, 6892, 10, 2, 2 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2888, "type": 2, "geometry": [ 9, 6388, 6102, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2889, "type": 2, "geometry": [ 9, 6446, 6080, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2890, "type": 2, "geometry": [ 9, 6338, 6136, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2891, "type": 2, "geometry": [ 9, 6378, 6122, 10, 0, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2892, "type": 2, "geometry": [ 9, 7792, 6780, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2893, "type": 2, "geometry": [ 9, 7778, 6374, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2894, "type": 2, "geometry": [ 9, 6312, 6136, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2895, "type": 2, "geometry": [ 9, 6840, 6166, 10, 0, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2896, "type": 2, "geometry": [ 9, 6852, 6158, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2897, "type": 2, "geometry": [ 9, 7796, 6140, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2898, "type": 2, "geometry": [ 9, 5738, 6398, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2899, "type": 2, "geometry": [ 9, 5748, 6358, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2900, "type": 2, "geometry": [ 9, 6300, 6118, 10, 0, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2901, "type": 2, "geometry": [ 9, 5660, 6506, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2902, "type": 2, "geometry": [ 9, 5686, 6490, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2903, "type": 2, "geometry": [ 9, 6034, 6146, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2904, "type": 2, "geometry": [ 9, 6064, 6154, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2905, "type": 2, "geometry": [ 9, 6200, 6098, 10, 1, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2906, "type": 2, "geometry": [ 9, 6044, 6156, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2907, "type": 2, "geometry": [ 9, 6384, 6080, 10, 1, 2 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2908, "type": 2, "geometry": [ 9, 7802, 6788, 10, 3, 2 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2909, "type": 2, "geometry": [ 9, 7962, 6614, 10, 0, 3 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2910, "type": 2, "geometry": [ 9, 7946, 6974, 58, 1, 1, 35, 1, 13, 23, 9, 26, 8, 24, 28, 1, 28, 11 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2911, "type": 2, "geometry": [ 9, 7812, 6382, 10, 0, 2 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2912, "type": 2, "geometry": [ 9, 7810, 6162, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2913, "type": 2, "geometry": [ 9, 7818, 6724, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2914, "type": 2, "geometry": [ 9, 7910, 7046, 26, 0, 3, 29, 2, 24, 16 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2915, "type": 2, "geometry": [ 9, 7846, 6190, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2916, "type": 2, "geometry": [ 9, 7822, 6712, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2917, "type": 2, "geometry": [ 9, 3070, 5844, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2918, "type": 2, "geometry": [ 9, 5340, 3070, 314, 0, 0, 15, 23, 23, 5, 1, 24, 9, 23, 4, 23, 23, 11, 11, 23, 15, 23, 24, 4, 0, 23, 24, 3, 16, 23, 1, 23, 23, 0, 23, 5, 23, 16, 23, 14, 23, 16, 13, 24, 0, 24, 8, 24, 6, 24, 16, 24, 16, 24, 24, 18, 17, 24, 11, 24, 0, 26, 24, 14, 24, 20, 24, 4, 24, 5, 16, 25, 0, 23, 15, 23, 9, 23, 6, 23, 24, 10, 9, 85, 133, 10, 0, 1, 9, 1, 8, 10, 0, 0, 9, 6, 136, 10, 0, 0, 9, 4, 4, 10, 0, 0, 9, 66, 20, 10, 0, 0, 9, 9, 16, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 0 } }, { "id": 2919, "type": 2, "geometry": [ 9, 880, 4540, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2920, "type": 2, "geometry": [ 9, 882, 4422, 10, 0, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2921, "type": 2, "geometry": [ 9, 900, 4550, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2922, "type": 2, "geometry": [ 9, 892, 4538, 10, 2, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2923, "type": 2, "geometry": [ 9, 936, 4542, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2924, "type": 2, "geometry": [ 9, 928, 4544, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2925, "type": 2, "geometry": [ 9, 876, 4496, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2926, "type": 2, "geometry": [ 9, 888, 4460, 10, 2, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2927, "type": 2, "geometry": [ 9, 936, 4530, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2928, "type": 2, "geometry": [ 9, 944, 4496, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2929, "type": 2, "geometry": [ 9, 728, 4442, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2930, "type": 2, "geometry": [ 9, 732, 4446, 10, 2, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2931, "type": 2, "geometry": [ 9, 786, 4452, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2932, "type": 2, "geometry": [ 9, 762, 4460, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2933, "type": 2, "geometry": [ 9, 768, 4448, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2934, "type": 2, "geometry": [ 9, 744, 4446, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2935, "type": 2, "geometry": [ 9, 774, 4462, 10, 0, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2936, "type": 2, "geometry": [ 9, 740, 4444, 10, 1, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2937, "type": 2, "geometry": [ 9, 758, 4446, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2938, "type": 2, "geometry": [ 9, 666, 4504, 10, 2, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2939, "type": 2, "geometry": [ 9, 578, 4460, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2940, "type": 2, "geometry": [ 9, 630, 4474, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2941, "type": 2, "geometry": [ 9, 592, 4482, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2942, "type": 2, "geometry": [ 9, 692, 4488, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2943, "type": 2, "geometry": [ 9, 2114, 3968, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2944, "type": 2, "geometry": [ 9, 722, 4460, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2945, "type": 2, "geometry": [ 9, 774, 4426, 10, 0, 2 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2946, "type": 2, "geometry": [ 9, 840, 4488, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2947, "type": 2, "geometry": [ 9, 838, 4508, 10, 2, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2948, "type": 2, "geometry": [ 9, 774, 4428, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2949, "type": 2, "geometry": [ 9, 804, 4458, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2950, "type": 2, "geometry": [ 9, 996, 4608, 10, 0, 2 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2951, "type": 2, "geometry": [ 9, 996, 4610, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2952, "type": 2, "geometry": [ 9, 986, 4592, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2953, "type": 2, "geometry": [ 9, 988, 4592, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2954, "type": 2, "geometry": [ 9, 992, 4596, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2955, "type": 2, "geometry": [ 9, 984, 4592, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2956, "type": 2, "geometry": [ 9, 814, 4480, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2957, "type": 2, "geometry": [ 9, 816, 4482, 10, 0, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2958, "type": 2, "geometry": [ 9, 984, 4592, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2959, "type": 2, "geometry": [ 9, 928, 4580, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2960, "type": 2, "geometry": [ 9, 60, 3426, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2961, "type": 2, "geometry": [ 9, 442, 3590, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2962, "type": 2, "geometry": [ 9, 348, 3542, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2963, "type": 2, "geometry": [ 9, 136, 3480, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2964, "type": 2, "geometry": [ 9, 60, 3426, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2965, "type": 2, "geometry": [ 9, 188, 3488, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2966, "type": 2, "geometry": [ 9, 410, 3556, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2967, "type": 2, "geometry": [ 9, 272, 3508, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2968, "type": 2, "geometry": [ 9, 454, 4104, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2969, "type": 2, "geometry": [ 9, 444, 3988, 10, 2, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2970, "type": 2, "geometry": [ 9, 430, 4324, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2971, "type": 2, "geometry": [ 9, 432, 4332, 10, 0, 2 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2972, "type": 2, "geometry": [ 9, 460, 4532, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2973, "type": 2, "geometry": [ 9, 516, 4564, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2974, "type": 2, "geometry": [ 9, 478, 4542, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2975, "type": 2, "geometry": [ 9, 34, 4540, 10, 2, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2976, "type": 2, "geometry": [ 9, 24, 4532, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2977, "type": 2, "geometry": [ 9, 32, 4528, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2978, "type": 2, "geometry": [ 9, 14, 4506, 10, 2, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2979, "type": 2, "geometry": [ 9, 18, 4494, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2980, "type": 2, "geometry": [ 9, 120, 4532, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2981, "type": 2, "geometry": [ 9, 28, 4576, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2982, "type": 2, "geometry": [ 9, 40, 4556, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2983, "type": 2, "geometry": [ 9, 18, 4498, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2984, "type": 2, "geometry": [ 9, 234, 4420, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2985, "type": 2, "geometry": [ 9, 268, 4430, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2986, "type": 2, "geometry": [ 9, 170, 4290, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2987, "type": 2, "geometry": [ 9, 184, 4304, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2988, "type": 2, "geometry": [ 9, 200, 4308, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2989, "type": 2, "geometry": [ 9, 78, 4090, 10, 2, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2990, "type": 2, "geometry": [ 9, 202, 4166, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2991, "type": 2, "geometry": [ 9, 198, 4196, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 2992, "type": 2, "geometry": [ 9, 76, 4078, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2993, "type": 2, "geometry": [ 9, 332, 4360, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2994, "type": 2, "geometry": [ 9, 322, 4344, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2995, "type": 2, "geometry": [ 9, 498, 4560, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2996, "type": 2, "geometry": [ 9, 494, 4556, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2997, "type": 2, "geometry": [ 9, 382, 4514, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2998, "type": 2, "geometry": [ 9, 382, 4514, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 2999, "type": 2, "geometry": [ 9, 382, 4514, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3000, "type": 2, "geometry": [ 9, 382, 4512, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3001, "type": 2, "geometry": [ 9, 494, 4556, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3002, "type": 2, "geometry": [ 9, 382, 4512, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3003, "type": 2, "geometry": [ 9, 382, 4514, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3004, "type": 2, "geometry": [ 9, 2184, 3692, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3005, "type": 2, "geometry": [ 9, 2124, 3720, 10, 0, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 3006, "type": 2, "geometry": [ 9, 2206, 3816, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3007, "type": 2, "geometry": [ 9, 2244, 3790, 10, 0, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3008, "type": 2, "geometry": [ 9, 2220, 3910, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3009, "type": 2, "geometry": [ 9, 2296, 3904, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3010, "type": 2, "geometry": [ 9, 238, 3708, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3011, "type": 2, "geometry": [ 9, 1134, 4684, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3012, "type": 2, "geometry": [ 9, 1256, 4674, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3013, "type": 2, "geometry": [ 9, 832, 4758, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3014, "type": 2, "geometry": [ 9, 832, 4756, 10, 0, 2 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3015, "type": 2, "geometry": [ 9, 832, 4756, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3016, "type": 2, "geometry": [ 9, 830, 4756, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3017, "type": 2, "geometry": [ 9, 1696, 4720, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3018, "type": 2, "geometry": [ 9, 2276, 4716, 10, 0, 2 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3019, "type": 2, "geometry": [ 9, 2272, 4714, 10, 0, 2 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3020, "type": 2, "geometry": [ 9, 5362, 4182, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3021, "type": 2, "geometry": [ 9, 5308, 4218, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3022, "type": 2, "geometry": [ 9, 5154, 4318, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3023, "type": 2, "geometry": [ 9, 5176, 4318, 10, 0, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3024, "type": 2, "geometry": [ 9, 5068, 4490, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3025, "type": 2, "geometry": [ 9, 3428, 4574, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3026, "type": 2, "geometry": [ 9, 3438, 4572, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3027, "type": 2, "geometry": [ 9, 6322, 3880, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3028, "type": 2, "geometry": [ 9, 6364, 3876, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3029, "type": 2, "geometry": [ 9, 6326, 3870, 10, 0, 2 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3030, "type": 2, "geometry": [ 9, 6364, 3876, 10, 0, 2 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3031, "type": 2, "geometry": [ 9, 6312, 3824, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3032, "type": 2, "geometry": [ 9, 6240, 3786, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3033, "type": 2, "geometry": [ 9, 6330, 3854, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3034, "type": 2, "geometry": [ 9, 6334, 3844, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3035, "type": 2, "geometry": [ 9, 6322, 3802, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3036, "type": 2, "geometry": [ 9, 6232, 3814, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3037, "type": 2, "geometry": [ 9, 5746, 3848, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3038, "type": 2, "geometry": [ 9, 5772, 3862, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3039, "type": 2, "geometry": [ 9, 5748, 3854, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3040, "type": 2, "geometry": [ 9, 5750, 3828, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3041, "type": 2, "geometry": [ 9, 5750, 3840, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3042, "type": 2, "geometry": [ 9, 5772, 3848, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3043, "type": 2, "geometry": [ 9, 5770, 3864, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3044, "type": 2, "geometry": [ 9, 5756, 3832, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3045, "type": 2, "geometry": [ 9, 7920, 3968, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3046, "type": 2, "geometry": [ 9, 8002, 3956, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3047, "type": 2, "geometry": [ 9, 8006, 3934, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3048, "type": 2, "geometry": [ 9, 8032, 4064, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 3049, "type": 2, "geometry": [ 9, 7512, 3890, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3050, "type": 2, "geometry": [ 9, 7500, 3900, 10, 0, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3051, "type": 2, "geometry": [ 9, 7492, 3942, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3052, "type": 2, "geometry": [ 9, 7592, 3974, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3053, "type": 2, "geometry": [ 9, 7490, 3926, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3054, "type": 2, "geometry": [ 9, 7968, 3878, 10, 2, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3055, "type": 2, "geometry": [ 9, 7862, 3828, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3056, "type": 2, "geometry": [ 9, 7886, 3648, 10, 2, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3057, "type": 2, "geometry": [ 9, 7940, 3758, 10, 0, 2 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3058, "type": 2, "geometry": [ 9, 7392, 3618, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3059, "type": 2, "geometry": [ 9, 7404, 3638, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3060, "type": 2, "geometry": [ 9, 7400, 3630, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3061, "type": 2, "geometry": [ 9, 7414, 3688, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3062, "type": 2, "geometry": [ 9, 7412, 3710, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3063, "type": 2, "geometry": [ 9, 7148, 3938, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3064, "type": 2, "geometry": [ 9, 7104, 3974, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3065, "type": 2, "geometry": [ 9, 7328, 3438, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3066, "type": 2, "geometry": [ 9, 7330, 3452, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3067, "type": 2, "geometry": [ 9, 7310, 3496, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3068, "type": 2, "geometry": [ 9, 7550, 3928, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3069, "type": 2, "geometry": [ 9, 6322, 3880, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3070, "type": 2, "geometry": [ 9, 6574, 3854, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3071, "type": 2, "geometry": [ 9, 8004, 3934, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3072, "type": 2, "geometry": [ 9, 7982, 3892, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3073, "type": 2, "geometry": [ 9, 7940, 3922, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3074, "type": 2, "geometry": [ 9, 7912, 3896, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3075, "type": 2, "geometry": [ 9, 7856, 3826, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3076, "type": 2, "geometry": [ 9, 7414, 3696, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3077, "type": 2, "geometry": [ 9, 7330, 3442, 10, 0, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3078, "type": 2, "geometry": [ 9, 8162, 4266, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 3079, "type": 2, "geometry": [ 9, 7888, 4404, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3080, "type": 2, "geometry": [ 9, 8068, 4602, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 3081, "type": 2, "geometry": [ 9, 7344, 4134, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3082, "type": 2, "geometry": [ 9, 7518, 3900, 10, 0, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3083, "type": 2, "geometry": [ 9, 7688, 3942, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3084, "type": 2, "geometry": [ 9, 7672, 3964, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3085, "type": 2, "geometry": [ 9, 6300, 4374, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3086, "type": 2, "geometry": [ 9, 5296, 4254, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3087, "type": 2, "geometry": [ 9, 5356, 4228, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3088, "type": 2, "geometry": [ 9, 8100, 4152, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3089, "type": 2, "geometry": [ 9, 8154, 4280, 10, 0, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 3090, "type": 2, "geometry": [ 9, 8104, 4224, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3091, "type": 2, "geometry": [ 9, 7300, 3450, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3092, "type": 2, "geometry": [ 9, 7898, 4320, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3093, "type": 2, "geometry": [ 9, 7900, 4322, 10, 1, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3094, "type": 2, "geometry": [ 9, 7798, 4286, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3095, "type": 2, "geometry": [ 9, 8130, 4234, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3096, "type": 2, "geometry": [ 9, 8108, 4238, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3097, "type": 2, "geometry": [ 9, 8126, 4260, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3098, "type": 2, "geometry": [ 9, 5762, 4110, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3099, "type": 2, "geometry": [ 9, 5766, 4102, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3100, "type": 2, "geometry": [ 9, 5756, 4086, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3101, "type": 2, "geometry": [ 9, 5760, 4076, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3102, "type": 2, "geometry": [ 9, 5760, 4076, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3103, "type": 2, "geometry": [ 9, 5768, 4086, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3104, "type": 2, "geometry": [ 9, 5760, 4090, 10, 2, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3105, "type": 2, "geometry": [ 9, 5754, 4084, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3106, "type": 2, "geometry": [ 9, 5764, 4076, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3107, "type": 2, "geometry": [ 9, 5756, 4088, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3108, "type": 2, "geometry": [ 9, 5764, 4088, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3109, "type": 2, "geometry": [ 9, 5756, 4088, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3110, "type": 2, "geometry": [ 9, 5764, 4080, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3111, "type": 2, "geometry": [ 9, 5764, 4078, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3112, "type": 2, "geometry": [ 9, 5758, 4110, 10, 2, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3113, "type": 2, "geometry": [ 9, 5758, 4090, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3114, "type": 2, "geometry": [ 9, 5768, 4084, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3115, "type": 2, "geometry": [ 9, 5760, 4110, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3116, "type": 2, "geometry": [ 9, 5762, 4108, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3117, "type": 2, "geometry": [ 9, 5760, 4110, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3118, "type": 2, "geometry": [ 9, 5728, 4214, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3119, "type": 2, "geometry": [ 9, 5718, 4246, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3120, "type": 2, "geometry": [ 9, 5738, 4216, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3121, "type": 2, "geometry": [ 9, 5732, 4214, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3122, "type": 2, "geometry": [ 9, 5718, 4236, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3123, "type": 2, "geometry": [ 9, 5728, 4216, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3124, "type": 2, "geometry": [ 9, 5716, 4240, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3125, "type": 2, "geometry": [ 9, 5728, 4218, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3126, "type": 2, "geometry": [ 9, 6500, 4334, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 3127, "type": 2, "geometry": [ 9, 5758, 4108, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3128, "type": 2, "geometry": [ 9, 5766, 4020, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 3129, "type": 2, "geometry": [ 9, 5760, 3940, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3130, "type": 2, "geometry": [ 9, 5768, 3998, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 3131, "type": 2, "geometry": [ 9, 5762, 3938, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3132, "type": 2, "geometry": [ 9, 5754, 3936, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3133, "type": 2, "geometry": [ 9, 5758, 3942, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3134, "type": 2, "geometry": [ 9, 5758, 3942, 10, 0, 2 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3135, "type": 2, "geometry": [ 9, 5756, 3934, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3136, "type": 2, "geometry": [ 9, 5756, 3938, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3137, "type": 2, "geometry": [ 9, 5754, 3934, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3138, "type": 2, "geometry": [ 9, 5756, 3938, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3139, "type": 2, "geometry": [ 9, 5758, 3944, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3140, "type": 2, "geometry": [ 9, 5758, 3938, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3141, "type": 2, "geometry": [ 9, 5754, 3940, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3142, "type": 2, "geometry": [ 9, 5760, 3940, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3143, "type": 2, "geometry": [ 9, 5754, 3932, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3144, "type": 2, "geometry": [ 9, 5756, 3934, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3145, "type": 2, "geometry": [ 9, 5756, 3944, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3146, "type": 2, "geometry": [ 9, 5758, 3938, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3147, "type": 2, "geometry": [ 9, 5754, 3946, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3148, "type": 2, "geometry": [ 9, 5756, 3940, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3149, "type": 2, "geometry": [ 9, 5760, 3936, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3150, "type": 2, "geometry": [ 9, 5756, 3938, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3151, "type": 2, "geometry": [ 9, 5756, 3946, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3152, "type": 2, "geometry": [ 9, 5754, 3936, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3153, "type": 2, "geometry": [ 9, 5760, 3938, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3154, "type": 2, "geometry": [ 9, 5760, 3950, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3155, "type": 2, "geometry": [ 9, 5766, 3960, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3156, "type": 2, "geometry": [ 9, 5758, 3948, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3157, "type": 2, "geometry": [ 9, 5758, 3950, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3158, "type": 2, "geometry": [ 9, 5756, 3962, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3159, "type": 2, "geometry": [ 9, 5770, 3972, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3160, "type": 2, "geometry": [ 9, 5766, 3964, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3161, "type": 2, "geometry": [ 9, 5762, 3954, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3162, "type": 2, "geometry": [ 9, 5750, 3948, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3163, "type": 2, "geometry": [ 9, 5756, 3970, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3164, "type": 2, "geometry": [ 9, 5754, 3958, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3165, "type": 2, "geometry": [ 9, 5756, 3962, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3166, "type": 2, "geometry": [ 9, 5754, 3958, 10, 0, 2 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3167, "type": 2, "geometry": [ 9, 5766, 3958, 10, 0, 2 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3168, "type": 2, "geometry": [ 9, 5756, 3950, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3169, "type": 2, "geometry": [ 9, 5756, 3964, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3170, "type": 2, "geometry": [ 9, 5758, 3952, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3171, "type": 2, "geometry": [ 9, 5762, 3952, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3172, "type": 2, "geometry": [ 9, 5762, 3954, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3173, "type": 2, "geometry": [ 9, 5764, 3962, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3174, "type": 2, "geometry": [ 9, 5760, 3950, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3175, "type": 2, "geometry": [ 9, 5754, 3948, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3176, "type": 2, "geometry": [ 9, 5756, 3966, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3177, "type": 2, "geometry": [ 9, 5756, 3954, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3178, "type": 2, "geometry": [ 9, 5756, 3966, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3179, "type": 2, "geometry": [ 9, 5754, 3970, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3180, "type": 2, "geometry": [ 9, 5766, 3962, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3181, "type": 2, "geometry": [ 9, 5756, 3950, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3182, "type": 2, "geometry": [ 9, 5754, 3970, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3183, "type": 2, "geometry": [ 9, 5756, 3964, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3184, "type": 2, "geometry": [ 9, 5756, 3970, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3185, "type": 2, "geometry": [ 9, 5754, 3948, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3186, "type": 2, "geometry": [ 9, 5764, 3970, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3187, "type": 2, "geometry": [ 9, 5766, 3982, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3188, "type": 2, "geometry": [ 9, 5756, 3984, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3189, "type": 2, "geometry": [ 9, 5766, 3972, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3190, "type": 2, "geometry": [ 9, 5758, 3978, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3191, "type": 2, "geometry": [ 9, 5768, 3988, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3192, "type": 2, "geometry": [ 9, 5768, 3976, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3193, "type": 2, "geometry": [ 9, 5756, 3974, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3194, "type": 2, "geometry": [ 9, 5770, 3974, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3195, "type": 2, "geometry": [ 9, 5758, 3974, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3196, "type": 2, "geometry": [ 9, 5766, 3974, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3197, "type": 2, "geometry": [ 9, 5764, 3972, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3198, "type": 2, "geometry": [ 9, 5758, 3978, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3199, "type": 2, "geometry": [ 9, 5768, 3970, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3200, "type": 2, "geometry": [ 9, 5758, 3978, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3201, "type": 2, "geometry": [ 9, 5758, 3978, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3202, "type": 2, "geometry": [ 9, 5764, 3972, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3203, "type": 2, "geometry": [ 9, 5770, 3974, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3204, "type": 2, "geometry": [ 9, 5754, 3980, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3205, "type": 2, "geometry": [ 9, 5752, 3976, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3206, "type": 2, "geometry": [ 9, 5754, 3980, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3207, "type": 2, "geometry": [ 9, 5766, 3968, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3208, "type": 2, "geometry": [ 9, 5770, 3974, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3209, "type": 2, "geometry": [ 9, 5754, 3984, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3210, "type": 2, "geometry": [ 9, 5760, 3976, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3211, "type": 2, "geometry": [ 9, 5756, 3998, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3212, "type": 2, "geometry": [ 9, 5766, 3990, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3213, "type": 2, "geometry": [ 9, 5750, 4010, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3214, "type": 2, "geometry": [ 9, 5750, 4004, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3215, "type": 2, "geometry": [ 9, 5772, 3994, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3216, "type": 2, "geometry": [ 9, 5752, 4016, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3217, "type": 2, "geometry": [ 9, 5764, 3994, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3218, "type": 2, "geometry": [ 9, 5752, 4014, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3219, "type": 2, "geometry": [ 9, 5754, 4012, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3220, "type": 2, "geometry": [ 9, 5772, 3994, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3221, "type": 2, "geometry": [ 9, 5768, 4002, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3222, "type": 2, "geometry": [ 9, 5754, 4014, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3223, "type": 2, "geometry": [ 9, 5768, 4006, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3224, "type": 2, "geometry": [ 9, 5770, 3996, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3225, "type": 2, "geometry": [ 9, 5766, 4008, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3226, "type": 2, "geometry": [ 9, 5770, 3996, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3227, "type": 2, "geometry": [ 9, 5762, 3956, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3228, "type": 2, "geometry": [ 9, 5762, 3954, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3229, "type": 2, "geometry": [ 9, 5754, 4010, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3230, "type": 2, "geometry": [ 9, 5770, 3996, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3231, "type": 2, "geometry": [ 9, 5754, 4008, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3232, "type": 2, "geometry": [ 9, 5772, 3994, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3233, "type": 2, "geometry": [ 9, 5762, 3952, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3234, "type": 2, "geometry": [ 9, 5766, 4002, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3235, "type": 2, "geometry": [ 9, 5762, 3956, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3236, "type": 2, "geometry": [ 9, 5754, 3998, 10, 2, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3237, "type": 2, "geometry": [ 9, 5774, 4016, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3238, "type": 2, "geometry": [ 9, 5768, 4016, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3239, "type": 2, "geometry": [ 9, 5766, 4006, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3240, "type": 2, "geometry": [ 9, 5764, 4006, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3241, "type": 2, "geometry": [ 9, 5768, 3990, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3242, "type": 2, "geometry": [ 9, 5756, 3994, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3243, "type": 2, "geometry": [ 9, 5756, 4010, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3244, "type": 2, "geometry": [ 9, 5762, 3956, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3245, "type": 2, "geometry": [ 9, 5754, 4034, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3246, "type": 2, "geometry": [ 9, 5754, 4024, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3247, "type": 2, "geometry": [ 9, 5756, 4032, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3248, "type": 2, "geometry": [ 9, 5760, 4036, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3249, "type": 2, "geometry": [ 9, 5756, 4024, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3250, "type": 2, "geometry": [ 9, 5754, 4044, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3251, "type": 2, "geometry": [ 9, 5768, 4028, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3252, "type": 2, "geometry": [ 9, 5766, 4032, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3253, "type": 2, "geometry": [ 9, 5770, 4028, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3254, "type": 2, "geometry": [ 9, 5756, 4028, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3255, "type": 2, "geometry": [ 9, 5764, 4028, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3256, "type": 2, "geometry": [ 9, 5768, 4018, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3257, "type": 2, "geometry": [ 9, 5764, 4032, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3258, "type": 2, "geometry": [ 9, 5764, 4038, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3259, "type": 2, "geometry": [ 9, 5764, 4042, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3260, "type": 2, "geometry": [ 9, 5770, 4024, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3261, "type": 2, "geometry": [ 9, 5752, 4020, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3262, "type": 2, "geometry": [ 9, 5764, 4040, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3263, "type": 2, "geometry": [ 9, 5754, 4028, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3264, "type": 2, "geometry": [ 9, 5754, 4034, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3265, "type": 2, "geometry": [ 9, 5756, 4020, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3266, "type": 2, "geometry": [ 9, 5768, 4030, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3267, "type": 2, "geometry": [ 9, 5758, 4022, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3268, "type": 2, "geometry": [ 9, 5754, 4042, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3269, "type": 2, "geometry": [ 9, 5768, 4048, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3270, "type": 2, "geometry": [ 9, 5768, 4052, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3271, "type": 2, "geometry": [ 9, 5764, 4050, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3272, "type": 2, "geometry": [ 9, 5768, 4054, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3273, "type": 2, "geometry": [ 9, 5758, 4044, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3274, "type": 2, "geometry": [ 9, 5770, 4046, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3275, "type": 2, "geometry": [ 9, 5766, 4054, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3276, "type": 2, "geometry": [ 9, 5768, 4050, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3277, "type": 2, "geometry": [ 9, 5766, 4054, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3278, "type": 2, "geometry": [ 9, 5764, 4048, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3279, "type": 2, "geometry": [ 9, 5764, 4054, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3280, "type": 2, "geometry": [ 9, 5758, 4046, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3281, "type": 2, "geometry": [ 9, 5768, 4048, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3282, "type": 2, "geometry": [ 9, 5762, 4052, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3283, "type": 2, "geometry": [ 9, 5758, 4046, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3284, "type": 2, "geometry": [ 9, 5768, 4052, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3285, "type": 2, "geometry": [ 9, 5760, 3952, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3286, "type": 2, "geometry": [ 9, 5762, 4110, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3287, "type": 2, "geometry": [ 9, 5766, 4102, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3288, "type": 2, "geometry": [ 9, 5756, 4086, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3289, "type": 2, "geometry": [ 9, 5760, 4076, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3290, "type": 2, "geometry": [ 9, 5760, 4076, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3291, "type": 2, "geometry": [ 9, 5768, 4086, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3292, "type": 2, "geometry": [ 9, 5760, 4090, 10, 2, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3293, "type": 2, "geometry": [ 9, 5754, 4084, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3294, "type": 2, "geometry": [ 9, 5764, 4076, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3295, "type": 2, "geometry": [ 9, 5756, 4088, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3296, "type": 2, "geometry": [ 9, 5764, 4088, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3297, "type": 2, "geometry": [ 9, 5756, 4088, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3298, "type": 2, "geometry": [ 9, 5764, 4080, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3299, "type": 2, "geometry": [ 9, 5764, 4078, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3300, "type": 2, "geometry": [ 9, 5758, 4110, 10, 2, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3301, "type": 2, "geometry": [ 9, 5758, 4090, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3302, "type": 2, "geometry": [ 9, 5768, 4084, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3303, "type": 2, "geometry": [ 9, 5760, 4110, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3304, "type": 2, "geometry": [ 9, 5762, 4108, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3305, "type": 2, "geometry": [ 9, 5760, 4110, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3306, "type": 2, "geometry": [ 9, 6652, 3704, 10, 0, 0, 9, 0, 2, 10, 0, 0, 9, 8, 4, 10, 0, 0, 9, 25, 4, 10, 0, 0, 9, 4, 12, 10, 0, 0, 9, 11, 6, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3307, "type": 2, "geometry": [ 9, 6712, 3840, 10, 0, 0, 9, 15, 2, 10, 0, 0, 9, 36, 6, 10, 1, 0, 9, 0, 2, 10, 0, 0, 9, 29, 8, 10, 0, 0, 9, 1, 0, 10, 0, 0, 9, 2, 0, 10, 0, 0, 9, 1, 4, 10, 0, 0, 9, 7, 4, 10, 0, 0, 9, 8, 8, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3308, "type": 2, "geometry": [ 9, 8038, 4048, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3309, "type": 2, "geometry": [ 9, 7952, 4114, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 3310, "type": 2, "geometry": [ 9, 2238, 4004, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3311, "type": 2, "geometry": [ 9, 38, 3420, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3312, "type": 2, "geometry": [ 9, 38, 3420, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3313, "type": 2, "geometry": [ 9, 1300, 2872, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 3314, "type": 2, "geometry": [ 9, 1302, 2874, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3315, "type": 2, "geometry": [ 9, 1294, 2820, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3316, "type": 2, "geometry": [ 9, 1290, 2818, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3317, "type": 2, "geometry": [ 9, 1518, 3464, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3318, "type": 2, "geometry": [ 9, 5188, 3380, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3319, "type": 2, "geometry": [ 9, 5192, 3390, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 3320, "type": 2, "geometry": [ 9, 5196, 3394, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3321, "type": 2, "geometry": [ 9, 5226, 3448, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3322, "type": 2, "geometry": [ 9, 5240, 3398, 10, 0, 2 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3323, "type": 2, "geometry": [ 9, 5246, 3482, 10, 0, 4 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 3324, "type": 2, "geometry": [ 9, 5294, 3524, 10, 1, 2 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 3325, "type": 2, "geometry": [ 9, 5304, 3460, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3326, "type": 2, "geometry": [ 9, 5312, 3524, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 3327, "type": 2, "geometry": [ 9, 5322, 3528, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 3328, "type": 2, "geometry": [ 9, 5324, 3470, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3329, "type": 2, "geometry": [ 9, 5328, 3526, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3330, "type": 2, "geometry": [ 9, 5330, 3524, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3331, "type": 2, "geometry": [ 9, 5334, 3520, 10, 0, 2 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 3332, "type": 2, "geometry": [ 9, 5336, 3476, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3333, "type": 2, "geometry": [ 9, 5376, 3458, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 3334, "type": 2, "geometry": [ 9, 5378, 3460, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3335, "type": 2, "geometry": [ 9, 5380, 3454, 10, 0, 2 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3336, "type": 2, "geometry": [ 9, 4868, 3464, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3337, "type": 2, "geometry": [ 9, 4870, 3446, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3338, "type": 2, "geometry": [ 9, 4882, 3432, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3339, "type": 2, "geometry": [ 9, 4944, 3612, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3340, "type": 2, "geometry": [ 9, 5014, 3736, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 3341, "type": 2, "geometry": [ 9, 5048, 3702, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 3342, "type": 2, "geometry": [ 9, 5054, 3712, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 3343, "type": 2, "geometry": [ 9, 5068, 3780, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 3344, "type": 2, "geometry": [ 9, 5068, 3772, 10, 0, 2 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 3345, "type": 2, "geometry": [ 9, 5084, 3806, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3346, "type": 2, "geometry": [ 9, 5288, 3816, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3347, "type": 2, "geometry": [ 9, 5304, 3816, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3348, "type": 2, "geometry": [ 9, 5308, 3818, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3349, "type": 2, "geometry": [ 9, 5336, 3808, 26, 1, 0, 25, 0, 26, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 3350, "type": 2, "geometry": [ 9, 5366, 3690, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3351, "type": 2, "geometry": [ 9, 5370, 3690, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3352, "type": 2, "geometry": [ 9, 5436, 3618, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 3353, "type": 2, "geometry": [ 9, 5628, 3532, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3354, "type": 2, "geometry": [ 9, 5738, 3846, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3355, "type": 2, "geometry": [ 9, 5746, 3848, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3356, "type": 2, "geometry": [ 9, 5748, 3854, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3357, "type": 2, "geometry": [ 9, 5750, 3948, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3358, "type": 2, "geometry": [ 9, 5750, 4010, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3359, "type": 2, "geometry": [ 9, 5750, 4004, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3360, "type": 2, "geometry": [ 9, 5750, 3828, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3361, "type": 2, "geometry": [ 9, 5750, 3840, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3362, "type": 2, "geometry": [ 9, 5752, 3838, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 3363, "type": 2, "geometry": [ 9, 5752, 4016, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3364, "type": 2, "geometry": [ 9, 5752, 4016, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3365, "type": 2, "geometry": [ 9, 5752, 4020, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3366, "type": 2, "geometry": [ 9, 5752, 3976, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3367, "type": 2, "geometry": [ 9, 5754, 4028, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3368, "type": 2, "geometry": [ 9, 5754, 4034, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3369, "type": 2, "geometry": [ 9, 5754, 3970, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3370, "type": 2, "geometry": [ 9, 5754, 3932, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3371, "type": 2, "geometry": [ 9, 5754, 3936, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3372, "type": 2, "geometry": [ 9, 5754, 3948, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3373, "type": 2, "geometry": [ 9, 5756, 3938, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3374, "type": 2, "geometry": [ 9, 5756, 3946, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3375, "type": 2, "geometry": [ 9, 5754, 3998, 10, 2, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3376, "type": 2, "geometry": [ 9, 5756, 4010, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3377, "type": 2, "geometry": [ 9, 5756, 3934, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3378, "type": 2, "geometry": [ 9, 5754, 3950, 10, 2, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3379, "type": 2, "geometry": [ 9, 5756, 3974, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3380, "type": 2, "geometry": [ 9, 5756, 3994, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3381, "type": 2, "geometry": [ 9, 5754, 4008, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3382, "type": 2, "geometry": [ 9, 5754, 3970, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3383, "type": 2, "geometry": [ 9, 5754, 3936, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3384, "type": 2, "geometry": [ 9, 5754, 3946, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3385, "type": 2, "geometry": [ 9, 5754, 3984, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3386, "type": 2, "geometry": [ 9, 5754, 3940, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3387, "type": 2, "geometry": [ 9, 5754, 3958, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3388, "type": 2, "geometry": [ 9, 5754, 3934, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3389, "type": 2, "geometry": [ 9, 5754, 4024, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3390, "type": 2, "geometry": [ 9, 5754, 4034, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3391, "type": 2, "geometry": [ 9, 5754, 3948, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3392, "type": 2, "geometry": [ 9, 5754, 3980, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3393, "type": 2, "geometry": [ 9, 5754, 4042, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3394, "type": 2, "geometry": [ 9, 5754, 4014, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3395, "type": 2, "geometry": [ 9, 5754, 3980, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3396, "type": 2, "geometry": [ 9, 5754, 3960, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3397, "type": 2, "geometry": [ 9, 5754, 4084, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3398, "type": 2, "geometry": [ 9, 5754, 4012, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3399, "type": 2, "geometry": [ 9, 5754, 4044, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3400, "type": 2, "geometry": [ 9, 5756, 4010, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3401, "type": 2, "geometry": [ 9, 5756, 4086, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3402, "type": 2, "geometry": [ 9, 5756, 3962, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3403, "type": 2, "geometry": [ 9, 5756, 3964, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3404, "type": 2, "geometry": [ 9, 5756, 3934, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3405, "type": 2, "geometry": [ 9, 5756, 3938, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3406, "type": 2, "geometry": [ 9, 5756, 3962, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3407, "type": 2, "geometry": [ 9, 5756, 3984, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3408, "type": 2, "geometry": [ 9, 5756, 3998, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3409, "type": 2, "geometry": [ 9, 5756, 4024, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3410, "type": 2, "geometry": [ 9, 5756, 4088, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3411, "type": 2, "geometry": [ 9, 5756, 3938, 10, 0, 2 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3412, "type": 2, "geometry": [ 9, 5756, 3970, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3413, "type": 2, "geometry": [ 9, 5756, 3964, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3414, "type": 2, "geometry": [ 9, 5756, 3832, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3415, "type": 2, "geometry": [ 9, 5756, 3966, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3416, "type": 2, "geometry": [ 9, 5756, 4028, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3417, "type": 2, "geometry": [ 9, 5756, 3970, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3418, "type": 2, "geometry": [ 9, 5756, 3968, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3419, "type": 2, "geometry": [ 9, 5756, 3950, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3420, "type": 2, "geometry": [ 9, 5756, 4032, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3421, "type": 2, "geometry": [ 9, 5756, 3944, 10, 0, 2 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3422, "type": 2, "geometry": [ 9, 5756, 3940, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3423, "type": 2, "geometry": [ 9, 5756, 4022, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3424, "type": 2, "geometry": [ 9, 5756, 3954, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3425, "type": 2, "geometry": [ 9, 5756, 4090, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3426, "type": 2, "geometry": [ 9, 5758, 4046, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3427, "type": 2, "geometry": [ 9, 5758, 3948, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3428, "type": 2, "geometry": [ 9, 5758, 3978, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3429, "type": 2, "geometry": [ 9, 5758, 3944, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3430, "type": 2, "geometry": [ 9, 5758, 4022, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3431, "type": 2, "geometry": [ 9, 5758, 3978, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3432, "type": 2, "geometry": [ 9, 5758, 3944, 10, 0, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3433, "type": 2, "geometry": [ 9, 5758, 3952, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3434, "type": 2, "geometry": [ 9, 5758, 3906, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 3435, "type": 2, "geometry": [ 9, 5760, 3938, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3436, "type": 2, "geometry": [ 9, 5758, 3950, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3437, "type": 2, "geometry": [ 9, 5758, 3938, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3438, "type": 2, "geometry": [ 9, 5758, 3942, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3439, "type": 2, "geometry": [ 9, 5758, 4046, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3440, "type": 2, "geometry": [ 9, 5758, 3978, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3441, "type": 2, "geometry": [ 9, 5758, 3938, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3442, "type": 2, "geometry": [ 9, 5758, 4090, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3443, "type": 2, "geometry": [ 9, 5758, 3978, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3444, "type": 2, "geometry": [ 9, 5758, 3974, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3445, "type": 2, "geometry": [ 9, 5758, 4046, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3446, "type": 2, "geometry": [ 9, 5758, 3952, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3447, "type": 2, "geometry": [ 9, 5760, 3976, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3448, "type": 2, "geometry": [ 9, 5760, 4076, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3449, "type": 2, "geometry": [ 9, 5760, 4036, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3450, "type": 2, "geometry": [ 9, 5760, 3942, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3451, "type": 2, "geometry": [ 9, 5760, 4076, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3452, "type": 2, "geometry": [ 9, 5762, 3954, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3453, "type": 2, "geometry": [ 9, 5760, 3936, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3454, "type": 2, "geometry": [ 9, 5760, 3950, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3455, "type": 2, "geometry": [ 9, 5760, 3940, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3456, "type": 2, "geometry": [ 9, 5760, 3950, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3457, "type": 2, "geometry": [ 9, 5760, 3938, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3458, "type": 2, "geometry": [ 9, 5760, 3952, 10, 2, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3459, "type": 2, "geometry": [ 9, 5760, 4090, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3460, "type": 2, "geometry": [ 9, 5762, 3956, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3461, "type": 2, "geometry": [ 9, 5762, 3952, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3462, "type": 2, "geometry": [ 9, 5762, 4052, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3463, "type": 2, "geometry": [ 9, 5762, 3956, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3464, "type": 2, "geometry": [ 9, 5762, 3956, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3465, "type": 2, "geometry": [ 9, 5762, 3954, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3466, "type": 2, "geometry": [ 9, 5762, 3954, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3467, "type": 2, "geometry": [ 9, 5764, 4038, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3468, "type": 2, "geometry": [ 9, 5764, 4050, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3469, "type": 2, "geometry": [ 9, 5764, 3972, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3470, "type": 2, "geometry": [ 9, 5766, 4008, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3471, "type": 2, "geometry": [ 9, 5766, 3960, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3472, "type": 2, "geometry": [ 9, 5766, 4002, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3473, "type": 2, "geometry": [ 9, 5766, 3990, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3474, "type": 2, "geometry": [ 9, 5766, 3972, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3475, "type": 2, "geometry": [ 9, 5766, 3958, 10, 0, 2 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3476, "type": 2, "geometry": [ 9, 5764, 3964, 10, 0, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3477, "type": 2, "geometry": [ 9, 5764, 3994, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3478, "type": 2, "geometry": [ 9, 5764, 3970, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3479, "type": 2, "geometry": [ 9, 5764, 4028, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3480, "type": 2, "geometry": [ 9, 5764, 3972, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3481, "type": 2, "geometry": [ 9, 5764, 4042, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3482, "type": 2, "geometry": [ 9, 5764, 4006, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3483, "type": 2, "geometry": [ 9, 5764, 4032, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3484, "type": 2, "geometry": [ 9, 5764, 4076, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3485, "type": 2, "geometry": [ 9, 5764, 4040, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3486, "type": 2, "geometry": [ 9, 5764, 4054, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3487, "type": 2, "geometry": [ 9, 5764, 4078, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3488, "type": 2, "geometry": [ 9, 5764, 4088, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3489, "type": 2, "geometry": [ 9, 5764, 3964, 10, 2, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3490, "type": 2, "geometry": [ 9, 5764, 4080, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3491, "type": 2, "geometry": [ 9, 5764, 4048, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3492, "type": 2, "geometry": [ 9, 5766, 4054, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3493, "type": 2, "geometry": [ 9, 5766, 4032, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3494, "type": 2, "geometry": [ 9, 5766, 4022, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 3495, "type": 2, "geometry": [ 9, 5766, 4006, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3496, "type": 2, "geometry": [ 9, 5766, 3982, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3497, "type": 2, "geometry": [ 9, 5766, 3962, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3498, "type": 2, "geometry": [ 9, 5768, 3976, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3499, "type": 2, "geometry": [ 9, 5768, 3988, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3500, "type": 2, "geometry": [ 9, 5766, 3968, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3501, "type": 2, "geometry": [ 9, 5766, 4054, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3502, "type": 2, "geometry": [ 9, 5766, 3974, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3503, "type": 2, "geometry": [ 9, 5766, 4006, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3504, "type": 2, "geometry": [ 9, 5768, 4084, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3505, "type": 2, "geometry": [ 9, 5768, 4086, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3506, "type": 2, "geometry": [ 9, 5768, 4054, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3507, "type": 2, "geometry": [ 9, 5768, 4002, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3508, "type": 2, "geometry": [ 9, 5768, 4016, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3509, "type": 2, "geometry": [ 9, 5768, 4018, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3510, "type": 2, "geometry": [ 9, 5768, 3998, 10, 0, 2 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 3511, "type": 2, "geometry": [ 9, 5770, 3974, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3512, "type": 2, "geometry": [ 9, 5768, 3990, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3513, "type": 2, "geometry": [ 9, 5768, 4030, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3514, "type": 2, "geometry": [ 9, 5768, 4050, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3515, "type": 2, "geometry": [ 9, 5768, 4052, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3516, "type": 2, "geometry": [ 9, 5768, 3970, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3517, "type": 2, "geometry": [ 9, 5768, 4048, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3518, "type": 2, "geometry": [ 9, 5768, 4052, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3519, "type": 2, "geometry": [ 9, 5768, 4048, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3520, "type": 2, "geometry": [ 9, 5768, 4028, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3521, "type": 2, "geometry": [ 9, 5770, 4048, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3522, "type": 2, "geometry": [ 9, 5770, 4028, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3523, "type": 2, "geometry": [ 9, 5770, 3996, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3524, "type": 2, "geometry": [ 9, 5770, 3864, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3525, "type": 2, "geometry": [ 9, 5770, 3972, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3526, "type": 2, "geometry": [ 9, 5770, 3996, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3527, "type": 2, "geometry": [ 9, 5770, 4024, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3528, "type": 2, "geometry": [ 9, 5770, 3974, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3529, "type": 2, "geometry": [ 9, 5770, 3996, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3530, "type": 2, "geometry": [ 9, 5770, 3974, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3531, "type": 2, "geometry": [ 9, 5772, 3862, 10, 0, 2 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3532, "type": 2, "geometry": [ 9, 5772, 3996, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3533, "type": 2, "geometry": [ 9, 5772, 3848, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3534, "type": 2, "geometry": [ 9, 5772, 3994, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3535, "type": 2, "geometry": [ 9, 5772, 3994, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3536, "type": 2, "geometry": [ 9, 5774, 4016, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3537, "type": 2, "geometry": [ 9, 5954, 3918, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3538, "type": 2, "geometry": [ 9, 5936, 3730, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3539, "type": 2, "geometry": [ 9, 5912, 3872, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 3540, "type": 2, "geometry": [ 9, 5910, 3888, 10, 2, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 3541, "type": 2, "geometry": [ 9, 5908, 3878, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3542, "type": 2, "geometry": [ 9, 5958, 3936, 58, 0, 4, 23, 18, 21, 25, 3, 23, 10, 23, 24, 10, 12, 24 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 0 } }, { "id": 3543, "type": 2, "geometry": [ 9, 7048, 4198, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3544, "type": 2, "geometry": [ 9, 7002, 4216, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3545, "type": 2, "geometry": [ 9, 7002, 4218, 10, 2, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3546, "type": 2, "geometry": [ 9, 6998, 4220, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3547, "type": 2, "geometry": [ 9, 6998, 4220, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3548, "type": 2, "geometry": [ 9, 7550, 4330, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3549, "type": 2, "geometry": [ 9, 7550, 4332, 10, 2, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3550, "type": 2, "geometry": [ 9, 7556, 4334, 10, 0, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3551, "type": 2, "geometry": [ 9, 6976, 3968, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3552, "type": 2, "geometry": [ 9, 6824, 3892, 10, 2, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3553, "type": 2, "geometry": [ 9, 6824, 3892, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3554, "type": 2, "geometry": [ 9, 6824, 3892, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3555, "type": 2, "geometry": [ 9, 6824, 3892, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3556, "type": 2, "geometry": [ 9, 6870, 3604, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3557, "type": 2, "geometry": [ 9, 6870, 3604, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3558, "type": 2, "geometry": [ 9, 7014, 3434, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3559, "type": 2, "geometry": [ 9, 7040, 3356, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3560, "type": 2, "geometry": [ 9, 7276, 3314, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3561, "type": 2, "geometry": [ 9, 7282, 3340, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3562, "type": 2, "geometry": [ 9, 7282, 3340, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3563, "type": 2, "geometry": [ 9, 7264, 3282, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3564, "type": 2, "geometry": [ 9, 7936, 4376, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3565, "type": 2, "geometry": [ 9, 4400, 3076, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3566, "type": 2, "geometry": [ 9, 4628, 3190, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3567, "type": 2, "geometry": [ 9, 4638, 3192, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3568, "type": 2, "geometry": [ 9, 2652, 3664, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3569, "type": 2, "geometry": [ 9, 2554, 3818, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3570, "type": 2, "geometry": [ 9, 2554, 3818, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3571, "type": 2, "geometry": [ 9, 2554, 3818, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3572, "type": 2, "geometry": [ 9, 2554, 3820, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3573, "type": 2, "geometry": [ 9, 2554, 3820, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3574, "type": 2, "geometry": [ 9, 3734, 3374, 10, 0, 2 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3575, "type": 2, "geometry": [ 9, 3730, 3378, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3576, "type": 2, "geometry": [ 9, 7944, 3966, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3577, "type": 2, "geometry": [ 9, 7904, 3906, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3578, "type": 2, "geometry": [ 9, 76, 4076, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3579, "type": 2, "geometry": [ 9, 124, 4202, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 3580, "type": 2, "geometry": [ 9, 124, 4202, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 3581, "type": 2, "geometry": [ 9, 80, 4090, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3582, "type": 2, "geometry": [ 9, 124, 4202, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 3583, "type": 2, "geometry": [ 9, 202, 4348, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3584, "type": 2, "geometry": [ 9, 86, 4616, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3585, "type": 2, "geometry": [ 9, 86, 4616, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3586, "type": 2, "geometry": [ 9, 1120, 4656, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3587, "type": 2, "geometry": [ 9, 2002, 4058, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3588, "type": 2, "geometry": [ 9, 2006, 4064, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3589, "type": 2, "geometry": [ 9, 2006, 4064, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3590, "type": 2, "geometry": [ 9, 2556, 3820, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3591, "type": 2, "geometry": [ 9, 3426, 4074, 10, 0, 2 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3592, "type": 2, "geometry": [ 9, 3452, 5670, 10, 2, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3593, "type": 2, "geometry": [ 9, 4442, 3136, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3594, "type": 2, "geometry": [ 9, 4394, 3138, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3595, "type": 2, "geometry": [ 9, 4426, 3142, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3596, "type": 2, "geometry": [ 9, 4422, 3144, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3597, "type": 2, "geometry": [ 9, 4388, 3220, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3598, "type": 2, "geometry": [ 9, 5014, 4616, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3599, "type": 2, "geometry": [ 9, 5860, 5052, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3600, "type": 2, "geometry": [ 9, 6948, 4046, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3601, "type": 2, "geometry": [ 9, 6972, 4064, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3602, "type": 2, "geometry": [ 9, 6720, 3860, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3603, "type": 2, "geometry": [ 9, 6850, 3784, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3604, "type": 2, "geometry": [ 9, 6864, 3798, 10, 2, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3605, "type": 2, "geometry": [ 9, 6858, 3566, 10, 2, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3606, "type": 2, "geometry": [ 9, 7266, 3054, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3607, "type": 2, "geometry": [ 9, 7096, 3180, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3608, "type": 2, "geometry": [ 9, 7272, 3274, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3609, "type": 2, "geometry": [ 9, 7288, 3366, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3610, "type": 2, "geometry": [ 9, 7052, 3356, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3611, "type": 2, "geometry": [ 9, 7042, 3382, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3612, "type": 2, "geometry": [ 9, 7052, 3380, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3613, "type": 2, "geometry": [ 9, 7044, 3394, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3614, "type": 2, "geometry": [ 9, 6990, 3466, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3615, "type": 2, "geometry": [ 9, 7018, 3456, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3616, "type": 2, "geometry": [ 9, 7082, 3484, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3617, "type": 2, "geometry": [ 9, 7314, 3526, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3618, "type": 2, "geometry": [ 9, 7292, 3872, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3619, "type": 2, "geometry": [ 9, 7080, 4026, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3620, "type": 2, "geometry": [ 9, 7082, 4070, 10, 0, 2 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3621, "type": 2, "geometry": [ 9, 7082, 4072, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3622, "type": 2, "geometry": [ 9, 7386, 4174, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3623, "type": 2, "geometry": [ 9, 7152, 4078, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3624, "type": 2, "geometry": [ 9, 7046, 4268, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3625, "type": 2, "geometry": [ 9, 7054, 4272, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3626, "type": 2, "geometry": [ 9, 7054, 4272, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3627, "type": 2, "geometry": [ 9, 7054, 4240, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3628, "type": 2, "geometry": [ 9, 7042, 4250, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3629, "type": 2, "geometry": [ 9, 7034, 4254, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3630, "type": 2, "geometry": [ 9, 7098, 4216, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3631, "type": 2, "geometry": [ 9, 7642, 4498, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3632, "type": 2, "geometry": [ 9, 7608, 4582, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3633, "type": 2, "geometry": [ 9, 7608, 4584, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3634, "type": 2, "geometry": [ 9, 7866, 4334, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3635, "type": 2, "geometry": [ 9, 7750, 4276, 10, 0, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3636, "type": 2, "geometry": [ 9, 7616, 4074, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3637, "type": 2, "geometry": [ 9, 7618, 4072, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3638, "type": 2, "geometry": [ 9, 7618, 4074, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3639, "type": 2, "geometry": [ 9, 7618, 4008, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3640, "type": 2, "geometry": [ 9, 7620, 4010, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3641, "type": 2, "geometry": [ 9, 7984, 3860, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3642, "type": 2, "geometry": [ 9, 7598, 3524, 10, 0, 2 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3643, "type": 2, "geometry": [ 9, 8188, 4308, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3644, "type": 2, "geometry": [ 9, 8188, 4310, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3645, "type": 2, "geometry": [ 9, 7894, 6920, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3646, "type": 2, "geometry": [ 9, 2646, 3734, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3647, "type": 2, "geometry": [ 9, 7372, 4168, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3648, "type": 2, "geometry": [ 9, 6966, 3242, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3649, "type": 2, "geometry": [ 9, 6992, 3270, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3650, "type": 2, "geometry": [ 9, 6968, 3246, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3651, "type": 2, "geometry": [ 9, 2284, 3544, 10, 0, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3652, "type": 2, "geometry": [ 9, 2290, 3494, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3653, "type": 2, "geometry": [ 9, 2292, 3494, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3654, "type": 2, "geometry": [ 9, 2286, 3544, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3655, "type": 2, "geometry": [ 9, 2576, 3822, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3656, "type": 2, "geometry": [ 9, 2576, 3826, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3657, "type": 2, "geometry": [ 9, 3784, 2484, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3658, "type": 2, "geometry": [ 9, 5212, 1918, 10, 5, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3659, "type": 2, "geometry": [ 9, 6578, 3606, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3660, "type": 2, "geometry": [ 9, 3686, 2044, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3661, "type": 2, "geometry": [ 9, 3692, 2198, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3662, "type": 2, "geometry": [ 9, 3950, 2268, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3663, "type": 2, "geometry": [ 9, 3944, 2272, 10, 1, 3 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3664, "type": 2, "geometry": [ 9, 3946, 2270, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3665, "type": 2, "geometry": [ 9, 3952, 2270, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3666, "type": 2, "geometry": [ 9, 3922, 2278, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3667, "type": 2, "geometry": [ 9, 4074, 2360, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3668, "type": 2, "geometry": [ 9, 4070, 2370, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3669, "type": 2, "geometry": [ 9, 4048, 2370, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3670, "type": 2, "geometry": [ 9, 4066, 2374, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3671, "type": 2, "geometry": [ 9, 3876, 2664, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3672, "type": 2, "geometry": [ 9, 3860, 2708, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3673, "type": 2, "geometry": [ 9, 3872, 2718, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3674, "type": 2, "geometry": [ 9, 3950, 2778, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3675, "type": 2, "geometry": [ 9, 3952, 2780, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3676, "type": 2, "geometry": [ 9, 4046, 2786, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3677, "type": 2, "geometry": [ 9, 4042, 2796, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3678, "type": 2, "geometry": [ 9, 3988, 2734, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3679, "type": 2, "geometry": [ 9, 4362, 2124, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3680, "type": 2, "geometry": [ 9, 4354, 2150, 10, 0, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 3681, "type": 2, "geometry": [ 9, 4356, 2152, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 3682, "type": 2, "geometry": [ 9, 4320, 2182, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3683, "type": 2, "geometry": [ 9, 4304, 2202, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3684, "type": 2, "geometry": [ 9, 4284, 2226, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3685, "type": 2, "geometry": [ 9, 4222, 2268, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3686, "type": 2, "geometry": [ 9, 4224, 2268, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3687, "type": 2, "geometry": [ 9, 4212, 2282, 10, 0, 2 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3688, "type": 2, "geometry": [ 9, 4202, 2330, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3689, "type": 2, "geometry": [ 9, 4208, 2338, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3690, "type": 2, "geometry": [ 9, 4216, 2374, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3691, "type": 2, "geometry": [ 9, 4214, 2372, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3692, "type": 2, "geometry": [ 9, 4344, 2418, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3693, "type": 2, "geometry": [ 9, 4346, 2420, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3694, "type": 2, "geometry": [ 9, 4292, 2608, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3695, "type": 2, "geometry": [ 9, 4612, 2092, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3696, "type": 2, "geometry": [ 9, 4636, 2090, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3697, "type": 2, "geometry": [ 9, 4618, 2092, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3698, "type": 2, "geometry": [ 9, 4608, 2098, 10, 2, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3699, "type": 2, "geometry": [ 9, 4608, 2100, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3700, "type": 2, "geometry": [ 9, 4600, 2104, 10, 2, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3701, "type": 2, "geometry": [ 9, 4610, 2102, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3702, "type": 2, "geometry": [ 9, 4600, 2108, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3703, "type": 2, "geometry": [ 9, 4604, 2106, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3704, "type": 2, "geometry": [ 9, 4614, 2196, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3705, "type": 2, "geometry": [ 9, 4570, 2196, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3706, "type": 2, "geometry": [ 9, 4570, 2200, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3707, "type": 2, "geometry": [ 9, 4594, 2218, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3708, "type": 2, "geometry": [ 9, 4598, 2222, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3709, "type": 2, "geometry": [ 9, 4596, 2218, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3710, "type": 2, "geometry": [ 9, 4508, 2250, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3711, "type": 2, "geometry": [ 9, 4660, 1758, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3712, "type": 2, "geometry": [ 9, 4590, 1806, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3713, "type": 2, "geometry": [ 9, 4532, 1818, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 3714, "type": 2, "geometry": [ 9, 4540, 1826, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3715, "type": 2, "geometry": [ 9, 4570, 1828, 10, 0, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3716, "type": 2, "geometry": [ 9, 4520, 1830, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3717, "type": 2, "geometry": [ 9, 4546, 1832, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3718, "type": 2, "geometry": [ 9, 4566, 1840, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3719, "type": 2, "geometry": [ 9, 4436, 1904, 10, 0, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3720, "type": 2, "geometry": [ 9, 4440, 1960, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3721, "type": 2, "geometry": [ 9, 4458, 1958, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 3722, "type": 2, "geometry": [ 9, 4444, 1962, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 3723, "type": 2, "geometry": [ 9, 4390, 2050, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3724, "type": 2, "geometry": [ 9, 4388, 2060, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3725, "type": 2, "geometry": [ 9, 4700, 2358, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3726, "type": 2, "geometry": [ 9, 4580, 2360, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3727, "type": 2, "geometry": [ 9, 4600, 2360, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3728, "type": 2, "geometry": [ 9, 4602, 2362, 10, 0, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 3729, "type": 2, "geometry": [ 9, 4568, 2364, 10, 0, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3730, "type": 2, "geometry": [ 9, 4744, 2362, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3731, "type": 2, "geometry": [ 9, 4748, 2364, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3732, "type": 2, "geometry": [ 9, 4594, 2366, 10, 2, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3733, "type": 2, "geometry": [ 9, 4596, 2364, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3734, "type": 2, "geometry": [ 9, 4566, 2368, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3735, "type": 2, "geometry": [ 9, 4522, 2368, 10, 1, 2 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3736, "type": 2, "geometry": [ 9, 4602, 2370, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 3737, "type": 2, "geometry": [ 9, 4566, 2372, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3738, "type": 2, "geometry": [ 9, 4596, 2372, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3739, "type": 2, "geometry": [ 9, 4618, 2372, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3740, "type": 2, "geometry": [ 9, 4710, 2376, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3741, "type": 2, "geometry": [ 9, 4562, 2376, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 3742, "type": 2, "geometry": [ 9, 4616, 2374, 10, 0, 2 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 3 } }, { "id": 3743, "type": 2, "geometry": [ 9, 4560, 2376, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 3744, "type": 2, "geometry": [ 9, 4564, 2376, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 3745, "type": 2, "geometry": [ 9, 4730, 2378, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3746, "type": 2, "geometry": [ 9, 4772, 2378, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3747, "type": 2, "geometry": [ 9, 4640, 2380, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3748, "type": 2, "geometry": [ 9, 4572, 2380, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3749, "type": 2, "geometry": [ 9, 4570, 2382, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3750, "type": 2, "geometry": [ 9, 4528, 2386, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3751, "type": 2, "geometry": [ 9, 4524, 2396, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3752, "type": 2, "geometry": [ 9, 4526, 2394, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3753, "type": 2, "geometry": [ 9, 4652, 2396, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3754, "type": 2, "geometry": [ 9, 4520, 2400, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 3755, "type": 2, "geometry": [ 9, 4526, 2404, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3756, "type": 2, "geometry": [ 9, 4524, 2404, 10, 0, 2 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3757, "type": 2, "geometry": [ 9, 4526, 2406, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3758, "type": 2, "geometry": [ 9, 4508, 2406, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3759, "type": 2, "geometry": [ 9, 4520, 2408, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3760, "type": 2, "geometry": [ 9, 4522, 2410, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3761, "type": 2, "geometry": [ 9, 4520, 2414, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3762, "type": 2, "geometry": [ 9, 4516, 2418, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 3763, "type": 2, "geometry": [ 9, 4498, 2424, 10, 0, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3764, "type": 2, "geometry": [ 9, 4510, 2422, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3765, "type": 2, "geometry": [ 9, 4512, 2424, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3766, "type": 2, "geometry": [ 9, 4494, 1892, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3767, "type": 2, "geometry": [ 9, 4480, 2452, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3768, "type": 2, "geometry": [ 9, 4478, 2454, 10, 0, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3769, "type": 2, "geometry": [ 9, 4624, 2474, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3770, "type": 2, "geometry": [ 9, 4452, 2546, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3771, "type": 2, "geometry": [ 9, 5310, 1744, 10, 3, 3 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3772, "type": 2, "geometry": [ 9, 5234, 1900, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3773, "type": 2, "geometry": [ 9, 5346, 1902, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3774, "type": 2, "geometry": [ 9, 5228, 1904, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3775, "type": 2, "geometry": [ 9, 5224, 1908, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3776, "type": 2, "geometry": [ 9, 5330, 1908, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3777, "type": 2, "geometry": [ 9, 5322, 1938, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3778, "type": 2, "geometry": [ 9, 5332, 1940, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3779, "type": 2, "geometry": [ 9, 4920, 2122, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3780, "type": 2, "geometry": [ 9, 4914, 2128, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3781, "type": 2, "geometry": [ 9, 5008, 2146, 10, 2, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3782, "type": 2, "geometry": [ 9, 5006, 2144, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3783, "type": 2, "geometry": [ 9, 5016, 2154, 10, 0, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3784, "type": 2, "geometry": [ 9, 5424, 694, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3785, "type": 2, "geometry": [ 9, 5474, 740, 10, 1, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3786, "type": 2, "geometry": [ 9, 5454, 752, 10, 13, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3787, "type": 2, "geometry": [ 9, 5342, 856, 10, 4, 2 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3788, "type": 2, "geometry": [ 9, 5342, 860, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3789, "type": 2, "geometry": [ 9, 5346, 864, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3790, "type": 2, "geometry": [ 9, 5358, 876, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 3791, "type": 2, "geometry": [ 9, 5334, 880, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3792, "type": 2, "geometry": [ 9, 5464, 896, 10, 1, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3793, "type": 2, "geometry": [ 9, 5434, 930, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3794, "type": 2, "geometry": [ 9, 5610, 1770, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3795, "type": 2, "geometry": [ 9, 5610, 1796, 10, 0, 3 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 3796, "type": 2, "geometry": [ 9, 5616, 1806, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3797, "type": 2, "geometry": [ 9, 5628, 1860, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 3798, "type": 2, "geometry": [ 9, 5624, 1870, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3799, "type": 2, "geometry": [ 9, 6190, 1198, 10, 1, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3800, "type": 2, "geometry": [ 9, 7660, 1252, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3801, "type": 2, "geometry": [ 9, 7574, 1346, 10, 0, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 3802, "type": 2, "geometry": [ 9, 6932, 3114, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3803, "type": 2, "geometry": [ 9, 6932, 3114, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3804, "type": 2, "geometry": [ 9, 6898, 3128, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3805, "type": 2, "geometry": [ 9, 6846, 3148, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3806, "type": 2, "geometry": [ 9, 6844, 3150, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3807, "type": 2, "geometry": [ 9, 6842, 3154, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3808, "type": 2, "geometry": [ 9, 6842, 3160, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3809, "type": 2, "geometry": [ 9, 6840, 3160, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3810, "type": 2, "geometry": [ 9, 6842, 3160, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3811, "type": 2, "geometry": [ 9, 6932, 3164, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3812, "type": 2, "geometry": [ 9, 6940, 3164, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3813, "type": 2, "geometry": [ 9, 6942, 3166, 10, 2, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3814, "type": 2, "geometry": [ 9, 6946, 3166, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3815, "type": 2, "geometry": [ 9, 6956, 3168, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3816, "type": 2, "geometry": [ 9, 6972, 3174, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3817, "type": 2, "geometry": [ 9, 6976, 3180, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3818, "type": 2, "geometry": [ 9, 6974, 3180, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3819, "type": 2, "geometry": [ 9, 6964, 3182, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3820, "type": 2, "geometry": [ 9, 6968, 3228, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3821, "type": 2, "geometry": [ 9, 7026, 3244, 10, 0, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3822, "type": 2, "geometry": [ 9, 7010, 3248, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 3823, "type": 2, "geometry": [ 9, 6964, 3248, 10, 0, 2 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 3824, "type": 2, "geometry": [ 9, 6966, 3250, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 3825, "type": 2, "geometry": [ 9, 6966, 3252, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 3826, "type": 2, "geometry": [ 9, 6950, 3252, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3827, "type": 2, "geometry": [ 9, 6964, 3256, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3828, "type": 2, "geometry": [ 9, 6964, 3256, 10, 0, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3829, "type": 2, "geometry": [ 9, 7002, 3258, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3830, "type": 2, "geometry": [ 9, 6998, 3260, 10, 1, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3831, "type": 2, "geometry": [ 9, 6980, 3262, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 3832, "type": 2, "geometry": [ 9, 6964, 3262, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3833, "type": 2, "geometry": [ 9, 7106, 3264, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3834, "type": 2, "geometry": [ 9, 7120, 3264, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3835, "type": 2, "geometry": [ 9, 6976, 3266, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3836, "type": 2, "geometry": [ 9, 6982, 3266, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3837, "type": 2, "geometry": [ 9, 7124, 3266, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3838, "type": 2, "geometry": [ 9, 6976, 3266, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3839, "type": 2, "geometry": [ 9, 6942, 3270, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3840, "type": 2, "geometry": [ 9, 7114, 3272, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3841, "type": 2, "geometry": [ 9, 7034, 3290, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3842, "type": 2, "geometry": [ 9, 7028, 3304, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3843, "type": 2, "geometry": [ 9, 7064, 3310, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3844, "type": 2, "geometry": [ 9, 7058, 3318, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3845, "type": 2, "geometry": [ 9, 7052, 3330, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3846, "type": 2, "geometry": [ 9, 6970, 3248, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3847, "type": 2, "geometry": [ 9, 6980, 3260, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3848, "type": 2, "geometry": [ 9, 6982, 3262, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3849, "type": 2, "geometry": [ 9, 6978, 3268, 10, 0, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3850, "type": 2, "geometry": [ 9, 7032, 3302, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3851, "type": 2, "geometry": [ 9, 7030, 3302, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3852, "type": 2, "geometry": [ 9, 6866, 3342, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3853, "type": 2, "geometry": [ 9, 6880, 3372, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3854, "type": 2, "geometry": [ 9, 6870, 3380, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3855, "type": 2, "geometry": [ 9, 6878, 3384, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3856, "type": 2, "geometry": [ 9, 6868, 3402, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3857, "type": 2, "geometry": [ 9, 6850, 3432, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3858, "type": 2, "geometry": [ 9, 6852, 3434, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3859, "type": 2, "geometry": [ 9, 6994, 3476, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3860, "type": 2, "geometry": [ 9, 6818, 3480, 10, 1, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3861, "type": 2, "geometry": [ 9, 6810, 3492, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 3862, "type": 2, "geometry": [ 9, 6816, 3502, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3863, "type": 2, "geometry": [ 9, 6944, 3512, 10, 0, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3864, "type": 2, "geometry": [ 9, 7214, 3184, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3865, "type": 2, "geometry": [ 9, 7138, 3260, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3866, "type": 2, "geometry": [ 9, 7116, 3266, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3867, "type": 2, "geometry": [ 9, 7112, 3306, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3868, "type": 2, "geometry": [ 9, 6884, 3360, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3869, "type": 2, "geometry": [ 9, 7108, 3014, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3870, "type": 2, "geometry": [ 9, 6672, 3584, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3871, "type": 2, "geometry": [ 9, 6826, 3720, 10, 0, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3872, "type": 2, "geometry": [ 9, 6880, 3756, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3873, "type": 2, "geometry": [ 9, 6912, 3788, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3874, "type": 2, "geometry": [ 9, 6914, 3790, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3875, "type": 2, "geometry": [ 9, 6918, 3790, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3876, "type": 2, "geometry": [ 9, 6920, 3792, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3877, "type": 2, "geometry": [ 9, 6584, 3806, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3878, "type": 2, "geometry": [ 9, 6920, 3810, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3879, "type": 2, "geometry": [ 9, 6852, 3816, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 1 } }, { "id": 3880, "type": 2, "geometry": [ 9, 6446, 3852, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3881, "type": 2, "geometry": [ 9, 6930, 3864, 10, 0, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3882, "type": 2, "geometry": [ 9, 6914, 3874, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3883, "type": 2, "geometry": [ 9, 6846, 3964, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3884, "type": 2, "geometry": [ 9, 6846, 3964, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3885, "type": 2, "geometry": [ 9, 6948, 3972, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3886, "type": 2, "geometry": [ 9, 6822, 3980, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3887, "type": 2, "geometry": [ 9, 6822, 3984, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3888, "type": 2, "geometry": [ 9, 6944, 4054, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3889, "type": 2, "geometry": [ 9, 6822, 3986, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3890, "type": 2, "geometry": [ 9, 6400, 4026, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3891, "type": 2, "geometry": [ 9, 6478, 4078, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3892, "type": 2, "geometry": [ 9, 7052, 4104, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3893, "type": 2, "geometry": [ 9, 6908, 4132, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 3894, "type": 2, "geometry": [ 9, 7134, 4152, 10, 0, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3895, "type": 2, "geometry": [ 9, 7508, 4134, 10, 0, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3896, "type": 2, "geometry": [ 9, 7362, 4172, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3897, "type": 2, "geometry": [ 9, 7536, 4206, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3898, "type": 2, "geometry": [ 9, 7160, 4244, 10, 0, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 3899, "type": 2, "geometry": [ 9, 6732, 4258, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3900, "type": 2, "geometry": [ 9, 7364, 4278, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3901, "type": 2, "geometry": [ 9, 7364, 4280, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3902, "type": 2, "geometry": [ 9, 7364, 4286, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3903, "type": 2, "geometry": [ 9, 7368, 4290, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3904, "type": 2, "geometry": [ 9, 7344, 4310, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3905, "type": 2, "geometry": [ 9, 7432, 4530, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3906, "type": 2, "geometry": [ 9, 6400, 4026, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 3907, "type": 2, "geometry": [ 9, 6476, 4076, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3908, "type": 2, "geometry": [ 9, 5316, 3464, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3909, "type": 2, "geometry": [ 9, 5366, 3464, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3910, "type": 2, "geometry": [ 9, 5336, 3484, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3911, "type": 2, "geometry": [ 9, 5286, 3518, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3912, "type": 2, "geometry": [ 9, 5332, 3522, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3913, "type": 2, "geometry": [ 9, 4926, 3488, 10, 0, 2 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 3914, "type": 2, "geometry": [ 9, 4930, 3492, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 3915, "type": 2, "geometry": [ 9, 4934, 3494, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3916, "type": 2, "geometry": [ 9, 4936, 3496, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 3917, "type": 2, "geometry": [ 9, 4932, 3494, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 3918, "type": 2, "geometry": [ 9, 4934, 3494, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3919, "type": 2, "geometry": [ 9, 4938, 3496, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3920, "type": 2, "geometry": [ 9, 5008, 3724, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 3921, "type": 2, "geometry": [ 9, 5066, 3740, 10, 0, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 3922, "type": 2, "geometry": [ 9, 4420, 2956, 10, 1, 2 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3923, "type": 2, "geometry": [ 9, 4432, 2966, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3924, "type": 2, "geometry": [ 9, 4430, 2968, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3925, "type": 2, "geometry": [ 9, 4706, 3184, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3926, "type": 2, "geometry": [ 9, 4714, 3198, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3927, "type": 2, "geometry": [ 9, 4324, 3022, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3928, "type": 2, "geometry": [ 9, 4330, 3030, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3929, "type": 2, "geometry": [ 9, 4310, 3064, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3930, "type": 2, "geometry": [ 9, 4310, 3064, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3931, "type": 2, "geometry": [ 9, 4370, 3160, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3932, "type": 2, "geometry": [ 9, 4382, 3230, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3933, "type": 2, "geometry": [ 9, 4422, 1994, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3934, "type": 2, "geometry": [ 9, 4578, 2238, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3935, "type": 2, "geometry": [ 9, 4574, 2356, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3936, "type": 2, "geometry": [ 9, 4586, 2366, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3937, "type": 2, "geometry": [ 9, 4584, 2302, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3938, "type": 2, "geometry": [ 9, 4582, 2324, 10, 0, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3939, "type": 2, "geometry": [ 9, 4578, 2338, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3940, "type": 2, "geometry": [ 9, 4606, 2384, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3941, "type": 2, "geometry": [ 9, 3676, 2076, 10, 0, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3942, "type": 2, "geometry": [ 9, 3634, 2212, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3943, "type": 2, "geometry": [ 9, 2736, 2914, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3944, "type": 2, "geometry": [ 9, 2494, 2866, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3945, "type": 2, "geometry": [ 9, 2266, 2392, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3946, "type": 2, "geometry": [ 9, 2262, 2418, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3947, "type": 2, "geometry": [ 9, 2300, 2430, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3948, "type": 2, "geometry": [ 9, 2306, 2432, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3949, "type": 2, "geometry": [ 9, 2348, 2494, 10, 0, 2 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3950, "type": 2, "geometry": [ 9, 2312, 2496, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3951, "type": 2, "geometry": [ 9, 2350, 2506, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3952, "type": 2, "geometry": [ 9, 2352, 2522, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3953, "type": 2, "geometry": [ 9, 2302, 2522, 10, 0, 2 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3954, "type": 2, "geometry": [ 9, 2324, 2538, 10, 0, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3955, "type": 2, "geometry": [ 9, 2348, 2544, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3956, "type": 2, "geometry": [ 9, 2250, 2616, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3957, "type": 2, "geometry": [ 9, 2284, 2684, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3958, "type": 2, "geometry": [ 9, 2304, 2688, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3959, "type": 2, "geometry": [ 9, 2288, 2696, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3960, "type": 2, "geometry": [ 9, 2296, 2700, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3961, "type": 2, "geometry": [ 9, 2192, 2072, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3962, "type": 2, "geometry": [ 9, 2192, 2074, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3963, "type": 2, "geometry": [ 9, 100, 1738, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3964, "type": 2, "geometry": [ 9, 332, 2052, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3965, "type": 2, "geometry": [ 9, 346, 2046, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3966, "type": 2, "geometry": [ 9, 332, 2052, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3967, "type": 2, "geometry": [ 9, 324, 2056, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3968, "type": 2, "geometry": [ 9, 330, 2052, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3969, "type": 2, "geometry": [ 9, 320, 2058, 10, 1, 2 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 3970, "type": 2, "geometry": [ 9, 316, 2062, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 3971, "type": 2, "geometry": [ 9, 312, 2064, 10, 1, 2 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3972, "type": 2, "geometry": [ 9, 298, 2074, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3973, "type": 2, "geometry": [ 9, 280, 2088, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3974, "type": 2, "geometry": [ 9, 278, 2088, 10, 1, 2 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3975, "type": 2, "geometry": [ 9, 252, 2088, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3976, "type": 2, "geometry": [ 9, 272, 2132, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3977, "type": 2, "geometry": [ 9, 170, 2150, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3978, "type": 2, "geometry": [ 9, 318, 2282, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3979, "type": 2, "geometry": [ 9, 748, 2336, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3980, "type": 2, "geometry": [ 9, 156, 2348, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3981, "type": 2, "geometry": [ 9, 742, 2364, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3982, "type": 2, "geometry": [ 9, 624, 2372, 10, 0, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3983, "type": 2, "geometry": [ 9, 766, 2402, 10, 1, 2 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3984, "type": 2, "geometry": [ 9, 446, 2434, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3985, "type": 2, "geometry": [ 9, 448, 2436, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3986, "type": 2, "geometry": [ 9, 628, 2470, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3987, "type": 2, "geometry": [ 9, 594, 2488, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3988, "type": 2, "geometry": [ 9, 504, 2536, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3989, "type": 2, "geometry": [ 9, 528, 2542, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3990, "type": 2, "geometry": [ 9, 530, 2548, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3991, "type": 2, "geometry": [ 9, 470, 2558, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3992, "type": 2, "geometry": [ 9, 454, 2578, 10, 1, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3993, "type": 2, "geometry": [ 9, 418, 2580, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3994, "type": 2, "geometry": [ 9, 424, 2582, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3995, "type": 2, "geometry": [ 9, 466, 2598, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3996, "type": 2, "geometry": [ 9, 316, 2630, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3997, "type": 2, "geometry": [ 9, 350, 2232, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3998, "type": 2, "geometry": [ 9, 676, 2324, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 3999, "type": 2, "geometry": [ 9, 618, 2454, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 4000, "type": 2, "geometry": [ 9, 620, 2468, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 4001, "type": 2, "geometry": [ 9, 1070, 2620, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 4002, "type": 2, "geometry": [ 9, 1086, 2668, 10, 3, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 4003, "type": 2, "geometry": [ 9, 1098, 2674, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 1 } }, { "id": 4004, "type": 2, "geometry": [ 9, 1192, 2738, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 4005, "type": 2, "geometry": [ 9, 1186, 2744, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 4006, "type": 2, "geometry": [ 9, 1208, 2754, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 4007, "type": 2, "geometry": [ 9, 1218, 2754, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 4008, "type": 2, "geometry": [ 9, 1216, 2756, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 4009, "type": 2, "geometry": [ 9, 1234, 2762, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 4010, "type": 2, "geometry": [ 9, 1242, 2760, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 4011, "type": 2, "geometry": [ 9, 1240, 2762, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 4012, "type": 2, "geometry": [ 9, 1256, 2770, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 4013, "type": 2, "geometry": [ 9, 1200, 2776, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 4014, "type": 2, "geometry": [ 9, 1258, 2794, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 4015, "type": 2, "geometry": [ 9, 1260, 2794, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 4016, "type": 2, "geometry": [ 9, 1268, 2794, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 4017, "type": 2, "geometry": [ 9, 1288, 2800, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 4018, "type": 2, "geometry": [ 9, 1228, 2806, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 4019, "type": 2, "geometry": [ 9, 1280, 2806, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 4020, "type": 2, "geometry": [ 9, 1304, 2824, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 4021, "type": 2, "geometry": [ 9, 1290, 2826, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 4022, "type": 2, "geometry": [ 9, 1304, 2826, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 4023, "type": 2, "geometry": [ 9, 2072, 3374, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 4024, "type": 2, "geometry": [ 9, 2060, 3374, 10, 0, 2 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 4025, "type": 2, "geometry": [ 9, 2064, 3380, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 4026, "type": 2, "geometry": [ 9, 2064, 3380, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 4027, "type": 2, "geometry": [ 9, 2068, 3390, 10, 0, 2 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 4028, "type": 2, "geometry": [ 9, 2048, 3394, 10, 0, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 4029, "type": 2, "geometry": [ 9, 2048, 3398, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 4030, "type": 2, "geometry": [ 9, 2038, 3404, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 4031, "type": 2, "geometry": [ 9, 2032, 3404, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 4032, "type": 2, "geometry": [ 9, 2070, 3388, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 4033, "type": 2, "geometry": [ 9, 2072, 3388, 10, 0, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 4034, "type": 2, "geometry": [ 9, 2036, 3398, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 4035, "type": 2, "geometry": [ 9, 2240, 3484, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 4036, "type": 2, "geometry": [ 9, 2236, 3484, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 4037, "type": 2, "geometry": [ 9, 2242, 3486, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 4038, "type": 2, "geometry": [ 9, 2244, 3486, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 4039, "type": 2, "geometry": [ 9, 2250, 3498, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 4040, "type": 2, "geometry": [ 9, 2250, 3500, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 4041, "type": 2, "geometry": [ 9, 2260, 3508, 10, 0, 2 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 4042, "type": 2, "geometry": [ 9, 2258, 3510, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 4043, "type": 2, "geometry": [ 9, 2244, 3514, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 4044, "type": 2, "geometry": [ 9, 2240, 3516, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 4045, "type": 2, "geometry": [ 9, 2242, 3516, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 4046, "type": 2, "geometry": [ 9, 2246, 3516, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 4047, "type": 2, "geometry": [ 9, 2242, 3516, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 4048, "type": 2, "geometry": [ 9, 2226, 3518, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 4049, "type": 2, "geometry": [ 9, 2226, 3518, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 4050, "type": 2, "geometry": [ 9, 2206, 3402, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 4051, "type": 2, "geometry": [ 9, 2214, 3412, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 4052, "type": 2, "geometry": [ 9, 2214, 3412, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 4053, "type": 2, "geometry": [ 9, 2324, 3466, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 4054, "type": 2, "geometry": [ 9, 2338, 3470, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 4055, "type": 2, "geometry": [ 9, 2292, 3488, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 4056, "type": 2, "geometry": [ 9, 2324, 3496, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 4057, "type": 2, "geometry": [ 9, 2348, 3518, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 4058, "type": 2, "geometry": [ 9, 2324, 3524, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 4059, "type": 2, "geometry": [ 9, 2386, 3536, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 4060, "type": 2, "geometry": [ 9, 2254, 3550, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 4061, "type": 2, "geometry": [ 9, 2256, 3552, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 4062, "type": 2, "geometry": [ 9, 2260, 3552, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 4063, "type": 2, "geometry": [ 9, 2266, 3554, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 4064, "type": 2, "geometry": [ 9, 2268, 3554, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 4065, "type": 2, "geometry": [ 9, 2274, 3556, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 4066, "type": 2, "geometry": [ 9, 2278, 3558, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 4067, "type": 2, "geometry": [ 9, 2282, 3560, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 4068, "type": 2, "geometry": [ 9, 2292, 3566, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 4069, "type": 2, "geometry": [ 9, 2420, 3566, 10, 0, 2 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 4070, "type": 2, "geometry": [ 9, 2304, 3568, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 4071, "type": 2, "geometry": [ 9, 2370, 3572, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 4072, "type": 2, "geometry": [ 9, 2372, 3576, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 4073, "type": 2, "geometry": [ 9, 2372, 3576, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 4074, "type": 2, "geometry": [ 9, 2454, 3584, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 4075, "type": 2, "geometry": [ 9, 2454, 3586, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 4076, "type": 2, "geometry": [ 9, 2232, 3590, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 4077, "type": 2, "geometry": [ 9, 2230, 3590, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 4078, "type": 2, "geometry": [ 9, 2468, 3592, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 4079, "type": 2, "geometry": [ 9, 2474, 3598, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 4080, "type": 2, "geometry": [ 9, 2464, 3598, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 4081, "type": 2, "geometry": [ 9, 2464, 3598, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 4082, "type": 2, "geometry": [ 9, 2306, 3614, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 4083, "type": 2, "geometry": [ 9, 2306, 3614, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 4084, "type": 2, "geometry": [ 9, 2214, 3582, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 4085, "type": 2, "geometry": [ 9, 2096, 3674, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 4086, "type": 2, "geometry": [ 9, 2094, 3676, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 4087, "type": 2, "geometry": [ 9, 2094, 3676, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 4088, "type": 2, "geometry": [ 9, 2090, 3690, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 4089, "type": 2, "geometry": [ 9, 2626, 3666, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 4090, "type": 2, "geometry": [ 9, 2622, 3668, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 4091, "type": 2, "geometry": [ 9, 2626, 3670, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 4092, "type": 2, "geometry": [ 9, 2656, 3686, 10, 0, 2 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 4093, "type": 2, "geometry": [ 9, 2694, 3728, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 4094, "type": 2, "geometry": [ 9, 2692, 3730, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 4095, "type": 2, "geometry": [ 9, 2702, 3800, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 4096, "type": 2, "geometry": [ 9, 2700, 3802, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 4097, "type": 2, "geometry": [ 9, 2696, 3806, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 4098, "type": 2, "geometry": [ 9, 2634, 3848, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 4099, "type": 2, "geometry": [ 9, 2670, 3858, 10, 1, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 4100, "type": 2, "geometry": [ 9, 2678, 3866, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 4101, "type": 2, "geometry": [ 9, 2674, 3866, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 4102, "type": 2, "geometry": [ 9, 2676, 3868, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 4103, "type": 2, "geometry": [ 9, 2414, 5042, 10, 1, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 4104, "type": 2, "geometry": [ 9, 2706, 5452, 10, 0, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 4105, "type": 2, "geometry": [ 9, 2718, 5458, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 4106, "type": 2, "geometry": [ 9, 2736, 5484, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 4107, "type": 2, "geometry": [ 9, 2766, 5484, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 4108, "type": 2, "geometry": [ 9, 3720, 3616, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 4109, "type": 2, "geometry": [ 9, 3720, 3636, 10, 0, 2 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 4110, "type": 2, "geometry": [ 9, 3724, 3636, 10, 1, 2 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 4111, "type": 2, "geometry": [ 9, 3890, 3134, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 4112, "type": 2, "geometry": [ 9, 4236, 3008, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 4113, "type": 2, "geometry": [ 9, 4428, 2966, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 4114, "type": 2, "geometry": [ 9, 4466, 2994, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 4115, "type": 2, "geometry": [ 9, 4724, 3086, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 4116, "type": 2, "geometry": [ 9, 4642, 3120, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 4117, "type": 2, "geometry": [ 9, 4568, 3140, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 4118, "type": 2, "geometry": [ 9, 4572, 3140, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 4119, "type": 2, "geometry": [ 9, 4658, 3170, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 4120, "type": 2, "geometry": [ 9, 4700, 3178, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 4121, "type": 2, "geometry": [ 9, 4722, 3208, 10, 0, 2 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 4122, "type": 2, "geometry": [ 9, 5228, 2904, 10, 0, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 4123, "type": 2, "geometry": [ 9, 5188, 2930, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 4124, "type": 2, "geometry": [ 9, 5294, 2932, 10, 0, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 5 } }, { "id": 4125, "type": 2, "geometry": [ 9, 5184, 2978, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 4126, "type": 2, "geometry": [ 9, 5250, 2950, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 4127, "type": 2, "geometry": [ 9, 6608, 3614, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 4128, "type": 2, "geometry": [ 9, 6860, 3824, 10, 1, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 4129, "type": 2, "geometry": [ 9, 6332, 3890, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 4130, "type": 2, "geometry": [ 9, 6988, 3986, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 4131, "type": 2, "geometry": [ 9, 7016, 4118, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 4132, "type": 2, "geometry": [ 9, 7150, 4226, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 4133, "type": 2, "geometry": [ 9, 6608, 4228, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 4134, "type": 2, "geometry": [ 9, 7658, 4272, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 4135, "type": 2, "geometry": [ 9, 7330, 4306, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 4136, "type": 2, "geometry": [ 9, 7532, 4316, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 4137, "type": 2, "geometry": [ 9, 7878, 4330, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 4138, "type": 2, "geometry": [ 9, 6862, 4338, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 4139, "type": 2, "geometry": [ 9, 7894, 4362, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 4140, "type": 2, "geometry": [ 9, 7094, 4028, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 4141, "type": 2, "geometry": [ 9, 4206, 2300, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 4142, "type": 2, "geometry": [ 9, 4206, 2350, 10, 0, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 4143, "type": 2, "geometry": [ 9, 4232, 2410, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 4144, "type": 2, "geometry": [ 9, 4220, 2414, 10, 0, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 4145, "type": 2, "geometry": [ 9, 4226, 2418, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 4146, "type": 2, "geometry": [ 9, 6548, 3606, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 4147, "type": 2, "geometry": [ 9, 6538, 3608, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 4148, "type": 2, "geometry": [ 9, 6538, 3610, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 4149, "type": 2, "geometry": [ 9, 6968, 3242, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 4150, "type": 2, "geometry": [ 9, 7014, 3248, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 4151, "type": 2, "geometry": [ 9, 6988, 3262, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 4152, "type": 2, "geometry": [ 9, 7044, 3286, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 4153, "type": 2, "geometry": [ 9, 6758, 3544, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 4154, "type": 2, "geometry": [ 9, 6922, 3818, 10, 1, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 4155, "type": 2, "geometry": [ 9, 2218, 3566, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 4156, "type": 2, "geometry": [ 9, 2240, 3580, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 4157, "type": 2, "geometry": [ 9, 2194, 3582, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 4158, "type": 2, "geometry": [ 9, 2262, 2392, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 4159, "type": 2, "geometry": [ 9, 2314, 2500, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 4160, "type": 2, "geometry": [ 9, 2332, 2532, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 4161, "type": 2, "geometry": [ 9, 2034, 6282, 10, 0, 1 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 4162, "type": 2, "geometry": [ 9, 1460, 3508, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 4163, "type": 2, "geometry": [ 9, 2272, 3784, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 4164, "type": 2, "geometry": [ 9, 1610, 3860, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 4165, "type": 2, "geometry": [ 9, 238, 3708, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 4166, "type": 2, "geometry": [ 9, 238, 3708, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 4167, "type": 2, "geometry": [ 9, 6696, 3580, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 4168, "type": 2, "geometry": [ 9, 6684, 3582, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 4169, "type": 2, "geometry": [ 9, 6678, 3580, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 4170, "type": 2, "geometry": [ 9, 6692, 3578, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 4171, "type": 2, "geometry": [ 9, 6680, 3578, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 4172, "type": 2, "geometry": [ 9, 6678, 3578, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 4173, "type": 2, "geometry": [ 9, 4276, 2622, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 4174, "type": 2, "geometry": [ 9, 4274, 2622, 10, 0, 0 ], "properties": { "FeatureCla": "Coastline", "Note": "", "ScaleRank": 6 } }, { "id": 4175, "type": 2, "geometry": [ 9, 4376, 2932, 10, 0, 0 ], "properties": { "FeatureCla": "", "Note": "", "ScaleRank": 0 } }, { "id": 4176, "type": 2, "geometry": [ 9, 2350, 2172, 10, 2, 0 ], "properties": { "FeatureCla": "", "Note": "", "ScaleRank": 0 } }, { "id": 4177, "type": 2, "geometry": [ 9, 2354, 2174, 10, 0, 0 ], "properties": { "FeatureCla": "", "Note": "", "ScaleRank": 0 } } ] } ]tilelive-vector-0.1.3/test/expected/a.0.0.0.png000066400000000000000000000544761217155126300210130ustar00rootroot00000000000000PNG  IHDR\rfYIDATx uUYPD DS KT4s@4PCĄp@LsFӐ0D10Sˁ 2K&Ou9{9s{{zߵcTPPر7PPP<PP(`Q @A F1b 6l08{_[)XC0<_GG=F;vHk]Zw_uo`P __|3׿G<[x^Oz}s˿˒uhKwѻ7vߍOdtYgnrnzӛ=^Cf1>GǎN<ѝtIх^9$wq+]i[?߉>'.DPض禯yCc=v?{?ϏSO]W4? <:ꨣO9J;ծvw]/}p__/N|a6o<>h"`j.쒞|fnq[~g~6s=G|Gңp]Q }g_6^}CG_WF=GWUF'? OH~?# so׾׼fwl??_7U 7-=E]4E1y___z饣=kg#x>D/x;mݶw=E}'~;IDJ0_ӆycF}F_|q &{k^3 n0:C L4;{҇RQG=mnwёG9:SP%G"o6h G?l5:GWG7yl+rT!_d`2-(K \pk2< Q> ֫_{쑪 o|c9]ٱQTλэn4:>yu^".;pt|vv.K'-xЃ* M^W$O/ Q%OO&j@xȤH>us0/4HS~mַTlQͦ=]|Wl{\ăGQgi*MGl=i( Uz趷mR;JMF7?o;Ν BU#T)~w*!ʹTy_'/ڷmR*H2PVo}+]af7zK׿CS 70 ƚbԧ^reݱQZ8Am8XHA:* k]+5!3 g=+m`R67~+_9׿TYA"5y}kI(^򒗤N>Ng@# j ^,pMUD?漪5p 8^AP( +kR̔Lx.yDhv5)kLQBD(P3Nyͯ> B'XaQPzd주gNX9`Sn0?(Eټ2SVXSYc1*2rHڼ4|Y/

^Kʙ v Jo p`p넕24J^<(/GYс{J"E,/y2"9!m`6[$!`@d9uV@>s@/aDP}aRD +\7mCj =8` #~WV}WUSyD/(-Z9 ljz+-# ~! 2@0Tðӈqz2x(c4{W ;AX3D#2B`40v M*$Ԉַu^C1ѕH ٗ{@5EyK' q,=ReƧxS p]y .ZNEU&Ml@?SD 3} P}^WGX|cD?pJ}j`ya! k2j3d Eq>[0G8Xgw9_=-9$"@\qVБ&CXJ76n:VHwm06wQ#As90Jqa<*3L?^:u/1X1/hcX "iyR~G4]# 7Nu21IpPp| L'R507VȒ;;1hi DDh"$G)wWIں]6A7JH@iiᗴ 9oQ!z7 eax@ Dq(,ҧ<)) 7gD5ZكT&!l c|âFȳ5!MP>W~6ӟL lP*UrȱHTpHyv1XF.N*< pQ1n2.|p8!BH=EJ/EAYn)Dlbх6ap4JHic?\𪮿HO5P5 O65\N-J]ϛo8qF,IkU=$\fZ|]+!_͑:fx֚Eijaʩ?EwJa#c%cy~<2\#R珶j9?E C Tx/<º'̛vFZu?O)w]c=vB"1ƀ G+x^ =ڰӄ%$JG/q)]zGsN:s\RBəO2[Xf+olpM W'f8&ޟu"^)6 R+cL`mؼ=+UX`ʰUow,hɭ }XhZ]` N fb80r?!)4N(dQ΢iq:P!ˆp3 q3ҵ)qĿ $܆hgk݅^{J!e|^ƁM7$إkbmNcV,8] 9Dqǀ kŦll*GNjTv0. CaԪRË3{UOqH׮g#/cAPb TwϒFfQWwEWs}bBM5Pˎ61-CԀԭ ȁ1 Bݶ2nB zΛu@.>w㹩.,hy^ذPE6)͎a3+&xƞ{4>-@cC-v$}N< &_~!* upτ<ÍɍDh5Ww`R8^:/rxJT"Ei\!l*!$l|V)MXP&@}]mbΟ?o"6ksZr~3q:I**kRP$xxgPN -uozp* )o8-HDNֺQ`Ax2L? p1#rY76Gի( oCƹq~gq0 lxD/vGKT"*rR=r-?6 i,+#K,׈dk`Pc ޥ#Y3`ʭ>{׸HX?sͅ62,Z9#MB1("C)yph!Ų)[t&浈6ļt0w[0n8ܽ5,(1 60hд`8j-j!t€7έgq D2 btҰ6u˂yDe[**6"5c%gQŧ{o]nbPm@$0]!VGcqWH>]H"9/3x`>achMFtdbQy.ʱT^"Cq8<&dt(ޛr2 ,ƶ{]U8Ɉh-b*l٥)^Ft$gJl"uZ!)uttQGuqCY^U 5Z+c˂bV#q^@@}& Q<W56E?_,t2f z?F28Lbc1Qϲ; \]54JU-iDJ&%h  KID)"q*:D]y;Ʀsb5}71FlǣhgEl8En%ocg.,0 )'@A'IUs4`r-\a8zȯqlzxdaYE"0XO8CFp5n][%pт0cJNk΢!YV\rV" &آS>k\ҕ5ObbMyd9*b|R~ Bl5@xqMPvOB.5!QGj_،<q#= f1$tPL}"b {: "O8l v (tyxXʓ q" MU3"YAX#U7,OeЇp Fq#"N)H՘~I GnVlahe%(E*Y  9NAay)8fc!tBU1]{mU%H[ lZ,>R]8+Dthc.` B:丶fJ0n*ɮj/'+\$ 7>1!J)~,vb&: ]r0FJm4RPQ}󶞿i1ޏNH\d(,2V)˅H?q'I B\hiu Fq.y$udi%x<` BiDBRiI# Q ٵ`>H3֯N$+m2R h^ >;D6\" -\peԁR$3ƻ.aa3֌ǼUI䛒c3Z׼Wi"#)zIB;#CQ2"XTC!}ǤRK 0tCF޴&eLdVfS\;> ayR= 66zVo-Qg7s0Ƅc` G߽aL) U|xHG1¶j @N"\g,ʡ؅rcUxY+ nPV xPiAO c R|2*K 7!U#ݝviGqCVr^t ac9}$D,eᶴNסTO@&t@rπ&[MJU,z#He8@9!;"&FUNay @su^[}Tђ+U<EaR,ǃ6GשHQWX'c,Ip`uh/Ir␉*\^-ă7\$dZ/ waFDjQէ)\.j7Da!Dh|D$1F{oaY"4O Q4A06}W_R #kr޺aZXHMy#ꢘģ'!35c$xēecPhM=Oͣp=i1\*h!Q?^o7%m0AHh>0fڄF|"B@:p!r} R阷!FF_> Plk6γcsݐrq87$NA"IRetنvoי 2&|^N,/%A8i9<݅hPc vuqxL]TI˛aѐs'X&ܶ` 4oyrEi7Na0,E<`y@7р6 F0uԁTT8,PJ>@@~ T `2 ͧ-s}n @tuHlpeD峦t='Ac(C5eW5)ӊW q4`ڀE! zh :8 u5͊^?ۅzA6KkCyP/CP2JTO%R݉F|W<8}Pʴ!@ς姇NL9W$Fg!w5R.EC$ )hu2uz븳@lqgjx_D1?O6$ Kn, ]畚D w&:qѐR1E%uS\E*M󎫘wޖ*T3(=1|}ᇧc^ޭ!+S*"(_Wמ`gNy1uo=hli7  9[tFۡI1_Sv|ҵk I,-p&kDatѽ" =X%-N"0P&!1cdMy|z8Q-qcFCn]n1DiUz7^I.O6֎nA>I"XkHN` 8j30&ycUH#6D]XI*zCDco;JxRcJCio%sEBTw6*@sWϵW!z\*M` dah{a‡`z~$Ui3PR;Xh<11Ɯ<\sԼ0La˞t!A*cy8_SgH1IsТ0XrWUsvLEj-dBuy gS3B'l2_.[LRlHSTų;bل 66 eO~g1HfSWg`##}5XU~&iзCƑWe˱rǴ9lpᰙqzɎy3 9Z2WpnF!"iQ)&01~a(N2"e{] =qlM4Td=;SOM! H"C<F_=/!&6HCCer[WdѪ-U dBU@ :yidZa$$Gq"Qִ5Ӕ3HE."6rlbCG&P56-oO&%@wsBm,vX>`S^{axKU+y7m@qV!8tq!d I>y2cLФˏ!p}q9Y,{XXՕOvVspHCvcuq_DC.oQcIMf60_PͿ9"MN eX>( " ףHC-W`8ŐqXYA"Y u=0T+"Gs,z @lC.  qͤZ*Bl\Cl#"dd=TH\R^i-6^5$kj5F]JQY Vo֩!@1U\z饩!87_Ǜq܅S DS,߼|٦󲮽d4$ap4]/@*C(|^ב~'Ƭ:x"*]#ErkrP1Ss?ꠃ:N;V7 {YU:?vȭJuFk#6O閚S; 9!TWTu (ʖxeHLJV }# '=JPQ qCްjB'jWEo曚 r!U K;D=@@.NwMjN#`wacC:cB9٨:$s#zF<# ]u!XfxR$Q :ƆAa!*^ Xd@,-!6I8%w73.@UFrrO@ޯLHCԤ܋2~O?S;Zҡ %;/)@iBu (aup}!9EH;.¼:O/)&| rJ(iU~?!7d wH0XD܇g Sb5+.0x<`ksڇF!lv7}"}"}p1WgJ:Z.5X$'d) H ؤŢ;N6rPC(($رH*ʙ4y _R徧}ٚG9n TF5F6=BҨ0B(P:>,} .!Q7Ŋ-7=U3#*A0DiD5ơ;`zHyQ"GI!F[Sh6TJMDd!&hkA6c=TȊAqmy"T,YL69E>!9kɧ'8p40! UWx(6;1~K ("ci^~$=W^+z*±I3 XvGw@ۇA"*I*FBt 'k:ͥ0Sf;RFNH|)A)҉PnE-Ql#0YM1N·"^Z{^]zLI\&u:8 )"ED۪R1+_ za%q jH߶ mS0 rmDBy;^c0!gy8~!ʅ68$q@ҢQ".ӾwrG+bq)x?ݢBS.PUe<۲hy%yH?=.첵{x>ML65#U tJ?r.M~gZGkiIAM|EwdyB!,$5>ks1kq> 5] Yp]Uc CZ qc%T \pA$"FqNLO #FEHZy)+6))²tLC5eD o#^C=4Mv'ª[޳Ad[$0<ج@rJmW^8MWFOYhMa$ “%GZʿBz|Aީ%1 Qu4O 6<Ԋ}&0m>3@Ʀ ][h]Te980n"*BNӅr<ߪA{I \wlS. 'xb"VBZ|pJ俫 &Au(Q+ cڠ@5Q]*}lM)atzhҸvX*h =Ov38U\]e4V]ƥ;1}7ه Ag*M:kbZ w=ۓF.P#T uP3lິPhx'g`d AJlV i",Y} V›'dEX¢x*ҰĦ)FMCun<x:9q@,5Il)v9@ٺEhfΧCXsp2m\$&c;췲(4!#&-X$2guֲJ0AVT:̲'RȬš;Db<ό'>6~-9H#bff:7V0Mj34g걏}\6 95#79y{҉:դ&cM1pFs/|a}kԧ>5zߝNvr>ߵ}׽׸FznLwy3ytOW @G bb7$^o5|K_6\veW鐗_w}t{;Ї>ttΑιx}Bx]wut' m[V_%OO_+!Bo~3s=7''3 "կ|]fE{h'Ӕ*'qb;nkPQ>>X}k7L5P:Bvt"<)+w21#$[H;)~z7l2Ы\*?IgMo:Q(%B5s=|]q.Ƿm0L\%}K^Χ U!TJf),.2){_ R:JtMB rJb[}H O|"{d]!r98+:=O1 t3J_wKL/CJ%,_i`|#I(mlj~X^r%IT'5:CFW5 "0׼fa`?:C<&E1 Q"m Oygw3"jHrEя~tl~;jrPfO:d0֘z9GSuA_~y cM^=QJF 6(u%C-2,/a;37lbuGwNnrזg E=JgrθvNy&z, =A"'r>\nY3LzBT0܊06,yx [iH  J#g;l˛FxeOA uI:h[ /zы|kB' ! 2PaP$Vlxs34CuG$$Y|VDW ithy6_Ceܼ3%=S (W2m^^h/j?_mx?ɨ٪LM-'@+\p:ŸG4'Y$2h&1<-k]Zwl4!]rڎ))מ7nH &lSe\7܆.OPy {챩K3o}[IEX/ PVSV䷼:c#\yg>t+-T+%D2޾^ VhDæ)n0<4&]N}QG%&G{oOBz5׋\WunR ɧkϦ$3$60Re}vl&bg|}ɹ Z.gՅ|>ZPDy[z&Pwb -ϯn٪]f?3 UkW]_0?XRI״s&Hj(#2lRݐïk>nC26qEA; Gh<]g 2O#ߏ͹zzjPQ}Hir ;M@ 1mُ$t6fc"<|Dcypz `L_V>+$ چsL W'{ꩧNe9/.O{ţ+W=H:@X]pMG$7 X Btrfaw8 3qpD(zL8tT8\{uBĜ8"ږt 6qVXՃ/МpJۿ qlAeG] V\0;sGtdK+0 X7Icr4^zlusRr+*V.Bʻ8v*@H8(@1P+kknչ&"_z|΃ୡrUFᮍ!X5f* oQ5I^)8:*!PNE9 Mkc8CQtGu$"eւ:.SnmY1T&C`j%|V^i\hu>÷,$$zjo2soYtI[`X S!ϻ FRlh M(j^Noba=ϪzU <"NٍNG9nLYCZ ک \b"ԟS{ A^<\͘L ݑy0H$}h @CB2UnJܥn@C5 F3 n5 ;CX\L@dhI~( aCkQ2VWbuM/ @!vY8W\.DAB~ӂ,Dia# #bb~)Ҹ9H:#yz rq^ W\apUI*xUSq x܀]w5C~?/ ucaJ29b`/=(Gg6rc?"rYgU}5^Cqe# P@J^>8V.$(4bvf` EnVAX t9>K11&y+(<'wmڒr~t .tuu"tc zyxe $FZl~D>j] i:W0?[JmJ$ 3l*A#)&yPՠm"uwBB#'^ү bީ߹u@{)7l6PPU4wk/LTXpMHӏSK`ш;NMJZ{1z^ӾaWhw}d  $3#0MR^K cyif=qY 0&[{'⤓NJ=ˀҼ tilelive-vector-0.1.3/test/expected/a.0.0.0.utf000066400000000000000000000444361217155126300210200ustar00rootroot00000000000000{ "grid": [ " ", " ", " ", " !#!! ", " $$$$$ %&! !! ", " $$$ $% '% !!!! ( ", " )$$$$$%% ! *+,- . /0 ", " 1))$ $% !2 3445 67 8 90 ", " ::))$$ % 334; <= ", " >?@:A)$$%% B 3C =D ", " >>E FG$$$%% ! 3 H IJJK ", " LLLFMNG !O HH P J QRS ", " TT UVWXXY Z ![ H P] J^J_ `a ", " bbbVWXXXX c !d e PfP J J JJ ", " ghhh i bb jkXXXXX l% m! n opp e PP P J q r ", "s i itiuvkkwXx %% !! y pz{z PP q ", "ss|h i k} XX % % ~~ p p pzz PP ", " h kk€XX % ~~ p p p ", " ‚h hƒ k kk %% p p p „„ „", " hh… † k ‡ k ˆ pp‰Š ‹ „„Œ ", "  Ž kk k  ‘’ ‹ ", "“”  k • –—— ‹ „ ˜", " ™ k𛕠’ œ  ž ", " Ÿ k k ’ ’’ ¡¡œ ¢ £¤ ", " ¥ ¦ § ’’¨œ œ ¢  © ", " ¥ ª «««« ¬­® ¢  ©© ", " ¥¥ ¯ « «°°°  ± ", " ¥ ª² ³ ´µ¶ · ", " ¸ ¹ º»»¼ « ½ ½ ¶¶ ¾ ¿ ", " ¹¹ºº À Á«  ½ ¶¶ Ã Ã Ä ", " ¹ÅÆÇÈ «  ÉÊ Ë Ìà ÍÎ ", " Å Æ «««Ï ÐÑ Òà ÓÔÕ ", " Ö× Ø Ù Ú ÒÓ ÛÛÜÝ Þ", " Ï ß àáÛ â ãäå ", " æ × ç Ùè é êëì í ", "î ïð æ × ç çñ ò ìì óô", " × ç ò ", " æ × ç ò ì ", " æ ç ç òòì ì ", " õ õ ìì ö", " õ õ ÷ ø", " ùõ ú û ", " õ ü ", " ýþ ", " ÿ Ā ", " ", " ā ", " Ă㥠", " ąĆ ććć ĈĈĈĈĈĈĈĈĈĈĈ ", " ĉ ĊĆċ ćć Ĉ Ĉ ĈĈ ", " ČĊĊč ććĎććććć ĈĈ ĈĈ ", " ďďĐ ĊĆđ Ēć Ĉ ĈĈ ", " ēĔĕĖĆ Ć Ć ėć Ĉ ", " ĘĆ Ć Ć ć ę ", " ĆĚě ĆĆ ć Ĉ ", " Ć ĆĆĆĜ ĝĝ Ĉ ", " ĞğĆ ĆĜĠ ĝĝġġ ", " Ć Ć ĠĢ ĝ ćć Ĉ ", " ģĆ ĆĢ ć ", " Ĥ ĆĆ ćć Ĉ ", " ĥ Ħ ĆĆ ć ", " ĆĆĆ Ć Ĉ ", " Ć Ĉ", " ĆĆĆ " ], "keys": [ "", "25", "980", "788", "24", "988", "979", "1777", "795", "1785", "1784", "1792", "2680", "1731", "1730", "1728", "774", "2366", "1797", "1798", "1787", "1789", "2677", "1732", "1733", "800", "1799", "1727", "1726", "756", "758", "799", "775", "2355", "1800", "1725", "749", "804", "785", "10", "1739", "48", "1718", "753", "761", "786", "2358", "47", "1711", "1706", "1701", "385", "747", "887", "745", "327", "827", "962", "2363", "1748", "1717", "1714", "1700", "1704", "390", "946", "2362", "9", "1754", "89", "54", "55", "409", "57", "950", "2341", "1476", "1112", "32", "51", "1695", "21", "398", "423", "418", "867", "841", "1098", "36", "157", "3973", "839", "20", "1455", "875", "836", "1444", "480", "50", "498", "449", "2384", "1209", "3767", "1814", "49", "1694", "1442", "466", "367", "1247", "1162", "26", "1401", "1413", "442", "22", "23", "1460", "4021", "2409", "2407", "35", "46", "1690", "56", "2396", "33", "2917", "8", "1679", "58", "709", "1045", "1343", "6", "59", "40", "1382", "4120", "1336", "4022", "38", "4", "640", "92", "3322", "2595", "67", "3859", "1474", "61", "60", "2725", "509", "39", "1506", "1592", "525", "1308", "28", "68", "3870", "66", "65", "3655", "553", "3530", "3541", "1548", "1579", "2078", "3881", "30", "3509", "1", "12", "11", "1895", "17", "326", "64", "1268", "29", "3291", "14", "3891", "1993", "2195", "1293", "13", "2371", "3897", "15", "2007", "2544", "63", "27", "1296", "1818", "2118", "2120", "53", "1996", "2977", "2937", "2716", "0", "52", "2560", "2261", "62", "2169", "1817", "19", "2658", "1391", "18", "1400", "2641", "2735", "2488", "2620", "2787", "2797", "2806", "2820", "2747", "71", "70", "69", "4160", "2764", "2783", "2773", "2778", "2848", "2766", "2770", "2779", "2835", "2878", "2871", "2876", "2874", "2836", "2884", "2907", "2856", "2883", "2828", "2818", "2868", "2857", "2829", "2838", "2816", "2859", "2855", "2860", "2865" ], "data": { "0": { "ScaleRank": 0 }, "1": { "ScaleRank": 6 }, "4": { "ScaleRank": 0 }, "6": { "ScaleRank": 0 }, "8": { "ScaleRank": 0 }, "9": { "ScaleRank": 0 }, "10": { "ScaleRank": 0 }, "11": { "ScaleRank": 0 }, "12": { "ScaleRank": 0 }, "13": { "ScaleRank": 0 }, "14": { "ScaleRank": 0 }, "15": { "ScaleRank": 0 }, "17": { "ScaleRank": 0 }, "18": { "ScaleRank": 0 }, "19": { "ScaleRank": 0 }, "20": { "ScaleRank": 0 }, "21": { "ScaleRank": 0 }, "22": { "ScaleRank": 0 }, "23": { "ScaleRank": 0 }, "24": { "ScaleRank": 0 }, "25": { "ScaleRank": 0 }, "26": { "ScaleRank": 0 }, "27": { "ScaleRank": 0 }, "28": { "ScaleRank": 0 }, "29": { "ScaleRank": 0 }, "30": { "ScaleRank": 0 }, "32": { "ScaleRank": 0 }, "33": { "ScaleRank": 0 }, "35": { "ScaleRank": 0 }, "36": { "ScaleRank": 0 }, "38": { "ScaleRank": 0 }, "39": { "ScaleRank": 0 }, "40": { "ScaleRank": 0 }, "46": { "ScaleRank": 0 }, "47": { "ScaleRank": 0 }, "48": { "ScaleRank": 0 }, "49": { "ScaleRank": 0 }, "50": { "ScaleRank": 0 }, "51": { "ScaleRank": 0 }, "52": { "ScaleRank": 0 }, "53": { "ScaleRank": 0 }, "54": { "ScaleRank": 0 }, "55": { "ScaleRank": 0 }, "56": { "ScaleRank": 0 }, "57": { "ScaleRank": 0 }, "58": { "ScaleRank": 0 }, "59": { "ScaleRank": 0 }, "60": { "ScaleRank": 0 }, "61": { "ScaleRank": 0 }, "62": { "ScaleRank": 0 }, "63": { "ScaleRank": 0 }, "64": { "ScaleRank": 0 }, "65": { "ScaleRank": 0 }, "66": { "ScaleRank": 0 }, "67": { "ScaleRank": 0 }, "68": { "ScaleRank": 0 }, "69": { "ScaleRank": 0 }, "70": { "ScaleRank": 0 }, "71": { "ScaleRank": 0 }, "89": { "ScaleRank": 6 }, "92": { "ScaleRank": 6 }, "157": { "ScaleRank": 6 }, "326": { "ScaleRank": 1 }, "327": { "ScaleRank": 0 }, "367": { "ScaleRank": 3 }, "385": { "ScaleRank": 1 }, "390": { "ScaleRank": 0 }, "398": { "ScaleRank": 6 }, "409": { "ScaleRank": 6 }, "418": { "ScaleRank": 1 }, "423": { "ScaleRank": 5 }, "442": { "ScaleRank": 0 }, "449": { "ScaleRank": 3 }, "466": { "ScaleRank": 3 }, "480": { "ScaleRank": 3 }, "498": { "ScaleRank": 6 }, "509": { "ScaleRank": 6 }, "525": { "ScaleRank": 6 }, "553": { "ScaleRank": 3 }, "640": { "ScaleRank": 3 }, "709": { "ScaleRank": 3 }, "745": { "ScaleRank": 1 }, "747": { "ScaleRank": 3 }, "749": { "ScaleRank": 6 }, "753": { "ScaleRank": 1 }, "756": { "ScaleRank": 1 }, "758": { "ScaleRank": 1 }, "761": { "ScaleRank": 1 }, "774": { "ScaleRank": 5 }, "775": { "ScaleRank": 1 }, "785": { "ScaleRank": 1 }, "786": { "ScaleRank": 6 }, "788": { "ScaleRank": 0 }, "795": { "ScaleRank": 1 }, "799": { "ScaleRank": 5 }, "800": { "ScaleRank": 1 }, "804": { "ScaleRank": 1 }, "827": { "ScaleRank": 5 }, "836": { "ScaleRank": 5 }, "839": { "ScaleRank": 6 }, "841": { "ScaleRank": 5 }, "867": { "ScaleRank": 3 }, "875": { "ScaleRank": 1 }, "887": { "ScaleRank": 1 }, "946": { "ScaleRank": 6 }, "950": { "ScaleRank": 6 }, "962": { "ScaleRank": 6 }, "979": { "ScaleRank": 5 }, "980": { "ScaleRank": 5 }, "988": { "ScaleRank": 3 }, "1045": { "ScaleRank": 3 }, "1098": { "ScaleRank": 5 }, "1112": { "ScaleRank": 5 }, "1162": { "ScaleRank": 1 }, "1209": { "ScaleRank": 3 }, "1247": { "ScaleRank": 6 }, "1268": { "ScaleRank": 3 }, "1293": { "ScaleRank": 3 }, "1296": { "ScaleRank": 5 }, "1308": { "ScaleRank": 3 }, "1336": { "ScaleRank": 1 }, "1343": { "ScaleRank": 3 }, "1382": { "ScaleRank": 1 }, "1391": { "ScaleRank": 6 }, "1400": { "ScaleRank": 3 }, "1401": { "ScaleRank": 6 }, "1413": { "ScaleRank": 3 }, "1442": { "ScaleRank": 6 }, "1444": { "ScaleRank": 1 }, "1455": { "ScaleRank": 1 }, "1460": { "ScaleRank": 6 }, "1474": { "ScaleRank": 1 }, "1476": { "ScaleRank": 6 }, "1506": { "ScaleRank": 6 }, "1548": { "ScaleRank": 3 }, "1579": { "ScaleRank": 5 }, "1592": { "ScaleRank": 5 }, "1679": { "ScaleRank": 3 }, "1690": { "ScaleRank": 3 }, "1694": { "ScaleRank": 5 }, "1695": { "ScaleRank": 5 }, "1700": { "ScaleRank": 5 }, "1701": { "ScaleRank": 1 }, "1704": { "ScaleRank": 5 }, "1706": { "ScaleRank": 1 }, "1711": { "ScaleRank": 5 }, "1714": { "ScaleRank": 5 }, "1717": { "ScaleRank": 5 }, "1718": { "ScaleRank": 6 }, "1725": { "ScaleRank": 5 }, "1726": { "ScaleRank": 1 }, "1727": { "ScaleRank": 1 }, "1728": { "ScaleRank": 1 }, "1730": { "ScaleRank": 5 }, "1731": { "ScaleRank": 5 }, "1732": { "ScaleRank": 5 }, "1733": { "ScaleRank": 5 }, "1739": { "ScaleRank": 6 }, "1748": { "ScaleRank": 6 }, "1754": { "ScaleRank": 5 }, "1777": { "ScaleRank": 5 }, "1784": { "ScaleRank": 1 }, "1785": { "ScaleRank": 1 }, "1787": { "ScaleRank": 5 }, "1789": { "ScaleRank": 5 }, "1792": { "ScaleRank": 5 }, "1797": { "ScaleRank": 0 }, "1798": { "ScaleRank": 0 }, "1799": { "ScaleRank": 5 }, "1800": { "ScaleRank": 1 }, "1814": { "ScaleRank": 3 }, "1817": { "ScaleRank": 0 }, "1818": { "ScaleRank": 6 }, "1895": { "ScaleRank": 5 }, "1993": { "ScaleRank": 5 }, "1996": { "ScaleRank": 6 }, "2007": { "ScaleRank": 0 }, "2078": { "ScaleRank": 1 }, "2118": { "ScaleRank": 3 }, "2120": { "ScaleRank": 5 }, "2169": { "ScaleRank": 6 }, "2195": { "ScaleRank": 6 }, "2261": { "ScaleRank": 1 }, "2341": { "ScaleRank": 3 }, "2355": { "ScaleRank": 6 }, "2358": { "ScaleRank": 5 }, "2362": { "ScaleRank": 5 }, "2363": { "ScaleRank": 5 }, "2366": { "ScaleRank": 5 }, "2371": { "ScaleRank": 3 }, "2384": { "ScaleRank": 6 }, "2396": { "ScaleRank": 5 }, "2407": { "ScaleRank": 3 }, "2409": { "ScaleRank": 5 }, "2488": { "ScaleRank": 6 }, "2544": { "ScaleRank": 1 }, "2560": { "ScaleRank": 6 }, "2595": { "ScaleRank": 6 }, "2620": { "ScaleRank": 6 }, "2641": { "ScaleRank": 3 }, "2658": { "ScaleRank": 3 }, "2677": { "ScaleRank": 5 }, "2680": { "ScaleRank": 5 }, "2716": { "ScaleRank": 6 }, "2725": { "ScaleRank": 0 }, "2735": { "ScaleRank": 0 }, "2747": { "ScaleRank": 5 }, "2764": { "ScaleRank": 1 }, "2766": { "ScaleRank": 1 }, "2770": { "ScaleRank": 5 }, "2773": { "ScaleRank": 5 }, "2778": { "ScaleRank": 5 }, "2779": { "ScaleRank": 6 }, "2783": { "ScaleRank": 5 }, "2787": { "ScaleRank": 5 }, "2797": { "ScaleRank": 5 }, "2806": { "ScaleRank": 6 }, "2816": { "ScaleRank": 1 }, "2818": { "ScaleRank": 1 }, "2820": { "ScaleRank": 6 }, "2828": { "ScaleRank": 5 }, "2829": { "ScaleRank": 5 }, "2835": { "ScaleRank": 5 }, "2836": { "ScaleRank": 5 }, "2838": { "ScaleRank": 5 }, "2848": { "ScaleRank": 5 }, "2855": { "ScaleRank": 5 }, "2856": { "ScaleRank": 5 }, "2857": { "ScaleRank": 5 }, "2859": { "ScaleRank": 5 }, "2860": { "ScaleRank": 6 }, "2865": { "ScaleRank": 5 }, "2868": { "ScaleRank": 1 }, "2871": { "ScaleRank": 5 }, "2874": { "ScaleRank": 6 }, "2876": { "ScaleRank": 1 }, "2878": { "ScaleRank": 5 }, "2883": { "ScaleRank": 5 }, "2884": { "ScaleRank": 5 }, "2907": { "ScaleRank": 5 }, "2917": { "ScaleRank": 0 }, "2937": { "ScaleRank": 6 }, "2977": { "ScaleRank": 6 }, "3291": { "ScaleRank": 6 }, "3322": { "ScaleRank": 5 }, "3509": { "ScaleRank": 5 }, "3530": { "ScaleRank": 6 }, "3541": { "ScaleRank": 0 }, "3655": { "ScaleRank": 6 }, "3767": { "ScaleRank": 6 }, "3859": { "ScaleRank": 6 }, "3870": { "ScaleRank": 6 }, "3881": { "ScaleRank": 6 }, "3891": { "ScaleRank": 6 }, "3897": { "ScaleRank": 5 }, "3973": { "ScaleRank": 6 }, "4021": { "ScaleRank": 6 }, "4022": { "ScaleRank": 6 }, "4120": { "ScaleRank": 6 }, "4160": { "ScaleRank": 6 } } } tilelive-vector-0.1.3/test/expected/a.1.0.0.png000066400000000000000000000257551217155126300210120ustar00rootroot00000000000000PNG  IHDRkXTPLTE !!!&&&***...111555999===AAAFFFIIINNNQQQVVVZZZ^^^bbbeeejjjnnnqqqvvvzzz~~~Z"m*IDATx}N@ͷZB~w<,ɠrw^3ki:Zq$ɿ@կHD ">qy_7K&JU{ dMg}v@ Y=k&] N8Lc<~Nj"C^ύcAmdcWt;`Cv\'ϼbԀ)k@}xӿ@Q]Qm@xOdfr .e4dfR-X@ ![0$& jBRc G9%*N-N[qt6 i;n`՟!c} `m1Gp9ubP$~*S"upi +4` zIv^W bF_)Sn]/ Kĥ'0V0oU0EFp$= ~/=& '.mz_8iwB(0Eͭ=;d>nX[fKk@G 1^T"uAs_brK~ 8ڴACGu@hAÈuY!m~!ҭ ~ bwB4S?_4`9 ){dԇ+E^k@}&^˂7:y.,XzDf!y~u]s!hBȲ̻ _cY"$Q% ~b2]@BL}Rn2~I\@'ٔ"vFgd ?q PhP zx6FYknDEۃXk!dpǚ@#4zLjyugp(@Vf}"qk48 ݰeGRԧ -GSI l^(όxpZx~5H$RN$.Yy1YEP' Uu΄ L@4'aBl_$D 'iq!a_IYD:X*'AקIr7a'(e5jѢNы̹ap7WYZ}ԋq>iW.*邯,jctiJf"5س4V0&"mMlh7ei:j\"‚ 9`5ȟL%s>_@C#@qyVwTgH/,v: Vd5lm>oS۶{Z'~:}׸&ɭAj1%\};4xO$e5H7ےIoq ƖVxė0 )%eщe=ȏ? @zW`ʶS-2RJ -PqqஶRX[#"?0=_JD)cs2ԗ{OE@, 7$i) h4? hU9\T*)+ArUQ}-4$gF\8(YIZzCy,m͝&N)Z#egtf{B+)COsT(|Hd]>jB&a&6>L(I*f~X?otރ~mD5W G[iuFau6p7CFu³۟)I绷'*CnKC-x$yzʤŌy\v4u;o`j {~9(/gLsg2yX wyغLS!BaGel2cQ|^r=꾱?9߮b59f E%? iG% .DzI\;Gf:Zhk}>:&71#Me_ ?a,s61x]B)M @odKy\+ூ-G,Ĵ>۸ ~0 +c5v%S蹸<'AZ^fKKvJdt`N0鴺r.8~k`DnaW&e+wx ~"ZaӭZ9o"Wf%ef5pSjli*ʈ۪AfIRd7 oL{A8*E_Ó \Srt U O4=2)Qbu T84&oS`NeSt=I{z;{BŤܸx)WPUqfrWW⒵^!L׷V q|S"ܹWaZsXZ!«< &iZ'Uq oX=Ilڣ @7T&m;W|ݺly>)ݣVAu<ǭCVAr`SWP/S6"ǼAU˖ƠA*b%ڡZɫYY,a\j LB')kL+,ˆ,oRwnd|?A- 5LyV pCB rDHx[ek}5fyqUQpn[0%;]q:KW~~Kl#_f/M^7^6ea@nكN/JlZ10/;[.]S@8Qt( %}0:g"2;35>S0zZ NE 4c HoɓPuNS揼@d @+ c`)'Z CkfD~h;bEzeX?Lyz ,ad.ƽ~,ҎU2@,O l{0N$H~ϋ.OΎ@d Ɍ35Nz ĐE"ЁuAw/*hT罁' nTUmSi;Jv>q(Ҿ\ajI6KSd,ύXEJ貜3}t;iU&5o@{ (FJ*Zѿ=s-Rܦ9A/S/*qt"Q#!p5 @4S} Qx{Vn)| cJpopuܷ ‹ZY&:֏ivydiZ[A!読ފv;ASؗX!|;ԛN\<8B!{^]5=uɧFLK&KfXj!Co $rщ=|6峑G,vd#~z!Ha%oN?JxB%|C:zect3 -mZXcZLr4ODЃtp'DdӆgKD19Aw>VVŻCN*:q=& gn1$vR1+mRx}ZFZ5q([,_3l53$$jrIonGY> b,4d73FV %)U"_^#]s挧|׬;~0PKBy/M& &'9'0Kj>!7bpcxZ'P~)5Q8\i",YhӍ[R?Ck'6"&3휯4, :G#-+,0SE9.}(""|W,-0xK/ aV&HP帮[r?n*$+ꕲAcMtVePXٕ91#S 8&$]%u =O1ğUYɺH[4,|4/xA=7z ) ޅ C᷼A,hO/AOiŵon.W!"ھ4v ~ l+/o>{-t!7؋_>/ Y8X\&g%(aw?n U}:щ}Fa ߗ1N_1Աl…wcj E_i{[" '\S=K<o+WeCČ4nRMF( REHYmLHATSU֦_^J2>fKW爨B6iXLݵCzVnTK mA{¦Ef+VMøx_os$zjt UYhCڑĸwvg57ieo qyUϑ0};a7.b"?3-O6 q6klD=GUI|mZm~B%SQ}HTRpKl|(tN̴ >y O7*F-J%:2] Qj(e?^Cg@y*ڌN&k6岸: у>JKWA4#ߠAj~g5v$|n{u *?6C.. 5ά?- ƽ9"S։.SKjg " Bg9rFU1+.ۻFavQZ=WU}L,UfJcE[K@F퓹Gc]P5DVt ;\p%QLl LC!S;ei9"dyy"xyaL1e( sS)p'L}l8&xwx+7lUYヅp U5D#)w3,ޗaG8X=\UJDܙRU6ԳWg?7د@K0?LV^b'fc>{ m,TC|B6!c~(; ۵[:޺^AӴ 锉9V R<.6Ƽ%cN~YQatZh4MqLUeZ wq4N,)[]4g¡Iu4+VB^ H=-Pm R)DꔠGt0UY<ǫ:$ Aۧ "ş{qD6;(ٳ"O !K`ҽ ǀ 8Jt<,CF7@DB-%L !.'\Z~AY$Ϩ7֡4KC3O~MWm6V;Ub,]MD v ͫr7SrGO)$[0E?黲z'ɾ\3 @2h%킵Ooa><&sIv/R[[kAaux<_F!_rhA$9W̋9+S uM ~[^ӨjAwhV .iZװ/& B"k7&A3 r Q@A:a-XAsԵ^T @ӒslDEU׫r8p<% ]|7}Z<"yC=x]4yiTk˹i?sfRPސ IQJU'uXAiU\L>uOꏢzZiAcUJx mCoVȻy9Hۆi#6\e'x?g_k$SǸUT?)uD9#sRh:P@C-(`k0_Y7k͢ߣm[#Oڣ#w =sgggv@9jr$%#`0",!/c]`ŎfU1rO,B|CzojZy{iNnc1Dris6QG< <|Hʻd :o;ѢfFVn~?6TRgK8ӣ;ɼԃu-SnZySQ,V~ . e"o,%dnM!%qYN7 +KcZkڰ[H(;5S7G\odԂmX5wt>K=v~NaV %; EbsW1Xk6Q),w ZȦPQ_|yB+j^?q"`k{ͳF]G zbƳH/p&ц 3uG7"S|XNϪa5]Qx8d('!:ZB)o.irܔjf>$\/ڐH5PWs/-N2Q? IH4zPֈ5S !LP+ܸb3n<.!1R"uhriI>,Qg=)源^V+S?v/ D Vi>ƖCzRiNՈ[btrPV5-JÀ~Yr @9}Z7yWMmH UWڸMZ>Aάj'B%1Ťb-vcܽ~I 4uwwQ5Lܥ:a~K@@raK9nZ>&݂wOQS!@=Ed؉S2GD[aN}(3D^sˁBJݐG%OK2m.)-[x1ϷfKXDXjuN>ge]A{\eGt&0+%/ҧ9pq7L?)Rx#`%cnCubOL3[cH{RQ_;|AlJ;Z#,}ק|mL˾YhߪC-||t<8K1#]{*W*RizzBD9s pʂFi5R^)[DRY|x>o823FhXuGLpvq\n`(͈0u7O-ђfV[9o#~-8'Bs96oAOH_ݰGk/#[EKު$hO2.C FC+u,!y;TVGBL%ovŹG}>,xa|I*'[H>;'! z;KA\PV5K?.Թor]"3'P24x KoACŜ#%,'`/C76rG!ʪ!I`sX_!dg  ([fD^7')ʗI} ~YXK xWP/qf8]lTu/"թdD,qrֱ&QjƖ}y\QaxQ[9U-: ܚ%{,ߏymPLuD9UxQ"CLpNbW.Mvii5G091ޙ4s?.u yg3晴9~r$PY0Ke1~Ha$p~'Q 'kϻv 2=u {4:@Ҏ7[8+84;>"$s9=e@ܴojTf8(G %@g񁢢 LWwn]0szl}0FE#Օ/cئ7mrnxxK ʵ_o96k~" |(F#rU.jݣgCدb>@Ӽvof !Y_>is#D{R=^Om /E39鵤,zZȡy5\6MCwb _cߠ&ʲI|bq;Imzd/]{&(쬎?ƭt#%VxUur/-AH?*肮6cwBmP@h9.G7 wsK-_ Sѡ@ʰ }kdEnA5`Lh?}BмىvCn7eQE.3e};d^J75N.3*oTz?<sq "|t?~TU]2O|~`-' O|ћcBЫl&IENDB`tilelive-vector-0.1.3/test/expected/a.1.0.1.png000066400000000000000000000136571217155126300210110ustar00rootroot00000000000000PNG  IHDRkXTPLTE !!!&&&***---222555999===AAAEEEIIINNNRRRUUUZZZ]]]aaafffjjjmmmqqquuuzzz~~~=oIDATx]=HSTTTa";ֽ3ԝ䴜M@}S\HrZTCǧ)  T-eve1)7MU) }Y @,~j*`?tѴh%3GmP368?M|*K= =XUAN^X xV)X]`| V .ӞOs6`|R' )^ rv2@Fo?px`:ZCߧnxnSFs޻&>β$W5l物04};v7v@PC @=l@!BGVxuQY@9, 8y7o2G6Y;_"@{D;X2ϖ=S-qMO'Ysv7|LP]pCHyܢ='TЏC'tFJ`I|חW(iذSS>܁,wrP$p[Qp32M!@ᏆrfpOߪjпcT0:^ x!_B9{tԀBH ?Do9p. Re %8/A 4 lP$?JtuN%[n60Ϳ73 2?{l| g>ʙO q#nߴo_Gv<nܑ|x =|m%@&?kd˵tl YB};t3zr"L' G7`J~Ӊ`5ޝh0OYJ"\%2_J!L 8@OĔ~Y˱,$L P_W2? Siv.L 5PZ"\0%ͤcNDw'L @wpA ],J';ߍ=!c3tNwRTP6Q! Ny6v|5'AoWNxŎcGlHG(BĂYJ@a! , P@? $ V GdMffZQ#nN]%OgX[M&|q$m|֬+e~5$@MV;S4!~7OjFi hR'K\ƀJB;4ȥ`FcIX}p!gX^!И{萄,ͮ8Z bD_ hM@%*ͥ FI)R .WyHNP^zU1m|";Nd8X7 tL_&`,U:t)-2pP'4t'w P(U3 6Uf[5&TUgr ,qjz(RD>?^Qd_|h QYflQ,Wm$*jЂN_$ĥ@y1 &yb\[ U[Ը86+25 6szq*yoTGo-ܥ+kTK:I% a켅ڸ&Y9IC@q_*dYHUt^Mjl*(h*w$sdꩂ\}VT uZV\,TS,INIb*;q|p-h "R~AgTV2ν-jR )ԝkTN2߉tB$`(\#=6^JYk,dTUVB<)_{]mMMږ0e4h˖y"='+_PK-"%Gסgs>N6ShĊfmg4Yy0Fz +D.~% `EZ֒9J 9#St76};Lid]5 jAsзAi̫F9') SqyCiPU᪝}ZD#qe/j2ǘ$4H=3![U7b&CW%6̇a\)%fJ1' ͕^31&t[s] $8l?,<,P#|tW9Pl3-3u^v[n>*ٟ3$3FODoPZȸZHx!@P~u?Ciیjx WRq:aγ.g@R貶oXf-ilƺ^\4۹1.{ib <ۮ{Df ~rNL8QRX xZ@BaxpSQMM5L+beʓ܁0IS39 #^hL%S&p/;{FIU4zl &F8*_4NQ߇IPQW7F}j0]n۰gtC>D>8k%sq{h$umA6^ͯ%hHic3v?;rbec* zr4K?lfp`/? ΝaC,>eL9tf"]xC=4CfKk$N3=7b8>n6km&2E߂n9P]wu̿mE&਻"IsmT3mi4Aؘ6xD\&tud*\F]VFrM2TN/Z6u{5POes66C @i,b] xI K̉ӨkJ/gu5 ]lZ2"j7D6á{PG5hͩNf'5̋[l6J fL$}$SE[w Y(Y2^uVaZdi#3]̣ij KSO`7հ񙀝A{Hpp͜/6Mm\.]hzk;51L+T*UĆ./d'FkβhmjɎEOh:vrK{vԙsqdݵ =t+үZܶ[5 縅F؎LҔjzJhmn>ky9E" xT髩nOO!_\e;=|&\pXڍ^ 1,uc]sE~,4M LtOM*6}XӇ]bM3 X|}5XWŅ!`S̙/~#h';†|K_,\h5,cl.@E!`LEN3ޱW ޭ]ONb 6gBG2@| OnD$w頯CPr{>^y DP0ƒ7m|&`n,z^eo,z|Re}JJpufGIߔhF"X1*b>j~.| R#ud9iFj~#If)sQHg/@U&@1#hyQ` ®穛GŴtpg z,LB?ŝ%&\ÙߴZ}m&ds3B@~kwM"THWhj@'Օ6לC`J`'ŕ^ %:qyǕ LpܽϟcQmpGX<|Io+'[Hf|6F fVMa?%n=gLAZ/XN*kq2k;|r" P2RoͲX!w[)|b  u Ojm Lf" 'EŬLn|. fuyƳ&xH]~FwFpAw *QYp~EVsF \4L(E+sՒr-pɼ=ܙNML?B SKJ0V.!#o0Ż?@J\&/!] u[-Ş,, X3$`K4NLue*N!%ӻT D>!p|,ջJ5?CeI7.Bwu'Es}JUxOc_n:6 o}_9)q. M ` cwM̪8#A=&ۦm~ڣ+'}F ^3#)vWIENDB`tilelive-vector-0.1.3/test/expected/a.1.1.0.png000066400000000000000000000221271217155126300210010ustar00rootroot00000000000000PNG  IHDRkXTPLTE !!!%%%)))...222555999>>>BBBEEEIIIMMMQQQUUUZZZ^^^bbbeeeiiimmmrrrvvvzzz~~~N\#UIDATx]b{7$0e{vci!Mh9 4t>?>݀O㏀O7# 4t>?>݀O㏀O7# 4t>?>݀O㏀O7# 4t>?>݀O㏀O7# 4t>?>݀O㏀O7xrEw!zlzp߁ @(ؑ uYOL P]7}#"&2$}|mCFdx"M$ '?6+5V#GՐ'{Hc~VO[ ',~.F3jGԒ')ý$q`NsR'|}t[}T"jɓgG&!12ι2@h74osVU y`!S~(KaK`],caM5&\;eI:F+>R,;x'\z P[?vyIllc%CNc̕`W F'sE3~ R"AƭJ])+OoBG?G"u!dȒy O3Ŋ_Aƌ0)>(qsf50'PEk W\n=<=Ÿ,G+lLā bO21 )ghJIńF2j meŤ6|/#DM]Ҝ;u߭uY:&p[ĘO3.@@SD0 رJ(u}w)iZ6{Ƥ)+ˌ^&/8O|0{>A O_ЖaGFe 5_d՟P^ Չ>zDJ0Z'-\!1ڳo\J;"wMt쨗 hkzPICCjcmFerMH`l1ʨ%\tSh$J3 1_9 qWyH>KOF28Kq P;ސˀ*AJ2|5j@ڠ}52Jߴh n/%{HBB.^(dVb#cj<ʻ#6+IT숱 7 XB ]G-syG`bTi AVq,{a }4@!L:ū =cǦ,*Zo;9@Rban1edp{ߒacM1Pcq!YSC 7Lmg=n+ lq)_:W}Җ>@"@QoYQᄒ0憍="Cq'Z{c@J'fɝi y?כFA@i0N/],m%BCLWz=V|\};&f>- }+PZAM>)^P!'ɺϔ_M(UKsnХ7mGh-;CHa9 wo_zz &˅'ﴰ9b ,qQ kA'&ʷЙQ'z`9yW kZܨkt  IN/7X%˃l~[@?f iX]m1NTB.=øAB ,C>-1 2[;c6HC %G$@J@~- ymWlϋBT类3Ծ.ǎ_ 2V W7x!u5 ~uVT\<О9,(K8 x|Զ-KCZgS>D'3  ^{晚M#ZsvZr% ʨZ qƲ}taP]Sy%@C&`C_2Npm`<6r%FeȏWj%AC7 ͟oDIg`-4#goowbo\BXV+T@CsR[fvQre,l+QZHD p iZgr눐:̈n K h'n`\x&Z.ӑ|3#$ ްqUiv@VC!VLD[_#վ^& ١w3bDq?-{S1+Hx{3kwZ5k)Q I>[=EBtX4pmi Ȕ=2d,S@:MgBcJ1OJkxO;K67%є 6SO,FFn@Po.ST5qKP{24ֻCͯyuBosGIx*s׆[?XBMP,&|TC<2Pn٠nuץJ4)Uʈ%?tk 7In}M+-J{Ŗl fGj7,n0t3:'P^)_njR0RM[V+h(eX]Yv~D0;wX)@.{3CB3D̿Yp`5+7I6Fע%ms4`vٻA/fnQ&D˷JLֺwxToz n͉sP l1ľ 0OV|8?Od(~Bn s9D=0ƣG޶\lGWoq8[0I6&Fڵmcӧ58 0F %~8l!WkP98+YڌVݛA9c7/])яf}i>Mocy8&bAMQ^]!YR@d"D\9Gnd2tCŵtWcVc$&uQv|cGN7ghzF P6..fٙ.3l}'9;EE/@M\ vFeśkz>yɜhΘ{mRo+P+ƘF=CG\o/P?ӿ>+,][r餶.rGŇ%~n ^XT^帲M-z{%ۂ1$-dwMӑM 3L$ۋ3ɭp- 6&Wױ*JM%77NeJ,B.pѵ0)raGLXNbܺo"nMbIp.D i ^s~u?S&..0ge;x,{oz3T? 4uɣ_6̎50xp;5a 1evp"-)d:+#S# ||aLkrǃedz0J7pNb<. )eLE6 Q̓c'?E0KRe'"v4=տP%"s4|TU''_zu=aK%Wsɸ~]T@i3GlޠGHLؿQ: z()CpFʙdgy䧿WV-X0O-2$q=&ҫ~Аs俰Uy @wb'Vh~I!ˮ svȳG/Uv<5_:!>ShjKb y@P4`^ ߋHN^OC[c:|-fW# 5H@l?6ZoN) }l.p@OFl-Uַja9&u_^<{?nj6Hk-f @KZ u,[Ut_qn˱nKFzڋp$FnR7ԂP+rLʿVeȧy D|̎3V[dh ;6 [?,a .f&#6x8mM0$rh<5,DxES*wWȊ ȿU"V#v@DݚnJ WsuBx jAkZ 7d{Ĝ=^'mjL(pِ~@s%VLڵ vJk*37gjMGG⷏hbk >wJ::=myHf4urUTOVCo kRb&KEHZ@Ld)\yƛ{Z oE͘=ZSߎEN9@Wc~P'G t&k+#ιsF@RxY=JW6БESDW%}A| ^]*3y}ϡ._˺ٟ-ߺ1I$HׇBNu8=nɥT1𻷉AZ7k \+@JkЮPDenvx\IjCik4ס`K&^1oCaª';PJOj2ygm4_gxؐ s嬛ݓeC/?rfcs(&Ǹ! TMo6CJh {l=C^k+ v!aX&C؆ڗ>z M*"o{?E8cF#Ap+2I0d $ 1=۫Sk% [ִaۜr^AQDcYNqJQf:xz)ٛ9&.ʭ`{s2jsȍEl'f@GZ>qIdGqV3y Ip T0yhl?G@4DJr r">ZVER jw ~2q[Gk@eDž`>p @/ݦ&q,)[2/4_`w]7Q+s㲴(B-9{#8srߧG-g rv?nh`|6 % г-QLiL@R x*2RuR'ʫ-gk( {ų'썣Vs"6+~lR G:~/qUX[Ulv E&wCu::؛  ;9~Vvs?q4X0΄ CsN"N^:O Q9NiFߤ ;#@^% ٱBO'"ugtx`^MA̍BG~\4O>8h2_B~`~'WޮCV(<C}͹!k6I^P gOvT1{._( 6.۞e8o\LB@=)Gyo&Ĩۻ5v}0~{Ļ@2){GR?kh^gd0|>Io| FDžmh-P`?*(h~ ?kq:?Dvpv ,G=,bV~!nK}2PŽ`y$q㄃[}$-sRwj1tгq\ܒCoOH^c;q0O|?5/0\ UE8{D%OGlTCJtV[c>PXu4B$r!yiϞ5uDb^Zև8N2g:ps1{4s)(f8 3ߘD&f*|cYOFvR5ׅn" 0}VYx-QGCBj^CJ(+jD؝lj/0lZ‰?@T)Gj fr2B,@PY:{D>$gBDZT e+Xɽ6s9!W{B9׌0UP,k`|o=.{i4 2: 巿L4 ZE!>b[\+T*@m8i2gWc-vU^BY .}~BJwl30J" BxUҮ8h'8Y CScK(fo)!ӷ2#4=Lͭs۞Dzi858<{i&>[hmqq XZ `gF)ͧԜ+ADZ@5θ,p*[n.1ӧfѣIi@W1arT߯Qݼ{ aݿ3gfG3g>G٩Jib$ĩ'l⎑$>ry: MC x.}"<.4k7b~z-g ZīIϾʠ셤_cY?zd|zIENDB`tilelive-vector-0.1.3/test/expected/a.1.1.1.png000066400000000000000000000120171217155126300207770ustar00rootroot00000000000000PNG  IHDRkXTPLTE """%%%)))...222555999>>>AAAEEEJJJMMMQQQUUUZZZ^^^bbbfffjjjmmmrrruuuyyy}}}t} IDATx8R{:V4?kA|wHxtj#|hNq,n#CK b;{|~x{~c+q"1V N:q<gD&.K@|ݖ@=>%M 3sN?f!qh'BfR*`F_%/!pgiG*E$1O1 iC4h/ZV.FvuȐ.YX[XiLPdk=>,V7Z '\LhZ—4!cɄ[S5gތsէȨ9eA;ǟ٘Vbȏ ]JRff8|[vTH3-:B Fm'?IՓqAÄ:~,wFβA 1u>"t}kjqio;>78]w M9ⱗ(q۶<`0e$[$$(t.nmC+.Z2J淮g. >|C9Rjѐ>iF쥟1Ir$L;|"+-1"^ ЄQP\ơֺ/UT2Nދ'hϰ-c9ȩn}W1 ِ\ƪssf_5ӆ6#yjUp5>0xΎG8DicnY7R,mxjj x @(T3pˬTn`H4@W>H\>ד:OR='UF~Q:õVKudpz>oecdw$U'EDٖfu8W5*/xa̓Bę6E34QOHRZO -L'dM)w9h,^ep}%C+W$L4o sT?9e/5Wr z*UhɄuBj1uD*'/qZE!g[*j aUCrRR=U$Nzb3Iw3'xs(}1'qڨ"Lw4W)RoA}7w ^"T`t|!2owfᇵțl] FZp\6?xO˜/#4&hUBt?ֺę>]tj玺ghƊ. 6 <}Q]O$j ɹj+x0tV I&o_;BwD;M1 L$Im/I\| ݽxG6sb& xv}_Ԗ{3Z!}FADW=`'免chH[;:R䚦QM\Iԉ>-yxȰJtJu!@eIKHvpS"kg1zCwVX !j$-PvA):_Rא%IIDKBOWEw`m+eTKyϚ5TY]z62̀a8zD03/ *{Hpngk7uyjO:+FܔUT㘞M{x~Ua8ٍ?0ܺøyv~&gxg(fQ} a+_w=hG)cvשH@`/:WP\FXcc*1U ZJ@rV@ }lMP_Mjjަ?'Q>z ?A h:A@Z@t ?A h:A@Z{R{60[g# .RP/,95~d%{5uӍrqZhǸO"- U9`]^V}0Pv]*UêQl{ lBKMfiՕӓpъ(+#vpnTvVND*`_M4\?l3>L=0  ù>Bk"m?;VB-%Il8 :(@vqQ"B=$b!? / _/*B@/5(X[n[~o NvhzAw6Q%/,c3NtxYs QͧܗKJw)gZv|o:7TKIuU`ˇ%z7[yHʡHܬS=yvRu܌p ߏ u^bd+д]Ί*NJ :ydpYk5"(|!dn?%3^uu'e{b.rU\nDžt)8>=xvAYJ&b}f; k%yG O*!T8n0S=m*/D**3]\e}4) 2T:쓳][Ӟ9{.2 +ke-`ʒ4 {^bҲ LiF h YEnL/!0DMa i‹ϙiLL5ָi;[/UM`z`uv߷*b;u+ ;7DT8 0$2#*exb$1RDJȷB6cģˈʅY >j=3 AmIT)-*} 􅆲,Fղ6=zv3( mӮ])"ZOok`.yi@U΀)&@M^hwyDv}[>O՞W@7h*3ҢV;%E.ߩ.\dJ` 1޹Ep>Ty1@[_aߪ}Z$^ L B 5o_ @,H@fJpsۋ bL(t# $ޣ-/J-3>렅 O1"I08+sC ɰǭn&Y#vvCݭ wkgܬ]1Ro7< %#0 2ށk9F $KHtsеgb"4֭yx)`kf ݔ/9 di耜? ;a83p6Ҳ@TEÌXErdȬ y"J?afsL:eBzlHqз*B:1δ &R}j' :K`&0=2` 88hUiA t!>ϗ`$:[A.hncү8c_/۶ ~WCX0Nr~? 96$]<2b\ɱLWME [lGG] 62e9>8Ⲕ#2PG4q)&P/GX;Ǔl}QQ`,zH0UK0p;k-fv(KօqMd ە"o]` ^h!S0 R/\!pXUOƘz\80!rXQa10ތu8,Sm6`R`mttրulAK@t0l1ץIENDB`tilelive-vector-0.1.3/test/expected/a.1.1.2.png000066400000000000000000000001471217155126300210010ustar00rootroot00000000000000PNG  IHDRf:%PLTEIDATh  Om7 !`IENDB`tilelive-vector-0.1.3/test/expected/a.1.1.3.png000066400000000000000000000001471217155126300210020ustar00rootroot00000000000000PNG  IHDRf:%PLTEIDATh  Om7 !`IENDB`tilelive-vector-0.1.3/test/expected/a.2.0.0.png000066400000000000000000000150741217155126300210040ustar00rootroot00000000000000PNG  IHDRkXTPLTE !!!&&&)))...111555999>>>BBBEEEIIINNNRRRVVVZZZ^^^bbbfffjjjmmmqqqvvvzzz~~~]hc:IDATx]:"E"`$XBQtn=uF1L&@/vƛ;6݁& 7iw m HiM@Ho@xvƛ;6݁& 7iw m HiM@Ho@xvƛ;6݁& 7iw m HiM@Ho@xvƛ;6݁& 7iw m HiM@Ho@xvƛ;6݁& 7iw m HiM@Ho@ؽ8 +m u.-_Z l P P/L@ @ VTW&!*$N5VL p~mplO4> h-* ) 3Dg#;Ա*@GehWvCxm ZathYy{W+1M_}0U_.&wcz5P3p@vO2Pd'-/F@pubbhxupKŇs/Ew+x!>h\fhh+`eNx!3B_O8@[6y@X\r0QKcA)y 9p3N^} Cxog9”'/`EqЗ Hc`X2LW^ (_L_bݏ@x5u6p6.X^0,dOѼΩuL jE e/0aѭt@~/F&o6ͅLZ,|;/Pn6ؕ;u:sÿHu K"r8 @HE)2LN$+;4x]78>Ga>g=XyhƠ Xlw.Mw 3VTZٌ;/`H0`CH,ꥎOOǒ 'OfGa^ !>_R9BR1| qZe؝>R>Z@4Q|0 >9-&`[EkΧL7yHE nPtynBB'q^aPf"8Q@g3x|nLNt8fOF:B\p箌jYѵR .W0uaS2P:9܌)Ϝ#6O?^gᡐ^.Ir>9M۠"]h0i $,T-FgP9J%ٶ4 fC,*Dт]\Z \ZF؁[4Ȥx _yZV":Vk[m#',ՂDe2/dX!*~&n~Ӵԟ?-h2Bhٖ<LjK_TAY3!m?F5B]5:(M@i@+߷PmUwf;2@~^tXEf";)?Ev%nE2 -"},pIw& vm fC^x=YR`:ltc.̽fz@>~#'# rωN@xz6Lt`#4>k%k!6\p\O[7CR/vN=>wrv< Q+e`U] ]ԉԗ 1x<&і:v r%!J}Mc OC@'p" үaC.\"VwnO>Q-> pJV&,JbP@nc_ĤXKWǿ@N{ Bձ$t[wǜ&e_򢍤þLKCD~9a8ke 0:7XnW#+XQ2\vJ@wՁ $1a%r~"9 [=]a$,DUyx1'`@T 2sdYg4r{F ?q!ML[?Y<ьq\FSeR!A7xnUE{@^R5<+"$[Y8S >6>&OGd3%Rh!㢅:#w#l"c%Gev|*OG L"l%S]mb:4D]f--P05DxU-<#S˘$5I{0:7f OΣB`[RQJ* b.7OJ@\] DR&ۻzyÓ`C7n,Oư(jY@Szr7չ5$eا&Ea2]y,4A%jcaTs'nê&X ]AQG.\WHzlvF J;q76@lGxN?49W9N?8w2&bsWʀ\~"a2R2 FlُNuyl_!xwrE+iU="8ir{&1OKG!N GEJ;%%32Po8=ٿq6 dBɷMdE{ 8j CLɘ}L*4XuX}5eW4HDf?c~o8j9e W*B]F&: 07!6h  q& Fиt`q i$wo1(@jr-XWѱHUSqVOPӭ(2*ɊslC}=׹syu7EY * +r@G~  Z+ٽgdH=Ba~zPtd+av9}GJf5[ Tddy˞;*?&/@ lm`9ԦCV(/Fvɺd*/WL8ڹm&|ڏ pz A3f\YHTK\sozQ>\+Oă(1pS\*]੹O wvFd. -ĎzZyט)En@IbqOFìF~NVfmta^zBm'83 IҺDps6cor ;e ]mny1?%.~>AIRYsJXoسLAaVH^Yr0 .EQIdXe/E8,hj1Pzc;㑻筮Qd% g#*S <]`e3zhG?P0n1{J,4l0 ˏ1o"B>V@Z+xͼ__Y33"6 حsX3:q8(7q 9Inb3% Y Q-w>d8/&1+.9I:L&RlFM{d522Z齳׾]e` NGg;`Q.f>j*L(KOGbAl`)0Ucؐdq 6ᴯm0܁FiYN-^Eyys9XdIA#{K|*bE?O?B(g) ]ӲaslMfXłͩ \F2छ ړW@|H#9 jE' -o˜JZ=њٌćG|Ik2: k Mˏ FaUas5$xbٍXY=.V͐/p+!Wޣ5] uXUy;1|/xXyܕ-Ox ;{$<+ۓb[Vr.fj~Y.n뀚hOJ`y,rl04UEՃ6[W;\n@ElYM׸ (|쇟8u@̣!U+/m X> U@㒀G s-T\՟$`MzRL~Lwm_* o@z KȒ׭[0r|8]g\Qƭ >>AAAFFFIIIMMMRRRVVVYYY]]]aaaeeejjjmmmrrruuuyyy~~~4@IDATxׂ0.ػw#fXvu J(]PdoEq-vY.F6$/T~'q0z+SxJAiշ $!ܶ|?N8P8sg 5 /K+%:]on>uh5M*jl؊޸U^]:7|ccwm1.^6Ԇ]Kqr%xe;_w@8Rj6jξw\6mA%-nN[Apho*~Lw[W_ԃ{%rYp<\e/|6J4M`Fmiή-D0uڗZ >He7MF㕘_lk#h0~F|(%F3ŋ.~&I1iqfd4 $[!I.$o\SOniM/G -AԆծX]y 5hܖV_FN(ˆ(QG"lM?0>|XkW _\#28qλkQn3`?X~hvlf3·܊x^lNWu֔Ȑ"^U+! /KpӓPhM<yB|Ϫl-~\Y@L;[5FN=~v)F eř*e>NN&8:eM%hB7J ~ȵ..C5\a3G5cn[< F!7Dzk@؋݇Ds`{=;Qq%~J"3Aڝ50(~z?>uhpSCl]kԧLɠ$XۡH^)80?^r4|=@5+"} XȌ%j禶{-l:G6)bG/S4+٩XTH(ry*fuL 3Y )^`қ51 7Fr4w졸IWj5}3̰.14d;wҮnU~U;(rH9 …[Z|<)j7z̊{["LK+ #QvVܷ?=8Q:Bܮ08 | | GrD*o|Lq`xϻ/0{㧐իCBUP~! 0)9me%9#s3({$_Y &%s=vR@(ieџ~[e8t+c/.PJ9,;m0|{KdiaVh݌jPFe w kԒ@9SZ`H0Wݢ`h&bh_0+lÅ)O^UU)bo:0x'{dZ.67hXmT)h8E;t/N p21 O~Xlδ1Z̹ ]%ʱtEֆԁq-4sŦ]K4v=FK)* lkvm^2"}cʲ+=~?.@HjaYv!֏d!Y%1N~ѓhS~nY9Li[D>V@o2X LW2L(?֠J)_``CXN Hn<;qoF戹j)N/?רq4Ր.SҸ@5f꬛@Vi1"spc5"]t;J| }f&8@3HoXLU#|)hghwN4<P>j;QRSs q)yQP <|~ gM +Z=7SϘ92 >P6s  `M肿̩}is:C;*,iw ҞdtnPp&@ZtQV)M84cAS6;F<@HWF.@n9+ Z8\t|^0,ӣ`_4Hdg' _4"Qε4z'-hθq9 ~A*<DhG2QrPϼHr3Nz80jIso`Df4:hH#(]41-un;4?J}5dD-S ,LxtM4t<`״ڙP3g4c#;*P渒IPVׁlX0%Puk'H"cf%Ɵ X .syPNX GUrlpf^$uy&[A=Lyj=?}V*f+ ͡[$u{'@f}M\5r\Wa[Z86>I%nZN7ޕf{0rX8L62Ry%`_X vnTU 5w"r1ElY>}ڈWj֑70hG/\4|EM-,uq+OէZ`=ZX6e%Hb}#` 9!qbVb#) ,_ $MKn~GK%)tpcPǞ?kid˵G^AGY֕7r',]M/4DLjvYIX% _ҕX 3p~L]uxL>P8@m:-o'er&?N֭bI 3t禛 ^05#X)P.{&&-ʿ_χ 68- hz04mEBa0.]x.CP32Zg@PI g=g!M=H))U8nH,{WD`گF-ҫ)GbZ^k}x]uZ^k}x]uZ^k}x]|>5x >.x ^[ g&ms x]Eg#_y祼IENDB`tilelive-vector-0.1.3/test/expected/b.0.0.0.png000066400000000000000000000053411217155126300207770ustar00rootroot00000000000000PNG  IHDRkXTPLTE """&&&***...111555:::>>>AAAEEEJJJNNNQQQUUUZZZ^^^aaaeeejjjnnnqqquuuzzz}}}llI IDATx w0v_7ZֺEa K0@|z $Y{ @ @C!Аhh4dZ2-  @ @C!Аhh4dZ2-  @ @C!Аhh4dZ2]wR mIa@ @C!Аhh4dZ2- `|%x7UGo&das߸?>cVޚgZ{sw@WVсWk H)JEC׽} 1c `|K'(` 1P{nWaba~~UZ߻c]gp˵[ \ xזֶIyFo2Kޣ~F~ KWZ2>=&Kjn::n~z}F` Ԙ::4l"&rQ=|J~9vXBUV7|X7zg/a ;ʀ'-v&pb܉e>LESƗ70 p}iy "F0uϗEk`GBe=ۙ@{z7?seM΄٪=4ܦN_j 摙7MGۚd<K|>Pn^a?`_ !,iR6`~,QnW/.ߞI-%'QrsS`8[=ߥAB|}[J jjN;R/b"B">vGH \{vjfIcX$c (R\ ҭMyjz_\EcC;zdKz¦%P\pu62VXOSuo27I#O#l?hk;,oľDW=geÂ슲'ֶKݥw <bZȜ%{ʼnI&] H U 7f, `'z"VQf/?J''n0j&`G#*m;_o%i'95:+Dob'Lm~Vb }E)k@ m`zs?ꂦ_hs'5beXHl*A XLf+O-Zd\x>t;<7V0s*A6T$鰱n,m-m?ZzO:z\ 77ja_4t ` &p'^.,l:L59z~D ='@ڎFf]&5$K.T⑓[}c zڎg{Nk f>*X7@2x7)؝rj~m4=|׬`*ZJ(vaup)w RUJiVpftxZD,nuN vXVݗ%g7'N/tIoA>9 s$sJ)?/SWiip ̀ e<4jIwoG 35FZSnPCV EkC?u8g/ǛTᢵTڐYZT7\tK\oX)ѳ4mh2s%2- ʝ-4viCmhrEj<…S"Jϩ*9πrP&FHe]Mf6nfs{q~FDI['kW.ׅUi@lZOڵq.pX~8-r9WJ+XA!Bhg!c[UGmT(l\fFY OZZ^Ga5MYUMLJBL&_ XU}@mZw R z[7@մhM7@5Ф 2-f {lSyc^=6 @ @Cs/;p)8)ʟ3@A%i$D-oNKMxj2@iMx1@|&z 0u0>P  @ @C!Аhh4dZ2-  @ @C!Аhh4dZ2-  @ @C!Аhh4dZ2-  @ YFƍ2 @ @C!Аhh4dZ2-  @ @C!H$fIENDB`tilelive-vector-0.1.3/test/expected/b.1.0.0.png000066400000000000000000000025431217155126300210010ustar00rootroot00000000000000PNG  IHDRkXTrPLTE""")))...111>>>DDDJJJMMMRRRVVV^^^aaakkkqqquuuzzz~~~#OIDATxBPQܳ2S 7p/=="ꅎ4 @ (-@4 @ (-@4 @ (-@4 @ (-@4 @ (-@4 @ (-@4 @ (-@4 @ (-@4 @ (-@4 @ (-@4 @ (-@4 @ (-@@!~`1&-$@~QZFhhQZFhhQZFhhQZFhhSvQZFh7ᢛ:E7E74 @ (-@4 @ (-@UhLf 42[?\f?\ xKr4 @ Lu`\}*|dXф{ P--@(-@4 @ (-@p^_h?~e4>@{4eh}.8Ah >jYb0.4 @ d`N&7+sL/{P*.5yqqs)m߇N;~X`VJF,_HLmTɈ8VK뱷:ªOdo Lm1ӳ+ } &ZaخGVX ъl YL_eRp|ٛ`O J84>mZiY! ~YAt4e.!)8dh ysF f+Ş⽲a6`yd/`OOcd{ ?14/%FڀJ_V/.c<ڕH7X~1c$/;P- Ovoax\F>] >eP0ffxF0<^lF[ ڂmZ}Nk !?]fJZ718[ĬQ&{LRd {Go4DƾwX<];wZfڻelGZ1Ebbtu^z9asriՇی" Rּ{8Ui7F:g|S@̞f#!L<wyțF〢6P?yL{( dcݴje9z8'^[g+`D ޕ,uL ߯|FvjW{* vaΌkѳ{E;( .E 5+xN0 &7c}(:/;{vGvLԓNťtS2o1;4.FF&.ycF'.UXsK Po_,/V?9ݫ6:V? -A@lv+5,ogjaKUaj8OFU+$$B<_VaX; . g[kOAct7g8) iS;)""פMvvˋ\צOЩON jt#Є*ZǒJll!Dž'X[NYS4ȃ8ﯠ?Rv]%=OJ (Zq sO"I:{T xVXM$& ou9_ ~{WU<^ hjX~;5VZ݈k qDӜySEf{7jkE|ys~i=vY8ޫ HIENDB`tilelive-vector-0.1.3/test/expected/b.1.1.1.png000066400000000000000000000022571217155126300210050ustar00rootroot00000000000000PNG  IHDRkXT]PLTE ---111>>>CCCMMMRRRZZZfffmmmqqqvvv{{{a- IDATxV@ j@i$235d\fo~VI^:U]aYv~O|at'̟a7w.d]MOhɶ|rԥ9g tLܮcsgL=˞z!:xvx!YO0.r]UA&.r'oBW :,-|Y#\AG-?b0ХzHE%KdCjұGy':4caW0ĶuOȋVňC xB _5u郛!dw`V&" ݖ/_f vOZvEFDi0/ށMtS40֭./&.c1enHrOAg0C @ 4cx|v< '*@%~ǀYyW`_O Ny|uƩml (bZh4h @ 1-@cZaw17qh4h @ 1@[؜xk>$$cZhwCҠ@oc-@cZh4h @ 1-@cZh4h @ 1-@cZh4h @ 1-@cZh4h @ 1-@cZh4h @ 1-@cZh4h @ 1-@cZh4h P.!]*mvch4h @ 1-@cZh4h @ 1-@cZh4h @ 1-@cZh4J#6IENDB`tilelive-vector-0.1.3/test/expected/b.2.1.1.png000066400000000000000000000213061217155126300210020ustar00rootroot00000000000000PNG  IHDRkXTPLTE !!!%%%)))...111555999>>>AAAEEEIIIMMMRRRUUUYYY]]]aaafffiiimmmqqquuuyyy}}}M1!IDATx]g< SDŽ{+E=@ zi&i}XvɉM>V'-Y~xB `q{XhnF7o/C_?l˵XGj=Г)/ uo 3Kq^RizFf%n 5^>`p"]r[l6ͨ0Je`Oy^0}kwyO/&.9 iMlܿ}<ܔN,}ZyՊ,۲)x1rnMV޴rUGWY0`4ٺDtlhZS 4JR-Y ?.q,HJ". OD8ǡyRG@;3{W4HcE{Ə=k2 Wu&t0E~Jk  Ogϕ6yU2 K2Yiڶdd_7<הw|Jq 78S̀JQs(ça_ڢ vCP/i^-bA9N6]FY%"4_$p=Ҷɔʹn9T$EH4 }*i~ͦ6$p# -NbQA<kUVy Y;wulvQ t m6ajS0Ɲ}nm6Qд oj#`ͦ0&B WeK8=kT&)vuߪ̈&!,;ypU(XI_b(U]1.Mvn|wc,GXړ4UqxƼ\&@zGǔ_Y_XO[|]{z%TC, 0k=8s͗ n\ho |Put<*K=mmh &w2\ob ,n~,p\̱>\`  <,,86T|k&@^J97Fqf?/6bƊ1J7)0DQjj`I.-({(/n܃͜k8`qĺ,3g֫ 5ORL"x@C6Md^}F].7/WŒuY(+6dEr ĺ$jTlasR^4(+Wg#^:7/-4R%:y2sL/!PkȊQX#VJSsX- l\-k +UZ4Գ-`XS6vrrцg}kb2<\+40xkk_V&nr@$fGo2 =0 NRy؇R>vVck<ā2y)⾍>^hi<#WU?sgвwMFwRDW`t0s幡c% W,c~߿{x}*0!1hBM  G7~3q݉PUǙ8@BWv})5Kw>,sX!'vA31zEhgXxL.-hğ7'2'Qd]8d]o` @yԅٸߠ`ʯ达aejBitgݾ\%Ƚ8cqQXHAϾ"ꬶ@`w(pAv? d^`ˬ{ENHXtlDeiIW-d,关i;{|]BHm .e'kԵǁ>[& ٞ.*mS~Ro8-: ӟHLP?r?DIo6 pڏ0? r.* 6ۑ@M`dž|wl#o.eg^&Jܺ fB~"E'Ew}` {"6ƥ|V3ԯڝOM#qifރyUC/HKE#QMex=G`.?߃;-sBbgdD| `5@r^Y4z7U<Q!An<Fk{Οof]g~/;~@2'a+Пs$`NҸHy]EABu:/xG6JQAz$d_aKX jz:5} cWkqQq\:Сn"Ӧ1J%qP8/`f{yaU6$vcg^vf5`,ĺ F,ߪx9`R^j.kzy1q:(7 <&:|d@@Ag阇y.DXsE/{;=*(IH]/Ό Tv S;a9+zY@mT""[P f"t' |))|I@mg 63[ ]9WwKcO@<秒S#`![wzӒh?ݎW+;$aeI2?Xuxٙ{w۳<#&͸UH@"6 e 3˲sG@%#:h<{8A5F3\Y}{{U Ji_ CS+w7]w(IVi:T_.\^z26o06cgT/IZP>xX=$76<1Nō֧9LwP{G7@I0C;qY"!KװXϊLQfE*58HyЈMB' 2bK&]+ϖUm7/z(3O08"L3Gn &P5OW&w"8x쓎ߕbCg~xkYdcż۸`UVϭzA'7'KÒҬ!b69kX{XHk<{oqo$ZGYoqs @{f[сP-:}0lzNDN3;~7e8?ɶ lgIvzӁIiv7}"ח"Nq(P5# vtǪJ`r|/w&GF%wOwqe[H?&HbW%A~Jse1&B>@Cmb HE8x U`VX+v G8%Eh'-WedF"GnY;*$};?bIDwAnp8njKWX^HZLz:.8unxkX x91l }@`lL]z2dZS庣EY_'@*2X:F\D4%CR3e@$y%qj]zqT'@W\dSY%- "D2}%"vwD)9`OߖCptTޖxԟ*z,LCcC:E 2ݫPZ@ Ϭ5+%YØg&5\DE^WRT\(B2 !Bj"")ZXHBZqƩ_OJ`R6=|0m ݛcd0!*R94kZk@nTn;.󢂄[]%b4Ec%EXwC$@w 9t֩1]ƻ~t"@_&\#J <҂Df3~]:dw$ &TÒ#EpϷ{l>"C@ 'xSW+(NS7ԭFۦe/&X7J P#T,𦍲rZD~cw5n-H=1ev"cC%_ i|T<݆o$mJ{OtM"m亂|<0˧Q% ]GOrMm/%7 :YxߠSwhnF'1^76Gkw9_I uB1[cjԼIcC!]]" 0 zrDpNh~%"z}s7 AҳC8vr ED,7EO#%Io8Qs G 6=P==.zZ' ;}ыu ZL \׹||R`} ӫ9ks`I14\W›ƫ-!y^PT}`xVx3Aފj? *n,zg@2`GXoɂts6q:`zN*#@0YꮗL:NJaXA1 nrŀa hKEP!\͌tk E)`% YP1 u8[]FLP/D i"13x 1<ðudZ Pc:1TКOͱ{/">C(K}R^k8)zՏ{`B0FzIl 4Xhj O]D";AA?Ȁ))Ԇ٪TQ5LqJ}6^sBN mFK)- Ve" =3"qtc;A MȮr̟579b6.|nG9Ϝ=oqU[Fㄩ 4\_%ocޛ ! xo9I*9\ r̓o} xx}I#{0ى!R}tXŖ2b4zխ}o?:RU hAp)W 0U$i8eV9k?d&w ~Z*{|^pHwiѺ?U7lݜ M.Du8^oUP×?䞲d#Mxct*f}{ [v̢jT*"W `iOmpUĢ,@(f*^7S`*rf@M~3"^sefhдv)zv#$#fkWl:Ozn`$r^}%S ]bnӅ@\WR4OeE`\hVXx"SD}pYs7^4E"'m17ߝC8&P{C@-!^uM$&JRׂp3l'le^v&+{9X˾m `"ܟEn}X¿"%\6M_PQ+>Kߋe͒ف=IQBS=^1{-ߐP`s(;,p՝xj9+$b`wx&Rb\2{?+!;艀_DV7r}i5o#N¥R<IF@X Ĩ:gwd@9'ĢN5hSNRd>CabkR6Ja !s 8Јjcb\|>d޹G: •rJ/۸F|"M;4fBO0;6\7WM}4 bWkAoe6 ȂˑX稑d-A7J hjnѣCLv4juRҥO 6& T2E4ҁy&|cۣӨX6c˚ԈdA$Y}k{cAu>(.ܦ6%`XަBu,+<$YQllO P՛M`YAnqz^檪$Hq6c,rC,EX5L SW ,h~OS:FTǫ螋BnnW!a !ԏ''dS!rlm@)+p% |(:@p2_ GuLX$Ϟ7@&3` /k &׆_[2@~xJ8k %zzޜ|y+nЍF1z1MqtIvI<+J5 LsZS@NF}.l 4& ZZ˩iob\l>m? )pܣk< Y+@D%=Onq^(ز ?N |niQ,8[4{.o R(:=ij1 UQuߡ0#ׯ cݰI'̗>48젗kY¡lG@DT>+Y'>xXN9~ 8fz$ (w9O>kg0RiiM'anLwuK|}!8.>@3{z)peRGɖP2a%;T.#ښCK.m7mt2rkΨ֑SF!jM`9st![/r4[}mMZ.oJ@X L|1@e􆀥S0.vdm(@M=Rx*r;'Ϟ> ro5&u3&wBgy>Vdq4L8'tm_?0.C$~-C,k,a lob 1?)ޢ%Rה&AjziCysXkBBϦP~u͸3֥,߲c,p9{N,$ue(,Zh 6y"/ոs-Yw(.{6^Ib> W|@7|&":Vz45's4/fl>=Ɲ#C}&, =OX}T '5;d?=}-Z\"H:P_$Jا!m'](bI㷌[5`pLؗuOCfj2r"@&"Φ&[}cUFT;5Ug ~AHgY]e dT}w9.U9]X [|hfz{ U{qu ic؇^$!4D[=3sH`&|<:ˮpIB5 hh S/ iY=}k|īf$ vaE<sp(A X'$'m4Fh1@h@c6#>h>_8(^;Kdл/w;esP'"/?\SWM?Wq?MS Q5||>u#Pno?1o/ 8pWxdzׇ- 8]OJ4ccطE z`D䵃Ph+N#YppPhT9)(u;vnAH0!B#~(MrBU{ъB5~*ۙ{=q<]o ( @"L'^Wѭ~uEO:."pk[OFupus7і@'; 7<@,+3u<|s;Y`sO֐mGw+]Y sN/{q(?%rI/V\p5u?zWێ29 PNZأgȎ_W/Ɉd-%Ks Cwo!4e>IU&39w  rx:(@Q|y_MA^%ua[.I'2 tkOY-m&bkq'>IJ p%~V%Yl0ϨwWmPiE"+竈 ߰h%۫;\ٜpR?Űpay>@cÉXǽOg^=n ס0+:&iV`SBV;!訰x ^\> GvTJ۸Q˭XbNc*H\N$[m!T Cˇ1 pm u;PV)PQu_oּoV˜\܁|LŬn7n JKe띖}ܕ阴0+''>~Y eKx>@9!kE?!֚eN+,VN~Y.Lbsg*ŋ:pqj"d`066nicdkqȗ鼪g#9zjeQ*/*ജpP BG8r:RI-@4*kfI wےA$^3VZfbDN:]jF0o_퍆-^j&j;\XY8x;{߻ˊ0nZ`#xz0n}5i6n< $TXY*cХ?|ۛo""َ$؋*aaO+&¿P-K 0 E6!6}?oY+XUrP oyӭei_v)*zriuwt^o+U%Y#0]'>˺?.qxIR…U(vyR s滬=r-I(P)>c2#R9t6+2T$7R]qA#8Դ`M5XL ֮%](|%ZmAB>+./|0XLHm2`\ ";)j*ciase$[ؽo]`Ҍy=넎lMh#b!9k\\k>b  ͣ_b> BZ+Bb%$\ׯ bjʁ[OAu6v:ޫnh|)t{EwLPaXwY5W8$W Wh7sZhN37ܱ>r@DlX#yDyIoUuvr9л'Z®90YZy QL~ B1@h@c6# m4Fh1@h@c6# m4Fh1@h@c6# m4Fh1@_j~S`-+uqJl-tg[#sm4Fh1@h@c6# m4Fh1@h5VIENDB`tilelive-vector-0.1.3/test/expected/c.1.0.0.png000066400000000000000000000032631217155126300210020ustar00rootroot00000000000000PNG  IHDRkXTPLTE """%%%)))111444999BBBDDDIIIRRRVVVYYY^^^aaadddjjjtttzzzjIDATxk_JGNXjnoeiDͳ^] 0à#t@Qt@Qt@Qt@Qt@Qt@Qt@Qt@Qt@Qt@Qt@Qt@Qt@Qt@Qt@Qt@Qt@Qt@Qt@Qt@Qt@Qt@Qt@Qt!`}!`)"9?#f9?#Cޏ g4*@4*@4*@4*@4*@4*@4*@4*@㄀;"c9!@DVe?c9! @Qt7,E' EѲ"WѲ/ηqTFhTFhTFhTFTa:7{xx(`3%p |]E\lA! fc# s@[^1-`qZAhTd4v[@K#0iƿ6 |\ qa.|ϹbWW6Y Ш: Ш:^;fxz]C(o~Sp-Yw9p#TFcDcF;Z^ؖAD8( kQo.9*Qiˀ"쒣p+tU@87Z pkOJ'/%UowŎn vDG h9(`yu3?rP@@QtjLWS1 e؝$m^$đ:if%*q󼀓m~w. dR4z]:0iJ^۹ulsTIhDu`fpl ªaaP։g$1_=܀MN.W,iEN_7S6 kieN{^/2꺄c`HޑO⶗qdY |U@b7P>ܩU :&55|wKIO8CJLI$٩ 0{mm2%6? 4*`I(AѶYltv_@63xxaZ H Yj77?5B{'c% {|4K{~*`7ͬBۀ.=>G/7<{2 a4?̘G:gW-+du$%\ cV{xPD_Ny'WxVҊJ:=uX U_3nno"!fxp}ϻ:)'|gDTMη {P<ՍRM*2T@syidU6N>+,8yӛ7zz=oz~$cėO~tzϻ EԒ>}S}ݽlNAӢ>v x5u>gt|:=HبA G?tМ/ƽP{}l#F^?.zz4逥]>d0~V>6'Znk 9p-yKg&#͹h5ek-@? ~\4vl/5vl'c'6vlo5vtѻϛs5m0RZ:@Kh-tZ:@Kh-tZ:@Kh-tZ:@Kh[&̜cݔO6~$kGNy>kM9˔4cS#^BK`僯>>Jp.lxZ:@Kh-tZ:@Kh-tZ:@Kh-tZ:@Kh-tZ:@Kh-tZ:@Kh-tZ:@Kh-tZ:@Kh-tZ:@Kh-tZ:@Kh-tZ:@Kh-tZ:@Kh-tZ:@Kh-tZ:@Kh-tZ:@Kh-tZ:@Kh-tZ:@Kh-tZ:@Kh-tZ:@Kh-tZ:@Kh-z qsIENDB`tilelive-vector-0.1.3/test/expected/c.1.1.0.png000066400000000000000000000050001217155126300207720ustar00rootroot00000000000000PNG  IHDRkXTPLTE """&&&)))...222666999>>>BBBDDDIIINNNTTTYYY^^^bbbeeejjjnnntttyyy}}}vzy IDATxyCJ/XYVuR \p =BfM&dND8d{ 4Z6-  @ @aаhh4lZ6-  @ @aаhh4lZ6-  @ @aаhh4lZ6-  @ @aаhh4lZ6-  @ @aаhh4lZ6-  @ @aаhh4lZ6-  @ @aаhh4lZ6-  @ @aаhh4lZ:` x"Jq?.f€iT%~o̰6a4kO\ҝN'cc@r9z|I0&.C_֕p1 n[Wŀ^[W©(B2`C4`@&hw|> 9;E(pEǬc@u0 HB6-ldD{Ŗ["X%}Ey5ا_ ''>r`w˃ۯq 0dt߮MрEW8hU܀CF@|,zL,2f_@Ӷ3ns[HfC/Wxn|eqWՁsێ4 ֎vV ЇNQd& nXHrWPb+7 H`g\?/S ǸK_Ly@jo3qq# -?E-XHM!ZG9Z4j|-j Q/fp-U=h6(|z/d5>Ά^j&UM>3~86HNwlSaKM蛧X#BI󟧽;YX Otw{WpIirDgM|9]}ǁdg@//gF׳lH-QQ z{Dvlbh$?*6Rh{ ƗKVd|th~ح12XKL|ڳ>t2}7~u($4m^9ۧ@\1;TfbYKMW&:̰j!f*=uwAkî PƄ"g$?д2pgA`“ԺRm@1/Zw4Fh^(YߠN6iIXgJHBr~#:Z5Yd >ѥjFZVA$^0{?ô\ %v j> ɿ߽(;|7J4Ieр)V?ЊUǤjiU35VA{Bu܄:р!yuɫ͑6ryzhSM(mlLWSn=.l P&ӝw㯪c纾45Ѵ"OxUNDo@r^7USx?>Jl_ q8(fz\ojT̼ͪ4_MN,'|ˤM_oDʤS08LMTE|xk&WӡvK[z'ÁImr5j<#lĝ7wO-)mqGKTR\ 8!NZ2nz:Ta*m'+:M =yYc z}'֤ujĉ*e׳\rFJմIzNtZ+/7fjU)`#惱IENDB`tilelive-vector-0.1.3/test/expected/c.1.1.1.png000066400000000000000000000030501217155126300207760ustar00rootroot00000000000000PNG  IHDRkXT{PLTE %%%(((222666999BBBDDDJJJQQQUUUZZZccckkktttyyy}}}%IOhIDATxkC@F_fmԴL3pA[Wqg|W3 f%+>l4\GN'/ooG=}i #w΋klP ?/FhϞ: y~=eDw'OC`{γvv"Zeg e1x?WrXrC;>;ߥkE7VN߷4o;խ3fUΝoL j4ŹuEߩ 4)gQ'9-&@xߧkFW@V^EER2_}+>&N7@1vv'sk͙c7|:t0%.A^y' FAj](4 \,f+cGptܕnY'r2靴< w](. Z4x!Fhs@QXLA[@⑹abyaf-5g2|+})jaf\ϿΑBKh QWt/WwlcvVs^O2Z1j9MrQ<fR2ݾUR]`|*e݇ ՀY-A4ܻlߖZF@C8yA %4u8 j/qVB5z`t,0`pUs0|XX+b.`(@4@:h$@#t Haf~3Q X( qo8JHF4@:Ծ}aRI;~q5 5 h$@Ӕo7AC\ g h8~! 4 h$@#t HF4@:h$@#t HF4@:h$@#t HF4@:h$@#t HF4@:h$@#t HF4@:h$@#t HF4@:h$@#t HF0>^L:a x1@ . BQPF`hHF4@:h$@#t HF4@:h$@#t HF4@:h$@#t H/I51IENDB`tilelive-vector-0.1.3/test/expected/c.2.1.1.png000066400000000000000000000036121217155126300210030ustar00rootroot00000000000000PNG  IHDRkXTPLTE """%%%***---222555999>>>AAAEEEKKKSSSVVVYYYccciiiooosssyyy~~~>=UIDATxkC@EVޞfjheu1! 19Kij0 a Gs @@аt4];>ۺ#QP]. , @@аt4, @@jd?܎=?gE9C$аt4, @@аt4, @@аt4, @@аt4, @@аt4,~ -''`Hd"~<KuFDVt$2BXcCE3|=^t'j# &>hkW @@аt4, @@`lOi+h+j+Fǯ (N# Uаt4 ؛jAip8KĊJCi`GdG՝6~[:ahX:ahX: ،?u`D;6D_BurYz׍wS@=83'HahX:P3vlQ3}G5 Bh&`wL3#nbt4, @@}N-Aj"j^|R|R(v5 a5aKߋD|&F@Mv.RahX:ahX:9-AJGv"%`@ 9 $^&%dפS}*@k_/HEl),$[GъV-`L4>'.Cmr?{J{C{JwKZiο . (AIzq{I ~Y#^nWwO݈cۿCk%'m#Uw#0&^r6Rx7"rO4_%'_E*Gb/pC4E1"!џ 2[+\Y+qM| 6*'&Kᕵ9'|ޠ%OZeiZei&}/G/%g/tLce }DyS哱 8RBܱ9Z@ET<NuZk)8qoU^!8>V؊ 2oJ/C%8 ? *k >2_,\6b7Tw{}$E^&vCB쯃\yFaq~3ۿhmb+(`wQđȍENC % @6~/15 @G|:;973u9JW;(6MQt 3wF3"tK8{D@fmD_$_f%!ddY> PiSPf8S2/Ub'(N_$/V\Nb2W![iXS7/Vr,[aL˝Nth0WؔYբ:H@i4 hOamQM?,( dr6PѤ7`٬]ki9:tahX:iWCccIENDB`tilelive-vector-0.1.3/test/expected/c.2.1.2.png000066400000000000000000000017151217155126300210060ustar00rootroot00000000000000PNG  IHDRkXT?PLTE%%%:::CCCXXXbbbuuu{{{f~IIDATxْ@Ҷ{V;_ i@OžVM)&"[v|6Q p-<7: 4 4 4 4 4 4 4 4 45[C p(Fz.Rc8XqQ#^^G|Y wok~Gà$$$$$$$L3ѠL`=!dMDv#/:y69 hMhMhMhMhMhMhMA]S&0@ h@ h@ h@ TZ xדf"]Y~9ٓs/lK7>s6@uFNp<XW^H*8Rr5@WjooNP h@ h& =_T>KhT[ p=o&Ֆ|ْZ@Z@Z@Z@Z@Z@Z@Z@Z@Z@Z@Z@Z@Z@Z@Z@Z@Z@Z@Z@Z@Z@Z@Z@Z@Z@Z@Z@Z@uՙ;=ulu 33"&&&mŲٺ ꄲFm˶ ЈPyUIENDB`tilelive-vector-0.1.3/test/expected/c.3.2.2.png000066400000000000000000000226601217155126300210120ustar00rootroot00000000000000PNG  IHDRkXTPLTE !!!%%%)))---111666:::>>>AAAFFFIIIMMMQQQUUUYYY]]]aaafffiiimmmqqquuuzzz~~~A$IDATx]<}]1ePP@P}WE dZ&>"N9.0T3 @HeYϹ;?wp['H)|K}\ n0yqIU/РO"TjR_ Jsoy&@Iܺ@?l083+3~ifs"f<_;!sg#Kֹ.ME ~kQQ C\ߠMZF^CuEq TuS?cK<t1 .<|rý+\t\ݽŒuOM\)K5/Aƾ. ( }56!G_wdxZ1PK@ґ~3;{b ({)|AE"&aȕGimP r !G\^-f W%ipP d,./\|8|A(4\uf ^f s$<,wAa ΂2LY}HBqPbs7|%)`jn€4ԟ5uJ@TVi<0Jߞd.)~YrkP,폮DQ4{B8q0]q |0i t%tk&(+z]"C25'C&CTQgt7>`ZNPc?tZúvo#tbH85%HYM aRdLMߕ[ oDH" o8#?zJ@pB@7z)#(Dr$^i_3\ IWӛ0; \-S^? kb"T)81Ggrn{{>Dݥ`1"h3M\Z`.[º-('Pmi X=7.a'Z[xS~s{E"#,Z@emM*SiN^ S]d'@~;*1_Gx]njB _\{w͙F;[]鑣:Afvo^4rta~dL2Sy#޸X5u,! RQ1Sv8VUAje+o1QFP7踞]tU)xK;Oผ J6 Yg,:n&z }Ao[A;Tz q8 !kSTMȹNW_[3 tu$@QDXmN]%4[;F?f Pхh>d(Tj[Pl5r}' Ghtɳ! +=s3Xca9YTrG^toR01^$/;sٿRZ78_+-іP S D_F&Y5+PMA.5!j65Nl,)@MCRn]r?H ċa fV1vR~ 00JfdnI :bk^0CэoCO`9MNdMtKf' &XnڿԵR",<Ҝ[I;e%@RfXX8. -F«u5&tHJlL }Psb1 >_feWH/yԺݷ|[{݃$݁ / iɁ3}QK)KYHi%s>of2k8 fz/"j8a6*2yF%-Q*Zϴ>LrBBR֮t[@0DJ5ԇ zR`Y(<]Uil@|^U-JJGc(vg`(.S–XԛuXP+;FԾSH!f( 3_ONSW>Q#ټP !C8=cYCU'>ɴnȋ8 a9>XAdc%ǫ)5K*LOB <%f%ڙ] Kf1B~a⢎&@ز\~>j[ $ӀoUDpWC{5hG '1Zu?H`}R쑜{uxƛMyB$slMzv]L:6S::O*fjrs P02Ҳv(<_L*.N(J ,GDXg@4KOVt\%WxwDel/X G>|eSodn(O8ɬ2X^yvx'eRtTPyir b.+HC{6 t3U}^L{ei֓WN'q)%iYWP5ٟB6xA!`]ݽmЌay0]fx=1&lЮȐǒ`!ZvjY4KԮWȓRvߐiX፡ZPfV Wv T⓭{Y աw DRh6*V畻Tؗ-ǘk.I b|Hg.W5ݛx=K]0EфUl EмA:2".߄Qr.@wKyvq!/1v7\^m4fZ4K_BeY6$1y5Fc7JUr3F2bK^:΢uk1[ɗȸU[$yAS PZ* ko7ID%VS}YfyJFcWl ʣv֒f t+-UΎ^ L.y#%I}L,"¨v|jYC.N9=-^ڸ s2ydRv}U傀V2% >ı/YSW?TN7w0+M~kD6G+A<"0subB/hZ uFs]hk]—#*&K?=KY9]ʎJk+t8{\<=QwV,a97ut3l' riKo# t73?0vv!7oS~&+S]j6Cߊ0y O9rJ>F`[VQkJqS ?xwCsN tNqa=tZ7`E *O%ho00ZA^c 񅀲vD rNQjB_eW~WXytyk#JvwS >xw5.MJo 6AʫKwˆc>0>#,He ?!*??̋b]e9~yDȊq#~``ԭ~.0W8CՁ}~hݫErڳA5G;&]4>p8ZA|QTyU_~=SGԤly؀ Y" ouhp;Nj_Q$CѐSh}|q_CꫧeO7|k5ƳkG 0;R&󋀲sW \”+-xΈeH kX0!P t쯃7\i` {<(]ݷ٬M-ws]PxCfJս-<)U"m“Bs!SraY}$'+fյwhw`A.n|q ݟT9^_Rc`02 &-v؛mX6.>B\@.AKΛ)-9(1[B7tK E@ˠVi{zZ}2v1>궣 | z[2wފ+̍eZjVM=|Hf^`ZejȪ54>$\r#?<6_ww%.W$6%!(4#Bov`$!>$j^-Pc= \L)BT 8ު쫮¾sBbK6+ʌa ﹖ )#&tJ`/G ^[s pY imB {Tr!X\yD{uҒպ[X͜VXj +wgڳ;)`G^N`{D 5e]J?a$|@Q(^?sl, 'rgƕ6W>ǂ hJ0}gh binJ#&`#P5j?:*aZTO&#xf?8.5Īz^&`mʿV |[e?pv =Ȝ`ݘ\ $ρ| 2Nc;73=syj8tƹv:R H{9o3 $]?[]5)qMz@˶oBk|?s`_[\ٺ'P%L2^H#\'={C |Pܾ?f{ceo.yx[|_cX! ~?-&qx)LM[Aэg7\vvƀҷq7Vi68Sʅޙt_QՊAn2XJă!sol66@lO \z KG1Tko"XOuu1 ZذyŞIo#c&jmG8@,IAHf\<0x< u˻Ҥ){f @5$ixt"xK7^ޝ|x6-lWX9Z/3O k.OH"@6V[D+L.Yhcו"3 v?7YNX-G>;Ƕ!_jovGԇvMq+r=ls^S| -0o84Ŋ~Z?zx> #3Vլ3+@{ &=6mZ"|]{+bƎjЖb`o/Wf.J|hEWp#ɴQbK+2G?apvSU1y|lBlT:l cdEЌޓE<v0L',9j_[Ў"=Vfk ߍg~baK@i\;fj:XbO鈇`um"tjg-pዒ/·loV swjpx9y 7 08uk /Ix"%m}ȟQƹ'[&/ 2YNfE gu;30;NЭKw?<|%w;RcH?Hˇ~ɘ,"Qk#`˒Ee)QxfL͈Pw{e/ u&rȗcf IV&K%@=Y_Z*z{xKX,Bkwt2D_f3r(nquSob@ 1šޞVxFrZl ޞ8ݚe؞OvCP,H侙/`Q(kv^T_ `zlp4BM.8A8diP1Hl'aSĦC%߰F #C{nRq6~P癀p (ܓS}vzQR^➆Qb!S1J3. }#gv#"WS1-ɟf'?UvPK׳|]21#ѯ,:p*DD۶뽐m /jZe|!U.BNH!^M `agr鑅F"ƵAO-4!}V FpRq4DRW.f9@ZK(ew|dt(l׾SBO"9k݇R tw#/i{N1*:(S* ;?$ÌN* z 9gC~<}$HPM\VIQ;3fԒ,/2u-)ٱ?Ujeq;H*2oDܷ2:K[;& 2[6gͅXGq_m`~ymc5 VeByiQF;(p/&FˣjLQ*u)ZX0.T2LeqK۫wZxJ>(=ԟ32J!x=rmTwEM&E)HoXbM5xqb3;&) $ tqzNE4#uy̶Uօ-{O֏- F"vOdxz5O#!N ^nsB3wKaljl͹k\]i֮[*LwmmSRZV,Cd죐zϮo 1o!P0Jz]x Rv4fd=֧GY@-TiubSy ѱ)q E(>>- ] M<5 >*gn!E)ڢ_7]K"vY`6rN!bnS+OP革)GwLs[CvY\+LUImc ɹ|!@x۾"YlVbP;4iQӛnDX%ʊlLҐ=Ly3I/*C6\~_Jp^oD=zZxH ~jp @K6j8HPr_)L3e{*Y4MHz@HA I0AqeOB$4C& T)+ukaK֘9SĆ#-vR;Ol0`Yj[)4x1)&Sl6eшuVo!tS{ e] ?v3AH '] !j.?i!j<0aE, !PwkkUt FB% !GB% Of3B% ^&$~ LP ZB&F!b$N8|?oCkFp!fX 4`nM ʣtOk(W $^&BE$X*Y5;>>BBBEEEJJJMMMRRRUUUYYY^^^aaafffjjjmmmrrrvvvzzz~~~;IDATx]v8۔C`Ћߵ`Z}ɦ8ҵ4.Єl8;=yx7W^0#X?  Y]k" NV U'-8r9B {lJʀV "N0#' 7O|eAHx=X0€~Hw n/G?-BSŃStz0yDiKmMہ~砵Qd@"T TM*?ED3`JљQxChB7LFܛ)<TQP``-0[ l XEq .V$g"< `h Ѱ #Zܞ 8nPC@@AgpnJL Kp$h*B8o}bB;>@3'QHc l<OyL9PP_z;lI! $(,?P_$,c (Epdְ,^| o=88?MTOav@9x44|Mm> |5mrxx1'&^%`g/`~0^$`-Vg0`/0Q|'x)=(^!?6?~1!pM%ex|֐v x5}$p}Re̽\!~*V" 칏AJ/eO VЯpO@V/ W-(A|ojpG) %h(+3' OQc8`0Oa#ĦtHgP<=.I/YUԿ8jVcNƨaxA*tP }6yuEl3+>jsa)B*t MaKؾ*&@j=^" HF PA^3b~O8peN{g$trq,cF џH_ثf XN=HitXxK2d9v4Z bj D]N DIh'gݙ{pD(QW Ϥ-jǂ?l_ >LQ >96))s~j%x"5%@+ 2)(+&M)ɾf p8EQ8 a !jA[&'18?b(,AfnC`.ƽh?}k,`@ y3.Xs[?bD-Y} %ÉDNQe-  #4yy bh(l'`U76 lKݡe0kE0o o;9̖T#,Qr{|IFy(vs=X:ZNt/mpM Wd$$2$b ZBij{[AKtI)Wi"ߢT:*"h=gJŨ:@#)PW%Z D62^S Wu4z.w =jPp0&[măcL epqDtWՑ*D;A~q 4ͶyQߦBO|sx'GTY_|/x KJ%Au1\Al|ʼnW gPJֺHDZL uBD9@nLGj~,kK]bP0 +У37H\kOYmWI;R>i(䂠?#db=x3_I5o3qnj{g䙖K "D1r]S{و/|B0UVt3[#+SxEӗBc7>'cRIVHv̰md9.LX@2Ӹ |B xF[nwA;}r0o rՁ\#ݩ=CWrjsXLOQȯ2PevVk]QUB|L&H0-7)7:,|'1#>e?aOG+`ZA{I@;&_M ۄl1wU3L:M.X]]o/`aL=*iz&1UntW触e!frJǩ;}ϖ 9W:p!Q)$#.Z9PpY wqW^V9  YnәM8+nN/_ Xz>HFZPj˯ h-}.B'(c{.{;. 8;Ӝ=!EڮX(?*]{npAVW̝ʖ_tlGLHB%' l~f7O `-rv[B/R\H*G]F alMZ?_z?J3}mU߅zC65-!9޻vUʞxfoHMT6R;}y g;N6F>adl 0*Pz₀'@$VjA׽z'&w](n}|˛3L]zLGw++VSt_5e=fDAj۾8jVb UKfЫ(H~dzw3R`~cKvfY왇ۃ=rphvS%M'\ꬦ#QHbvak]eL%Ls'Jӏ#;ӂ h~+b^wѷ"u5ڏ\#>%!bH'ydzY~k yzEΫ/gY|A΋ Q(93b)]g،؛?nl3r)ɟn=gҐt6Yq̘"(>&('jVe!T2p{ z>_r*Y:r6S;E g+wst5"<ͭm8ߢg"`;tcU(‰p 1)W0tMҺr NJ#5R̼ fqWjTt8ԒIcR4Ķ)P  g^LPuEJaS'e@_O3 +lIٴڊ^`&U>gG'=fɎi5Os/&uxn~rd*'.YM0쐒չej"3JX!6' 8#a'EaW舀j4g%] ..8'ЍGR 2jC[{#>S k.2_uB3G&@}czW&xR{@;q)w"yժbuDri߶@ Y1?1BZ-`P_VLK#aMx3,OIbWD 5n)t*7_ |WGh_\ЧBY N{.}:.NNvŊ۫=?UnۡFfCIȚ;z,}krv ;%$~R+p D$H}y$z ca̪'P⃳I׊Pأ-1>bRoOUfN!gJdS L[@u3<9@pD/ȉH[N=nϐHbu StLT|tuKNl$xgP|,źO')LP&tPk=͛z F_wke@tW\ya>}6r6 ׇeXj ]Pe pz|kə+]>mS:ZW ŒL5a:̈w اIc}xKOz)IWĢSdv_v5.$g„l >*+/VVU;ǭb&K$g)Ejn!Nmwހ"@]mEraf(F?Bt ZQL&&P; SHB|klNZsY`HeC 2.b t*oC2BI,)f@IZ[-dpm̦8{#o_C2Eu{ s> Kԁq;e 3YzX3]n[I:HWYYtUtb#h^נּ z\C[:~ 93^@ vy DkXONV ܁]/ s́eU`m}CµU8')x 0Yv>bSÆ/.MڎSIƍW-P*vp"1# = km!'wi$AJv&j^"`nAG-Rt-+*rRѵBrEkhb2-2'm˚,rE׬~|}Nuj7zHGWxM_QԆ+hd\ە'q-<8Q{W6\?Q9_ŜNt{(\v삃w .^$nAl5W"$rp" -. ^ 0+.Bvr!_M ܌!Ǥ\63'07n\ל\Ή~SvԺw%'B3ƑC/{l>>BBBFFFIIINNNQQQUUUZZZ^^^bbbfffiiimmmrrrvvvyyy~~~,IDATx}JnAŜssgn0{y:rWmGo?~I6g@+8I T2?Hx `=~ &nm8qq &Pl'!d.-ňxIkA*7XnC 2V|omnBM1mɷ{B InJ~=ɘuoOh!'"!8Hu$$wGZmo{@yᆼRl/tůGhUzyQ#*1Jx ٯFkA&B,lЌ(͌gn`vx1Y"}턩5HGzm0D w4w;nYF0Bq=Wڙy~1߱/C2i+5ɔ,NAלaO/ `1L3Mz)Na4"ÙWsQgYccuue7/ 0i]L dCO>`@Jb-V} Ov0lM\yO%p&S]]sԾ1y}0$^䤵]Jp+G/LK0RTTM4LΗG*C񍍷` 5) Ԋ~:!b`D쌏0dendӞkd KU13_fӗfH8DW>2թ!ˋs Ei9^Ϧ9 d,MUv$G0xFd~%٘::f 7Y7L7y3W5ݕ|F9}=.^"YF?}4DS'ow4bGy+L$}ȟMD A[,ڎz1#x;?%bkhLa!^)h)ET|? @{l/L\'QȭCoDˀ⊝y /@ .(sJwӆꓛ>Y(SfN^-m߳6%(cbՓ9%Sb"(ؔd\wwxoCc=E?,݅ɬg"iP]!C[,!VpS)O'#{|b{ԍOkLe^N.i@&!1/ƝTE<]3XEUI4^O9A-=,` mK!KOHlJsމ  LC(ҘC€0%PiYY qUҼ="YYIEBv<"nQ5%Uv0#B|W r'FnXӳɦjAcb2B(Kf&]ZpY>x^8k<߻m[kFԹEӒV|L!Q-T=@X§.A&kg-U|ىz#̎U>;{KdwVNn oR!`sҹLg|=1wNgvE\ubVұqɣz<pW;NUU&t(!8طW'#I/>+i{\6cxħf!Qn'2 6:';1ѷ"_ݧ* ~ԋM}:k52Wmyt"%f!N#-PosϮ%!Ry=m}PEY2pȃ> }F"bRx+E""fo$ʞf%-8+QVSŪ@I3/rGV9BaxYIOڂH&WԚ@K3Tp ׬9n=}Uaa{XӺUlP+Ӹ+K0goOtB |*X)zF Q!j%4>bK+U@,l#LVQ _d.YsmSВ>jHPo.߯>I22,Wr+Axk$NU!.@(on޻17JgJUΛlEsaq_J@(iA[0+/&OomO'*%<UqKT'xV>`%('!ƽV7LKahQe[3aBz-E+])u>EIMTBӳl81*Di>yE ]W}?7yK Q&*Hsb8[8*Te ϜX:1QVY¥TK2>]a* ۥΫTZ+*R3Ra9e59C|qaJ> ‹2YEtuxb1,sXYW|ͻfxaз'<b愭U62Z vɤ,SDdmXj˞u;?OڰDRF:w#x&|{SxR`Q ζ>+ xhd ȰH4HB*\]ա \]\LX~ !jF#l5|rc$V> M%ǙF|Qniίv" yu188ilɄjx[.^˓U"c-PG+V/y/0bîgZ e|!D<)%!! 46MSL&h̆Oqn .䦬:{jBƺYSi$HeJ,s9\Ţu/]*2{X]+[BRL29'1-)ͅcˌ?%ЀF"`2eܻyO;d}<*=;=&k7yqyWM$oKΝ *C5}R?}0%cnb}qX>sm:91$aX!(@-[4ſz-jުF1>)3?! /^l 5h{ h.:nǽ n!U^b!>Q3}m! BDMG:iM c9%_JH5=s!z*Ce0Nΰ]73I{`ȾOD ;1E+n Z+.=g؋ 3vIbZwcbK]I;꧎M+󓰴 0ʦRTxO.lkz0tC@zpr{)Z`>bQM䅾6F/VTBMltk19=fMO(' Km \hs(5Z C*A'ݎad3D茉] 6Rż)﷽n)q5K]Kgɖ+5GTGSɻ^̰mPSŏU<|1+LϓN4R8.#7m1 R.+>lǺC_ aAeV=!I*B._3=7ICHHRْQ*^f=öT[`%6hJ0FhW叾"Ĩ5JuVe9ޫaz~jsǺe:~2ԾLCr%W)3\VZZ^4nbs7 d_6+ Bx$5;0߼H;GA7fHB ')u1C%hBynckqѫ Qo3$WW?DjD59sr"82_x"qpW;,YPv2I@+4rv"HϦZ|Z#@B ж{ɬu}Uӑw'ny]0 jE (ΦE9u#d#%N,^9RE,BE/HLe {nElr+݄ 8-[_ fc`d {Zf0[BwO{^ў\aXTV3DBm QIa?z75GkWuˑ>ȩ2S&*4ХMkM 76a<\݌\0osk38{ cm>TexW`^YCiĜШTF(\:\]_ˢqI1fU- >Gct+vuu^,uvY($ltssUy钠<U&㦫ϫ=qg6& DTH?*z~Z@0;)o𴆠)"3lmDr +c46֟xF>hU> ̊F<7`iQ=f{Mdk,ܗFh}Ah_$*r H@NT,P?lӐ:@r -[̗`v^Fy1VwHވh= bSX{>~*G5e=ix حW,P[ƎJ^B7`eƴhqUxCZwsb+F#0?Y|?p8`TA`)MdۊUjBt?=0Oiydzs I_͕rV\R-lݻ s+ Le 86-$o2.ZxQy]a.։5W#q!aV$nUpQy4} mͦa.LZ hK7WMGݎBnE;M,`׿L:A FN]j2Ss'bF(sGrlU7qh]eN׳D۝f Rq{ȎZ%b@9". owcxLEK`roHvP`qϕ01V\  T)HX й(P78ﭞ(H xv%HP>V K7BNCוovZ}m'\#b%@v"zSUHfKhxo.p9mlőG⒉`ۅe:+"Y\v|_Ii'fWoz<4 馔O$n%aw'2գ5Hq@ءW*XDN=lrЖh]ԇFkڭ~7q>@xI֌SV9/ _nK ǔ3/X9.fXaeg{i 'CG{uJ/#Nlhi.d 6[1'Muwa}*/I?Oo~(?u6~#ߵ#x8'`O`kMv s<- 7=b'"K]ԧ 9#珎c;P*_`*?wZUoݨmUx>< ̆?i[h:lbGU:(QȎL%s2Ϫ]L#Ȋ{:@\pA[ (,n3ItLaz-"$CJUXrO $=rXAx)Rpyiwj ssRsuqg `UAݮ$/Z4{EuQ\qsܷZa",I+ z4{?S*]|KF{,վKa3 x;8-|ufwX9`dJ>O;0~P~I*bnSCOޯ |FGRWBq`u1slp'/ջGlݓp l"[6f~X#LN!FRtr(F/Ox 2TZ9ι1L _$_.m(6X4rX=ː P1+鐙 U`De++^yY>$o@:Ck/@̆թ{_&cLcK-C%0oDIZVހOv':,V:~6 \5yŲN/zXaM_h2z#)n ª5RM`NiV 20ڷS*ݺZ,}/2ٗm`s JJ-<*_vLʋ`ƕ08`VyBuڗ Բ>s i0ͳE?C;$ִ4~C>jj JT*+<`dqޯ0,tn_ղEHŀuFO!-7aJLg*y3"^qJ>Fg#2徍LK,sܼPŸ!0zl_Wpg+ʿBYͤ ~9$:OzÌ ر<#ٖ5xQk?``~fp|[w[h IoG=TřUy@ L8k b<_3\9>K7Q IF_Hq]k{?1@6ȥ̾R^i wu r}\N4GO<=?IGomOe<%61^@\ig57r0Ig/A_we@yה NpVF!tO|lQr-Mlw8?IOn,Gt jk(7Ǥ Ao.芫D/VȺm,y*IɍvI'_=x xO}4DُJ$*Ac֩pk\02_6}[ >DԅVGe{x%SkrzXyYr+ s'cwuvL=[X8;ZsSXlbcYPu⛮0B:YkUDC/A7kWKcZ1bJ;f7 cx'zh@`шqkpdi2}M-mzw;uЍuEn+ ߋY6_`|ݧo9`SB#v(:]ANѻ}2R"e574hϺӑ}]/k=#"oYL˅9iߢs[dE^Oj)(ӓzdYHk ͩCInƱjR"I)m<6vTߤRzm8CHXsl|{m9L l.("LA7+O R(`w=0! X }ƍ8wZ,/P2M_0 I3BV~4m풷ylf{gL5?y49˹By%(\:(v5Ȍ-zR~!8pJj3۵6*?Ŏ!qqIENDB`tilelive-vector-0.1.3/test/expected/d.1.0.0.png000066400000000000000000000257551217155126300210150ustar00rootroot00000000000000PNG  IHDRkXTPLTE !!!&&&***...111555999===AAAFFFIIINNNQQQVVVZZZ^^^bbbeeejjjnnnqqqvvvzzz~~~Z"m*IDATx}N@ͷZB~w<,ɠrw^3ki:Zq$ɿ@կHD ">qy_7K&JU{ dMg}v@ Y=k&] N8Lc<~Nj"C^ύcAmdcWt;`Cv\'ϼbԀ)k@}xӿ@Q]Qm@xOdfr .e4dfR-X@ ![0$& jBRc G9%*N-N[qt6 i;n`՟!c} `m1Gp9ubP$~*S"upi +4` zIv^W bF_)Sn]/ Kĥ'0V0oU0EFp$= ~/=& '.mz_8iwB(0Eͭ=;d>nX[fKk@G 1^T"uAs_brK~ 8ڴACGu@hAÈuY!m~!ҭ ~ bwB4S?_4`9 ){dԇ+E^k@}&^˂7:y.,XzDf!y~u]s!hBȲ̻ _cY"$Q% ~b2]@BL}Rn2~I\@'ٔ"vFgd ?q PhP zx6FYknDEۃXk!dpǚ@#4zLjyugp(@Vf}"qk48 ݰeGRԧ -GSI l^(όxpZx~5H$RN$.Yy1YEP' Uu΄ L@4'aBl_$D 'iq!a_IYD:X*'AקIr7a'(e5jѢNы̹ap7WYZ}ԋq>iW.*邯,jctiJf"5س4V0&"mMlh7ei:j\"‚ 9`5ȟL%s>_@C#@qyVwTgH/,v: Vd5lm>oS۶{Z'~:}׸&ɭAj1%\};4xO$e5H7ےIoq ƖVxė0 )%eщe=ȏ? @zW`ʶS-2RJ -PqqஶRX[#"?0=_JD)cs2ԗ{OE@, 7$i) h4? hU9\T*)+ArUQ}-4$gF\8(YIZzCy,m͝&N)Z#egtf{B+)COsT(|Hd]>jB&a&6>L(I*f~X?otރ~mD5W G[iuFau6p7CFu³۟)I绷'*CnKC-x$yzʤŌy\v4u;o`j {~9(/gLsg2yX wyغLS!BaGel2cQ|^r=꾱?9߮b59f E%? iG% .DzI\;Gf:Zhk}>:&71#Me_ ?a,s61x]B)M @odKy\+ூ-G,Ĵ>۸ ~0 +c5v%S蹸<'AZ^fKKvJdt`N0鴺r.8~k`DnaW&e+wx ~"ZaӭZ9o"Wf%ef5pSjli*ʈ۪AfIRd7 oL{A8*E_Ó \Srt U O4=2)Qbu T84&oS`NeSt=I{z;{BŤܸx)WPUqfrWW⒵^!L׷V q|S"ܹWaZsXZ!«< &iZ'Uq oX=Ilڣ @7T&m;W|ݺly>)ݣVAu<ǭCVAr`SWP/S6"ǼAU˖ƠA*b%ڡZɫYY,a\j LB')kL+,ˆ,oRwnd|?A- 5LyV pCB rDHx[ek}5fyqUQpn[0%;]q:KW~~Kl#_f/M^7^6ea@nكN/JlZ10/;[.]S@8Qt( %}0:g"2;35>S0zZ NE 4c HoɓPuNS揼@d @+ c`)'Z CkfD~h;bEzeX?Lyz ,ad.ƽ~,ҎU2@,O l{0N$H~ϋ.OΎ@d Ɍ35Nz ĐE"ЁuAw/*hT罁' nTUmSi;Jv>q(Ҿ\ajI6KSd,ύXEJ貜3}t;iU&5o@{ (FJ*Zѿ=s-Rܦ9A/S/*qt"Q#!p5 @4S} Qx{Vn)| cJpopuܷ ‹ZY&:֏ivydiZ[A!読ފv;ASؗX!|;ԛN\<8B!{^]5=uɧFLK&KfXj!Co $rщ=|6峑G,vd#~z!Ha%oN?JxB%|C:zect3 -mZXcZLr4ODЃtp'DdӆgKD19Aw>VVŻCN*:q=& gn1$vR1+mRx}ZFZ5q([,_3l53$$jrIonGY> b,4d73FV %)U"_^#]s挧|׬;~0PKBy/M& &'9'0Kj>!7bpcxZ'P~)5Q8\i",YhӍ[R?Ck'6"&3휯4, :G#-+,0SE9.}(""|W,-0xK/ aV&HP帮[r?n*$+ꕲAcMtVePXٕ91#S 8&$]%u =O1ğUYɺH[4,|4/xA=7z ) ޅ C᷼A,hO/AOiŵon.W!"ھ4v ~ l+/o>{-t!7؋_>/ Y8X\&g%(aw?n U}:щ}Fa ߗ1N_1Աl…wcj E_i{[" '\S=K<o+WeCČ4nRMF( REHYmLHATSU֦_^J2>fKW爨B6iXLݵCzVnTK mA{¦Ef+VMøx_os$zjt UYhCڑĸwvg57ieo qyUϑ0};a7.b"?3-O6 q6klD=GUI|mZm~B%SQ}HTRpKl|(tN̴ >y O7*F-J%:2] Qj(e?^Cg@y*ڌN&k6岸: у>JKWA4#ߠAj~g5v$|n{u *?6C.. 5ά?- ƽ9"S։.SKjg " Bg9rFU1+.ۻFavQZ=WU}L,UfJcE[K@F퓹Gc]P5DVt ;\p%QLl LC!S;ei9"dyy"xyaL1e( sS)p'L}l8&xwx+7lUYヅp U5D#)w3,ޗaG8X=\UJDܙRU6ԳWg?7د@K0?LV^b'fc>{ m,TC|B6!c~(; ۵[:޺^AӴ 锉9V R<.6Ƽ%cN~YQatZh4MqLUeZ wq4N,)[]4g¡Iu4+VB^ H=-Pm R)DꔠGt0UY<ǫ:$ Aۧ "ş{qD6;(ٳ"O !K`ҽ ǀ 8Jt<,CF7@DB-%L !.'\Z~AY$Ϩ7֡4KC3O~MWm6V;Ub,]MD v ͫr7SrGO)$[0E?黲z'ɾ\3 @2h%킵Ooa><&sIv/R[[kAaux<_F!_rhA$9W̋9+S uM ~[^ӨjAwhV .iZװ/& B"k7&A3 r Q@A:a-XAsԵ^T @ӒslDEU׫r8p<% ]|7}Z<"yC=x]4yiTk˹i?sfRPސ IQJU'uXAiU\L>uOꏢzZiAcUJx mCoVȻy9Hۆi#6\e'x?g_k$SǸUT?)uD9#sRh:P@C-(`k0_Y7k͢ߣm[#Oڣ#w =sgggv@9jr$%#`0",!/c]`ŎfU1rO,B|CzojZy{iNnc1Dris6QG< <|Hʻd :o;ѢfFVn~?6TRgK8ӣ;ɼԃu-SnZySQ,V~ . e"o,%dnM!%qYN7 +KcZkڰ[H(;5S7G\odԂmX5wt>K=v~NaV %; EbsW1Xk6Q),w ZȦPQ_|yB+j^?q"`k{ͳF]G zbƳH/p&ц 3uG7"S|XNϪa5]Qx8d('!:ZB)o.irܔjf>$\/ڐH5PWs/-N2Q? IH4zPֈ5S !LP+ܸb3n<.!1R"uhriI>,Qg=)源^V+S?v/ D Vi>ƖCzRiNՈ[btrPV5-JÀ~Yr @9}Z7yWMmH UWڸMZ>Aάj'B%1Ťb-vcܽ~I 4uwwQ5Lܥ:a~K@@raK9nZ>&݂wOQS!@=Ed؉S2GD[aN}(3D^sˁBJݐG%OK2m.)-[x1ϷfKXDXjuN>ge]A{\eGt&0+%/ҧ9pq7L?)Rx#`%cnCubOL3[cH{RQ_;|AlJ;Z#,}ק|mL˾YhߪC-||t<8K1#]{*W*RizzBD9s pʂFi5R^)[DRY|x>o823FhXuGLpvq\n`(͈0u7O-ђfV[9o#~-8'Bs96oAOH_ݰGk/#[EKު$hO2.C FC+u,!y;TVGBL%ovŹG}>,xa|I*'[H>;'! z;KA\PV5K?.Թor]"3'P24x KoACŜ#%,'`/C76rG!ʪ!I`sX_!dg  ([fD^7')ʗI} ~YXK xWP/qf8]lTu/"թdD,qrֱ&QjƖ}y\QaxQ[9U-: ܚ%{,ߏymPLuD9UxQ"CLpNbW.Mvii5G091ޙ4s?.u yg3晴9~r$PY0Ke1~Ha$p~'Q 'kϻv 2=u {4:@Ҏ7[8+84;>"$s9=e@ܴojTf8(G %@g񁢢 LWwn]0szl}0FE#Օ/cئ7mrnxxK ʵ_o96k~" |(F#rU.jݣgCدb>@Ӽvof !Y_>is#D{R=^Om /E39鵤,zZȡy5\6MCwb _cߠ&ʲI|bq;Imzd/]{&(쬎?ƭt#%VxUur/-AH?*肮6cwBmP@h9.G7 wsK-_ Sѡ@ʰ }kdEnA5`Lh?}BмىvCn7eQE.3e};d^J75N.3*oTz?<sq "|t?~TU]2O|~`-' O|ћcBЫl&IENDB`tilelive-vector-0.1.3/test/expected/d.1.0.1.png000066400000000000000000000136571217155126300210140ustar00rootroot00000000000000PNG  IHDRkXTPLTE !!!&&&***---222555999===AAAEEEIIINNNRRRUUUZZZ]]]aaafffjjjmmmqqquuuzzz~~~=oIDATx]=HSTTTa";ֽ3ԝ䴜M@}S\HrZTCǧ)  T-eve1)7MU) }Y @,~j*`?tѴh%3GmP368?M|*K= =XUAN^X xV)X]`| V .ӞOs6`|R' )^ rv2@Fo?px`:ZCߧnxnSFs޻&>β$W5l物04};v7v@PC @=l@!BGVxuQY@9, 8y7o2G6Y;_"@{D;X2ϖ=S-qMO'Ysv7|LP]pCHyܢ='TЏC'tFJ`I|חW(iذSS>܁,wrP$p[Qp32M!@ᏆrfpOߪjпcT0:^ x!_B9{tԀBH ?Do9p. Re %8/A 4 lP$?JtuN%[n60Ϳ73 2?{l| g>ʙO q#nߴo_Gv<nܑ|x =|m%@&?kd˵tl YB};t3zr"L' G7`J~Ӊ`5ޝh0OYJ"\%2_J!L 8@OĔ~Y˱,$L P_W2? Siv.L 5PZ"\0%ͤcNDw'L @wpA ],J';ߍ=!c3tNwRTP6Q! Ny6v|5'AoWNxŎcGlHG(BĂYJ@a! , P@? $ V GdMffZQ#nN]%OgX[M&|q$m|֬+e~5$@MV;S4!~7OjFi hR'K\ƀJB;4ȥ`FcIX}p!gX^!И{萄,ͮ8Z bD_ hM@%*ͥ FI)R .WyHNP^zU1m|";Nd8X7 tL_&`,U:t)-2pP'4t'w P(U3 6Uf[5&TUgr ,qjz(RD>?^Qd_|h QYflQ,Wm$*jЂN_$ĥ@y1 &yb\[ U[Ը86+25 6szq*yoTGo-ܥ+kTK:I% a켅ڸ&Y9IC@q_*dYHUt^Mjl*(h*w$sdꩂ\}VT uZV\,TS,INIb*;q|p-h "R~AgTV2ν-jR )ԝkTN2߉tB$`(\#=6^JYk,dTUVB<)_{]mMMږ0e4h˖y"='+_PK-"%Gסgs>N6ShĊfmg4Yy0Fz +D.~% `EZ֒9J 9#St76};Lid]5 jAsзAi̫F9') SqyCiPU᪝}ZD#qe/j2ǘ$4H=3![U7b&CW%6̇a\)%fJ1' ͕^31&t[s] $8l?,<,P#|tW9Pl3-3u^v[n>*ٟ3$3FODoPZȸZHx!@P~u?Ciیjx WRq:aγ.g@R貶oXf-ilƺ^\4۹1.{ib <ۮ{Df ~rNL8QRX xZ@BaxpSQMM5L+beʓ܁0IS39 #^hL%S&p/;{FIU4zl &F8*_4NQ߇IPQW7F}j0]n۰gtC>D>8k%sq{h$umA6^ͯ%hHic3v?;rbec* zr4K?lfp`/? ΝaC,>eL9tf"]xC=4CfKk$N3=7b8>n6km&2E߂n9P]wu̿mE&਻"IsmT3mi4Aؘ6xD\&tud*\F]VFrM2TN/Z6u{5POes66C @i,b] xI K̉ӨkJ/gu5 ]lZ2"j7D6á{PG5hͩNf'5̋[l6J fL$}$SE[w Y(Y2^uVaZdi#3]̣ij KSO`7հ񙀝A{Hpp͜/6Mm\.]hzk;51L+T*UĆ./d'FkβhmjɎEOh:vrK{vԙsqdݵ =t+үZܶ[5 縅F؎LҔjzJhmn>ky9E" xT髩nOO!_\e;=|&\pXڍ^ 1,uc]sE~,4M LtOM*6}XӇ]bM3 X|}5XWŅ!`S̙/~#h';†|K_,\h5,cl.@E!`LEN3ޱW ޭ]ONb 6gBG2@| OnD$w頯CPr{>^y DP0ƒ7m|&`n,z^eo,z|Re}JJpufGIߔhF"X1*b>j~.| R#ud9iFj~#If)sQHg/@U&@1#hyQ` ®穛GŴtpg z,LB?ŝ%&\ÙߴZ}m&ds3B@~kwM"THWhj@'Օ6לC`J`'ŕ^ %:qyǕ LpܽϟcQmpGX<|Io+'[Hf|6F fVMa?%n=gLAZ/XN*kq2k;|r" P2RoͲX!w[)|b  u Ojm Lf" 'EŬLn|. fuyƳ&xH]~FwFpAw *QYp~EVsF \4L(E+sՒr-pɼ=ܙNML?B SKJ0V.!#o0Ż?@J\&/!] u[-Ş,, X3$`K4NLue*N!%ӻT D>!p|,ջJ5?CeI7.Bwu'Es}JUxOc_n:6 o}_9)q. M ` cwM̪8#A=&ۦm~ڣ+'}F ^3#)vWIENDB`tilelive-vector-0.1.3/test/expected/d.1.1.0.png000066400000000000000000000221271217155126300210040ustar00rootroot00000000000000PNG  IHDRkXTPLTE !!!%%%)))...222555999>>>BBBEEEIIIMMMQQQUUUZZZ^^^bbbeeeiiimmmrrrvvvzzz~~~N\#UIDATx]b{7$0e{vci!Mh9 4t>?>݀O㏀O7# 4t>?>݀O㏀O7# 4t>?>݀O㏀O7# 4t>?>݀O㏀O7# 4t>?>݀O㏀O7xrEw!zlzp߁ @(ؑ uYOL P]7}#"&2$}|mCFdx"M$ '?6+5V#GՐ'{Hc~VO[ ',~.F3jGԒ')ý$q`NsR'|}t[}T"jɓgG&!12ι2@h74osVU y`!S~(KaK`],caM5&\;eI:F+>R,;x'\z P[?vyIllc%CNc̕`W F'sE3~ R"AƭJ])+OoBG?G"u!dȒy O3Ŋ_Aƌ0)>(qsf50'PEk W\n=<=Ÿ,G+lLā bO21 )ghJIńF2j meŤ6|/#DM]Ҝ;u߭uY:&p[ĘO3.@@SD0 رJ(u}w)iZ6{Ƥ)+ˌ^&/8O|0{>A O_ЖaGFe 5_d՟P^ Չ>zDJ0Z'-\!1ڳo\J;"wMt쨗 hkzPICCjcmFerMH`l1ʨ%\tSh$J3 1_9 qWyH>KOF28Kq P;ސˀ*AJ2|5j@ڠ}52Jߴh n/%{HBB.^(dVb#cj<ʻ#6+IT숱 7 XB ]G-syG`bTi AVq,{a }4@!L:ū =cǦ,*Zo;9@Rban1edp{ߒacM1Pcq!YSC 7Lmg=n+ lq)_:W}Җ>@"@QoYQᄒ0憍="Cq'Z{c@J'fɝi y?כFA@i0N/],m%BCLWz=V|\};&f>- }+PZAM>)^P!'ɺϔ_M(UKsnХ7mGh-;CHa9 wo_zz &˅'ﴰ9b ,qQ kA'&ʷЙQ'z`9yW kZܨkt  IN/7X%˃l~[@?f iX]m1NTB.=øAB ,C>-1 2[;c6HC %G$@J@~- ymWlϋBT类3Ծ.ǎ_ 2V W7x!u5 ~uVT\<О9,(K8 x|Զ-KCZgS>D'3  ^{晚M#ZsvZr% ʨZ qƲ}taP]Sy%@C&`C_2Npm`<6r%FeȏWj%AC7 ͟oDIg`-4#goowbo\BXV+T@CsR[fvQre,l+QZHD p iZgr눐:̈n K h'n`\x&Z.ӑ|3#$ ްqUiv@VC!VLD[_#վ^& ١w3bDq?-{S1+Hx{3kwZ5k)Q I>[=EBtX4pmi Ȕ=2d,S@:MgBcJ1OJkxO;K67%є 6SO,FFn@Po.ST5qKP{24ֻCͯyuBosGIx*s׆[?XBMP,&|TC<2Pn٠nuץJ4)Uʈ%?tk 7In}M+-J{Ŗl fGj7,n0t3:'P^)_njR0RM[V+h(eX]Yv~D0;wX)@.{3CB3D̿Yp`5+7I6Fע%ms4`vٻA/fnQ&D˷JLֺwxToz n͉sP l1ľ 0OV|8?Od(~Bn s9D=0ƣG޶\lGWoq8[0I6&Fڵmcӧ58 0F %~8l!WkP98+YڌVݛA9c7/])яf}i>Mocy8&bAMQ^]!YR@d"D\9Gnd2tCŵtWcVc$&uQv|cGN7ghzF P6..fٙ.3l}'9;EE/@M\ vFeśkz>yɜhΘ{mRo+P+ƘF=CG\o/P?ӿ>+,][r餶.rGŇ%~n ^XT^帲M-z{%ۂ1$-dwMӑM 3L$ۋ3ɭp- 6&Wױ*JM%77NeJ,B.pѵ0)raGLXNbܺo"nMbIp.D i ^s~u?S&..0ge;x,{oz3T? 4uɣ_6̎50xp;5a 1evp"-)d:+#S# ||aLkrǃedz0J7pNb<. )eLE6 Q̓c'?E0KRe'"v4=տP%"s4|TU''_zu=aK%Wsɸ~]T@i3GlޠGHLؿQ: z()CpFʙdgy䧿WV-X0O-2$q=&ҫ~Аs俰Uy @wb'Vh~I!ˮ svȳG/Uv<5_:!>ShjKb y@P4`^ ߋHN^OC[c:|-fW# 5H@l?6ZoN) }l.p@OFl-Uַja9&u_^<{?nj6Hk-f @KZ u,[Ut_qn˱nKFzڋp$FnR7ԂP+rLʿVeȧy D|̎3V[dh ;6 [?,a .f&#6x8mM0$rh<5,DxES*wWȊ ȿU"V#v@DݚnJ WsuBx jAkZ 7d{Ĝ=^'mjL(pِ~@s%VLڵ vJk*37gjMGG⷏hbk >wJ::=myHf4urUTOVCo kRb&KEHZ@Ld)\yƛ{Z oE͘=ZSߎEN9@Wc~P'G t&k+#ιsF@RxY=JW6БESDW%}A| ^]*3y}ϡ._˺ٟ-ߺ1I$HׇBNu8=nɥT1𻷉AZ7k \+@JkЮPDenvx\IjCik4ס`K&^1oCaª';PJOj2ygm4_gxؐ s嬛ݓeC/?rfcs(&Ǹ! TMo6CJh {l=C^k+ v!aX&C؆ڗ>z M*"o{?E8cF#Ap+2I0d $ 1=۫Sk% [ִaۜr^AQDcYNqJQf:xz)ٛ9&.ʭ`{s2jsȍEl'f@GZ>qIdGqV3y Ip T0yhl?G@4DJr r">ZVER jw ~2q[Gk@eDž`>p @/ݦ&q,)[2/4_`w]7Q+s㲴(B-9{#8srߧG-g rv?nh`|6 % г-QLiL@R x*2RuR'ʫ-gk( {ų'썣Vs"6+~lR G:~/qUX[Ulv E&wCu::؛  ;9~Vvs?q4X0΄ CsN"N^:O Q9NiFߤ ;#@^% ٱBO'"ugtx`^MA̍BG~\4O>8h2_B~`~'WޮCV(<C}͹!k6I^P gOvT1{._( 6.۞e8o\LB@=)Gyo&Ĩۻ5v}0~{Ļ@2){GR?kh^gd0|>Io| FDžmh-P`?*(h~ ?kq:?Dvpv ,G=,bV~!nK}2PŽ`y$q㄃[}$-sRwj1tгq\ܒCoOH^c;q0O|?5/0\ UE8{D%OGlTCJtV[c>PXu4B$r!yiϞ5uDb^Zև8N2g:ps1{4s)(f8 3ߘD&f*|cYOFvR5ׅn" 0}VYx-QGCBj^CJ(+jD؝lj/0lZ‰?@T)Gj fr2B,@PY:{D>$gBDZT e+Xɽ6s9!W{B9׌0UP,k`|o=.{i4 2: 巿L4 ZE!>b[\+T*@m8i2gWc-vU^BY .}~BJwl30J" BxUҮ8h'8Y CScK(fo)!ӷ2#4=Lͭs۞Dzi858<{i&>[hmqq XZ `gF)ͧԜ+ADZ@5θ,p*[n.1ӧfѣIi@W1arT߯Qݼ{ aݿ3gfG3g>G٩Jib$ĩ'l⎑$>ry: MC x.}"<.4k7b~z-g ZīIϾʠ셤_cY?zd|zIENDB`tilelive-vector-0.1.3/test/expected/e.0.0.0.png000066400000000000000000000067651217155126300210150ustar00rootroot00000000000000PNG  IHDR\UPLTE***#h IDATx]+)/PQ5V;?ӱ5 b7!HPs@NJh$L @!dpE3ʵ"Zzb.PN(QKiRo H@O^/C"BM?"Rė22bdA զ'w4%WxM?5g G[76꾆 cr),{@w"ep@44c@q@ҳPѬ۷20(ظһ2Y4,|b/&,ȱb߇-kB`@ ֢y,i؀@ <_%/u+ߑd@i3 An>zE4v |5pu 0Х3vOӓnO_ַax*$ @ r^K-2Q#@ ݘ *0Hց6˺GEt@}׆fuOXߵ@VD$|i`{q>иv%$=" Z~֫%v,yfRR:;G@դ$r"E(!P&ag}i( "= - K_ '$9) y``Rt†|\fQqށnjWjGu~jDh 0Lyo{*6I00L"3Rcq9"NuUhZ\+,,F'bJxQNЌSIJ% ^Bj~^t UlyNUɮW?$ $mE hZ*8f [")٢ؒ0,WuT' r q.6x,2]MOddG(T:);r|vM+;q H=蓘#mAƷ gi8 %=BF S,D.y: OkSXHD2 ED5j`ठgUy+߿oH%P5FxrKCgbƮ%ybIy엵`إ`?2:]Pqrx_Lb'j2xcM8G<$okI yNWVnHNyMBNChbc*>L=G^ nr#hyЄ;Gn57aN׽gO2@'  K*(ȹ%#Q4$ֲU l + Uyu4(@8z⃷KVWHs+ I6lXda3O&ԧ0Q׈~Z mEREyyXF‹p(x럥Yޅu* x.5CrոoЧE˜`"fݟ0rooЗ%r yO]9<LB;倷3ʊ[`Ar ͋I8\GDXM:qyacK=ӕ ?ft_k[A&C8ӝwXCd<'<G`Zxu<x2t,EulEv s=\`Z|1F9}aFU=Uqnk+ LZ6 ޙϪhǟ3|`$wM`bπi4[E:Z<*m07YcJLW;u6.fRd@AE]{%U gK }Ac@Op^da*54uDFE7M,%e4p;JFKȂk $C?bV):Z,\H=YדXp=Y4Fg]eZ-t8KFLU^Vy~NLFlP^hKb/μiuU)\gˏa %ӄ! w$hFkxy(si.ꈥ~[]ƕxƞ1d0@ w X#"#sƅ B +Ki-%@@T8 8z*WvwTn5DGԢŋOɽ6`)9qMBc X j6|L(@8!!l<*OI\ėnK)v*|+&w8k/פJRP%*Hz5 xOhyB8PhR ƟLs +>vЯ/BnlVr9J .5#<,,jKGQ<'{x#c~E}fXU| ֣gJ.@4]`Zwm/f>ַUon~#8{@w"ep@44c@q@ҳPѬ۷20(ظһ2Y4,|b/&,ȱb߇-kB`@ ֢y,i؀@ <_%/u+ߑd@i3 An>zE4v |5pu 0Х3vOӓnO_ַax*$ @ r^K-2Q#@ ݘ *0Hց6˺GEt@}׆fuOXߵ@VD$|i`{q>иv%$=" Z~֫%v,yfRR:;G@դ$r"E(!P&ag}i( "= - K_ '$9) y``Rt†|\fQqށnjWjGu~jDh 0Lyo{*6I00L"3Rcq9"NuUhZ\+,,F'bJxQNЌSIJ% ^Bj~^t UlyNUɮW?$ $mE hZ*8f [")٢ؒ0,WuT' r q.6x,2]MOddG(T:);r|vM+;q H=蓘#mAƷ gi8 %=BF S,D.y: OkSXHD2 ED5j`ठgUy+߿oH%P5FxrKCgbƮ%ybIy엵`إ`?2:]Pqrx_Lb'j2xcM8G<$okI yNWVnHNyMBNChbc*>L=G^ nr#hyЄ;Gn57aN׽gO2@'  K*(ȹ%#Q4$ֲU l + Uyu4(@8z⃷KVWHs+ I6lXda3O&ԧ0Q׈~Z mEREyyXF‹p(x럥Yޅu* x.5CrոoЧE˜`"fݟ0rooЗ%r yO]9<LB;倷3ʊ[`Ar ͋I8\GDXM:qyacK=ӕ ?ft_k[A&C8ӝwXCd<'<G`Zxu<x2t,EulEv s=\`Z|1F9}aFU=Uqnk+ LZ6 ޙϪhǟ3|`$wM`bπi4[E:Z<*m07YcJLW;u6.fRd@AE]{%U gK }Ac@Op^da*54uDFE7M,%e4p;JFKȂk $C?bV):Z,\H=YדXp=Y4Fg]eZ-t8KFLU^Vy~NLFlP^hKb/μiuU)\gˏa %ӄ! w$hFkxy(si.ꈥ~[]ƕxƞ1d0@ w X#"#sƅ B +Ki-%@@T8 8z*WvwTn5DGԢŋOɽ6`)9qMBc X j6|L(@8!!l<*OI\ėnK)v*|+&w8k/פJRP%*Hz5 xOhyB8PhR ƟLs +>vЯ/BnlVr9J .5#<,,jKGQ<'{x#c~E}fXU| ֣gJ.@4]`Zwm/f>ַUon~#8>>BBBEEEJJJNNNRRRVVVYYY^^^aaafffjjjmmmqqquuuzzz~~~-IDATx {0Ppߵu_k"_{u%d@_ k?/_#Gfn;Nן6.%  6NY)Χ?(_~\x5f ?#{\T1\>;D(!so\LU.p y;yGF #`oMAؖW xM4ؼb@ )ttM?j;*{P'8Oul I8'd_H1B>j7$hG`Jػ{(\L'\$4Mzœ~S"ѨcDHkZo; K3ח%Qջ$_~D=Dmj'}T>յ_5{a$@1[֮i"D([_t5J}12s|{216\Y},@9R _$Yn4ʘ!5j'Ո%AƋ `mȯ+Wo :ɆLuOL`s|rRz# Q Y%pcNED힑pPWAVd+'de]Rmg\t n2ki~:&3N_kyÿ)ץ&N3pb직b7ė1*) Hqv1^&}mo/5n|C~j`'$~F{IXڴfTyq/#@ H'&'DֽYڃ0[*XZUKpdh^;gnL˼U%̆kr|emoN*[߭;<$GLj#r|ƚU'ַոIO$Nj)( \[] ١:lHq$Lڟ;>\CI spyOعDKpLafnݖ.fSdY :=gm ܳ 4@B|f_ riK!yypOn,+@B$VqA3 Xpk{ ],0L>)[D_| _|c" `+UN1M-{;pO ۳>S TN9߷/*yOLUtc8BCp8h(C%SC)}9l9JM#ToFHpɛO_= 8Oh'l~[P#G*]2y2Zxp#Q$ud !2\Wy $4ik}\_%Dg}KYNsس}c/]3?ږ2( J1>CIB7ʲx>MbȑiB gj,[a4`xIPfwm{/۝r{Ì|C,bocXΐl8-{5;[v3Ri0q|FUsd叴`#mji6ƸoX*ݸ,B2tp2Lq?a a!j%}~'z_M^8ҹuty𽚰>n\sǣ1([Tm溺l]d>4F6%EXi1i".1 EQΓ0|#0&'IUv#'-RfuS8\[}+q ɭeD34|b~5c}7` {\1[$~.q-Wْ'^2ې%#SY$[0׍Rd!LRiyqi_m-mosNԔyI.9^p෻W5XӹF1rO aX\ RAWB o,{jyĜ(s\z /q@+m>ŬL[ҏi!'u鮗^=~%χF6Iue3S{,pu*s½4Gҷ;^膧>ӳ]>%i-oa=`M8;@8C| $73Y)4rŏ@c5ⱋōN`"W뼕n~'ਃufH{uIcɋcexcRmTS.[BmXHC/]fOShqNuC+0) ?]8hG "yP ,SDž=W3`̲Å1RV]^!H3{N9i*D KCF;/qG,+} оEg} j+g!`\ftffpj۴] %-1cϻTCy#耆xod|-+0\␟jcep6CjfN I^APoYě/%]8s␳>|  xX58WMJ #{O~2$1RQf-vQj.=btK{Ы'z8.U$w9I ]z]>--^JKn|󲻕FLݠY+h{n 7l@,? -~Y6@ 0(ъLJ~ZFMn ^sӎX;|CŶu.b,$~p^\I#}ЙAz99n"PtsS`aFMn1AXv8:5ٮG#+&/@$-2fOs7f0M[ ]YYLR,-m؍%-!0OL=f^&ʤ? `׼` ۈs\YAZ`XL7#2mkv.v r!os"/_~!Ѽ`XfˆW@i:)W+Ťad<WJp+qJO1L@[EL|7>qTU#B)wcri( JzAHsIv@`o9l>r_6 K# ѭQ?*Pe`:kd(})[}>w 9O 0ȗhei}%M&݁;ڗsNWUԅ=J\ Jʝ>S)?:A:*d}VH3a_X6+D<F>qmA旾7LpFv{ RFPU]l@쟯'd&UrVg>5r 1=-q(+ G T-LXjAAg8O\N Ԅc`BnLʋ\@zD:=D@û΅K&YOV7ͤrDMfBЦ1?jl8W29<^zY@sO_mz%E,:̴AU+SV #cd$CVB9%žyG%RgBꅠEtɪB. Lf#I]]\9{b/@=m f5qPFX0k"\!$qg2ļ (ȌŷVUuGY|h)4Wַ$wұO"J>QC2﷞.T`%- j|Nen5{r(G!נG3| ~ ʹL0}E3 2JJXo``5T9Շ4C{Bأ(L8fs` OTbEװdK4 A2t(pƫ` g]1*l$eՙ> :Us31c haFY*go/+m1"'TH$kkИύEz5P~0e!k$U~4|,阫Yւx,܅lgYw>^B^)负-uR\é(e{4Fn;wڿj ͉Зc f,b$->@5>_w3,جfN4en[>I 1p5N׈@mRp[+]Zezߞ9I5L@%x* n-ՁH(@McAXt͒^/c\_n$]VUTHAfLaAW8ܞsԆ"0\R޷R*x >[Stkur ymc11 -}XgN]z> 8g,*X ` *59A@zHrTvϪ5fn[TmD#"iTH J~;h@<f;D2m&"5WڜˊI= ھeg[n;%e EI5(`[~TOA:ؒVa*x2!w =dȳ Z }Hw \F x{bnM蒃D:~Y8fK>1T0+> hF9AȮQ*cE5ùdTE X-POjJdg@}\liy_˾H~(K6'bk,+(qrQ=Ѫu0gdWDP,lk Ř[Nf.H$&rͫ<,"r,fq(|_՛W:LtWz$]FrWgvod./ϯCEhp[@0 kPpfc3 P!sO귔#6z7 SECc],0k3vzHuB`QұYZH G,6u="\NFONN9\/wpO荀yf6(ɠؔafrt*MrKrR[lB1PC_˯i;N7@veV [B6Qmg@ kK/"@4%ք!ڤ<'l#ĜhYOI{j<7007[5+ ͳR蝍m^Sm<_PG|!`R"F[E02Ez/,)`lw]b1J)@0[_ Up. -L?Fx[ JI#E&*AD󋺢$#ưO$`ޠ&sg8")jcD4jѫ ͺ礴S6އ \v 7`8R G#d^P { _d2yzhm9GBd`w8vʐ^MfrAI[D>Daۛ*׫ًN.q|˥['$>(n 0~ь3?%߮Ḓ~'2@]]5KvXʫ ?l#O9¯! ~ ~d+KC!1Pٛc^nDo"s#˲S3 "ңZ<зz>}簧F~KceN 1.g8wVnSXXR'i1b"2t"\Sf$菄1< :I`l(dߎj3cz^0(Qʶc3:NlЛ4^ӧ~-ZM"Ozم_Az[-Ek’;e>pRַj ;jy{&@V<!@J:E] "ź frLA6`}A}'M!XOOKcnaǚ2[9CO, w7\icD%~G.)p0=i'!؏Ic1^_G ?mNZ@)@JǛN1Fw?E~8B!Ը1Hu$ _+މ1&B>l _OKDw~:5d@ ^G5$K 'e}/b$/Z:#=6#{` *! @0֧i0@\GHAzZ9- Ǐ׽v>}>\'س20\?V'Wp1m j#;uY  9Ѿ|:t> ^}%p^'2shVp' B!RLd hk&C\ c}f3MbpyCC_^qcC`'޶{[VJ'tMzH놩 l)+`ϥp0N'Ēn$F_ٵ-ϗ}6)xf$MTOiϯiGSڐAp],  y}R68j#8lV'XA <™ }m}Y7 k'.%#?H‰.'.(j({`7e|3@׉/E9M~ݵgm;|}P>Hs|RzpЁ@"`=,Bo<XNM]tPEY(ΕOޫzn AY/Ȇۋ4htpҮË I}X(N<`^ꌝFtEnӔ <Ċ)45b*5HM e2yyCSI7C+^]dXj*: I[+{sجuO>MvM{*=07^ ?2P>jCD5l$MRB:IVJ~"It$TLA1*.L_UӨCFvV02_&FttoC{ nb |oaV_'d!Mj__o\+g혐9۰ Ѝ d3V @ 2%pnqr哾OrsH!OH=Y~b4>`N =\Esx!}̷ ?wWX8ÂBI4${6 yx)[ןF.)G;!;1U^bX8ѶP7=4NpՀLȷ\,_mv'wW07I׵3L#X1"GD&5H7{]I(P}np # uhL=q +%Y20LWW==F;JK9"D^;*3gcNjwq7!:jXq#Lpׯ"0t7ߚ{b?\܅!Q@nޅXoIKY^tzR:r׀\gԽ ߌƪ2 S q/ǭ"Lvw "⑭LP۔A\(q^FORڎ EfLe2VF/Uuy (&S]qŏbڎޚ!>dO'vq{c_ {5Fs.zIt1!ItC"`mXX3;bYEHh#)k-EB۬ޱZ ~.!u@ Bq<1ɲw` Ȣ. /~'ZᛀkĹoSAKGaΥ !E%2f  ^v@j@F]>!| ߄[-0;7ZPi(?\h|> IX+(RD"WnOD!~]Py[LJ4t^9L)f"@7; 71Wed:GOVIENDB`tilelive-vector-0.1.3/test/image.js000066400000000000000000000034731217155126300172410ustar00rootroot00000000000000var fs = require('fs'); var util = require('util'); var path = require('path'); var spawn = require('child_process').spawn; var exec = require('child_process').exec; var existsSync = require('fs').existsSync || require('path').existsSync var image_magick_available = true; var overwrite = false; exec('compare -h', function(error, stdout, stderr) { if (error !== null) { image_magick_available = false; } }); module.exports = function imageEqualsFile(buffer, file, meanError, callback) { if (typeof meanError == 'function') { callback = meanError; meanError = 0.001; } file = path.resolve(file); if (!image_magick_available) { throw new Error("imagemagick 'compare' tool is not available, please install before running tests"); } var type = path.extname(file); var result = path.join(path.dirname(file), path.basename(file, type) + '.result' + type); fs.writeFileSync(result, buffer); var compare = spawn('compare', ['-metric', 'MAE', result, file, '/dev/null' ]); var error = ''; compare.stderr.on('data', function(data) { error += data.toString(); }); compare.on('exit', function(code, signal) { if (code) { return callback(new Error((error || 'Exited with code ' + code) + ': ' + result)); } var similarity = parseFloat(error.match(/^\d+(?:\.\d+)?\s+\(([^\)]+)\)\s*$/)[1]); if (similarity > meanError) { var err = new Error('Images not equal: ' + error.trim() + ':\n' + result + '\n'+file); err.similarity = similarity; callback(err); } else { if (fs.existsSync(result)) { // clean up old failures fs.unlinkSync(result); } callback(null); } }); compare.stdin.end(); }; tilelive-vector-0.1.3/test/test-a.xml000066400000000000000000000023651217155126300175370ustar00rootroot00000000000000 -180,-85.0511,180,85.0511 0,0,2 png8:m=h 0 8 1 test:///a coastline ScaleRank coastline tilelive-vector-0.1.3/test/test-a/000077500000000000000000000000001217155126300170075ustar00rootroot00000000000000tilelive-vector-0.1.3/test/test-a/0.0.0.vector.pbf000066400000000000000000001162361217155126300214450ustar00rootroot00000000000000xt @eW&x=s9rI*)cBUy|ޛׯ{ڙy?tt4BR!XK, AĒ%%"XbX"""⬵:]KL﮵^{}y#5_ٿ_nm]3>/'k4/("E 'dŬDPXH[a+h%YFE YE(/Af'`3f^|2DʰezLi8DD$}3Y~Q0Yq+ Pٯrq/ D"f^+n> [V֊"L M4/I?AobTXQN' Ǥ (%a!"j6zӓcct@1Сb+-_JX$ edO֠-A+ZQߊ +1;l ` z]`b\TXDNXyg#0>װeXF hCImDs=Vfb+~'hY &,GwºhaJXyh$RV&jkNdI;)"q!Waa0l0zZ&5H&,HfA$8aP$tӶ_X)T:Oz黍KU+0@4J)0ٙH?y!Y3- 1=Y.5; cft$`AOT_2Nl.`dP0],biz 3aǀpz?6VU},4ZŐH!,Z135)g@X\ړD_I+@P`@$ 0 3Ն 4jߊB;hНmúYFv˜l\>_~6h8\IϖF/ TC/І?H5]&񍀱nuweOF ,B!^cgC hWW5aT>TŝeKv2*CvA)%`wK O:yk) p)j篋Zla6mVZv*xka:0U u•z1tV ˗*j'm=z-踿ӛiJPeIC`QPYD8a ~q$xD @_(+Nt$E(~-PVRA;lID8%rV4d9<,c@@1 76ѡ!K/XiHK:zp⠕e^B1Q'A@6N٠.9Rz* ?C0)84"lXR"Ń!la$%\T$-b`2B!u stPD<Gc8\D Bf%^#(X ͖  HUd~峳' l]AcooqR&Z/+^ )rUl;U:cbb)0?Q2a\ p7v͋h)^ Ñ9%V 0QJ|#}z) '3={mNb~o8a?"X@d"a`XR`%$0zlu-Ja$B0y BU F+cVCC0LV!Ț0b8" DŽ/K4-$LP1e E9', d٣CCg5><:2a Xfё(0K$" ń֊$KQ%`2*;:aQ̧5L9 bwR47)SP ÓLID˒aHdj:! [9$t䡝hC>=KU'/haTHA"F@K!_̉`y@a1 7^YƸ9R>.nɏen췏wOTk~0p jh,' v߰C^]~cz7kV> Zf%+vpPY] TXdƄLi|l[nrk " +(6-p\vèAb9h3QȐhz kiX6c"et9fYX+0%omIo3I@a&&#eF,q$ y_ =`-^˘z' $R50 @D7T&gkXSp3N%Sk YϠc-]˒G ,Kz0AU'a *eJ ⿱ +?;&́8LQ`j@9.l^ 4&(F.`IJbat%Mq ·)8Xc9P%Î_&V7zJJQ*dž.mi0w I 'C0(+P> ^EB3_ đfe;~C8#1 'zRH$p`Ў ~ÆD`"%QM=Ռ!g'~(B ! #Iı4,}8+UkF|[u\˰Bp$T 첎2NRj6r}mF|VA=='{rM fX* 4LX1LO2su\Nngy!dXbD/pZ Ì3tڀ [8 Q A 6 ~ nxe eMߌ@E&j02DL p sMDAx+\4 - 8 CP+l\0u*9H1"i.1цefMj,qk@_y;AIUB  f2A-%|2Ō#r+Zq zEd@ 3l1kvejyot?q/ @1|N f5.gVDq(E4i%9Sgeۆt UWQGx?[:o ӈ LN>n1D&N 61[>nek˪:)0Xd, +Ot0X"1uf3h0\"֍I9uaaqdt(bc4I\%s`Qe ;,`lʚ X ϚSMUCD 4NpRGAF019b/4oS1(S9Y'QvHoPf8[POD"4cµh%dߊ7sw0J?Aaׇ"6LS>2P,H6b>_p&]GYM"γ*Fd=qYjPŸxL%Vw`R[V IW`v`B`'a!KW`>r}#LEҰL9C5XYs6E5hh\zǡ$E3|H 1iWSyY3b" Jy[N0e0Ʋ7`C-XΝeCMjii!+TN@w5A+Ɵ6֞6ˆa/'*)Zߦ_"-TA+8!P\Y:(`|M'7΁'h$ir [qYDcB< )GtFאa;V]LH|+$ |q\4k6,9-eF*X*Cj?F_SaEg* ;qFI,+KQ{X؋,_rVBj &\= 7@r a+g'y7|LA*0͋$dЋ`ٖ.Q@A|@@4*J9]qwq<XbV2찜'{4/*'4alDp5 2pBd\uIR4c0RÁG4[ښu_I(S\ʚ'ii\Pƛ"qLYX0)ceV>p_ֺ?fӏ\ȵ_L \A*P0Iƒ/ +?^fY=4C*Gdp)BDNJ萁r(Fך+~M&k~`[0gNb}TjЭ7Ⲣ:|\a KPB"74/I{fL?ZJUQ2Bg=yBcB)kz6p8Fχ q;nZ/'ڠM@!Vգ'cROb *0PIt.$ޅ3;Ͳ` lJB"Q3)b#,Bw3gz<VI*8\1*3vHP+!E}lET88X\a7D@}v~@/W2`af @v-Q< @hequ3un[7ZHZ\@K(d- Ui;h!Z>8(R_Lq>c vn\ڱGr*qg|ҴGqPQmVOXB H-tt]Mߢ>i;'1T%fJZUh6XC/yl]si'/'"V)[Yq\eZ9E䝼 SǨlPxg…6+# TxYakc x^'zϴUt̕J׮L73Mg=>򼓞 dn_?g|vζT }9~︞= w?zH7ƧMz}t]?4;~ad4 =_lp\;brg,f_mfv_Q[_|aLnoU_6ޖυޤ1f;G)Q>vIXtrY}S,=4wK|p+ʃw @ǃm)L)B J.+zt>gZN29UU3 l0ౌrfO(:KTl%^U8ᆍ!>W}; Djo#60 >Ł}5ʁsDiE% tU>hc@!s`aTr] qqqajko"ڏ/(aI%d4̟d$/r(xx--iJMN8Kj>7OAKJh"JmeL1ˁsG_2~)Q\_.0ρcV_SW93[dAWIWP2^ȁ |7q%t5-%7З9hc?pV8ݰDw~4p7\.f<\Fc/8[rdM D}7j\`]qs Jεָ^6nk!J9E sMU; j+l)q+һOVt)~)ڞ<).?Uɦ.󻀟qݷj]`W)mE9.@_(~Tu}EE_*@VJ-_qSU90k&VRj 8bs7Jg`|807sj| \~Lgnb)\{4:nn+.$+\h!ͯ(r`.TZ{;oU|Us#A:8EkrD3#sVhQgư*nl:)Y"j#xsR^!Á/s`7½,Ň8Вr%D3Da܉8Б VpVÙ))RDN.~7i(Zv[\jo{CD3>0* 1|B1O29EgZ+U Gԏ!Ϊk\Or`Lt0)ǧ8pMon9EJF}MZ{gW  uE5J¯sVm >tК `S䇠9tӤ j?8mN 0sʕ|c}f"u,cS|Cȏi罒Mj-3Ac>Áֿ#`>gVI_\KOov0q!iZw,ojHWQB1͂+'ߎEl'8nL1ɗǸqD %'ha'U#BǯȊʈr4-T~wLOp?'Tĉe'w|qq+y”q3x i`RXy B~WVE@qϲBp-~TOu .5Ӗ{-jm[a55] 7_B")*}iː;p;$NˍJFt6Ӵ0$dҵ*KѤSlk>N~uUƀBƍe-| 78պ~-8:ܾ|SѯKT.'i؈V?=cۼ J~TrY]OP?~j$)<]o,O7bW1cpWUrX l/7 X3~Ep`!v 4Ci>ɱJh"r'.~W]Ѹqwfsr5nu16?:#vNgi"q_Hrҕ $jZ)l~.(Tu;\Ei!"H PKI-ȕxK*X p',&})7lsr|( 0#_!k bAΪ+ޝrSafldt)Nvⷁ歺ߠVȁ:ɸYIKVZ%G_#/s./R~K@A$f4M^!}L:NNR>΁:W9p1ts'd'# )CÁc)|,ut:onga*Spms#+c9c0\~;$G ~B~ќ7G%NЏ(}zO-oPF&P[Yf9ON/rʝȌ,S@i]Bt}Ni^S6 D8pYoUvQuѣϢ./rƩT*A?+`P;hUN1%VIU@LWr0x҃7NX/Sxz ulڈ"z5&X5ݫŁ7iSMTVp-/L.́Uˁ5=_o QQe U*jl&Lӯeq 8:&뜢' Rdq,nņ`x˸-wyߛ^ȁ2M%ZyÏ?*xdXQI;́ e~ʅH=;34zUJZ3]9F2 \Ww3y: vcxp_R&gG|#)oJz 4{7%fqW&P۲C:Jn6WcVQL6Do hz@_{-d*ɮs`-I-@Pi&h]t{4vۤV3oyox: %8Вo>Y ]:8EwD9E[2Qtr"s m5 -E7%2U$"ޔK^FeÁ:Q̅.В|/VIC&on_5Üb{.<]<8$̯p\& o\+ߢ}SL )fr $cb/ C>Λۗ?(A*$84g m8}j Vvj>y.jO8Qyt~8(I~Mq!|w{;Cm6r^06skQ04&sDq͓|1ť2ހeL_&9p;L&2w纺#|NkD13*{j8s:%d{L%]}QQbZ5Ł6 .|%5G4 MN1aFGz/)M/e)6Vr΢RŜJHUtWA~Gji0K8펹 } |V:be Œܫa[8\"E.so6۩6&+AX}G)2VjL]*>/L;Ռ-.c G80i!VWOC.yr90mvk]@Ov>@9K^W@΁)sV0ns9xv+qFH1Y]n畁B Eo(Jn/(>ۥX'9šJ"k0)!P)@Ms xS }&z%uRղMjɁ _.01W`;m*^$A_xØwx8j,uyw80a!op`X$`QFTީ.q coq-Q 2Z os9zmv2uw8ŦF9Lˁhl]@{J5Dw8h+-6Ś[|_%`}ء?7<ݎpcwPܲtO.܄siK%hnTP q}\;dh>6ǬfI!U,  gLrH/~F ix_ ,̒rڤq31T !c( 'hfr0mVJ,Ǐ,r'~9FS܉MH?;jv pr(%x*,+i'm6g-d[a[U%ntBxl ZFEwl=gJ ߦw]߾v5֣7xo[V 9}f|A}yWODmJr~R?(H"S%~|CLgn5fR5HQ큨 h\T95ZmQӧhshz8oӅ*@~N;^MMG>\7x;ج%/#Y xim½,\Z8luI:\ѓsx6j|w-5dr4 3ݮúN۸Ƴ8Ls׼hk~ϕˈi Y`qR^5q`4OɁ{n2MJwύP+Uz  !<*%D޵B :k#FV8lE͐ᩩ yf'+,2" Q-]n־_|ItOӾP^Q?Bu;vMC?kHƊWQ"[U^4VM*PŃ\~+cT։RQ)ZZd1LEE.&kJ+dGE XxxE<*~/fVTUJe'40F**r.4y&^-!P@ox?NV.$ЫkVM9DWL`3RBYQ7JV$(R y]R +$-v҅m8Jm'EN?q:ْ(ՙxh-Q(b7̌AvD\GuD2nڂX2{.ΪM/1&;# ȸV 䭸j@06s2pPʏwq *!F5DU&aG1q'+(rʒ@E[1\lJG܉KB~営Wx\Iq]_.LzqHx>i#?k\J4Lϑt/S8-8m@)qW BaCz(O/ɞi0]tӉ(^"71c)yQ~7 Y[#m:8C?1*x/`\LԸXaUmPxb.q'8x^E8D(^4c:Ļ/})-ixSCa%!/"] $\Z(hٌ:)GSAi%G<^dV3вJL96F2Sب9ٮ._W]^@{z]3O9o>ǁa;r˜\-m9ɺd~a l^]78p=@r.&CC;:ȇ?tZZ.pv2Ԁ78L[Q8TN {Stmגf8jz_}I} ]V_{ٛdb]_Q~=rkN 9¯pi~\Pn+.}ۣ1)dsEX [pJ orV;e%%n-| ݁Z9kos jSLƽ3dž}[X72.bS4g'i{\ư FNqxlo)ʐ354D}Ϊͼ";X x]_ CI C7)f 81z7fN6T*UyHκɛlvŏ8iI|U_if3ܒ yͲ&kP}~Groƒ~V۶ ~<'XL=JSk8H-%]p%aZ OvwJJ"\|r%F=evAJzIn ϋ{Ƀ8-ZV./"V^'&7Y㥯Xx\]=Vb_*e~u8)051@{~"ⶸD۹0?o(~F҂.p -q o'hh@u: :Yh?q(F͍8fyi*{c5N1ea\.&IZiLF80ayȧhYfuTq7Zikr))r\a1ORYG.Wq^ 4t0CL q P$15X/Mz q2?).P>|QFpf\ba/rZa5|-2 qbZ]jFvڈB0))~~9fA8QSor) m_V~*^iw}Eqp2s՘=LW90b_#`:Ɓ[ՠ}uNx9GֶrVQ Fo%}JA,ke@MPbdZRda[-{,+L'β#Na8&D,VYSi7n~G(KtΈ[N1ڬXum)t2SU:qTݪ=]wk oqc5ty;_ρuf]։6XPE詻K2rV7k-?RT~i(X;J; ~[djfګNnv )jWjnsNqv=5Sִ )nt 7RkiЁ25ѐ;gQfk%> ő5CZ8Ѥ3`U)3jk+r)j)tu<=υ7 @!w" J.ˁ1w[x'#v=?1E|k'lrq`jUU%WiczEVaN9Q}X)V}H X#2N#ت!~jzr`zRzM~juϘ:,7|Kk^O8Ӯ%>)z ʁ|B0ȁirz!ު[Ɓ0F $.U/{8F80pSqg+*yk78ž줜p`~RWбS+Tm *iuiTd1Z]=āՌ;&7Wl# 쒌Y%URϿ8Rg5YO*&(+AL8ͪMŁ;Jj.(ڭC2*HE\Z#wbWUnSԗxۨ3!%"R4\K\NwⷕVCUъJCQ6mwUo"EU2Á65}\!`M`m(~"cCު9]( vܤ+~W]@;R縌SK1tpd'żvrUs \}z.oqZ}lXW15Q·.~ToG4(}1U*o>lFlyH[Gt ǜNm%=]pOv=OS.Ŏ )1 CGDsުw^| )P)/TԪ}=}<8O+)l̂~PN1yLAU9Q8#_C9Uz~ğC7g{7Ɂ9J&HZrF(#;,2S{UӨb(}_)g^~O6%Rc\|wuE O~X~88xe'H9쥣ok; 8t$g58"/r~!Oq3EG|(80JW78pXTr˱Ɂz%{XlG@ۜt.6U*~RUΪ6=XZWYyqh!_SF;+(\z(c^G)zU6cr`xȁ uL#_?m ?m%.c?q`޻iJwY;~bY !vz=61qz}N1yڻ\Ǭ8O%=fkL玸HQ)H⊮⩸h-DJ qE2DeC1iU/?@ L\Qb O>gz.xaNZ?_o;K*-LgsV껔Bx}+[m/rVM.V7%N1_?KL$_'8bX_%gue>0}ՍӳČw 2 NTyӛDQ.|W\e?M}jX=}|\ƝDq'80uf>ȁ3wUު3ޕoCtf{70zƳOrgH#u৸3Gg: xW\޵12:zcE^]ut,gy.cg; 8pl;ՂJ涪$z7.<-͗qoS=6B'r9{<)6N1r*/.90y>]whG9'}%IcBz֒?`fq:N3xZU ݼmO\)"gu Ҋxb^_;6zU>q' /s`#z9kO4\7;OL+4<NuÜֻ+C޻Gr.+FM|׉_xh@HVDwX}̻ 4u~q q47}RH1! `OW(omư>+j(sc|[m=Q] qy鯖7 H߇M H- Y1+PaZVЊXqu<g >?K'쿦((Ɓ;|C)@#\F`^Oq4nţ 6ģi9@Wck5kJjIGQ}֣*}"mt?z;vJӊe%8sʮGhJ^ҡJy:s8` SJ>3E/|?vk>Zޣl1VLO E(G`e/F\O7C n/"#D:cEmfV@cEyیF\N#Gx(ل#,tA"_ȋvJ 9ZJs Ns0d`y\= +1McrT>"B1ˉZr # tMζ{z/s]QjVq {wt'ܜb;>sDn ^JGWjRr#C1H+gh,p`@#bшV=\L񁇛%Nr`]LdYi1ׂ]<(UAqWߞ/ 4tᡁt@“I  nּ9pŽ?w/S3S3g/ !H AB """"B ""A$!-AD$ak{Ѥά CKE}z;L &,sz]ǟ Ӌ` @+f4(ceon^:5qCmGٙKڥ GM+X3z3"ֈ-R{'?0XccWzIH;Dg3J5=A4He\^SG2iAM rPPH cru 1JJժKѵ)|?áP9.vn ?8$HS<ZL ܕlw+b[tKNv~JĎP 2ʂ,́=X;3RABvs%dӎ7ӫL @ժT}Eo.cʘhFW1+:2:r5A` SӲ*O lPh!(bm' 1qk]~zo {G԰auzca@(*S?asRpl IH )ʋ1<mƸCkSPnA@U$2|*pHxjIoB(1MυCQ.MY~~ F?k\DuF%y"ug3(m>d Zmx@672nbSYZC5s6Qd6RH/mFeLqhT_2&+@A:I5]o+bAED*޴e4GbK}*F{'4Z㔚_ɖ`[R/fr)ri|d&[6] lI殴zT?2XƣA(v$@}%ܪUPoR}oz޻P#ijjF(5q|̹E"]R4݀x"n5Jtۢ ^Dc3z]5i;t%M%jQ9{%RJlVFWh33zs?LWSL^ 65xי#5g5RQ}+f 7)z̺utA)6!^:L+{vQb!.%-ޝ'p%9: v:"QǗl TU9EAK4С6DJdзPb8ꔠ 3,e&ѽ3IF8wD5#Ѓ Y|]^T5UBm屐UKA>*=;nHO R&fAVYLdGLJCh|*hH:VXtf*weR;`4M#ni@]dHbT md1QV |= x8{w%zTҡ-K>"{+kPSA4Fmo]{G6AP"jG`N/Y=tkgkHbm# JԞT-γuv"\wE9[OcIjQߡ ˢ#̞%U#Ϟ$TUᘤTݓX/*vmlgwDy@yn觲IKtvSb7f7x hI8jLV G?Ԓp2\Mо@Wj{(FVdyK+$fQ~Af%=Гl[v &B9ӎ'u9@gwQRJ4y7G}QuTcŘeaR&$Fk:CvJHǜFpH:;(1"Xq(Av$ *rzH4\ԛw0D[(C0IɽQF<jCsKڜZ+q't8W"uF$Q`Hv"12/"rAIhwY#XHԢMG;PIhqz*FU>Jn&w1MĖc@#yh|ݱI6l=M9\QS74L'e(ӵCqm&d]sO64Ux9C#Y m:sI ]9v=9DЛ"Ёɝ-s9Ls$ޗe>vT_%%IJgUc-6 0f= LIaP1 vG2"\Up!|u9e-HңMQl9˔|ngɠ>ntK4ܡdzwN%ඈ9bPb'C'(q8J6ST?=I ?r)"o$ac J)~A( ^66(lDm.(ǝAS>w\?~6oQbFaoA^#_6sUt!;q:rz:FHbWtَ1Ti(9cPb1Ҳ9L'NjPعJf`1ϧ"18V<`GJ"Er4tX4Ȥ"!jxDSYW&͝#)~~F58DKÔ1s2T1".!s6(u> pB{LxP.DcTUā輀Gxb(u Y-ܪmpQ~D]ET8Rp7Q{"J\r>h ݪG1"hwT))tZ6T=J(r=NJM(=8jz;QuD­6[il3JT~y0`14.Vf4(EXV~G3ݻI)]IIZ |{[\y}iF#Mh5C|t!hȝ9F3hF9w81~L Dиrʏ 9]dW-{5}"foxT~>T@ICTՐ?|12>BP?~bFW~ |*{j0lt7Fu#+nɠLCQQSnT9fd^S>ҝS6#mȩ$u ue)\LD}àDcn I|.+w5)@1>-An/a0Uf0睹c)zޑIbAuI|%Ts"ZĔ=1/S9<`Amr}+|ǓEQ(UwEON` %zjPb0]F0?O{T5@6VpCUc9Uϩ  kWkT?2_'U"h\AW Uۦ~>wa }t#r3.\儯 FMrj^8l6 _M/PF Ӆ|Z;_F!y%vRt %U }ETТh=TUST}Sa.pX$;Q2]s<.EP\0KCsLyA=RU`|?y-C|~E #X95KQm^ S I mbZUAIQ5"Ԡ"^y %ʋxU%ZH:!$(%z+ WQLژ-,+D3*zU8<Մ`2 _ D4Sv fl>}fAIi|%v x' %\7ltvTQ&Jvs BP}O;E=7*<tk@`rMF{nTt  H$M ĹemO:ԦdRm;}Ϲ`UQG̟| ppi3 xܹdY1(9eH-y JGBp=S,l<Fwr7QUe3-,F ԥhkTM+QZXESۨr=c(\O%>aC(1UȣOln bgΏDPǬKwЅ h )!R<AU4f#RQOG:)_(YMsXWS+SXĎ/% "| j<z^E]1%)QF;y%Xe索)+b${XC%LJ&ɓ) X>2Fn'eBx0t[g P#McP/{;hĸOɭA@| AAXL6^FP,NG=]"1h@]W{$bWyՄF&$ ]APkMQPk_6wI Չ>iң6iRTe-GLoʁEV[ey4a/0%$F$אNKPn9aؤ[SƆ !E/h JQ'(9?7uz0FBn3[}'Lv?5خ.oa浄N/P=}LUfBIfBI?:y:~*,/Řj 2zCt&aObj&d=Fl$*C0M4ųg8diZ ''̄ caXn kajMK4Mp+W*/cmvM{ˡ;a#TQ-Gh?@$UcLlBC`xdwM &ti[ey:adQTDBY|Ի [TF9~ (~LXZ{1kQk>`Z#Ih$ZwT?G:8Q3ä/-3Qn_-iR,3n#j;n _#͢6 |͖2bK]5ڌˆQb=jT}`+Ӣvuo%ئ.ѵt]U1VET!h#U"4P0$VlXv,=1=${I#1]{GM?b~X]d Zl,f"hUD'9rXu. ,133 ~qֈچ.J$=pKnYUm"ر<#TK^uXi+ǪeNZށ!"#e&Cӿ.2/ X]jvy|z̯GUSޙ}e^}E3#+hcU%S`qSr"زT&YKk&-DY3tIs8S7PFa vuğV4?A%::$@^=I0j?z$Q;zh :Pb'uR ”*7xRivJjJ.cԫu^v(q`ܿ#PLnd ]|bWH%c UkƔ#/PL-^m* 9T53G9%bFO 2{bW3kZX%K!k jt 8,c$nĬe:ٰ73tU,X&%u#IJe$>1b8Z) [hc%& %-5Ĥ(E5j#XRΧ0 _ SVe0wKDm8JgUE*1vBYvQLSŌ[Ӗr(~k%ryQNrwAcA<.&#P+w=E>|{36+"' *jc>5Af0P`% :>+^pP[D>s\:My߻r*tϢHl"#xCL@]M]aMEBu[4BXWvDB@7)] hw߾]JG֓LVa?d>x8Fj6z+6%T]U)J,nsx z"XUQb]r %6 T|j"EU*Qb.#-oPpQPbQb?j"JG-jA~:uUM&U/#hK_}:ic+(vbT#=1FUc$׻+&ӫHS5>B/]EPw\҄``4}l4#?O0U%-J3.#lDqF)u''%mS*SW;r*Mh]:DmOB"t U}HUh۷E!noa?R5Q.*w8^ݞY!荛8COE=#ٓկCj:#MST_~ZOć{OUiAE|-A]|)SAPp&4*u-8DYmXha[TEl0D^ _b"_v6IČ8Jh*|*3K5-M-KI|ٶl$aUz>1/}R??m#̼{Rͬ_er4k%z;A;~uGt,~%Be=5Yz]}?Xp j3Ƈ("ؚ[fO !F5_X-j;zOa#Ϫiކ%YQ!{6$@}-i',K@ŀ%t]g-ϢŽV&)zږ,YaaVHzk쉨<K, h9CIДEV'/wEu=ȤIhIgh&ZkfMdr2ES"FzSgJ,k9.:9tG V3D'FI^CugBU(JrDL b >b5-lP;}]6DSRdǴ>/X115O1q6ckqgc)=)n4f$~A3Bw[J ,P`7$~}NLz}EP[A&"(#XQ:_t13g3ѱ쐍LRJL68mT回eFēҼA}0. @XG`-7h϶ \r[9ߙ.x+y:2؍A֨Gc Qgm~6ݨ#B)ր2 *ÿ3Yc@qѧRjK߅DlŖRaD3Qb'vza+OkWio]BXx]}I[@[ NśG)wte= -P{&鲷eБ~#q ~Ñq0kp2s)?7jI SzTm^c1=ݴ"u4\zRu X^l~kŦ2C{!nxp~\unJht|H#%bvTz(fV_Eiw Xd)#v_MWЏUKԺEY&gA">1H 0{k\zlƔʲ x5IvdʾMYz]G0ҭ$_G#[$цIk$ ęڽU7-~ 66:!q~*@8k{*Quy dqXe&YT^fD¿T0a9[:,6P6Z29tЍ`G|urԃ:\Q=\=9.J(1'MyD@m`H<e3Rb{r, @d<Բԛ'X=lm!)޶;gm0%([RoF;gJ,ٴrmhc:^I4 bY·gOjZmTG޶cS!g #邒S&K:Dc-,gcLҢ%[=LXg'{63ipD#@SE^pD45e}(r*j!1nlqO_*3@}<ۙsԣ~]Y&D g\.>Ms`1%jC3~O:h%j>A )mwKNEUk8墩ɜ(S q%t y=7yZ ӕ$-L+u;NSMK \q~șo0Yv-.Ci`ՖP l[ƷVXc Hv..R*FT~@;YmSa01QW_bu_{h!xgD*apk!ejRF,QP]W_ɋS ->gP٠J4 TzPlw$ho w'1p^8hVy|7a#gr+Yw<7D,'AU^; EǒW>,7?D{U %=6Q3Jpʼ&ܾI}&\e׫h jJQ]8w% r(-J.Tgf;l-72s!tD -ԅ E!E )!+w(_``D/7!(1yb\uXHgOt#uX88_KI1O/|İ&hLx.*c><7k=KJx.`stUU)J̧גs(QQB-C EZo㢽Tc9?֘[w.#?C[FU "jI hܬ]ʭ`K7@g>}9nk*(^VyWQb$_u⺂=Fn_4I$g=|Mޕoyus . $<,+5s_0 G%`9(ڏ$8KǾ$%pS%F$`[9m 8ȌR< UPR5K3Ts xeJ_܈~~AJ]BPwBWL&jcՎ1Y>hj7BknL_#XpHG $/ Eeޕ`^MY`apA>"ZZXCtѢbwe93u`&b'!"Xs@}O ]DbwQo_.$m% )T+txDJc).#hMT8;j :ipv-U8ɉs^9w9:\7=Y rI= rɫvswAINF)ۗW.e)gjE-i$p AMo}u9TU%XIyS@9Z,,{AUN7_- E,79U^-2XE+X#zB>hzi+ZT'!EpyIKNeޏ`>@}~%CQf)Hr'|#@ ?1ɼq*a}j7Eq"p F<5`+m0&!cܴ9<.O'ҫO뷆}lm&%G6>9OǑ(zd9JsZ#KK<`FtGh&!"GG|%DqtB7zz7-A|oe , k(ZT+J22$5P$BE}IG4J`CH$oH& 14#N&ƴE z$z"6- zIb[#$~dZ_)1H~!zS`j "zS+EОF!Im'P`.E)d|J{.q Ji#P`1zQU[J y%֔J,QB!DYEUcR,v` O T>5H6QT!ˉ^D,a P`wEJU}qWT1hD6N*Ie@ڳEE;?AQ#+nJ$1̤o&k(^Kc;"96MqDy_&U ?hQ}FƧWF SƐC\ "bnsY7FaE7 Ln"8XO2ZiuEC;^$6K2@3N/s7Vg7I,FP&>gI<z/2*sIӛoQIJ ~ca{=,<9 |CD^*>D8g9 v>MAMT:uO`T-( `9Js$GfU9xK~f^pK"N>SQ@mop}(|pӚe=M 2"Xl@0W4"Xu4pIm4!.t8V|As@ APʝ^GIo0EydUҲq:鋼:U!I@e9%ܻeOޑ5( TʰTDlVZK4B<ќ7I>@&0wsjiCp[xC4>|Ǣ -b}#?GS9*R·nHcyQK҇J3br5Ӷc,?]1ޕDc|F=ST}!miTU}&7RMKHwLQ 'W"qПCJ; Sj^H$Ftɻ|oEK"&X LyId0uw V&E>Ե>}`=T XKe{x ZEp:M 4^CГ9Ǯuۣ{`!jDyD}Q!zK1<@i۠[0I,;MA‰Q dc AE+ETmm8iWWQvDe)գo7* ]1z$Db͞ 8lz aE50mQ[E=J^2hMp`v"7Di>%A-*F&wD&j[Z"8[OW!uCnY#(͙#UU|ra@ " ?E3'rHg-ca2JaU7E;ȤP~(>6*z0>s[T#c'ڳ%"Oy$&fALJU >.I)^=  nF6i]}"K=u??wf7/_oN 1O')'3tilelive-vector-0.1.3/test/test-a/1.0.0.vector.pbf000066400000000000000000001134111217155126300214360ustar00rootroot00000000000000xt{TYu/߯Ucz~U߃MjGm۫&M=Inq3qH """DHE$%-A-A "DDkvԪ4Ys=暏ߜkէ(?l63 4-KZ᥷xnc3X\f E,f]^x nbj26#s[78sBȊ44pymI7DS r +$LWb6ZM*Ffcd?:5Q Rs崽y }^[ɻ xKa&&pgo#t˝mrY)0ܠHR#3R4 :fj>cDl\2(aw5sF'2n9uِ3HJ.wɸZ]fi[ҫ4DM+E?혾XȐW-tɖlt(qXS槦(Dp89*XQ y'4qe@K[162/+O_s kkvRXdLNhM? 1 6kLJ!BTV s@L/b.HvJ-+\2!S7@`j-W":7Aqs7eFg CpeA;&*Z-D|cР2+[:95gi EVpIb䒳ѩc|VFFsJf9Xm'yIpT0f¶9Ox0ë1ش\#`y},z*Pz+a"HcwkX7tV5dU{XH9H ?Y#gW.&dHy6$ `EBAxᖇ/O8GZS@M=bpC#b2 P.&za!Asl2%1-T`kpStQaOP0$YW=%x0 $r#^A,"N뙋^ʬW\KհQuV%\ Z0-0C^$Áe iOȽ;n:pe(\f5y֤OSQN+'Qh?F3! C%aqۙ E,B>K~jٕ%Px$ fSi9M&$sA;q]#518.J*{v=N,b;*QȕLz!Aؕ\sR M9xa~U KNڄש Ӊ鴔M V)1ND$NZgT)#u62:T `\ ?ePN=K!PC9,Hk6g4M3AS .k~iNd3T|"ŵFW4TKONP I Z450+ÖZ¹*l{*V2 pP 60 LMoNYfkw hm>kSW] ;@&$Kj7hDe ֘z,Biu-Qiy5zxr·k{~,T#F[t\ҭ%a^V1'ݠ5T~߼vɩm =ɦdbh9𽆣.1@u<l/xKLF_.x :F\fAѲɬ֦\nf61($ +QNko-A#@/ 7oA '쵆%=|@|"К"B%WW!`xhG&l(1m#F.D/ 0-us 4dBDNs0GəIQ>2½si9'l'`&+,Vij-SHV7DcrBH$B홋9 >NfMP4>e 0b nD-w-|0d-Q%I5YmQU4;oSHOlrmjޞMTB0,TAP$I!xɠ >U6b p`+wh C[p;1:Hx7 \xnI AETɰPZ[.Kk2Py1_N@M{̠3"ᦷ~ B֘2mwjD@M;fQ1(C.oEJ WY|*]Y c)@ 9.HnL)J #c}"[kx4LjJQRL`/C!Lէ0"3yi ƕl]8,ƃ76Zfal/ZN9*lIdEșj^HK&[͆>wdri22L~nѫ`- k,xsfi L^K4-aQAe;ބ?i|2m>ՉJHl c4G2X-&GԱXF*t4W<*cYS[NOΤjF ,TE $J)DkFA eQD cTh*KCx`;q$IT-W``kY4QRUzOr.-' & L(T)dS0:+RY `abm Oâ p K OAA 0v2ۧ$P鈠, @܊:E%;8\dbbME MBȀQLC&L2%xQɣʠ.DZ)6ցDˤ@bF@\+4gQ$F y3v26?1ӠTmi7&/ox7a@uuj"X!_V( 9 )\2CG`$baMLk᥷mYxֶ-2X>I`ZCbY3- fВlPh3b6(ĦU(t@ fYWn,G5qS6,PJ0 t E)(7IU  :*ҕۣsesT? +f09L5ÞJj$ЌJR&9f 7UE{hdR]'RIE4aޝ!bN+18-6bHӐc LŔɈҍؤ`Z ^yʷ◯~%`jd?4ӿ퉐. fyXJ` զ܌uI#œMjןi[_ iưﭛ `ŷ{ Gj|8ѽ7'|'78g.TbԎBhpF󈰀q3BUB^xF4@CU 3 O-KP !:ڠ5qE$JIm^AK%6UVuT[Va`VG}†TMh:'{"HˢţKg.Bݩ8sZPm #}5.29^͚xXV*YM ӭv)"Q%9YdRtd7 oBE/Pp 6o}<=dvL(J%6$)I@h uH0r+fi vh*W)\$aP =cNB$fROz۔*5Vk/"ND4LՓnƞl:аM9ŪYJ{j*a-*WMJV JuA g%`#?2&4.m2A2;ߪH|8*A6BP'K 50Tʺk\jOj >V rB+qJ"dguH kS'!(͐W&3`U]R>`5D'8>Z^6 I;v Tw' :epGמ%"˪T%QjBi>U+'ێU U H1hhe :S.IaIFllA-Q2\j΀l#*ĖJ=Jp*_~J=x 4Z mo3BcLy*s_ᱧƄeB22J|U% +"xeSA3NfVn8tᫀ-i: ^'fDљ/">6hC OQB!R$WmSEcHMБa/?}q)+s /R ]*pi cCݩ> |\KMHzScעw &zy*T@R-2ԊC k*HkG3nxl957`;TQu6\"tPRPSD6P e EiWǰ =Pq/r%u#C TrS2j DP[& %o.qJ }ꋄRHEyژlp;5+R2*yQ6d|dgiR4-aɭ2U)Q! 3AWq)z. k]0bG 0Dt [զ=$:KJa%%C(6]M'Nab-2#La#2['`PT'B"|Ul <\oό,p߼ff/)U5jCP#U&.=+DCUDSlwMF[E]mVZ dž馡: ԓ3V +^ /PAGe1CfɩNAO8i9KDۡ> tV Uڦ&/`M|șpgg:Mk cKQDm&iaP ,KA-I2VeyA-H K/^Н`MIaZa~mU$%q񖳦LNGD܁r-B<@*#wHK, rGjGݙ9FG]ddUM%ӱ*7IT{(0Tϑ,&tY =/ %592 &sou S_y†* W~^"0F-*6'5#nb) تfu)_]b!Y5A"\07fx.= TyFL!31IUI| lJ ]SչL RS'?( }"vmwSb`M:jgjBUiSTgDoh慫dp Cʒ Iۨ#a$@Es#|p>w-• {ܲZTy*&3xc;g3~- #m6$~=0icR q,ڽGH+(2yM@T_c6x5&/)ix !"'Án+wEdH;BB̃jy]mvS_׎\ϯU;o>?W#/f 4ow/ɋ]|iv~__SЎl3)>#o[hdQW?>3_/$ =.R5 >2J(yHua|`˫DZx hz$ V\P"N8;g 6 zy̠czğ5r# "h(v 4g:a\X> ݏ:a\X=pC}$'Bc8H}Iz8zSGsW'>s O'l{b"XD.۲mu:lC_Mi`N9zSo tƒb5Axܚ7Z\m&3 ي>7ww虼Mzs/6@a}z_sl ^>^*8ۃGuºbT[t>{}aNV4WzS :ǝ:ǖE7y'\!>1&E^YıSE__넵n} ;|&r:aܥs:µ<>5f#.W=:ǎW·1[x^Ԕ3ܕK^U9,:LP]}c1,;SMYh:蒫ŨMmZ+{X?w\$_ ['Wb?7uu᪢/= cz""ߍpea/脣G^<&W5F9jՖgL!R2+csw >>j\_q|x gjjq E[3Y#T7 K>'_ ~D髽-}Ӧ+ _;n5`kO sfdHZ`i=b,v78tƾF3&bViL]:uXN8mWX%:x3cRَ%@UTqf9DgSwY~"(P(TV|dŒt I%idR[YdI-K5~-s/R:%ZHUI9-%Uo~u=sh畕XRڬ]NҢ<&ϚTy) !l 5|ڡb(&*e<FEWpۆ{ d)/M}zySCo +R3WD? k{S©Sg].m5xZ6eЭnRTI<$z,٠=A"5A%UJԞz̢6d\Sn;J1aen)-VLd=,Vg9='ː}C&.{òE`<%h]+M'=H %2%ZJ}퀧Vǻy=aۇFڲm6ׄG C"z8XK^kj ɹkSK5mRhwN8oJ".|eU& 3[mD\Ui㱢-TI艼>Q;1icafR/`qSnOǼFe5zI~IY#[Oct•N-@P7wro1\_1K, ^/K, *oDBX4c7Q;9NටX`rғ߲v=8t"IId\P]alfTwpi& .jXmFDž:F4.ՠ~W8S9Ke"93 /zuY'HvM9JHZ] sX }5Npu/'+cn |?v||cɉ:Pw Q?1fy4:NbQs^+#]Mַwcl zB09JhOZt -*2犵n_,6qm}[fwOq`敩qt3|t.zSf/L.;2S>rz*8~ϽM;7+cɢF8bǻt– `ūrD6efެy%` MQ8Xà·DdtE6Ih7M=Jfβ'2[7FV*c qNgm 9և{D>cNx^/*hvaN8!oDU [ f^nˢM]}1ڀfz,LmbUiK>lh,M=N!7Z!]ýN B1h1ZavdQ=k*+kV~ \=J73fxӠڽ^EY{^uz,DDՁ$0IYFjO 9aEpt ^nJXI 'xwܴbu*9%v#{u9"%-pC>pWĵ:r?5Z,ZNrLn׏%?06q|N8fAp5=܋\Φ/>N6I7}%?sH/t#|Fz #:tk(gڻ9(G9f[u#QYKkm{S'/n:(G-֙38i#-v|n;o:aoR;ꎱ`ěO ݫc&P.HgPry,185 (9mhZn^ܥ mw{}0I]h';9nk_zg%IU1m(l ^Z>sl{_% sgV.X0辱[=c:atN8Jj}\pa~:a (NX\qp~dL1Cp/W@/Xapy$4/F΅s F3= [Ğў,'š*@`tP=W ,nP*O8PǦ;J ;ett 2 Gt9]{P/ y^tt WM2&#_JVf*+v^Tiq(nm3DDgYKGw*UtV u&86J5c%Ce[T[8Z:huN:Jȯu#d2Oċ3e^oXms"Nn+7u>0 ANJ!NXퟦ(~LS9>+"}tz*t Z +^{zA'ݕBE ~>f[o,I1UKta*10ض?s/<_U+` PS j},wt5h]:ȯXhnSޭϜ{*JS˛ gl(ppsc'rj'|*5c[dqAoZpj`R4wXsl]:ǃ녬6N2oql=}"גw&sgW:a܋O:a쩢_ܢsܝNxyޡpλT>sݯNL^%s oV<0b+QrkvӔ:*O*q}8g?/}7vk c쥂SX;_7f^|qk^A>#sw cN4bbjR`(! wmzzbA~+l<=4գ0td/TV8_V:E)W^~f̾HaαwޓQ.KW 9כ:={p f.^~"W +fMD:ꄭW5z&^(!pxbUr7uwBuYm/BGt"0}I'8xӹ;\a4/脗g '1!Nl.&xL'\_,a:WuWӉ1)ǤDpR'oy"NZSNSsl.8Ns)nة/:Bޜ<[TJW"Ƙ/"1o7cS r`d:_4tbr]՗cN»\M{&W=:gX<{HX#WݺɫE_֛=y<96O^5=9N) ;'}Goj:ǺE~+kL{,G7ӛ:8PzS'zXS+Ԟc//N  }uStފG ~Po\os 7E 7>6}_.9nR l dx :ayت7uex*m%>p4ҹ.N{8v}/Z 7&nzS[; NYUѦj.AKa?JtKÅvMw#c(WϊȘu nS:DdAأeņؘM^[DثKg>.IrDƩH{yN;ynY脵S/.-ڱ4GL,z^ojڇr5N80}cq%6Г <%E^sPp|eԒ"9L+XSӷV'F'(Ã0 % )<3}I{(_lԧtQš1WG< /Cu=bH'ag W~B>68 :^rBN8Sl~1 k_= Ũ5 Jd4:aenSɊ[wF9K % wu 3ll7[tnE }Wľ桂ecosL|qyLʍ F8ܼZt~Eƕdٛ1%S~}"T/p['R?E/r&G$ml򱾢imLA194['Y)y:vvUz u*+j,=uA]&@VƬ>AE "[Bdz\f\#eDtGFi:Tx<=^U, kZ-(7,cWcR'If~! 1fxې}LυpLUwYQ) e@X=!jtSBZ#[ Btq(,,I&O&B/"Ѫg^,-«su=CCg3ug9{"~"EJAv2=AS<LFծͥف(sIwƔ艋+Hc!*ݫF7 -G9WR^d9#t e%,Yc?ܟ'Y۲uW;хzeݎ%tEELk F4ߦz]#eީ@#[i,#zcli= N{'M.RןV/7c냟pEz~텦[řH=SM)m(i0+mhY}2;pC4Lu:¤&2]q/k+aџr^͕h |itϋz󡉵:V35mz/F5m"1mu~b'_l zê- N`7twaVǯƠt3K=~pxѺ擦ͪU'ˊ/I|iSdtJWD޻=mx$t W۝Adv=4$o Si57j 4t^z.!XV~s姚oiY0wFW<ɝtW^^Hi.]+Zk Nciytb-XD\iFT ~>{ǓW͢Hi ] l:VeқuҭHFlR p&0jQv:M` ]&~^hЧnUisauB[ Cb% #L6:Nh]vFޥ3]%J.*YF0z0UzxcWtOUI`(.i'[Ǔ' [v*=$tHJϷknf4|W 11?5SGݴ̓d||tPǶKzr+XV3ej*~Orz=)vTF.Cp.p4`4D<}a'Lҭo7n #[ Tjǰ折't }MX۩KnMk+{23f|dL>j=:=ۦX5V\T'J,q&Q2Kr9"zwʸM #Lxky8繋¶9 QRw:)4/ISa7tPzEv-O_8zYfupurJ׫ͽüQ ӽ\w[9NX .O:YM: l3_H-{L.?`X&4 a zD7rxʐlTM<ЇwiHW:`o0?|@ڙafuwb@\W 1ã' ЀR^àyYPO&e;:;TcCؠ^[vЦt‰|{WgϦ~[ًR{fgSiLȳ/'/gLsZ;kH#:Y=z?&.]5EnN]}/N U%)vwaTM:anNM't a&=u4"mutڦ,z&^Q>Ľ [ufȉમ>tA`?Ѝʼn0^+c%Xp7AJ f`jkfXnP_6eue(pE!g^tuOY\RkE!Hm(TUog,9Z`wɺxCHcs~+Knm t9U})NT~vOcBҿK' : +}/~q2從.>S4kd .+>v*u0M'X| 7_+zNذdT>:aꄭK6 *V|>gEv [W} g/:狙;Z,?s[tgOp<^}|Poj+*|QBYxV(C:%kl{9pyˇu2QMbwĨE'l|T'^ l C51p~ѦM'Zm*wR5:$wzVUu+ yuޥW (C˪놹|BضF!ȝ:a5➆1,3ȇkP-0 {Xzib. P(ԛ}abN Ǘq瘯 )'iplL^] {3:ʥW O'Q[%:ޒ+zvɺl&{u`d+Tou'2z<7.U`] >7J\n^4xä7KTeLzQkaǖdv~?!pu"A;gKDclǶit`b:/ZzIS#% Gu[2Vw:qYFotP/Y5pC:ڂeq?Hj;1|bz]c`̵tWW.&3Iq]tMsQ(?R7{oc.6N^'L6({d8,;SB{hG|M'{XA87uc٫uesyq̨X\ pyjzFK ^EOq̻=|WzLJ z7uveoHfs_P}[,+<~?KUAY2 5fyINg)̉.ecgVq2n.V Wt?#R{?sK'awT 3KKo{',`: [Q8|?WfdqϯR\ ªC uPt_dA\PUU\W^ΪVe{/f؜ hAe=˅v{w^.6/),90ICWk9'k.eXtIa k.V┮&MI֧CT%R. S @ZL ^3%Kjv#23r!pn#qY0Z|=o~yrs"ZR]!,X%a0y$`@=+;K .\[W_ʝNտ PU FP}Rح Ťo!Fj>NZF!$S HXJ ao`nPՍAQJ>*M=C_!ߤj`%lk%Peg[AR=nP<~lKwOV<6džtbg}ִ(;Hq};XcPƃI lDgU=0*lapj-7m,|Y?GjHfYUٝAl#1ڥDIVڤ)4I6v{dtbz<f¤ތH:-dFŲf#k?ӆ`Q,_s'2VAHGJagE1m1(>zzATZ {z5+bDEA: ?% 매KIү4oRG ) :R`9 )-&1MG{NUCj9ؘ!_~"~UuVigDkjL;/W}U$7i1ʼnDkrQ2Oƺɹq)Jͱ<HOqx&ɷX"'3,Ҏm2YFE<%Heꘗ1KX`>G[[:\k+ u蹊0}x)~&p5\phÇQ\7f-,q䧶>CR6V 2HaP qdRfCFsR a`%RV!,'r0M.. Szx@\dypPEem܍S֙ ]o=Z3)m X([6ⶲCI𷚪S{YS.;n6[+8&vʈDKiwɋ ,V֡Ms3'r4uB.'0\ObLՐXY^dEXz12 z e1vBZ_<iAtp|8UVf`KX!:dTo%a 'cyCWU5g#b9V՟."S>A_ߑ]1,1>-vŰDU:DZZ*بi+ |1\}yI =eAQC<ɟv fZl0cc{{TlSZ NpۭzaXb_wf99j>]K̥t@#ׄ%CH0hX5#|aER,C I%l@^n%@]~|u[6`yF|id( ivrĈdQ؃kO`vo렀gZ^=tbЧ 0Ӣ` g`88 EM .ӃU[#j=.Y8Xm :tM>n@ ;ȎKjs(Rw̃Icw<.,Wd`;هHH =\Fbf=cC#z a;=xt0 ä;FT @uCXVi׈C)YG]oư cW0[lfKh=& FSZ$Yߡ80I ` XP}It0Fl_ہV=C ^k<^ɲp4KF-+ ^ A0XNYIN)%7\6OFe%䲼0'ªRt-wwLe$ko ^]~Zƪ.oT@<<NnV$cxwA7UmrWrAI0JoL~!CLQ#09|Bd6 am+RoW6ߓen!nd;0l oON;Jځ#`c q:b0~7≠gGY\z|&bؑ[3G,ݦwAKٽld%5a;'t;}˥.Xi ܏=0plo|ϱd[7Y1hK~{`U}7xK}j~2hȞ\N {A=YyQ F@P  0XS6*17 XgTUaPO=XWcD+{PI-5\Xѡ؜5cP87!Z-c 5Ȣ/a[dY05uSzE&%\׼lQ.vܦ ԴUmW1:0=5 VN GAu \Οpy2fCJco`׍2Ġ+c$z0h 8˗SW/Nr/ek]MdXHWqTx'a&c@?^:w1ʸ` b=lBF7`s 3Cd2HǠ4aj,cdl>`DOtƣpk 'h?cTSU =R' >RW+2WI\Hg- Q>9GEfMc/ ]b6%)[G`"1KJ<;vJ_vh߮qbf|QΑDƔp ync0psIjo^~ ɽy. ݼ?~ĥlM ɫOru?Q;U o?uc3'm4+ݢrˮ*{>ޢx̡&nҟV_UN36%)Kp+V!]H6odXhI DVI> DRu&PN : Z 6ZtpB? MIrdbW ZIo3%=3傽{Q]%| U^T%&k_Uq)YMgr=We QU5ivuy Ϛ Gs w*9'6)" Qo^P%6 1OD 1xj@)}cն;Z3֜_o>,vmG1pIm  V *1 XH4o) %vHU'>F5uWErj-'L5S'ꀮ>ƪW!1Ob΀>ׯ.<Sd-]ˢ*linңzEZlÜoG>fta{٬Fl738Xz K,mIM "wHfgcy7Hj$Ǡk,ZCX92oVr[a0cؤl}<6c#6H֋Xb<[%8*Zt'ˡ {X;9cb˖Wxtay=|M ,#0k]cԍaT36_y+Fc6_,HyR%"j|&jl%yoO]<ׇ%nρy; ^.cux]*)l|@2Q0 [(Xdn},~&1D|v5|@r[ɶa U6>`v+K]޸}*0`R>MV;vq!@Cn 54E]Naۮ^=_rٹV%4bJX5_U_x߉>\o z۸k5x=.#9joqqRnq`۪vQ'u)}/7ey"LrRc }Aù97o0Hotclg\UV/;MyWskw{Wh>I<˜w)iT(H-^veqhS5LxUj8ց!OD9Rڮh3}g5z);lxeV vY<65ϱsNugZ/5lOG`=j;4 Gǻjt*ŔVC|;}r!rW]|kKi'sx 4A}^b"_h0hJu3_c0IYQǠ;}a3 .c+)k./༚Kwk}ҷ0VK 5H tˊ5-<Plʲ`1|íMW=uK(X8mO<Т3gg:ۤe7w,1.Uf/[XozAM'&QvnbJGex#`Qem8jh YcV<[<{#{ƞ lҝ.XɠF$9X(} nckwPH9k0 dnQpkC0'#+~ͮmK7&c6J2E )J[!Skln׮l SvMUk<=) PYCVnf;h"7u}W8ԭ16;;tU!,vO&u [5D=&f6d9I l2t<5)8TQCbtEXx}I?V˱ŴŦz\^{XC4Jw{Amx)(Wuȏ2 Vl֞ 5ۘxb{N7^AUecTb|U%J `ٚhyjUvyo}h$y2x"RKW늍;!1J)1sRֿo7v/Dp{PzLEק^ݮ_&ȻB.({iOޗj0Z*=l8mt[Y5GI({[&eqJJ X7gO 6ؼ$u-k8MJ) &$dI籣Ui3EQ Uj9j(ڜQr Y!Uszs>S{46cWw\'`jajĢ}FꕯK!+sFrjJk^;qug f!kSVwX~ꠍdоZ7o^eoUD_}\w{B/L,bjG!^&lZ6U3Ic:U6P婽cd٪lyC9lmdυ(׉!oLku%ACT+uٲ[vŐV EB",F+{{ԍKc$9$¤^қM(W n[ҏ5D/պĭ˷I ' @\1lcUq`]jcb?U5uHWD\~b5ql+8Hq/CXi\-l;'="ϥ0n*w,+۪ڽV_qFɪVI^#xP7# Tg kL|3s:vǰp\S"OǸ88i.'́&H }AEB)``G3H|A[B"Lo~~AN#4oIxh,g.K r.ŮLUUl// A{04P b3) EE;L5<u!Zeaܙq{/ i -߄o"K!3) KyA\­עoRVC d[:sv_I垊0{W]:8#N]o4[՜cUH?+8խηpVgrNuSʖ1~v}}ǹ F|p7lgWKdM$aH՘o8l } '] m&dq2 ksrԔ/y C)ur1BI5)ˣ^'AW>NոoXb7|0 %\XANRa5_;(,iˊo{mWtVM (pطzENk1U{#Ĵ* 7% .լ}do_p+_)dV%Ea5a%IxD2 G`xWr |<6} I((a0+B_UMZĥ>q Mx^j!WO`ӿmgҦBY(v=XGo? 4rO|jqIwZ?>z[1wSSCMB?-mȾOeB#wLIr+VVSBwHģ՛5]bSBLSfsZoCHh8hĠ:4oh>U%&&,chjIiƟ_4v߁~h!/iKX2ii+ 97soࠍ| ź*v_Cu5 _R+7ҤMgEI}M`mQLA,f~5N_4 Ơʾ-Ən# -f*ۍAoob⛃~Th{Do,of8_ê}w}7Z{U%|0 S\= |KPqr|0zךF Yi_au py |+zgSWIqmv)Vjw kiUCc OT~5QAPIUd;3{7;>/`y`t)lD1X:갪3E}gpYY=ٵW\֪'O`%sd5=bEVx_HTNc9m,7fv^fqwe^My){ ]y[1hߵ = ;rf&T6:96X=2{ OL;Vݳ,Vbй{fRuwCW nՉAֳЅaP @N@R)7XR)r-mgϩ *aT<co2r73=U@jУ䳯zD/n-@-jlcU3>vW;j7Sͮ)1q .ms;OwJ6MW2TI&+ux1)uŝ1c!)0>OZ3_Ma&c;bg.{~Y#X8Lh#q*|"Xd2=$()ylAcNo$Xї=ʗhJ\fA:y ҭf3ܧXZ+>U=t$ib}0 n_6)lc0ishwg[3XWt߬~_.ؙ P vs5bn4H|M$,%+X8zKƷF/`Xfyԍp;Vyr {,S0zjJ:ͻ [?Jm.fA~uj^woPL׮Xw8`U)ss(4p?YNqvf>C](ƪk`ܱ *`ıa<b㭎 P0hs2A=ATcocP j2LjuP|*1tTǠ1$7> TX sI#6ڛm6ãl( &۴ΒvPج_ P$%Ns&բHO]7{(FFHQ?l'OOTU[zOxd"hɷ9!59y>fp܁n%Z O>Q R~)ahߤzխr}I1ZX о׮U3*`%4AzAXc#jlQMSiQAj^eM” ,I@(2aJ!nK WkG~kq* Ǻ z[TRme^`#io/ڨn\x;U%$^X:H]װw˶A@N,; WQ@0-)o`|y R&!t\oal{C` Pĉ!C'=Sǥ!-z(R2G+1QzA/I5 y_^jU>%=S 몓Fa0 g\}l6|Af3ĉgDB7Ntµ1PAY6Q `4Kauv @%gj]**qZ'0X93o&w@ )Tb3w~ .D=ugw+]@sPĆz:@#]gy3PJ0=  *4SUEj| $Z0?S /a}F4/S'/oԳ0:Zv,Q| /RDtxj@'g!*봈vDǡՠC8x=4B-jC>oSԽj OS%.MJ$=.A*!}\acp+jgЌ!uP5J# JA5@c r`a3UP'悍 E&?П`US|A4_F_}by‰s;6|M0>O:oȏڟ K}%HCdwԸ(>KT2uMnx2& X5T<C:/AB':@~ o;6aP,EETe{I~&N Jϊ/RR. '^Ln/qX˻{*Q1{$;xIip gFR~ ϶'bK@, q%fP(2/)98`G19;-C+z&wTU^TB Ƨ`RMKpTb[CwSTUAf@g)p|ǁK#`y dDbŋJj-闯D ,xj!J+khΊ1;[p?PP F9xzfe%bMݾM-9X 6ޢRPm}4?Cr0TxAj{X >+ƫ Z[BUUCZ9yKHQ_%1ZԆX@_Bb iJ%Oi+,gh}LQ >Ci*!@,!!` K ,uwA5uXBZ$%1}lumW/p-8|` +~2<Rgsh7<&IsH'r+#Xxj:*5υo˰Fx/v<<޺EfLa鈪%2@7 J2=UYxy rD65 9}vl4ffU,єY{ᬓY"kb# 82@ [ǠaȬ{1m/['X~{`"lbq,ޏA9ҨKQ8em7tD1C'^փ,1/`ĈJ 4evm]1Xr]q0Xrl^xeP19Sb>Mo< Wii]bg ͝j"$'IlNk0}bTWK>: Ĩ?1[@,>KXo`\<( ԍEIڜ@5Af=/P \ՋTB,0P I/QUbNJXyxFW(W)pح%U5@Aw!?lbz(XAO ަ@LhBz1l@KX"g )duJ\P J5Q G%1 DC1 ' Ēħ $~F@,NOc| D6CX6Ku1Us A5 grn}lR 6)% "T-S~ U/?q~*b3b9mE bNF䛫b} "@lgE^D DgS0ICbE˥@MXλ{0}w5b^  R}ݣB ~_w(kP V)@`vCmR D0b5X[-@,?JU D|ZIX{TE蝟×C5@6=IXz%RkgmDw4-pg(Cz ~ߏ}@U(}G5./P $)_@T |% C+~U[mI b1*@(%:b1N|~@HI#oQ ^ oS 1 @LFߡ@lp_L] U|.B{èoOh0} fAs`@ m`[k`$@{ La0r#:&Ơ Cۡ-`P.R!&%ePkA1 ꯩ?&uNLhh/o0Aš^bPrh$II08D۔>8u`Qc: XUwJ!<U)-fH<K 6Ab,W) [0|M{g;`t 7,@$Rf|JH,b2 ?|A~ UZ jAi a0 zHdD=n/%ϒf#$~( Q@K!oƛ0M/`06G_,DMEHK$ӖAU+i}Ѽ:AVZ]͋kdN3$UF|4'f΃7Hͬvzobt]6|u0{X6^{18ֽG~:MFN=rmU',e;XT`ѬPrhŨ3*Yn6:3۝à71_D3lTB=zd{†ig iڼ􍧲]vY:.qiRn&5h$dyZm5WFOW@C\ WOC=JӕPzffab z1hl3oc0pb$˜ قq]7 ~P.VUx`AMUcPүcUUa~ 0UGēf#Ti!G`b> ?2ƈDJ1hHY0A&&0>Agj,|JrHV8FAO:?#`4h1N_i nz/`# z/1hY f+ z9 g5yQq30fո n0ٞ 9b0}#ZĠx{ta0S[|O>0\&-xV ƷO r-ÄG"ȳvI0D#*q3ձM07Y/K`ZA5/@b]ߪMټi ,UR|k_|wq 1v UKE ?{V%KuLѤw{rQK  2 p o`< IàR+JAlXFa~/cP 0h7@1m+`J΃*w?끽>LP ۖyyKJ0X Az8Q*WA4(àV#A%-`(ĸm0&R1 :K]Tboz|UE  &W!Uդ\%:( ,1: mS.`94w'1 c@~bݰRXǠ5$%V`HՀH5mH6 y0DJ;Ǚ1(U-x$|T`^}K /J\^z W21W 1sT;1U c6exFFڒS' [& 1f *bV$7Ira݃Zoa)!1!$F<Ҹ1﨏 5nQC0ȏ[U1! iE7o! fc@Ic[b\ |AR1JGuĜc2l1N%`& i|UpjʸNT.& 0>E q 9qI\i |A˸a3Fm%o|T )ysF|M2y2gÅoȘ!>b |KB?/WǠk,l ( ?~0DL(hJ>0]0Ӄ T%ւ$_&6:qI>^|~Š0nm/IMT&8ؑVw`P$ecP(^݉Db5 [{0&^;\ Anb7s 0I*=YL'_CTP@\ }}T!4~ fYsZE'gjDՑFX|*&N<2^$N|kOjQ=(^1ZIu| 4,d]g^DXɨţ(i3 x^LexLKLoxր^OG"yWPs+%R:pL2ZG@ufA <-9̂AzV>8Oq,g5e)ŔYDfj3Y>H[`mE@QB/a+ * sl>-2(^P[c&`[mKD*Nz; jmVjwVעhauAKA.`Q A!2bTl2U,Ɣ84 ݎCmOcUUP>gNEXև/`YO(dLD[6@z!镼`֤mĂBdp\AEE߀)N>͌bE>SZeX67,p\.7b (HD@y32`X PL{|8ٰ.,,>gkP``|]֘ _,UG[ R({E`+}JA 20 a d C`1 A`դph,cŚ|-Z@9+KkO}@5f`yk5Bsy*=Sg߂\f,HѣX}":@3KժZ^{3L~8{^P Ɂ%d&.V=hJ=-Z?9N4Z4P yn7Ra`UeaeR9 S._X_F)fhQ7{ hKbxBC2wjD1Qƾel1-~)|.>h)Mg9^Ԉcz1T*XvX+&ӂjYjuǙjѱyT-I0GDnTuֲ_ Vp c)\qnIiB ̲qӸͬbN&KMقy8ʕ LfAUM0y6 x`ރ q@™/UZuUi}sjV5wClSի%QCٴe@zP*gf8!RcvyX2L X#P Ə s+(Y/`ypr0mhťtBlÇ W$/,@TR,e}S1N{~D (U*E Ad&pl\QADQN :AR(R8 J_' .#oS 0%+*vIarx\l87gQ',A ^>岞rcgpIjΰ? f (GO&t0(WAv3[)2TL J) JM ##Wv%xB|ט!LH5jH:|L 1.`^&ho4Kr7G aYZ#TU(iIQ0.`rO}W5߬??u kXEIt ҂ P0苙6ERbAcU/?~Dh/,˽lϬiC { k$x~p0qC 4Lj6V>qi<0A45SshW %m{B L=7jh,_ϠMy55w!_Hh#yNp0r=/]N$h64Dmhp' '0c 4!?Y[֙Ծ z B`#h-+p6#tM"?ta BaKl[޴wz/j6f|3CSMI@ ffɃ*cKAS| 5r:s4]q4Tx>S\V5%suOݾx raIxt t%y ^DIH pZXEsi !m@KkbaKCQ@yn ,6S-p~ʄ5a L0KdQlu񃶪` h 8e m+DsOTgbΌȁd=-xq⩄yG}@ a.Q?]>Qט~>EaAF ? 0ژ j9U@?=.NŴ0ʧEj܈k !.#}a0q .vKPQm1 T##x&u&<,j:uP Y K~v1n+wϐO8.||ly{}*~b>Wy:[HUtO=O,rKU_ޣ[; ][$zrǤ<S`잝0Y r% ^x\В[dcQQaT@бx+QMBt`TH:~su5B>2Bt'HY'L`@EL& M E3yẸc XgZ9-\1f-/5إ\}W- YA0$TF٤q, z Ӂ+'@Kzϸ^=$V'MjѦ0~lz %"?% ]:(G,DYK&тFAA~D\A5UJ:^giz|qL YnTZŕ*F|HSZ$ M#%@Q@r(hby``F = M:kxE CZ1ߍajp?OhX_3y̢X$ Fȫ3^W%gb?Hd0ȲqX%uRYh)٩J j XshGYQq3a)eXuQ x+xgފ<:DQeQ{<d> e0g< 4Ǫ)CPu!J.U+V*q %,XAKIjygC OwEa 0WKؒ)WZ,1p / }Ha>Co1-ȃ.n,$%G Vy2B 0 WH4QEXqj8,'s,LYހt/C̢X10g5_ƸU#t!F+O#GA1vp8(&"Bd,Rkk23$/$$@`ybaI縻1oD0%$V@EX*OUǬZ&f0 L"jI`4TV 9ecXXXS"$SѩV`4C=C #Z0쾗Ia$t^ sDb !ՠg33?QVˆ] żvKYA2V,jk9X*aȟ=s[cj:bCx*ļA2@zS 0LCC  |OI1|'~AG` OWqv5ɃkJNcKDž%`P<⯉koI@k T {N1>$15)z Kk|Zp+7abrXrA>9bj8#h`Q( "0_T[K0i4nvR Y vy>z,+!gXp~Wk7| 1){16ڼڄUȏKMw1]D7S4ߎvД!"zUȰ!Ѕ(qn%$~Az$|^>dV>`Bij1tǧ 7|x>UnojJV۸TNPX$yhN2Ea rh: 6!uDP{~ DiH\aM>6-CgzI\ rT] !\W]#w]nn (ҘE+ f:5 g_Sl#x/ 6,{l|;9jP۶h@>v?t9M_k/L_16h}!LMf| p TDE=)qGU"ՅA>=WKoN0Y3L4i;|)jŤaPZ raH1L:Uֱ::I R ?f7:)VXm?iht"Q0*L9/Ʊ3oclo`obF-d);~{INYgXJ7vDMY%6׊*ZV0'jap 2{fc^ybrx@yb8 9X& d`)Ub1ܱnŭ0'hȂA> W-^)LTDsϮ|M`P>5vN%@wN!03ĭH(|>K18`D:FMQ)bgJY^u4>WR݋]}TdPG^,~'nz;A7W5,y譟k˾Zޯcg!-Luo.*qy*&a&fDd6@wfP3amŃp50H%D }JjD}֦wJ7ҬQ7A6ro57556wJضbRq!]y=<>B;@g^jĊa$Y9J)H,L) I224JvnG1nc%B)&bj(,E?ok6. Λ~j.+M^NB|:֤JSX5ד`sx.- >}Jڿ TZ.z&V}-($$%Za^tXV0se/̊M/md?x$pEdj4L ^6%a<χ5&$.<e218V>1ed%EOdzt \ 0c 47NY2)dSХ9uU4UC n>K`Mp)V= z4 Bz 2]%X,x $0QwRwk`0NVg0-^pM3uX0W6af䱸Gj+*,`ʕ95bʏ5XPhD!tN,Mg󘦧x ǵN!3NO4A]W|8m-2]ka6FK.1۫Խy>89~"(IH4!U~0{ζHeV9lb-"u2c%k1\?`f;n`Řǚស hff!i6֞ GT̆Dsb+Z!&^@NY+ m 0e9(sǻF̠le qk: \P‚^>RKJL1(AVB֬ :c:H45Mk0jrB#XMv(W7q"@"[ ?9i Ah^MM a,CBK@ȟ^]#1N-(-s]5 ^ F,XK)rMEFHɭ3+Z%sbV}KK5BфO9m^G-u{Lnς50\%%WH`ϚygϗlwVۤ55ƒ϶ e:cM-5xt~T=o5zm-h t*#I_=V@-hYݠJ]mMg墟O4?íڿ"'ofĶmU|>,̿!/|~GW pRQ|sb+Ƌ;Հc Xyޥ <+ޣ,7[|kڊ ڻafo) o V)p#F_-xLh e7BA wfdOG!6nf/ `dՇs -1}52 VuSQ `Sc )PR``!(j!A~ ?y3L{38"B)20R /|-F)."|s8f5qjtH W]xEal8 F(ڸ\ؔNI0 ޫ*O$)t SMJ9/ Q{|: M9~>,,*2l?~>CĎ^Υe.Q|ڡV,ь1Bi{U|2 x&vJ.С$~~C#8\F?ױ ~H:<'/TwK>W|BDʐ$^8VQNڗo|E}  /k Q|HMnDSF _FACg[G6|[6S`cUpB[/8sk5A zThQ u 7DK]=dF٠ !}߄][2s`~ t(G.F@gL^-(*ჴ fa^=mKcL*$ 3s/3Ӕ lgRaꐉ)1)ͩ\;:kr?*xQ,6*rB9KZ M1Wxdz"F@~xȮhAGqQ[}lU eA'7^1%A|LwiMUnV@,=bjv~ATY~ Ll |6Rd%W@ ܪ /EPSs(~Q/g ,/؉v$"GBCXQ8x|PESkfcO%Q+/bw<\,ͳ,k3XPf Ɩ(2ڋb~z>Yd/(H)^pI031~8 U e7$]הbQ\+h|ܠ |^D7^cmȃ"> um L>]=}yb^]]ڳB/.ߧ?`;1^nA5Z<ph~Lָ|oP -"x@X[f!Щ})G(7vmpۙ O(0}CP44d]h}"WۋU/ oC6EDP`{|YKY=2w"Η5~Yjʝ \l `NU<մ#b ZT)m/˪` nH6>OJ)ܒ;L(ؖ%pJ1JyHJ1e( kORGOcBKƄRj,mg˜qز4"l|mBodm"xI1퐍OnRDD QJŜ !I܈CQ[`"V;֜':)+c|eytڝit13萯|!t&v d8H5^h"wQeS5 3pw[b MC6CT`Ukx֪ה7m\t὆" %pHPIxwAȗB?o,\o[ythu{g(pٰ8W["trt;R^rW)Žk+)0awM1Л%p#+; !tF'WnUM$,*f%;ƵwwCADYBVgl>;SamZ#*ӱ#F[ ^|J $>YR9,;(*%rk弔ᓐNȺw(d̖ 7$E(tԚD [-%i,Qnh8Vr^S8b|R,jFGYd)9$bh6ߍѬic >nQVJLYj<-{5$Īnq!iGt \ofPV˳ Irͪf֔²S^:ĈR,or0sZ_,IΣTǿg7;+%v`] !ҳQ @`]/7JŴ3Hم%5'¯8Ǎ&e^C2Ҥ0 i3*_$EV>VPVso9BWR`yai%ƋR7Wq4)l ̕\K{q:Jq8T@3%Jq턴!4WDYlȼR<|ml 5^y Y)))>HɼR l{CbvPZ[``j'1?T,shN"E#&`TFN󜐩C@9vH}xrbG}~+P`cvܬ4޲_Ix~(?gr{PH3^r{pheN؛=*Y rn1 }u}sHVi׳p/)Hvu77 nmȂg=bfCۚ;-OR`Pf_N,(Ţ5RE0ْLH/\PuqsTrŽ6_sn^h0~ ؊12m,(b| Aް$ƋY/zuI3/F=%cTk&I`xPs,Te!rVCUJ[g-H`n 9aOj;)J{j,n?^,Q~ĂjϖI ]]F\uaS&ԙc6+TԿS9eL`<+杫hCkwHˢkt/{$FJq%;(Ѳ6& obOk;eշWX;(Ōeses_փvcm$.vkv}Jm?lcfZN^PUx)ZNh%e˒(}Exqu>-Ӕnxvclʢ[W3LCN4ui!XҶV@HǍ _Wr-$˼ E[kc W|  χ‡z>–%b_O*(UR# 5>BGpR%8A/G:ΗKB\= +wV~ BbɪbAQ(j 6fq US`F%Џ;S`s (!EK];) ybǃd!VJ!lc(v-;7;|,G>6(iGPG~DY1a7yst5`[ESc(ͬnɑllD2Rj?FaiCG;דIK LXޣ%0s q8V_wh`:CΦS`A%+3)ŔIA΢翑`vH,/.ϩk3tfnnu։ִ.? v1ͧ煱8'd+Pv܈,.\c\Q),Ŕ^B|<;YF}YKާ3zBW)0-nHZRSk8z]t,w^XY+* {am7vSVK~{(0J`/euVg^S+j iyaqm1tӖYժhz>Os̶{Wբ.<*/U J95W奆͔g/䥆-q%u_ "mخd'C~Zͭ'I@I)p5v)΄}tZYyJmBWNm_;.dr)$.5˔bUk%q Jȡw_:,=x5^ (E.dzxN- rJMe4MJuف[a5Bv(eLNuV7t\zQF_K|3YK>NzX&shμ:A_ i_!)s O hR=}c>̞v;4缶A^W_#/Be\a,xnHݛRև׻nţR`g rݿC]W[?7Ӟm|/(0fX [q\ xt4~=uXx V7_o9IkzE E4=ILG)u%TJ;ib%nAՓXca䐵x&mOŘ0vi;Cx"ۙC;ZJxjd;({띸֬P|^xRFsa.JV)+[{R\_)x--K:ާ\rOEAH;VP`OzBW6Vu~"î 5y\˫CRx"m]Т!ey n0Uyz$K[˟ah.0y8I;y6RIWa2 S o Md}x+mSJmJNY<5/Vu^Y=aY\=>[Jv(/i(Ck()!cc)=8ʻA ,Gyr0C RD%/pH^+eaE,m mp򎆤J1օΫϫzyBP#Tٞ]aϥQ2*F;Ø2S(γeNQ`˗eK)=rK/?P#yI\/9OXeP/]'K/Qv9gʮa:Ǚ6v<#kq<}:a<(;t {J =xDiSaKX ]>6'ͺbIw(ũ_SD(S`;6΋Csa޵X} g٠? ӷwi<_/83 yxuД7)pG l76!\ykI3X\=ud']/ʚV@*JVڑ3=(I+zM7&I euT |Fo@, So9LCW $pK%Cc#߸% cdu< 7ǾMIg'($ /i ob/{UXIy ѪB)E7Z' t)!c\( ^,CC\iw81/R;荕q[=uԄb&5! B;t- 7&p W+5n_ܔ']S"^_{Zѿ rv(C)Mp~8+wN^ 67Hy~ɲg(p7 r(o\o VuVs|MJ<Ç(GX&'?eX/cYDV3̈D ea1SyrOPX~΄zI+3=LiOPSIvD.[W>XH{(JT6V65Tuޟv}v(c}޻q"XMY#_z]w:T5ךâ|e?z0m{t;y`DI`(Δ>FbNz/I1@"i+YE)$hJqH+1^MX |,q_l8؃} AANs5"&voDKxrgFY{$)T:Qɜ GTL|g x:e=#9 ^ٙbcl/RYTDOc_̦=[xo1^R38M],ϹtjNj ,;R׷ɪ|9Ҳ ׇ}XO  M>NZZy6IʶCZLV圷>bfzAy^IS²62R!/$t&bYl ?ED{i^]`2EIl n~dtp1|V 0?7=3!_V { f _1o &gnN xsqo%)3.vS`=sO5`XO+7Ҷv&0p@{#3ݯ~B)B{7>߯_6>߿/)QKQ O|<5"I{׈szE))[ndSMuP)^,|Rs}s\ji=;X/Ov<>Vmk>r݄ΣiըMŤ5K]G| fi>s[V.dHzjc^@omK |4JqJ)Lh0'e*NGd(^YɻNPY_bkmܢ^ݦ"}xTddXO֧zj*=.CܢG j]ܧ'x@ ~:o)U?#}⯕yL]O{AcSJu];;&r.e}L^%.c7qTnFTс.w(019RZ~X-)!ޖ3 B{ELw)I5ZJvI1OSk3i.qH`($Ogv98\/E26~ ;R4HE֭ 2{JC۸bLKaܩx,c<c%0s~r]N:ii}+F} 'Y)JQMcrf(4 m 1=LRV>ZBZ~iqJua846mPXeHcS(p89Od<5o _?ٲyh,tUQdzi̅Kg̍{)bn\&*YÛ?N +8Hs|eڧͫy9ټR G_EU|}vJlx[ځݕ{R1V< J_&@wV@%wvVv5*sd];9=4:+W:V.Z"w@%]^YDӗR tE9,ىf)~8WY%ܟvye|рXvJ!/5xQ<Y6WS$;zU0pI t+$áo=ۮH0*\.)xgqdmq۞5GҶ&)gQn' v*.LoC)W0")r3>.4%-sxxpJe܏@%ңL,IݕR쮪.TJBYO Һ}4W9%6="j`MJL2Tf_EϤc_oݍIj<n&P`7#'odUh&}ZL{o峹ߣ_|"kS(db*d5NihּM:b-Bլ ~{>,JȧϦڳc+^5:kϧf BE )pδ6jR\G0W \.ZsYuikۛ":S$?>\QyP~%.0V^XEu/ܖz58_Uj2״":y>DF`raZ*C/Q_./}H/^j7P`ыm*YD9/fݽ-Kdg 82V@){3cJ^֋, b*As[Hڮ2rvTqz seQY޲J+4Ui{? l怜U6b*+K2%KYJ<+dʚNcmYng<5oYɊE886tqg9QeB[4^Ϋ,#Cq#!~R`8p3r]>sJ2 tUql~Q $A.eX[\ /) PzE2~'C&TF_Q`kwSiK+*K$i lL 5}s`~*T*]q<vWv.)J-H9W#.Q`k匤^['e 㜂N}G_G*dh;1@϶{eTN29)/tRLnUzaCY-kw@}ǃ^U )uOSAڴ8-8.m@H)'pg%vK`0e56yJsB)%.H`(X"7QguOk8e;Sp8[W#)C qh rnJ1X朌W9'$qb3Qf5Cƥ(0z!O$ LvIɴW3x/$vgT)h )$\|ZErCcyNc}үgsN+" yZlU|9;1(:SqG`ɵ )Zyfⳗ/?4]ge%3dsDIJꨶʮvEkQkb߫7QE뙞o_LL "!n!"" !*\sJ&~ys;%$o"ySo޾Ǖ4FMe>Ħ-6#/N6-U mNm]̓`Z8`A̽W뤏pԂU̯Y Z)N @PM9.׃p:T b;ܰ̃ nɁ>0UǦ*jN*A1nԫVxcA! rz\ ʗ}ˌ\'ݙTK> m=B˸H&av,`W;NY 'U$-01qҕUzdnJ ڃx8&i†+&Jmc-^Z8𩟙Ewk#&*;D+3CJ'U"i>0ϤߊiHD|r1Q^&H \6OlȬv]KgzSh{)x"~3uL[⟂ 1K8FFp% j5NN_+)s$)y3?)Ҩhx6OCo/p vM~b7W9? D^'׷1 bwȋf2&%6MU*7aƇ%ڟ]:l|BL?qԤuzJ0_x=$o |X-H%M\jq< g~[fZg sj8Շ*fGz1r1M v}bΉ ֪jA{ Y.k+Pᔎ%+/RO9ޔ+%p\SUj5*פ#M? +&Gx9[_HKY8{' SLXŭآMvckc0^j}hc?p4iZ\I\2JM0+i g]R;P:&,՟6^jz>C'LR N{z>f[>)mV.&b7ܳ K”(|?wo?R]F`V%|N* p~/V{mva p\S>OT`s9 xoJ>[ }q,Wiij6NKpg1ӈ. NS?UK?.N"ME32<^J3: 6ո0x`o i60Nisd:絸殐'LuUS=Q*A,ϽrS`qR(7lK/+=QZuXUä+P0$C^G9 {IN@F( N9ۂSR7iڊqSJk'LtNjm?> 5BktŌqmGT';Bc\k }b&ڃM徘 Nҩ͎ B+F7\QDQ2N lN'VH.N˹?5\IK)MU ̽ N: J_hJ W?JMMjMBt|81{2,].G?ŐStق'vS|cGEj Nt߾tbGv¤U\M܅ pu )n*b8J%/L}S\[$6fB8WL m@>g 'b86iר0$89C8aeBU٠;5\%7ɠ,V1hWKMaĹ|OjmQp5Іhi64 rr "W [\d[ AB NZd`|tR`o@l A( .!T5vk: lc7XFUXʫiTLX!>j#ظy-z֭à-> >A-zAH1 nA .dh ůZ '$ĈVNʛHi4i=_~àI | ^$5WHy|Z &InP~H>6hiR ^D ] V$p1]8cǽƼZĥ\QZ"_`ғÕ8<'٪ %| OIiI_s߯甶pO;JpxӻӢC&>~> >N ߊÇ¥n[0m0b(v|mt)v(^ 6gv₯Kꂑ. v&W5jn dPI*P= ؇A}R?\q/Wp<8=K%Q+CX"= H`Зta vM.kIG@s?(\ƒ8F 4L`:AZ>'I8 =Pvhbf?MS KYÐsT%R VH7UȩJq57ni7n}'ұsksN[8 )peVA"K2oG` ďd + _oZo;8;+OWb Y  9 y p.ŠH"Eȥ`XSV ylj9=c04o "M (U?,]y`_^%+6j1臻7?з]$xܩn=b mJZ mT-ǔQjS)݂N ".VH,f7lFNDJy>#--WQr~ZQM[>D[D-(6YN0 1mQpb:c8 IiYc(XF8BNP .?`|j35QLz|=)cUs0@[H+K4p[eDKG0?oR6PR(`-Uo\` qX]nRpVnS tS tߡaށa6g3G[O0`)H<+&7$ M,n)-yCF˩o1HK>n0L+ oJN`F.Cِ@z[f]Hj0H)t,l9s,?bns4@0-ƺ3g$%%8w[?9[W_m\ B2 ؒpLr k>Y u (`{+(`J zj!/Ƭ6"j  .pzkh(ki8,٭ҳCO'Y/b)f Da{3 gcXzl3vl$S=rk(8+N0@l nk44y`uk/llvB9w$ߨ%m(WanK jѵC4ZDt pX?BÿSQl"{ 3zj 6n=c1;-xT,`Ōne(Ag [b9̀K? BT쌿m&廾 := <19 :AI:rI V8AY <\s(| :ɇÕp/``S`P={8\MYZA.e.N1  a"бG#F^*T;xrVGogu' +/M|T\t-ɬnxprX/I`=[e ,`}(!e1uR>wAbSw U1hy$`6V n<F$f2 39/َ%nTpTnN d ?I;JTAm|7fnPqrJ{D%`\ GJpb)3[D3.›1(^&3c<=q  :}FcAR cP{ބxp({=gAcRUU<`3-S ң_ WGJT]E[я`} sA xy41EH,qK"Y (EۏAJkx nA z=wa. 0$7_az \mdpI,4AHl }f|;QYHZOc=S0KXAn u#vnL Z`#Q a6Tl 5, s0h^a)o,st- @c[ %ĈuPV`PjZ+IASbmfS* Z&appjܸ t(&Π놺bdnZA3wl8 n.T $О VR,q)x%40h^ `3 2BUX7, a? Hl'V Q 4!["f+KD B@T,$t)Dgб# f#IB(Q c~ l إƠĽ:A{Ĭ45$Wfi}G0ut/]E{E֓솨z[w0bt6 Sʜg H`gS8eJWR6 ˳)= ٜ惁sI=0Jp6D˨GPIy,Ђ4d{+<pF_HF%^¬:i߄/(n`sI0[D(^APN  qij@<%g;{F>tXw:y'jѫA<$5j(X 1ib^'d SҫE=4KQH.&; уA}m1$G)ERGA)HKO6v?L Pp ɠ{ <* H qI\ |]d0"H!&eP-90i8j޳T 시4 Vij 0M+"?0?Şà3]c à[Aw30^W (=NqBlbIPܨQ9ĺ2K1E*ŠhkXYFqg#ξ[ `PVV`P%kY` U$)* mYxZv5.̹+cpk^A0?pT)sb>9į,N 6. r5 l9n 2C4G&óaR 1)/=7ka&uh8J62?JG=+a9 aPyMFQhagЈuGo<>8é6Êx/j8^w0Х,o]Ġ3zDڦtg_~9Nn?};b?4fU-3?O(tilelive-vector-0.1.3/test/test-a/1.1.0.vector.pbf000066400000000000000000001262101217155126300214400ustar00rootroot00000000000000xt U {{{򳫸fd}Օ]LW]]SSS255=$"""$"I""J".H"I"""hs΍y}9'vϹ7#-/*QKQTURm9mCU]PT:uiHY,`AY8StQ. 4f0F i*2ۥL|q+ڂ~Fh@{\jpx@;M6(*zcKi  T4b`~E#xBn}+ tScLX0YgΖ /iؑ%BKxyOYݡlRE"4sHLYR `$){4Kpe,FG("LN$szxscN+Ls;0X*+ 1RM/NFM12H417(mJWΊ.,πߕ4f`c>}Z,IOžyKgcWm\-QE .u7a>P*L` /-=B;%7U*zƸYuN^{$=Zt2B XА pA0lR 8Bu"[X8H/y PEAFQ`73*{&옹%6@W69!,lU<@(ȫ1?U|@S3P_W' B&1<1fF0>'DPWkLPGȏ'xHg||?^`FꥀwDŽ`{YOͶ-cS@NpcR\`>  d Ko'UVsISQ6|!:a0 l=PQkѤ```ikn #`Q3S"Ǽ 7h6@)S"xI\X ZRh ̈PL }pTMsy` -=+KIg4 9dcnDA; w 154f@ӆ`1PHz's5Q;a [j-{aMi7Ђq(ꧮ1W2] @`3'J.0 x&T4=`qX A#EI  *c9XAz4vRQ #4  a<Cj6#i_z< )K4_mvHM@U *Y g6IN 4Y fLyɿ +Oʜi` U1*sN cP͔ Hnư3g< &37eؗSy*裂0S7S:( nD `h YdRj, w>l'Y&I-Ћ(*4bQ}t}1`hV34B?nB|2*`*`+mCFQ)6I$m519`.YV7B0ԚbV7wSX4EZZeR OH#~N7mG B Qm@*mܥ)8&|43XhR&M"`t"7Ck0fzxtpaTq!U?c Q` c; LZTtzLN#a$фiЇN@uN'¥Qpu4LNjDڠ@d`@ttu5lg9C` j50a_F1; -xJӸaE=X|:g 'P9hAؽ>#0-T!{PЅ͂D?`)"0{~-$`]b`BcP6YZыynkT A;^j -8FN {i dk[)f *iYͿr89fM-p?nOGٯ k1Ў/HM |a-H:(/N00!\ \ ^L1E/]ld 2'BeWՒ6s`nZe fp[R<%r""W qHD7=i[R$g`hltRh$ ,t~]jp$R&6!Q}AS4Q.rcTYZ 8ё#`ʇFEA&bBh)DЉ^y0DOloŠH@Hd3Byf :+0]N017 aUsZh+"bF) 6RF7;Y\Ip3M #+*&(6@&Lԧ VL&V :ʅUhi#r&tM̐#96-"C;5'+7GD\``gցwGKE 511إI=(`zlvZ;؆VYS.x\LSGh CDu]pf{`2Ɯ)XStUaQmHX M6 `>И!2A r03swӗbɁ ԁH,oǜL5RLi, [D5p@4gh0ai,'A%C=u]Ce#hkqi+|43l(XX"eDy P0KBU6m/u4[dg*ĹK4 ]>D v4ð 0da$T2˪X6KcBsDZp98- YKDĘ[WAe?7p 2"3NVPF]L+!bZ`C :aɻt-ݳD[Ǩxm/m}СʠI3BE)mS6 6fm" c2&Ю9´)hZTڶUmxua@w[DxH ,Gފ&W/,P0e( .9|Ss&[;3;aVKV7ֳvt0DS-AڴFS3[4$*h01҄B2s ;P#?"ajTx`xAff%B L%nISTzz1z(dly,0oԪ lbl/x?;NUz¦bX>< k/3ZF5~^4 [5ޓ[5/ ]>7'uLQ!biÕ&MZYn%J ?IN%1\r5- p$A mxhja@XZcj VIuRBni)P.p&MZmZE:a[vp0 l^0y64ہ!xMj2dGIȢV`l}`/ѫ?Dtakq Ox(sMp:Tě*2;8D<ŀ  8 Rlk:JYMmr340`*\0G$j9f0}}N eFJf< BzW`MFQHPM7)tL8l(oP4< hiIhQ; "@=4 |Td l !$ 2ts(.a+XDU6v2D>AH%j2E˴6tn:jʎqMD  0覤J S#(l386Vg',/v˅kv1AXmAy(Nwk LMF2 6@I{ âC? H.\+J=Ћi9x,сARJ:&.w*C?ROf?mh:*\ 1T\Âjnc pb + QDWG hF5+LR uC|0Jɹ*I`v Rb )LKe1.z%ur^Ϥoѝ & ע<E&H ka,1[~Ag\O#A %TY"bկ[в% iY3)!O Y Y#cX))! j( 2_3sHHhe-Fg1R m.U<w 8CYKju{K %X$!2VrK#tVGn3i%Ulhe`A 45;;Η^qpFXgf8ab2 ɨvnLt$ K(l@bȨ3oDݪ0dCJ`-so6 uPDl.\34QUL@LmkƏ,` 1 7Od5] B:n*z#Xb iEE-Z/ji;Omfl%@N"$R&zcFŌfZ ć':X,h;PI0IB\X§"*i W<:`7ЕGG0?٪=hOsw:V>K15Lhx\/ iЮ-VEC1#誢s^\QbXN0%"XcADLoj%=D~)puA9۪c9AR3#hhMu:M4AE;TEv:0>O!Gxh@O%=l;dg ɥNiPb娀;`S,Pa҉LW\֬3!f V!f/kD#1C;m` 2["bm U\Q5Ǘ61YPCT%gX3;Sj"x|ۿEEJ+{kxQXhRҁTn> 6R|5@bzQ  J3<0ejRWDC>kb*.޶xPx9&Ј0) 80A0sLM cn.& fB-rӄ?E­B)8 EQ[TC>*._7meKpn`\)*%YP$:ѯ4ȅ4A')Gc60p9p`*[ AL0m1?2cz? T S_#II%a;NSDh%Ds$HCibuOU];V"̅.zV>n1bXp w Y(т x(M}7 hם妖H`@d**a>\ x" #G̒dD (1,7z0 & Rt%8'|X@n|R&.f졊^V3?DmyQ =_|]pQ؀]%Z  a4Ut-ӖbPUddNC͹5M1 *;)澄xTVc>O3v4ım0T-19äHCPJYobm :c-%,Cv0} dDAkhLe.XaL% }<^b e xH3` Dƍ1"=2_ (DhF(D!L&;(ϪLUCP *PQ e^OhX%WlժF{'uE qiit"2(4 k*0D$J⻪Hz"xA@ 2G'٧ok#tTk;uE3IOq *X2SY$5V9$>VQLZyQ+)j:b6^;X `e)lcB% c@$M,ѵPS1'%C,1D-uT` 74+JdJA飪Ϙ"rhy"lWQX>Yj‚'0ADйADBq&X&0TH+LH1qů;xt/.Xme-9Pm b i[RiKZd0"*ZQ`lKN`d}- @l$NPLlOh]ChYu *vϪ%_ec0{c8}į06Jag@QDZBTZ4tYU=!,a.Ia4ÒRaĢ`%EUN0fǵ8R|%NoUsw_tGL6?e %6\ X S: N[yjHpF^tQĂ- !okQ 1u R,>%!F\LԢ6'@Q< +Vִ9a0q:֙o se`2ߣ¥!VPbs⴪ŃSITy΢g  =n9>aEU?Jϛࢪ$=_4qEU?Yď|3*i.oҖHj>+eN /m@^?;_WOɟWߤq:zK?9?QIϟ!=?4~~Knvʶ^NRƠjZZ,=o۴\~Y8'Ȁu_=uK?̓[6w:22lxa;QT%^Plx_{j,IM [Y;u_[{ξQn&IByB׆(?2rS/uv l'Y$91-B2`5ul٩Eq`/qrK7*,ZB~(葡ӭ\\Ҿm:rMʀ탛Z` 858(m2ZjVZ-[K]EV˭Nw.Y;$=ӝX!w1;"pRhlW4u _VɀUNd?FEЫ6coUeхWV52`+*:X =2ȑ++ke5>N9]~,reXGcԀ{e%G6<~rW:bpl((wrꩫ*Od׀M2Հʀ~r,'eidځE웶a\M?MW18:}e{j*y^nqz^U5{7j_ʗT~YzE}jW/[_Zt7M9yi X;ԥ]Ʒ>1eeUWɀCSv~ocpH|1y@Uw׃=ek b8"X9eY gk\c-/]10oںT-ޒ de ]D'dv5>ƙ'wng^򚺩ϊt?'._T-3i/{߫Pk/Y XG,Ѥ~UGkk]!nhowȀkRў_kc uwU]rWw-o6>̚~,?[`p]QQ2lZ+]['~I׌Nܔ,cyV5V֦zet:6]c< cM\czV?77KdOeM-Y9Aœ}WVEnnpڇP[宮OV]=,׳zDlѾgn[;+Ux^qD$< B9BCxw2i*}GD(),2+Κ4kX2<W5,Y! avT&IOg,NzrB5/KO-OXGo=st [^y`J*ϛVoŽI02ql!5W-i~P/p UT=C2Ku2W}uLFnqMsWǮɀ;NqU#O%|꼖P)ji<dR|"k߈g{r@%V4#VUsP('~ԩs&&UA/K@b qSa#[pQ/dl|/eټ*:8۷ؕ]}%x6S1ǐ0[Vwu x1=cȀGӗjZV]]gM딄 )?|a52|` 3_}qYS>.FeK/ ezZ$x.jqmnXnkF-r{5-ޡP7-pqE%2y/M|D^Zˀ3˃ u|cp'|yOO.c +[㾍ȗ ${ he2t`x9ǹ7]uUUU qCt)Vuh S熨K](!73z>B r_3TLOwc56]T ʀ]urWwW [_"w>[yk^tY5VF<,nZ?"~ޙWG宮k?Q6W_>>Q} x|VL??)O^T}jﻬ9-nkT32ZH=هz;eC5wɀ{kS?&ؽ"# VX^xZ嗢"wJ{H<^dŲz_ڙk?"> |TzVgal]`grc+:'>uW]}NW[rk%3\.x8?XygfTKnQꩾٙ(wBt:hc>QEߘs楟V.ӧExhЧtZ)ؐ; ,jk*l#$ryLm;il~0>Ѓ^*VVb&Va}w`[n؄u'u/1t=ujY[dfcLUO3-F¶Xa˭4۪r[Ve42<5daP6q0 ^uHA<5 wuŷJ˥xicaq\-(y+dQ EDox-w6:~9[lvۢ)>0 K6rSR1 kx\:j✬+k yRM DM9dǨ.Fa, :I֜f&[[YVSKK|xZ&<Q;9(ysHƤlA &)(ޑd¿M|V ߁yHnưerʻx1.{y / FA/MO;9x([|:2%Z{vgY^Ԭm2lUX[fgR[2ljb_ ;~WwderQg`ocH3@spGuEs.Kx=X\%\eff\-n҉kw*t`6 *6iGcyH݆m _'&pʞ i?7#?Tko9D;/-tL";w?“mnLg/-$;Vth?*Ww*h[0Itd .yLdb-&&{_yܙnO&M S#ѐT&KЪѰ6@Z9 <3yb;Cq[;TK@dSX{< ݠrwj[Yz,b▧K&{bN{HU R,*g)J tGށj_cޒ.ni$NOތ<ەܚ~N53HɣoW:#CnA=DǺ:h w?5nAɼP=Vod>2~ a^읩8>xA^M֨)6wewؐ Vw+y7CuiE . apo'#UuyM83Mdɭ~W_P;,/lNN m_;}w{hiE?"v]7&b\GeŒNxSbXlrw md< û"MQ"L=z![ xo 9. ,#~%\`e%?4(D~ϵKG\D"o2?-$w}/_.L俒zuC'5T6]H2%oEM TŅ 편3 `5A <2~ rV^}K5]~%oԣޑjRF*ږ%Ww5ꙑF<?WxM]z̓7'뮮FGΗ_FTQdѲj2H%oq8XUnq 1_HZcfpScKW''"xp%}HcBgdi/uOB*y-ZXd<ɜzw&'~lxA tr icu X);ee5` x%Z5ZIԻz;ֲ``Xnu{s>[+~͙52Z>  W#ůS5" -'CՔ|P IXɪm<:۟[5X<V}q'2!1Ad,R08g+<<^2 o "&pMZGF 'ceE5I=(jα4 [OtБ6\NNwJֵר ~eAxU*^ϠT3[{ۇpmIsUY$zD\XTNX&95PV6W;ksrW7 e|1[^O[:{O}/[}VevuxԚܰ`N /ltPܔkr&/r X6h# 7AO$Պ_yj^N|&p9~/orkqQzoK~l]ݡXCCU{(T'i'ɯ΁шpމ4ΛʵQ7 HK‰n'dUVZA:vDn,U! [k: HϬ1Yiʷב-+ɫ5mYς P6UD189%la&Grw'S* g r>9eӲ1Ŵ$ |$Yc-~ˣ5O[y yӱJ~'}80WMjbZ9* ɭU1wObqrje)N,Į,&sO=Ɨrs]"BYvG/v;fVU+=ׄ^V25*2[? YN3Z(73L]xqW߾+jZn1G`F+wˀºS2`>G#]_>+Ii~}_}Ms7yIqR5[=uՀ2p mgA.mͤ Ȁ (k+kOd#=\W8l2`nSp@[Uj 8Ag'ƫ[dSbn|߾:^iTWM/7Mn|TmSlO;1 _NsGE=gl/3ߎ~~:0[W|Bn1G_3.K[|)&T宖G1vQj3SblCrc3b)7OSBn-5:ٮ VNɍ߸e=%u ai /OKkS:*al-gy}"`vA~cW6oYo,cXyWyLY;bF28brgMСN_ʘinO~Ѐ _x7v^-K[Ȣrp,u`ė,cD=ήb^hD}KȺyAWnw+Z/9_ ˫EQ7E`EJ.wQ#jYYxx>Ч̓{էU nl7d{AG-CuMyVVnnV-ޒz6PWj|6cIQ-wRTGNI ms xGnU[<\:gj+QnT-Nh/䮎h+?'pB;a Vu}R TQՁ UչU]3Z%|j8!r:Wrz_,0LpesM>x5+\O0cڑXT3sG&ԧe)}rkenZ%^''V9N0Oݩ3a̫U|И7>-83L/8Λ8KSʙaXϽRݤ= `uK";& {:SA-y*F-o=ɓ<`&7vrXs&Xc3qu[rSzoWG}\"#=kQ2稵*UFP}>_K p42}ضՌ@Țrn{C[.wٞS4n[}.BĹL c9 _:&x>z.&XmQ]r3gY]-VG+aw|g<Ń~$5a' {q9sq,"gGrE*tj3g 8c/?'>]/8$Edd!ںNfQnqFOWk!In񂶢2ڕ,wuXzPB;]KELnxҗ5R6T %o?]KGbaug-%zV0/kypY?Nۖp –g̓P'cDE`6$u؛kz!s]̊0w\c5ȡY,q,˱L=m;$P0yfUe ?r? S01vl]y Qf Oyz0;W%+Y z`U}-MJq!X4A08%uB0xFr > ) ^|* 1x\*n_. * nz;mbTcmK"4׃  `7m`,঴ ^I4}&؟?z,mky,v m\6>e7hfcSHM-i;o2q RrԌeo_mf[-9mcو6 SZϘ2-|3zŖmdl+&Zq5{XR\FL^[5޺v5DҎT)7y $wrw0(+AU'¼\ bP-a|HyR{j2ߌT"[`ziuLKYtIs уAM pc`|oӋ,@)\+5y>2T#vwk c0%`E " K?`QWa2H\T0UI.b-6niJ^01R(].c(oU1bfWhXUTn rוAs/+&c16 k8k c%RB)jCTϱD, kK̆!1Cfr-9 yF>/p? {1V,2泳iʆ%)!@04*wm+<|8rrǡ d2s?o"7搥JuK Kz%DZtx _Οe2?U}K{ׅ |p--r/kN!e+3W=S)[`Wg毽^O3{^}2u)>#ӣ *#=rQtkp<|tfW+o9W`TJ'I t .JI$*=tIv:g2;*}h'L`”H6>'d90>j@}XnkL/>``kģǠkG1~6>>`o!Xմ)$D}<:r>Z;A^LQn"  1\% b!(Y q[c8e n%c798s?Qc94P; &v\} 1EU BtωcWLR]U 0fIA=VDy-` b0%Q.Bb7+Ⓒ9${2XP$+E jF|MW % DoʄjXP-crU|a~joa0 U V;|mX ݰ;1+:V~`)~1s+U?a`Iد?S r_MII,Hdc0Qq"NasWr1Xgټq֕yB '%r}E@qF>\nAEqoß=ץ $ 0(*?NA1B g]bCJf0+fWSUW =%*JaP &nMsuq⩳S8q*.P"Pc*RP| -G䢚d0a$Nc }Pk.H+%Zl3a(W*ѝ0u$‰ rz ַuk8U-F5`оm"&vжU;Ě#ՈU܄eVV4XM D oaۅD+i%jo6 hH+^}n;^!@VUwDݎ&ƎP.V54]Dcr l_%쯛HT"hɳ=KI.Ͼ^NsJ|H;}d8K2aO{^Xb>eVXb.ED= )31I)n)+ M pE o1nn^SWA0q<5i`:Uu\)I,, I[ܵ k ,2!ctce[*E L>{w.oF*wz|6H$pγ%Slfq*L^()w1XNK>=k>}%.#:f5.p8{X0޻.}@<9!+{᫤쯊PnªXew1ƴ)פ- ce\h:_~]?־߈sn,nWT{0܏'4mzU $O:>nHJ8SNYaZ+ȯHn:ݏXT%ҩ$E{4Ż}ANo?RS٤-#*+`Efaf3UE5pXBXy{Nr@g1([ؤ[36:c{v 5װg]9,(6X"\]fS굫aB9:.'V/ #:紱YR V8TgieZ|r6}fk5J3 S0vm_db6\fw4Fy Ϟ;U"ݴAڱҹJ{fbN?W{YJ g݅^}׉_$W)ޣ: 8TM;TYCRf![B|z-d3mUSV@KJ +Jxjtcͮ皣BUܻũtdYYWMUuwUs5ꊖbUz>[U=֤Z#z?{*Oϸ-$(J8,ok$UqwzˋUՂw*X8qZ7kcC}\:I6j^WStkլH]b|k@T]hټ7%bMrߟ. vKx0? D*ZZNծ''.5"lN-,-qd -Nyh_ǞR0b|1WE9@ P|E$kCv OS.i`֝2RSƛسgqSln~-F pVkjɯwSsoTV+!1 +Ӝ٨9NTi:P[.+l\MUdzϣ𮘇u_DE(.9{R@B^ݷ3ط}fs Rh|PŠ1낗HN !<M SUy .p[y;]e5gjVet3uAcio UTj"]n..kg q0&Jq+dcdE ɺm8g7H+- 9DC!p |@n̹-Y Hjf/em|ì7l}%DjP.}Z '1RQ](kv{v]ɐmªBzT¼n}No;>t}v?6iM xǬz™򴻓X7GE 7-ͮz`Ys !ClQǡ¬TD buU}}m`q㤓'sc}ؽ6/5l7uVHMcG(ŎxŤFr\c `rszd9 6׬pG35s"_ GZRfXbvAح(0B 517\a>6qSuX ;%ȧ/GPsɥU `ݛhEח.ukɾU8 f6"|_u!$|Bu[\n}VQPX0H8xeC.L}JjaX|V_hUUZ?;(5^ؔVKS],4V6M 򲩪>"MUtulf@>kGrwsve7gUluYרuiV[tue?}*F̺1Du6>wԵŷ쌍um K:uz7f<ύN3,)nw3IO7CT)?ʔ5}&j.Y^B<{W6P|2>\,}ɦn4B@ϧp+ nc FV5꜃x(EXb5 MS8T%jY,Q'l%$Rv؟Yu%شvqm_dʷ6Bc KOw~@N!5bէ{I偵7SܟaS ч#}Ŧ/EEz{|n-eU,zwP| ooEÒ{c?)]p3%]MĀe 6váz5V58/Xb>nk0[ V|[gKvc+5W—uWq@uz&%rׇa;; J 1@kg"i4b΄9P:C 0K(L( amw i>j(i sỵp&h k{m*{R[`|zʝPVWϣ:zRp]9җmϾ;gKWfBd:3N^-;0(M,w`>8 ǝ6w.]1KP#Hn r `|&BUCA0Kjb?H|Uo}lpVAAcl|fj& ۦ bU#FJnbH7NQyöm]F0]^*[a J>">71$.$.(gAZ{%귯ql|lH\%Ʒ@'0.F;kIlcr{/\N *5hUw^ƠiW9HLcU%Ietq]Ðܮi,qɮ)4X®c쌌h@=w+}6^L^?^aq.ڌ[NIKY= ,qKn`N&eľfGa~'Oͥ~ .y1yn]+N &ynV72sCJ;۬'O#SotOf:nbÐρkH vTrYxj: $=1L9HŠ$m1w"ɢ/Nq1,9&lbK)/&fv]^(J)my'0H)A0[Hɂ.I FSD?QA~=0M~vOH.>')3T$ 10J.'烪l|:yN^} E~%N#6K夌 y\н)CwfUX96~)wㆽΥ,@qga8%f[T`Мp׋8SwcIB'&y$٬O/~ ~GLkYYejUUO垴l U6hN۬j7nPe!]+\F`, wFe!JW0IkxɴVuFZ]S3̧g8r/[q ~+ L^]z4ڳ ^%\dc:Ncsj+T&,ՑZ*|bͪ+=D59w%V=ɣiF/cbjjoZYg/H9.Ok`y6:!lg!#\`{ä:0SNsF% ɋtƽp2_Kd~7X.y>B_&Jnf%ar/1ywdOJ\\|OX 9>]à14U:K$毹l֒.H? rAtf>?[a>hg 擛waIt$wdfdr{^'£a$GigNX@ }iUbzlw1,=oEd'd޳U,]=xyKP%we6vK/"VM8fM(aj/{`[Upbǯšj@T˗ſ8rX-,(XPmt(`3F~K5,єQ{^u%dވbLl`u= 6,  ϧO YU5bв(u { =);TݪvcKw. NYojǠ;} y2O+Ďàiџۘ?bPBvaPSTpORs[26qrw@xnCjNJ0͔{aمUu˷> ,0y:-)ANԧuKZ=L?"jç8! {`i1EhSS`=u@l {@NU{6{џIվY,aPNbQӾl 2ŎYU9t]aztG.]Gasq 6à'‘3% ڏ! ky-`́;X"?s߉%*2Ļ}Kׇ=p )1h>\[V}wKf4Vn,[Jp()jevNf{JXMfª ÿb}X23 яADՑ>\#S؁`6?`> 95^`;vYu ̐  oٌkeob/\y-87xk@/˼ۍmV}{q6N.aUqɊx~F ^9 >rYKjT$F(D{K$= z> Ǻ_'*q VMOe:!Ó(u 1 զlu=6ϥmvFZYwbcHbf[ѱm!ڧµ mqmjO2Y5}BfmܻDٔlV|;pJt~j('kb;a>ף|Ż~F11b3U} / ~%F}X㉾8 z+ѓP^ɧv0] ]J*2އLqOz:z~?Rb՜^۔դDS06ؓUG䟣vh1кމ*XR5Q/<]1,Ztk=B81́&'_Ak|-M:f  o8SMA4i ^і u ^΂lyV*70^V/)}t@M> R#:ţX)X ed\P|SN~d\jF#=fK~Q6~YL2e=pENL,fx7}Lnb-X6 &DNq wnOk<뽾ӖKvsyS}P3su\Vhu+Nݻ\*NZ̓{l d -/ xS[^L?}bsy23_'޸15> >6 E JWbUV0q&ª.iS2&_|?[E_))Vɧ8XUm|"c'xSTkO TٸV*Vo!f/J9y,A~f_Ex}#XTUl~xvHħWеg2F8魲h Uڢ,Wt 4bp__؟ޔt ,uRc?ߠ .g2 |$ZHS%>Sb7`#^)m^x7Әs|eb7UYWQ/L֪3?o]W(Q w/CXUm à+U0A[j0Ǡ'QDT%5Jtܒ;&aP`O΂ӌIΓ4Cpy:ɫc!%ɋGEK}eE3Y g߳8Cmp ,1 0%s< y!g  H2Y4\&¡a8G\$=4E5)C% ;&"R?sacwLVŝӸ[2[RC3b{-s^>f}%Z3W&%dI{Xj!saY ?fȒlt;fKTlɏHZud\FB6HOf6b)@V$R5|/d$X, wjv$z /,r=cn0<r1>}cMDfxKL$[^i,Qt<79( _ύ?% g!1(];?R|68 lLKl`31PJ<_Ue,xBx)0(>"1ht7rl7d% "AU5x-?&!r8%oFdge^` WH[jq'=0Xψy]OG*p&oBES013S_{6BQ%"jf JG3ܛ&Z0Nཅs!qb~2, B! ՗!~|Osȓ>'=[y ޕ;/zXx:1">  .mprPzK=O}`Ȟa֧* [G, @Q|v5zG- (]7.h尌K\Ѳiɶ0H~~ncg9/d[o뾉ؚr4h#V~η#$vwjEbcWuej66DHV'sI\HG'ο6WJ=u}Xl`a3JSyIPc/%^.cpD` ۹-ރjPi^n݀f um.w ]իObӧn'qBhlvSGZ#H|Z%i ^޾6^>yk}KϿ!Z.ؙ P9 k %m[?!a}ª^ɲ%^ՆMlm3bE ~=G<nDdG|[ Ѽ,Lw?# L6o N%Sc<Q⾏i,ҊgԽlg3dW8}N_˓.l\v+Rvū",N%r(앆8@!ܪY"jL|.LDL?T%+jϥjةYꌓWYlF+lU ;()$b5y5ɤF6"'レ`E{86RPw{p N*(Qj2"p(p/;GAu ּ%*CZj wÇy1`~W'`?T+ gCV3 ƎCP^лBpM^Hw{8 R$թ}N_IKҨI"TMBY8A}jà7>wa#'X_6`g7ٺ(ױ%{Cj #ޚ- *1JۡxJpX4k8{IUWe"( ̬tO;كӚSUf>`ܔ;wcwq[޶Gvǣ|7kޑƞ(z0|̠/\aWp/(ԍc&q"n*+_ald#X:N; P-2th9%q+>9ii|2M2ߜ2 %N)XEeWt=%VZSb&)%oO8'ՅGFؙ#[=jdg4fY*1=[Eމ?- pʯc5q2/D%#JUQ.XRD,Q R#vd+gA %UVJO(DT<$VE`8E bƶ m+,~y!b|& kam>n>N+sGXjb[5ӏm&~c FF 3w߅@ ù=5Ya7(ama!,\/'YP"CQ^aFR>7TϭacmzR,Z1{NlzdS,}z T^TP]>|E/ Hv[I"b! v[@ËGØq@|Nj\cKax<K3 Nb]tDtOEgc G`&>`ݳ `8e| aP*6/`eg;C@ `B| #|jJGp4q`_ 1،p=TM`7׈TMj>`_` ʟ FjfH670G; oQaPxjnjG/@1(?_ }AAP{t[b/Zrd|&KTff7$UG&C@1b#G`,}Q#:}R#JlT;'6v@0-|I1=8G}iQ'3 Aϰv ~&= gđ98AޑZy6CKPb0}xASp򘏸d|C܁xKTeWLDE 7ߚcq}6zi!uI;Aû68,4UTDr?킜R Oir!jZaj|E e#\.FirEjyj\<v8,q n*ub.ؘZk4+&&W)j|T}Nm4uBiOcP@|"l3-1XOx|@?3n?R(2?^%8`Sh"Wb(z&wTUKTB 2LXi-N{ mTRZ*(:Z}`z[6QE_`@2x}āL#`u D[m>7hf](ݛ4սZMh4MݾXP a<bo:boiW{K7({K%"_P9Zb#KDt@Kl_6GnoŎ;s!9.;>h& cZM _*ְ0oT -b1b@9(@U.8|c?*σ Dx.HAzp'y35ib!60?U|bKdEXA'>95A5PАƈl$K4Eep?!gEfhV ۖr"E& ?rGK|(| j]PXObPv!Xn>،bOa, Mw6|v4ypSD:=S yg1Xb0^gCyN)}D8l|Z%71XrzxoTr Fpv _+0E ~ê@^@(/:9] +US '̓+?'/O(7ݯ̐ &6nPP{ 6d0;-ہ0[#M zia/_c)-XSq(oX` w\MG1lFq1F18sQ8Qz-,n>AĠVBaP`+0 4D( ?E@?ZJ7\/ {W=4g1M.'`P=Gr<J1;,K0[ "wjI99l`9cIza  w?-dwHh@H+ In#Uv:>Lf@Ip2Aj 0zb(. SF{BhݤLn:?hj`-Ћ?w2`G 7y1h ߈q0 ްolbo`Ҟ3k ZVb3/\ 6Tb p;MWQ; [֡]uֺ$6c8/YZ՜4m:NQ_c/|,a.¤C˜4 4 )28bHw/- ;h9bNRt?`ꨇʰNLG31usWwL yC$DB + Ge4'cPk^ƐE`0d<\rc8Z3BT#RU.jtL1M*f.ˈm@>m-pʅUA_P0hbXt :0"U6 K49cP\bP\ޡ$Tm|9 렪Gtc0bN2xb=M%*HA "6^(JE<^T%03Wդ̝Nc%A[C$^RU$^`I{+ A|ޝkk۰D5,5>9oĠF,7D} \҂A})A2jŠÛd"M[vnvõzeGcᩊrXbxyMJ0uѤ̐A*`J^vfIdOS!sdV2_b* I2`>e$H-Ii=R;82NnS0',90Lf )%%+4KXd”7qR7Ab rwg:U0%tsAb LkاڂENb !bД6 ڴaP;عxxq RaPp '5RI R`P\ } q4&x%E'q3$TQYz7,')綠ޚ$IǠ;e Ta0g :ݢIe-j) v@yT`З%@Kv*1ޙ/a0$NV &^dR5)40&Tx{Z* UxHam尯~4Δ&YVO*\J/D{ ͤ5 ݀F:\=A҈@RsDAv?xJԈ1ڶM *'|nɿZr|`J%6iZ^G 0:0 _]5D.P`i tR K`ztk0U*"w|d*I>G o^ # x޽~)ؘ~:0UZ&M0M3Cy MmmI}hДhGHPDDTUKqEJZ BeAnrYpYMIp~3̙3srff+0 \X[`8'|ZdR1;`jaAKA2CXa( X7laD5.4N0/0j;Gɰkd-y!SanaD u{$f42 ˖ S>Jy,N4{S 4eXȦu*ìU?PnUpZ hZ3\6#wJ6I 3[ ? Jlx' SQof;dqbp:6}J 0g:R^|h ,M9<`(< B`IbB7_%HJ=y:9fON}> _''}q*11EG{)gLtilelive-vector-0.1.3/test/test-a/1.1.1.vector.pbf000066400000000000000000001105121217155126300214370ustar00rootroot00000000000000xt VUv z {s{ \.VTŪzT^ׯ7t_^^uR*tNRyfdDDT@FEDDeI@&Qy:k^ꔳ_?,|Jw0in1N>*s[3yffd2/so1^Lf0nTX}np\b-6Svܫ:uxRAsrQ6a,3_D> 38Mj0Zփ۲Dw ?V=Ӗ܍2v?^-f< }UYoVi_i: Q,0"<$#k`x -g RbEV9w\, YseVe%tș<ęUX-Lx]]eQK,Qɖ`I۰ .w,VB (΁@6at+tqW-). lrA&L", Z ց{<GAVgzpoKߜRZnÖ B;f$aMm;r;Y!p c^݋=ar%g 뵌O޻7MÇ2y;0 ]̐Q f &:ohhh0L.6~Ww-]ֽ~٘x9 R͡D@BPAYolP6 d t6LجUF53rpW08

@`ҠvKP*>䄝 /A2D.031 XAXÙ7a6&ˣz h05,@ল@0d g9i2?F&;7lGО]P~G,0sp)Q m.$ (!wSor ??xij D: h9OcJV.Ϊ#hnq:( 랇jp6 spgcg҉IX4f7;LAQ5.KEEg,}7"j"Z Zd{!' +4.0]0 y0ѐr2FƲ`pq ރ_́gʼ.6 bm'UVbcd,|)ɇ 7i9ûo0C &Q5ڛ^^_ac*oKc`:rATY-gmp'0c`X2X&B́/<" p+ % ./`ʕGc f.ލN0fw̝H<$bȮwA5xY^)/jjY"m5L3Pn *ZJV 4XCz*FV[^;-=faZn oM0R\ 1WHNAU܃$1 CY ݘ6a:ͨ,ubn,`"@X0?9,M_uL[Z&EJF^d" 1$EȺFltW0U  ؅VFB} `B l 2D x 9&j#GX[Hqc =tsd7+YHT5[CY'(A E&\k"ܭB w:0Y"Bk+$ I֖T#98ܯ0m짩TcfA`U[G20 p=.Я*$`BA[ 5 ,.eh\[ckVUԽϬ&&L;I>7U2@|]&8>cf+F "1J "ZtPi1&E00|Ёc`٬_lTd:!A.iGԖz5j5#FXlK`vtrmh,%^CCp6ZD1[fܷ--jy`I$5 c2@z ɢi;iʚHdaErj?Y FlLR@UKgP ψ/W 춵֛ `Xtg|Zf ?gMy,3:(YP;:$SnjTy>I\u!jÕ"VZ|nVhxٌkSܰ9bFAJB,\QZ +++>X~{F0J ȉT ȡ4Ṿt!1Ek*Jy]zbb@ >UOdt:h"g rI Xw "X'HA0 |dC$>Zhc^ IA]Ң^!A 1(WtYНBOY`oO2fQ M 2Xa a " Dz!k"(P2D4exC\5XFUǎ'T7(cbsX 5W8 SbK]Dzj1J4 q dYx?0 Lhm W!]jcW>Bd¶`5l9L,_PVgg} \ {0FA`/oSMwH `Ms#kh̕l.p2yOd>&d*nf0'X})9,54웡ߡUO .GTL,D,؇bఄqߣQbiy'dqeq.BP\JB7*Oa1<1= `-'{2hP/4J_)b%7P<)R  /&[(̝z8F˚ԽM0;/tza #-7/:yaZ!LJbAJ!}wZ;QV34xNPfc,y(Ǫ}ItŚ$ _L X0AGXPJU3Kά.,L'V\~Ub$`'d QѰd#Xa1)!?t =bI^ ͩU5,J ֠da&WszvH-dUcZU `؟FKa|d$>Z-6Eju|!lck%`xlt] nDo *b& @3}t("0l +hJ&5I B3k_'r`IVT +C݊@ɐD`hj[u,vJ( sCqsثǒk`v,B{lcj~.zs`=lSA)any˃p>"ƥ7ខ*Vc$xt䙔͊--F10TF4#Ya,m7r@̈"qT%kE@&XuNq} D1xSŅP#l}&6O[F2BR+`ǐ2lSttE6v`Xq3|/YǑL])[s*Lt<1S[<T9 t&ؓA2` |6.0^ łhPY8,mLa\ 4^|8`;Q >ߥq0lJa /WǂJyp:C+ʗXɭ&{E{DÌ,:yjFlah h-1I(!1OPc/ܾǽFT3<:}u xA _Hq+ |*[o /v x'pkA؜><dSqFsb`p}(װ墒dBRm*3 B _¿skğx9%3k6i"<`څÊ%`"_؊! (lx?ܕd o޴N~ 2ZEA2q\1TxQq\p*z oJet~yVs 28jDžtbl ߤՠ$zG!nXx8!bE+F9qp+(f5 suxljd#l 1 e2YhP$x9BC{̀5\* [$9) bm}X|H ϊ>r4 te$#:!!~%H [YC -K0LN%/.g*z"8MEgLϒmIfD+{x.:P x OOp8 (v޴p~2Lh3W4E 9(t.Q|xcbSLnTduP,T0^Za+q܍,0 U:#mv>ؚ]Ű2(*%63,O2"W#-,@+D>\mq<qKz"μ 'v*ObVoZ&687<(b!_ b^"@l% j/:B;-+xzE<[Ptq=t Ea.\w$k[yшgDPWTB*4+<8D9/6_3!2j2g1]QrqAhp=rrOdD;5tؚg,t'Jsh'<63Y܅&Y bpAdfE 0B!.`; u7ۡ-4-A R+$AgWWΪMVq1ӆc˫MW+wj>Fxf>+'Adg+р5GEw>R葞֚ =)JT<X LH! x 'D$F+-oV֢i4IJ21e1o bE -P/*߆lRTE|an K#4TŠCc9yNMT#qC'~&1mǍ2bHCc>`Gb!;rCFGRnd{] ,*]X +wq@eLfIXGXy+aW؎ž}(Tw@ˋL3!#nBu)A,7x#;tB85qRhdr_!73Y=$!F4=n9YXf5ġiLġ1`͍>P pB1g=B t~5"X 2~ZҢ"惇/m--aO<͌l9v gc0D؆Nf` X!25Lʨr*hz qu}1K'\du;rHNOz#g*)A?u:kZ%Ѐ=_O8J~ܿ~Ooܺ7ߒt/U+jwߓ $ ^\r?R:3 G"?^72AԸyo g|t7w$p X>L׀ HO|;+)ƍ0b|ocq 5DojW /gtu}L*w?ې^?۷^oM^_JӷS^^Wi2z~ߒח"5nM.J*Kn`jEXME:!k(`}-XKo|S=#wxv~WS`;l*DC)RSJ0p^{}+U)D^9wكv:׺g #rw{R`H<ޤC}K8=d>quȳJ?SCV*~lCƞoo۔C*ANy+ޡINXrG(kM$ƻddKqhESz/)mV|0hOͣ{|@_SޤƠ] pb<S |s~,ViJ%o.ׯ I^(/>V&!%!KRH) r7 (9zrtS3B-2(RBjJhfQ ~w*tFM :n^p86VpTk,q8Ԯ1ʿF'* ))ϛ/ a6GPkޜRO5l5i;7˃\%Wg݋]W &ߜm๧(;QșȲ,c[2ZWWKxfXᡠ(;x~]<;hU ۩Y/+mkaH|2&#-3񘦏۰)olp;M 0Sxb[>

,OVclke c#zM)YW HO8x7|Fm$[+8n5Pv>WTNy2;tŸ+:?bL{_B1& Qus0?^_ZE}孀"y'Ϭ=?'2wu]/+Gn䴖z/Sy X7+u>'# +5~*[mM9F 8ՐMtm۔CvQ.g3%5M)*amMt%(`s} L(`M}#)Y5Vl3˔ѼBKڑb95W)`NskF^\iƟ7RZܡaWJc呂a3U <囿|oؗ8~cjb@홟'īv\Q8©LfpZ}+|+ +׀Ôǐ[z}ivWyyZN V%{wjg߼h2\ctY)1]8~D> a*d#:8'R\5yjIV49PʲN1Wm\ ߸y&-MPs϶2x{}6zskLSX㲧Z)Xᡞ6 )zk:Tt]zX4r Sbp%4N(JƵFNS:N;R7芞^s^z7)py!-Jpmv*WQ:YJߪ5;t2#|E| 09edqu2"èhØw)3G3RI\nS2<*SYu" U5Ԯ)6]VMwM$qv<2clݵL5JHm+Hq6 onRGSu5Jh"5b\TyMDzm'1SR{k#\LvՎ*zU;"՜9L7)}OP1CjObxRx)͉ JXs*w1Mcu907 Zozsjx)܋boqd3yu>/g$&DR)?P{HԘ"LMl2PR_ԇIyb]lHnqFl6S{s̰>f%8Z[h5)U4(TrPLv+л? !f^[ )ZeMJ8e LxHQM(_ZSm>&ӿ㔉h0Dq!%wa]T j 03\S~q&\+"E>Gfc>JT6ENGUцSs/xK8/YJ#Kڈ"_Kh\@%e5_q@mwYK<_T8ˆ|.-.SJesqMMkC0vw֤ sƞ*Ej"BM* xc";ŭ 0&)Rc(r\U;&֤G r08&M{(,֐3B1Ni1QR_f ǑO|oL,O8 LfQ(3)Ƽpz(JKk_"F!pk=Cϗ>Tp1yt^U#}Ǿ]L2)֬pkC[@ogNZ]"q"?Y Y Xc%;_ԨbpcpwK[(z W~QԜQtv8|N8mLJ*LWS*aࢹZ S0HjtEWU=<怩sd הJmIT8g1sД1Dช{)ZUQRsQw?Mo0yV5; =% tQ/q(N}bQI1ý?E1>4,t vwZ4st=j)\w Q4 T-: `5Dv)r( p9řsS>O:3Uj%%zG>QsRV;o嫆DlF]'?U ]\'% ?XcH&Yݢ|e_)JqަL)bVYg)'Jrw(֓R$saI:/(w/ڛJR=RuִP{88JjAqbl/)R(gKOۗK1 Kn>RwEA16ڛ#)Ƴ5~(BkjU+Rc)`}QQRcS+^fWy|?PԩsŖ4~^ |_vJr}T~2ګfb/@_U[ 0n3&bA]T. oTqBocF{! P(1cBviMhMٙwG;uE>Eg^Q<&bƴ6xyٔ9i)ħC=<4y]crOӅ6SnQ1ԜX7+UpQb,MV=d+BlJQ W!b:lc/s\U W(z0=GƲ4`,` 7(VR^3s)U) 8k(E}QC<kP\ Tп;"'Cy}_/Ȉ|F?QH)ef:¯ q-Cky+>@/rܯ` 5Ue67/^NHjryW(PxKc"*gNob< S?buF12c0۹]ta" 9T]D2s_ygSFDα3ɻYBǙ>iddZJfx8Q], SĺŸ\I8_(R(KN/W)g1ܡZq8TyvWTc.Kd1&gwSs3ʽ˸K,e˛(1x}-35B$fJrq^8NwKWƂI^/ع55W4`[,ooIe/S=ӶSJ';RK=a:JvR+F)2'2N.cCW<7ʳ.#ƎodnJnq7KG!X+iJdoR6{R \T}?N<~:(}XU>y,lA*?_ CxPG([&qn7dr Y|/=J{/ߣ462w? QƬjZ㳟SY䎧\ 41>LH6? 0ㅸoE'(}b$/NQ=e)~O%jgr.2v'Φ_˭sTj۠J쑬<U'.P sj_2ϩ5LLc' O[ \/URRsJOx(`~})%| }u XcV7(#-Lثcm_j;J<&tSrHSԩ/(I+[]jCJr/t-/+&R龢Kh >H>ZeOO_T}\(0Srp6@=1b<^yOa'K3hvy| XeZ҃X.u0wDq6w" 7N=_=qԞr1s)f_vPwzo)\w{|}2:]N1v#`cƗ쮤,|8@8'\Mm _ Oak&F7ܵwwhz}>_h'( S7^:ݳ6PLtF: $& 8bWD .L{6؛ߦY&ŷPBzۯ6R,K0{]Q Ee:KezEt_i[=/]_b/w^v﫳;)wxֻrV@m&DyC,j(7eZ|ow%BLNE wCse,ʒ&%=w쥀8Gi qݔ|G@A R58 :!FE-ie7xP4ޛJzV}>:dz4!tr_&o;D1Rޢ z61S  xyG<>BޥIQ 5{tO!@>A1fse>mH倚ՠ%s!eG܌iq2Mjz4TJtj'(Rg~ @lvc>_aK{{#S)j.P;bTuS> rJ$}?~`ys\Z>T=xYRO)>/ȹNI=y\K7(l1"%<1rc6\踧J(೎ pyQb ܪ pڱAGvR/g>|1L윣^| @a R0)vg*0sRB %w̌ Rq”w4`V9&MjǦ[PQRw\W/O1Fvmz}ķiS؝>$:ޗo))LNq>E*Jj|%BW@Ve5')W`:<2}.v(>) ̢3MV>}C籮vKI}ձMVJc8HO+ux1,{Tr05e c J󟥃ܦ]L/v.U1^tW;((;ٿxIw>z_}*u[I[T/5[E=Էb;FwMؾ7xzt-kZ(Wv*w}/YOcfcn^)3lKH} ;ȥB1;©&;/QRK6\ rjԁϫW(5b=Em齚;)*F/wuY|L-+;Ztu~WJ^.T0qCC{^PoM,qiRUa*" ( pgX(C|3F{;%ik/)൞9  88B9{mpV 8z x|޺$ }b rNV8<1|CWW|RonPO|D|s3>xI jS p:#8C7z6ru9<Ný16%tFy!(ՇG({)5G_yxz*V*t%XRC.+5:<>Me5'(_ QP,moR3+^$J[km& ,I9 ~;|IwȘ+:wS b!w;3M<}J.ᡔ9~*]9|;Ty@Yxs9jǃw, RtSb8Ř=e#(<]%n[I| pXo~{:q;|;\VIޭoM , r/)9/~{WXO- qM>:,7FQI(ކB͞ܮ)W}]5gPG'WTCI-K1n="o|tXE~j6%ue9Ti^Ν@KWl\y;cD7;3ު2"/:ye˜V¡w'V>ƸkDLt0S=R3%O:kJ1STuxνH')+qNo{930?Ϡxgsg[&]q$ӟ9nQdpZG]a3y&;~;uMρ< <ˌ6n0-3܍s,nJwpرZYRR_jGUz:H^P|*w'h" (ˇnJpa+);rQK}IR>#T2uKZ--9-.mx;~O~49z( eo/ WzNu nhgF޿^)v9oIO:P]M^cIm ~re׶^w:PB| IjQ}?JRw_]fOɬv]]~&Jj|~Dݮ ħWC /a-K)7\Pn[Z W2f9gyݭT /3By}Gɸ2]oѳTEv) x^ԕ^ՔJ!;TtH:Sgw 㾑RͮowQ:wvK[CDo?^:پ}$?(}z?[yynPN 9pU1qfwƾߑM??Q:5F-;t⧻Q" {k2wSkңQ~kXo">~)gt?Ԧ#*w?QPE+)VORVxNũSvliғ&)IǯY 1`€9JLb4R9O(`- p% oʤj+=>1Pǯi / {X8ځc?/JԘ+̂iūS^!rNF+7jZKPI_8R5RoQi>>n%}}+,>JhB=H eEEYj`kV>305~)ST/z;dv7^+ v5+rL)M!ѭԽ:3u`Bnz9%sA`%b>he4礁eghaZ Nfjg<9ca@Cce<0w`{L+dC9-1Gx$}~.#VRxuS5S)`t ILI=;u='ӱVx[d >ەosJҭ>>^ҭ>W$tozzJe[ݿn` 3R~ ͝يSyjmJht4*wgQ:7~z*ɏ+\ X. q^vIl4ݧf_MWsXހzO,0tAÔ45z :3.`pL/n]zCJc 4or\!X>nu.ݨ}R>Ei!Zx3c46 =(uR?"{Q:JpFIo(~64D%JlNM_T5׬K;H #m!lxOB'>ӞCYPbQ;D#n=Г~i4(DiU'(JڑXijb(IdJ|J. N˰\ '°+)!cLIpKNckֵP1, OLuN8i C1+iOͤ}Yf,WBvqyģEV lP]C,fu7U[%! ۥ/qKc_Sc9KF2>=r=G"X#ө\D⍿#5c(V8]!mO{wz AWUs0@`qrr1ű%'ߥPkr+NA]S6pe8eb^1[0)Eaȼ)%tx,{`Z-N:SV<]܁`߸M?OoB0nGƞh|KtshiڃDzJ"eeө}I]tu?*ʤfq7]>@IA:Ol'pSvzbuɉ1&9&uc&Z>&aw']!֍YNGn#+ I֏ϳ J|Aw ș *g>w"TZ5D9b$qW\VrQ`E*'(qEHAu^f\6NA=c]ܴn:u?]tEgITqvN1s*}snWƲӸg䑫痬EzߠDUv;}3쏦(1($8ʬY?.6̚O'ַd/"|fg?KC,ӎvVz)x5Y޲E32RMZf̣➋vDF0,<~rXƙc b$¡ [6ELrb8뾼si^q?(==cݖfb̧PncV9,Q3 gPb8y>I݁4#=A\8.8*}au8B./<܌{L#=3 ThġB toy콊O5gxZMV|$N=.c5eS#L-(s+oѭD(_|FK T}KMt5#j07Qb[f%V0PV;XnԂR2| _] ֎`IGJ&L* 8;N/u"ب/C5UyFj=BN NQ~3';e-l7<^GQTqD ע q#,Pz# asZj]DO1Mog@Wh7eWmj_4O1FE_VķjEӃ8=5׋ԗCP /XY?D(K8Z^bp'~ !ݲ0$z^c~n7O Uo1uVpPz8&┾HDpNIwi0{w~.(sSvYWC#0bQ:٦64`<}xT92ZDn<QyqbpK̉$ҏufG20<7RV7 Paw{TOr fW!Z!%-\gQD@o5cGEZrs`_So jB/֌*Pa1m*^ZZqsֽ4YۖZ#8xb~GKۢ4JW!j](\8^b4I r5x_?I5;hD)EpUoZc~tKN *}%Ur j~"`*եTޑ@ޚyfe rO?G b!USj Jnݦ6{?yE9%z6aM;7y 7mHRaJ7a5-o9W,,z'8U]~QA_Qb5i:5q14}2BwVWp5R }wl.efzS{YMQIbk|3QL|dWKh ךB J-9T15͜@AyZaM{J`XUpƨ-҆1uC;dc5XkhA+I@6/j';TBpNq[7SQ^ogxk bPGvJ9kHTxbVPPWDӐ(qCo+4T1Jo]VsY+&H!2H0]RU+sK0dQ1Büvը:I)c\0 zuƭzf-P⎾ :ά)s' !C.mNTUrya{1'LЎc GP@<-,XӤɽAyv2n?D(m]>dy:3yGHL^RG?D˔$э"N9J9iW㎞-FəH5m1i eZBc v+SB~n;,kD$(Ϧ;ۄ/E 7waW(/{˪VY n x]ur%d_tYnfq W"^sz?P<1U Emn'֠)v0#7OFJg{B;Iٵ/f cv9iwJ|Xpv!" *orKPxvN(Zc;((v(A.Ņe L{U r leG:As0+Yߒ1]LAFU/d) ZhlZ2;.ӑrCQT"?#x5$*1Uuѧ-K a:8e(8Im@׊yZ6anƽ%P/}nƠZN*+ ny%o+>%)-Ԁj1zCONiwѓL;ׄZQv1V^jEwtqi5!qn/4wTy?+ɱ"_2 f=uXKGc!,1*wN{Ơ)źB 8t^QOGpU9KoiCpK9@;#P4`rw;%69{bXLVտSUxq)7DsGP-\z09}^jDX_GejM(qI/e ,˶CsUd9Aя*jM‹^az3%}wWl16ZmDŽlчp=]tNA t"WE3?4s.گY!ثP=0e)Fn=OyUÌq)FBl_-k/N<qTS7&^-iaF1?kDv&8 }]n M̡0ei`u8;9?0*9 F|0sǣL״^d{.7_CKIvf Ejߩ4'^{*z[L1rm3{ęx85GOΎRpבT|+ސ@`|MO ׼65ơh6_GѪ5Ay|%ylXc#m~%)&jČ)Oc'BTgb3gڒ0'C?{znvS]bxjs!\K.#a)Sa*vX8EafrUmOm$kp wE 6p+]pulgD}p5E{3$/",Q7R*fº$k3!KYB{PCB>L0C"0C I{1) JBC`:{=}4_\aX3=֪eg- % !ټO:qŧ9HxVl4q-h,Aa66dObo!u,PV/2gnoQb \,(m+p] rxjօўj(K-3|Qck>FPmS5"}j=T(]:R, N3sݓA< SH~ա1jwjBFG#HGP5S^?03cTzM y>a\gNpĿUdU9DA=q6ݭ%A1Op&\Ms'Gh}h_?U6-6SI.#uoli˲y]pc2Wp%=J SvsLs1k w e"GuI8ZRKͦg~L(I._h(uI a,oN'{(bqp{|L=T5'1B07,=0+w[6{:o0VeLQ|dni #w$&?yʢF('~㷧DjӍɨ=+JF=%ѵF15wR,m1UV6K%0J>8n!v}};r8&rD]~sF+211HPv^K Dĉ%LZѣP߮ ܈q\b<*ngu0Q9V7^x4fv-#M-!9TpZQ{`9-FGj@*t FیՔ.basM}o{F W.2NyF)|0pkJs@[GBb0<냱uL35F0W8 U{{Frch$ kRt*yn/wY5F  r+nhuTi#VŎǣW7ͤMom&za~;󨹂rsAkt48֒񧋔fWFueRkGУ槕*)zFk QZCSŽʮaVKo`(UC}Faaa]7XV=|;E\7P (o7t&/e-#6jJfK.! 1:/%h#BTox8~*L!6-+X?̨q*cb=SV\αo8g pDiEgK#}VxG[Vצo?@ Zg:%v3RQF%;/C`eO|zN+,E9=¸sc&͙vcI]9%e9Jy~ͦEsc=hnZT]O9G-2QDYbƌ%X$ǨF"Tjf&/cq Ei4f%܉I1c'aztb]*֧b@SI&v}8ء8QJ +q]5%Ϟ*>#29aR5{T%;c(q"imj@P$ @8y{]@p$pE]K> hFs,2}!X-O\E?(]kAPv5Gm#WF':N/E^{^ -ϭDpr wXCwG"5r7mc~i;Ӯ~}t 0]?D'C+ %>~D+-'fpX&\d[!=e: ATC#(SGpe֋ C$3vҝLӗu~ٟKd4~xHz0Dps҃!Km҃!=P?őur> 'K=K r sxG !OAM@'>a;u C tH2LJ3VD.3nHOd/2s|:A2yTtU F;;%g?c>JzC.3K l bHGB%vS!:bk*Bw$ _HS{vo0flڡƬ<2Qu[`_v|A]v#TZ!*WX7CRK1:y6Yߋ:>菵<<}Yߋh˝n%~{3o7ߓW}}3~Zl[(_۸>-=ҭoz#,9xى`U]_ɇA`#v!ꯒo^!8iU\t(CE>%qr{%u9E/ֳ}1;iq_A9?G0?A$NȷS J-1ăzJ =+1T2 X˜Y-y("xJ,Xty}+W>%85>@/U!Њ[nY=¿-;x-_H1e|_-㼀Q'6$Wx.S|ZBQ4&^4og,~/~<~_^$ùox 72|]~~W/#j5_ gf< "[M>l+9lnwa+2Id++Tڹ)%JҦL1shm).I '!|9q[BWVH`_/.aS 7mD>q rl0?{fkX":"h>Cu WT9rV\@WW2 WWaέߢ$Y /6 @ak|mA-\@er -8ZiSl;HkNVWF~G39v=< zZa/}~\,@ZYr uȜ@-s G8ԣD JJ?i9C&6pB:!$XNiχ4rM< W|wKi:hMxwC:4Qzsi/-_iKjHed4_]@w y4ƺh(sVʁmHuQH+Ḿ@=` Iw+'Tٔwld6d$c2r\lx+9يV6k-#vb;;>g4lLͿqN1ymkrUruea@24ם:_vqK>6Zߩg<zGswʊG 'P`8ɕ!獧8;o@tA5Ѳ ;/g9sߒ:ko^@uyrAed|ɫl\K/ϴ "ߒװ: T"(mNlu ĵzGQµbOr .=QZ&|ˈkj͔dC86\|| E04v6\MKoG!OEt hI]FA=`Jtr ?bLks[q<M#QC'lyƿn7ǯ!EOtHϾ#89":C^7>[=K < #h%yշo7l$[`UWE8=k ApfhvS7P0Wb[9#Q`NEU L-Dp=V^,rbgCȟwڨZ/aQV1ix)~L϶@ 7e ҞS-GPv.`N$W+_AV!Ϭ&F2 5Lbn"JE[63#s)uVg P`~0+3 V2>X@f-+l Td.0cK53˲Jl3h*rԠ@GHKY͔ X!LQ҈%K#>}#x!/@0)̝,S7P )4@栅iPE?u;sstOM&AháUΩ!3(O $:8@=뎲KҭA\֮Ҭ8kK( k;`} j'YO S:ג =UW?Þ-%妄9%f3$Ϫz$')W,!,;Vye@6,#8F|D]d <3%DPCBPZb;"gCXల*\$1슋%ڀ{A"ݧE]Jͣ8!( C}ySb.Z=Z**ɣj$%Z\I6$0 ^fX=/ X/$Lfb@+'4xQUCؘJ&7H&!]maS$s~%nՒm(q7t?IRe#M9߁_`WBV -n-`>Ά"%6.&Cp4t %w?+ЅA9m~#r]!aV}\kŃS#$[q4q&GԡdF.HǙ`ڒ,ܖEo-dA ,ei[ SK#ZL#z}tpp)ʊӗ֤K\ 磉@kc', ?FpZk҂fJn7$A^4<U T?N9:| )TUؾϥA08`O|m_a# C"nEK3G^k{%#0r'f6 ufPF j}Cꨮ"XD][ ӮaՎ!XJǶ[.hCpZu֯*_Kp>Ly-nAva`eo JU;ܹd $+с  hqyA-22%R]uߣ8!8D&ָ&Y '֪unU S(g֐9/A>##"ؘgՇygZ@P@?s^ %nY}:zi`!j2*?ҋXyz "XxH$]"+8RJ%'!x"O/Bp/E'Fp'eu/a/I Q#biPc|b9(7síy)8E]f#9I4!x8.GoFV5$qF0z<%nQ<90]QCf/er \@-N$=`wRo6mO(%+7Ƀ#-FWC%<[=t~|$@=v0\EށT I<`* 'Љ`g`7BlGLz1kjkI 2ݬE <`!gsW X@/I/!N@P@x~b*I<./°68 ްLBz,2;NdLבE/JA|hVePJJg/;t{u}<55-ksF!*yhH-xGD;Gsҹ2Icq]Q#} 8ny@!M %F ,b*qS[25F1@f_`3LJi.jeZ: xZC.CLOQ+qJu&0~G9HW#8l+\yRc/ѳk<Ǯ"A{܊82aP9HW^@PK3SGI/UL"-ҫ[iHIU@&XHMZ3u5d'lDmFpsr^!(ʖG"(O" 1"ɔ ITҞN i^I{8y=ڋ` S;1%K̫d=Ă{אK#$UQs ԳR&8ಹT5}#xVr TGTK h3GڑX3&9cd>#8;f vG"t;r䆗uW/evG 2\AP87Z'_E*8BO㷿O֕?_ݯW_F)_2('c7?19#,tilelive-vector-0.1.3/test/test-b.xml000066400000000000000000000021421217155126300175310ustar00rootroot00000000000000 -180,-85.0511,180,85.0511 0,0,2 png8:m=h 0 8 1 test:///b places tilelive-vector-0.1.3/test/test-b/000077500000000000000000000000001217155126300170105ustar00rootroot00000000000000tilelive-vector-0.1.3/test/test-b/0.0.0.vector.pbf000066400000000000000000000635201217155126300214430ustar00rootroot00000000000000xtw`UǕ0p涹wf& 4& 1.l6Y۬ƎK-B$D`Bte D1.a;|y'#)zwϙs _$xG*ܡB vYT$A4Ddjhf2O;z!B{Zݷ[8llRy`ش,߶ =۷;";,N{`b#'vo2}8=~z{ ,|к׾u;yFddx82)0z$h2c8#kdoZߴu>hHhHI8{={"8ؓ;IdOX߷p;;ѓ`O&5;)qG?0`? ??`?Ntvx? aL$fu8= 4{3F`B*`&_zo WΛ[^OW_Eu2ؾ S{'~'66mjck'x;|'z;dz>.C8#8w9w`$^}nwG8؟9'_O쿓0lg'}_? d1)wG{_(YHD q Y9[EQ|}tawP`0b#2 CS.FDP`0 Q48 @Ã3J*`F#< RD ZXjUQrU  JQ8 EYmVy1`x&0"< LBtbQ53ț(‰(&p`#c`B`:"lZs5sSܹȫF LG M90䡺xx!4yX<#-ʌ{@Mt?hBo`3"݌XQ k g'rw!o nA欰 Mq An a"{݃ؾ0F~dFD!FFўlp`Xn]a FVADD֊cnEq@ޗoEA [QԒZ8pևEqN"t 6F SAbg9Ўs: ȹK;6BaNeS\8Q,t]*!|+\G b723*n"*rn!6#* *d+\(~rؽByB,B' }Gp n+>B'}(Oď?|Ž P!@_(" XH5X *xE?P pfB9}10L@.m@J:\`(.т;FJ !s`#Cx q(8ȠL -x!=k`U8!(qBTʸH,< 4)\*) LH@' lGSk`O;Sf !,ShrV̅iPŅa@:G`ң\%XJpB*!#UB4' G(<% d@ lYzr^"8+w-%BX,5yqrjj9kX-:X=f`}.صVp ^ j!Ya51NSz5 4 A`5 X{lܭ(A7QCh}PԶ !4 d@+]Զ [v v!hBԔ%8q=j{y} _; N{!^9(of!+D<[`~*oa"#mؗ|X a9&!<,D-Y.ڣ1pB@'8S>I N :#' ^BxBNflx0s:9\9 @ R:suY *xsBt> @&M@n n s #7'Ot-!ׅ]9pѵAQb+|6"'&/:;P~a .>~f7Y4HDE saA(TŢ5TEg!_,EbX,FEEo[vv1hbԔ8PQ?{D ^^E_";佢uP!=,zE4^1jbj2S\5jQ+G8𥈏*"mٱLq>":'D#b*GĨ5+raɅ8S"j4Έ4m"9+6fqZΉi9/DbxZ5BvC11pID"e\e]S+uCMѽ%zD\+bt9eT>V).nyR#<)$_wDV <+$|ϓ;b'EwJ Jh$BJH%V,{Ed B"C%oJ@),RF#36.KD%VNad3ZrH^䏐R8Bg(Cj*`%<2THLb D'Y%{|*$BId)'EeRf8q5'JS$4) JdDJlS$kdO;KI)*Shj6\XL8nH?l  s%\TKtIW%ūJrKɫ*)#UR4'@ ]~B -y%^ IF$TJm-K2^,9%wHb)X$hQXāhV%U*}&Jɪ앒S/k$VWJ*)\)E*.z佱9>ZqaׁV" ]+ RzoN6J:iM `Ya-٣KX,- l6 oaD$EbۥV![%g&*[pm [ۻOb a%+ۗH~#9$=R[ H y̍bᐄ…V pX"G$zXb_f:*-sLrKoR"Ea.̿o&5NH$&S iؙL8%Yg%K9;-Y$.`>OE.\E.HD/HJz^}QrIuɻ,^ Yt*ˍgbnp$|-ћ#'7$mɿ!779v5*Q_9 d~Vr I9 dP dg_ }@!-~P$b0XE dLe6TNdklp!{CdHH@1Z7a \HPʁQ2.D&eZ"1rX.2'{eTJTJB <6?rUP΅2.B&dZ!\>rٙ$eoAQEVB{*$=iPɅi2aLtfT)[3eRvflٛ#r0U+* LB ̕Q580_VlGΓE=Ov[ ZQuۋqjdeX.e, .JeZN~&{+d,er4+,SWs^[2a >eV2['|Fvdwm5rP/k> sxN<_Sh&9YƍlnV9/ekl7Nn-(Q6eM\ԩxJ! 2NNYbl]Ovn%;p;9/S\2:!N! ʤEe֚CuDΗ{TZdCrt0 @}a#-1NerJe& :-'d잕SB 9:˩[T`C=N]F@8υ 2>9\9]SMl]sEvE?/8pY*]uqp]&7ez]fNlݖksGv_rxMgu;śMR+U~wAJ +B_Ie0@7IS(A(Q ypo)\ 2DE 6aŊ5LgP!_EJXDEY9F*RRp)% QRT*v)8+WR%(QR%*%(TgƳ,Px*80AWDWا _ جPI]8wMT %J4>+WR5JqaP TL%.),Ş8wPiJPӔ2 T*9be4*T+ й J!U)ŮRH)~U*%%rbaΈc_cbQHK0(dB(l^l+kb(*]xF (a-K8QnU\Z}DϢ^u |5 LaTXkNq)z[uJ)gY3x,y1Р l@7A!AaSibmQ썊Uq)^oT JQ6d h̭ Siv B;;SGw*NU/PJ#+H LOAA8 >~R~Nr@Z*;`PY`?=֏78qBN(NR|y[ŸC[ŤǩZbgv 8aqb>UZ:ߊy F ~_q`La6$[C]a/ hPā13N`F##pFb2 ӑ|5s b;eQ8FT F<^w=N H`2Gjj!j3WCZL0ŬNΫ۫9vbqP8Y&u0n`=&1]Y#N]u6`k[ 8Xm9pG<(oè m؎60فif;S7mڅmpЄm8jM(ɩ]{q؃Q3{9@4cft؋ދC=ߋfQsVhIs7{I` .|Z19i+fp|[DZ};'{{G8<,ʉGF~L¨ Ӝ8i 09ifY4a4vcb4.4҄y'5zTD FaT39گ/ q4T4rTq*q*\u&7^`Ѹlq |ZuΩy;V65Ty?.{,q*/WT|_RU^Rٵt!eչ7T_VKjxY.ex|Cx nĿQmK%y>Zf nVfVyy[ nm5%nqQLxP-6hIP译AZ~[f ")7PhA-E  Ƚ 1DCCx:5< ѡWsaU4TsGi-0-ʁ}crb|oL1VCe8Nkxeh>Y5{L܉W㴠L iQY62N?P P<jh91EÓJ-eY4{L7U'k$-E$n؍`,0fkـR%5fkVf֜[uZ4+Mō&­~PZB" /bFktƖd|fhBY4o/ԂZPdXGb?5X@*j-kVf/ל4NVir-X˵hEXA 9X]uZz/PY5^s4wz-XZ&Kİ'(nO5&Nl& 5E۪N՛4kfoҜ&ݮy[44j&-j \8`-@vhh'wS#5Sc{TߥY͚Ksj>ۭ`ҢYa'?r~  i 4rX4֒)A-nQ5Usha? R:8M@| q FNhNf1:4MsOkQ?GG9qApmΉsnFk.dvH]s.j%-jׂZخEgYLc0pYCWʁk \W5f_՜[{[kU-WJ^Y1&qGCy$}>^%о#{|b!Vb!N ^!/ (dNFy?x6t@ "\N &"BZDP~WLa.&p $*",8ꡭNL b$A%@rb@2d(%Xb7$(!a)JD 'WÌ-'@x *HhaexbM"xL&M$xTp<*BwF@S a< JBfZILy2X=8s[EğFJN#QeD[6P \ljVw󈵈󈳘KWCy$&<UgjYyJNK ZrN x9YI2VTwZN^NZ~F_Ne$\NeYa* +KA#5\5 ԓEqa![C]G_Cz!Q}VBsPQP67FB7)3 Bܭk$~ 6DNo\YbAMqb;ۀhuX;8;x_65e]'K{  Y4sb/@!d{۟"0us$Cff3k/}A A@p-@%%)-:F' }IDYrF' :F7N)BzUmj'vq<HFSY7x=Ju`\e/q+^$*IwKĺFKĹNĻHK$HK$%.rbCyТʁI- nsEHCyg&V>o}G$E$%nqbwu䖙̔o)@aL@JS6jQ:L@4@4e|Wpl|rLP qb8ÀJJR6V Q7h0h44K D Nb4Ec͉b %elM_V9GSWF4C4%pG#L2@LħOb"%(Hd@)Ԟ@ԭ$ODNĬ01%|m6iMafR<̢t:eiN j͡ TQw.fQ pg\</I,)|.,x>(YH<#ZLYB-|̣|qaPLXJ20scXFJJQfZMԩg[I4XF4Z%qccPS͜z 8: )z֦ UGuԮz6PsѠu4 \(|26ȅM7͔nl F/ۨ4HFm9z8_TDv vpb';N.JSM7Ci^lm9qp: }'R|t?eiJ8@V!~,?a鰝4>%qqd}VQ4uPM>9F4(F}: C8psSrv..Qu.S .P ixFڹp*j΄*]׹p \&(ԺMԹC<ݤu\u]8pDՌ-`-\f-d\,bbg\Tp.bKb)'1F3Z >d*ffN-s?cr/eA &Kp^ Mڮc:NazF>g,X<꘳9XP:gzRuAr860YTMn`fnapX YbCjFdo [ĉ 7ncl'Kw1 f71g7s0oK]&mKv;v۸Rvhfh/$+^F0o75sjs100 pf˅Vxkw1- pi_2|V0G8Ɯ=jZB+n><Œ䖙SP6i8FO1v6ۘ6cyIEt~)6jE7.1|\f"cWXtYW}9ט{yYxEy\L- KaR`&q[`d7g[۷wXpXt3K]^WG':D?괟ꩅ_v)b+zOQ?=#?H>~"` ̅:   an䘃ukn֝-սaz.`=Ib'Q+`$1ct<Q:Q:+7zX)OS*RSuT iLtOR'3tZzz]LӭY=MwfݛRQm`H[a֮JGs<W1W'u:Wg Ryn-jYuoW\=֣ZiksvRn,R0jt\5:[𕺵Jjݭս|Q^É{ 3AXz tNt6UBdӭz^; At^^*UG%3M٬M4dNu5m0tIwߤzIjS[aVC;t* t:B;u;;vCwn}U;hݳj'G:`#|#t}:9}:;i"unםmսzدGq=6qcayfBq㸎qT''tzTg'S1H6;hy֣ZD_883YN,gtrNgtv>FyA.%ݹWtUgLRin Xg]4sㆎqM'7uzMg2uݺu%]u=M'ʿ6 n On(?>'pA /A"s7g@^rK8 w` A~",HD9{ƕjJ J" 918(J! Z`C6R%3~`\$ڄy]5XV'9ьil4%zNlH ']`46% !lI[Ƅߐ'†Df?w;%='P;x;M 3AlW"}Ic{"Nx;'&>0{0i4A{ؗ{hN ڜ`2ibo9p'؛9G=- n|GhM ښ`Z}$H't"GQkj@Lb3-jjJ6Ӝ9iK ږ` ?1% t¹p/&DԖ]mhstȥ \rq9A&"-8(s#LxWDt9qy2G-!@!;3@n'HN|#U`wN_gx N"$Dnsc+` 0PoM84M8`FfH`h8C w@#(4FThdog1a4@Ġ VjdGָMP,3r@VpdW `3d|fu*0_Asɇ/ph ̮z|nz@dAlnް p7Zï75FXoDk h۸!hFcSvH6h}Mb8[ w5dD_I+y̆?vegV ʎVvpH*N#e80({ ^^q lGa5q7{W^#jJi6Wm?^'X%t6a̮Ȥp4ܣ 3i1]g &1q?I r  v2H֩xo8m{N1#8nnj]]8Gvh<<1Y@9r퀜5y5#,2i7{~5v#:{W{<ˍX`ȗe]b]5_AnǾj87 ]7Ro^5+4nP+i7w1P 14d}c?g:LcFys+ 8F%&&*d Gx &)2iɊt @bCMLMfTh= 9r.RfဌHdIJL:dfz2Ѧ=tƘX+I+#hW\'J2k1>Rf~9)7 oz_nef8Ό`c>Ѽ O&O%&dO`It* l:LwMMd3đMxiaf<{gs,0fdIglJbLgVlӟe3p4p iNiTh1?S@3j{0¤L;1hɗ)ҘǑo_r&ZF$5&]df4 %<ԤkČ}V8IdV#M &5J}AL޴Wj*3ZiճVr;9 Zd}z@փ$ &]g fZMki7Fdz r7u_)׺T&?&fl5fPdILPͦtw63O6~#GQ ܗ;qv"3&_$Md{2 l~aZͦtnf 0]f12S[7D $r(]C@4a4Y~|jZGL|iw8,0$9jcO#9f&=fa?eZm}tN*Hq3:u#%ڊb" gLt4Y3Y4 nMR޹4nFgh7Хˇ&4r+uӾj:7L fzn]5+'`6q-Nm/UԻ=:g]_OKϽQ?>S]痾Q~?BGo|[޿ןzu^ ϼ.䟻Վu}#~W_BG?})Ygp~<,;?شoxgR_}[;J+ػg{x\LջGLħ~RuH' z9oI?c+/9ιBvνt|яr7fY!_wGdS+O@V>Rה%t}\XwK{bHlg{gRT80uۑqϷrA.כ=Ro6yu l=qv_< L%~R~KhwϏzWN|g5SgG:SsJx2KB/C?ǟz OuI{׏OewBv}LϷz~^aMr?̛^dnty>5룏{NEvLs~BN(|♝ Of ;]sտ3(bΖIz~Dҋ0wRAsIن?(fƓ+?9+J$_)c?ȌsΆ$cdO>NϦv=̞a;a78e!?/yd2g{~̨ӯA>yS$w}:3~.WŜ# ҫp׺?gE1of:Xm!_!wo9S_.*0z{*ۡsM/<|_ {+WfX$еSɾ!_uKOs~6g7&.攦2ʡs&wziiJ߅9^%th@\8%˕s1  uyijI$TH^{opٟ~ aϋX>ѫwNYK釽2L*CM]xqz5m?Y/9Е39cK>Aǿ'egruwm7]/2vxr2= =1X iݠ/?vvwQlq;x+??oÉx8~I{gA0=qNL._̸{'Ο"*ٞ?ل^-Oq'oV3k T_/M qmι!=;.7!'#j+G?eS+ *3b:{ǰ`AD^ 3qd]>.ݞ=egaͿ6d][FŞw/{- ^_IN*|H2_9nG$ps_?V=gO#m?3!};6DSJ-P!~.V{)M z@X25O@RR>'*= ^vGknjfqX;GJ%f}9 NjWdߊ}G.*yЫE:J* Y# G stQ1Ppc fBY8C$n#4K fV?E\T·]碦2m—}D&_.sg]MZKYSkϩmBa b{v??&S,٨2ɦٻ՘A*-b'Iq,XH^_&lG&ՈzkAJveWVe#Å-twޢD\rJ~" ޛAEC͔ole!0G׬,OIft+ƃRI:AuCsxԦ*RH*z v o7"3 noY{y3`K PCCLJ怣(}S`z 5y$Ada|X.7[i!{}΀sdѵ'>eHL'[n&jRNJ;f˕}LtS#(8AdB&o$myJ5+} m |!t^=&֐/IlRe]{@A!՞d*}T VWǴ+=!0Zɧ-<[HpOwH0;1UU>h ﶐qײј;q-$y`E/O P#rX)lWջU]rJEmv&drOK$KHQэCm~Pl_A#dmnTkDmJ+خdއGa c|Id~Tq@|{?!s_,\{_?|c!xr=MIMX SƔ_^IQ/1!1O4q\Y+ :BR;|JTLrC CP4{BԽ[Ly(ZdԓM!ʧT*5Y|6ՄYtr],G젓RRc3KR"jq\2-m(0))ޢ8"Y 6]_&=PT$e#H);}UARluxΒSƭ3toHsvm}SnӬPCP>nTLX-{]w>qpBCX ~"{\Dڏ"gAsW}d`nBSuyH?z e!cS)CKyL^ʈ(>Ak"=$.jqmrPM`IE?y7Etɵ^F52܉(R VX ;,Y:W>AIq7bvvl{ ygVqj_IIn$ӋlEO(5([qo^-ePiw[$Gv"hNbxW:}3@>D IX!4'`zDe 4X)ox$T!I[ߠ^NněD @l*. 6  Y!>SzE 2:YWKa->kQ6ގE>6GWɿP NrFi",e|x"NxSu9B+6Ll-ydG)m};a :"pXTW痢VQA|$hɯ.E X(o"DdPS᪉>s:V3b.1)хҮݠ002Ӄ>$A&Jx1D!?\.4i`k|kKRM /:vȄzHzRTWc= SW~@F^E!k}Jکjг$;0#Ä<2Q@o`zE<E+ŇfQR )T*w mDD"bR|V + 3=a<~&7ܰ-C] BWnrܠCܱN} Kd2Z+߇ylџ_Qq!F)VS ż 氚yU,QJ:zR*ά9Md;% s\+EN^ٶeP9^=Lf|ׂF4R$\%`܊#IT`qflosmnyRZ`kŎloA1lOH|цgg$K%0ڂVF=ThU*jFW&3أo".LJ!G 2ɨ2۽`G-ܒ$#)+KE$p.W簆cgP;rtZ%rCwh'Irڊg0A:;-. l`-䨡 ]MS'$dhƵ[D%kCTmzuZ[U_O8pm1bjkwΫ2fڲ{ZJ*u?=^\Mnw(v7EA- E͢ρngQXtqRSbݸHɃ h<Յ͇IR: 04Aaۤ .m8JNyHYߤu 'H vF+űe١Ket^-.I \Oa} Kրѐn¢≳3haIjK[pqtٲʠujԫQq%/\Hi#n nTp h \naSm;E)ڍ9KcFg i*!tvQ4A'={)Sx3Q% |y'KqU0 L+a-qY4ݨ#nNТҽuoyBقgSLQ2ERɄM_DHV]랩%<ᘚ.! /YTY7"*n#nw&G:LA.1` (L̵\hK>Sjg9]W݄j3]⿞F-"9ޔ8z0^2oo$|O[ii"eRP)i], , ]%˸5O9Tnzl7m&ԋӄ8`:W54RTMI*?7oHFĊSs#܉K6x^ɀ:&KOl!RlbRU`)JV/U2w=O$"=)Wk(H[!H+v}e.1槠6ؗ67\7_ܣ=dT^CuJRǯ?SVŶ3L;!QKP̈́a~uP6&ЧG*eBQݙ6MAd9g a&,U}r7i#'<~.".Ka+fq!_ڿU|u V|RAyAPxqHGYF[Hv0)J޹֡~q"u,uƟJkMp X Sp'uOǏ, X֎9]Li:AdĎ(n5r3JϩU%dP 1iGBrSUsATC )e'WS_+C5q,ShOEE<ۉ4>yĤ*7:)vTI^eP`0d Eź,w@0U:t 2 7iRCԙB}i풯݉`g޹HKZ*[DG5%={ocO_c1ؽr]$kVz,Z!u3Gu xnj5h! kf-+t|Miӡ020D'>}DE氰8m,Oٳ "|-/΢wE='%՝]"ox%̡$u5GuרH]/]ɦ /r˚W )T]ƕZM5gA7W yb &ю(|l8JPRT@ Frj祇"[3!n=ˀV7^k  k8; %YΫ*:ַgb)xqG5A]ΨiS.j8)5yUƯh,I=7 *qwVa6JP\$$I 9Vm@"E&|l~ eܣKR'^C:DuWpP;\;`px_۹]GK\NTYsB ?NkgQ)@(x-J Rc{RHdH=r éX;ReF?5r=wuCtcuvcc5n4J4qWaVp 5dV<זc( R8/nF xl_u}vYGVUg&_zQW(b }" ߅G AۇnJv޲d& (]@Hr5/+5|''m5?{ );{"OLB6úpYOE羇~'[uXzDH꺸cZs.2]JїT@BR Tw-#dέOTΒ(<-&Z,^xZtf4)Qcv06I-q;c3Vd1M*o=8犫(U$ulo SQRaXqJ\p\ 5|l*SF[a˔eg%2Au"J4Ins7K jUزD ^/L.qgK< S*f. ћƳi6]ǒ7wa ~Y=|-LO ({v93nlZ rs~-=ck(Cj%5jd\zncI8z#9{FRWF!{Q19a4ݲUDsuDdGH2.~QO6Ohl`ZjzWq%6 fLa%Ml@ZGAZ9ϣCKP?9r|@Zt,`Qe%/CfY`-^sk!N-xiڀG{!Lw IN+vAΒY>jvAg#LQdHSl."uG !?|Fzf„-w#&Qf&obnbIh$vS0 :ބB?xd/ԙ7&)] E=fR$Jeaj%'8ɵ{mںx^l̑R15lLY`fm\VҕdA+?@yƂ 2?UPi!<|Q ygىr‘Ѝ'>]4DG;S% cf^4MY߽iZ3p:(C_,{aºY,&G,79xV4T*6r?? ɯ2Ǭ6N U-!P%PVgt>15rDT"nf+M]?_d)=et%_Gxlџ7B`9>k"Hbm\r64e"ʑWCW A5+cW M N)j+МjtVBx{G(Ś* 9lO \w\cvD~@+n4= [Gux9{d.RT0EIBp:UIýV+o)J2QAѥ|Q*= YLd1.xAɏ܄Ύ A(`P%L lFJvI`Tf ? 9Lb3N?t/ld2]V"%oڮ'`d,gQNGY`e1 ?T7ˣAЋe1_ax^4M#n Э媭=!`Um "?"53jǗoCtilelive-vector-0.1.3/test/test-b/1.0.0.vector.pbf000066400000000000000000000544361217155126300214520ustar00rootroot00000000000000xtw`5fwfm%%.iDZ%z#pKebZ؁$oޛ*:*ED5S "{/|ap0H ^^wN~_#ugzw~}=Zu5_kǟ g6S7T?77[MGoD0dc}#f M_؛5Kަ0.HRa5a jdRVZJb3[)x Kv~j0Y kRaa! !jfE덌VhXx#/#,iOTВ KuTXK>nI>pL|[GSc-vK_XKGخ# F #oT_'/S7Ij|fDK_|aq:2TX[G-9;¾6Nok7;XѶm}a;Š_cASaA'*L*;.nhtCj|e~m3X?NN{UC7Nus vº?EWfVhXx7/# uoOTKol=#= Po\ "}X9 xO`g?_yJ+S5&  8`y `sC <<` ` < y n}y%B0 ь08F4рGx`N$bA|Gk4)  PS,`Mx2 Ӏ 2̙  6 =9L SKY 08f4Yn>XsAt6ȟmTKT,bsK\/h))n,e@_ \ b`/ 8 P3U  uȳZY X ZAl4XlbLM Ff * 7{Sy/-oB4Lwvqnw1NJ  }@< v.` ;9;S_*$ (cÜpÌPQ990a`I` V⇁]8`yR(X: i@yN(@/`^Y- ^ഛuLmT[.1eeU/rjA/&0o*^K ~ؗ%N*p F x* p <@XwAU`W .yi=G3!1cxPCpmec`d fOA?@#._P[#PO_p׏>G0rs`}Xo!G{ |4|<5@2<ds4H,

^0 s`M!>^' "DS0s Ngi)iFpBdOق9Gf Bl.48l4 ^i0W`.\''pT+D \X,Kk+ =/ K4 qr.cBp@t5X&DV 2X%k]& 2. r?L+j5X_+^+ ^"}`l͂^bk:^ֺ>xkDPm@1pV0@ X `@ %Bd.-Xۄh+%]9aۋDUxP*=P {X{O{STR8(k-b{x` {8`ǻ : 0ဣ<tLrK#B䄠yJ #B?"؇ay[ɿN>-r8gxtN9/KV*(X!V.vy ˿Q+TQ%&2EK*KY.`B$/ pIpEuO|Kn ;][*=A@B6'e*Tqc>bA%#!C Fh#!P?}QKEVE^EGdZDD[$=@1#DchV?1G}DkdCSFy"y0Xy 0HDCDF4&$'FLjb|h9`fw4zˤ|Lf",",i 0]d~.#3D@4f75UYb@'~?#ndJE0!fs\f9"'9"/z4[,٢P4<1:[E{NNx~oClɶXKa)'p)#,2/r"MB4W21T-KE{I  _?R/CJ5\ZaWhWHtW5bd Q։5bl_#ګjA(] $ plQ7Dt&1U76.Zbt,7:d`'";ET*"#z.1Ww>/Zbt)w΀?7'jRdCP&CpPDE|P$GD>$F!8&E=$C}0 䄬kSB-J8!pN#QOO8%FΊ)8'E\c')>NrٷE ).2·pI2E]E\[1rUԿky].oE1h_ 9Ou d[p[ᦈ*D|S$wH%F[qW4V%n[}3䀉u kS@] / p}x "~ G]#Eh YPc}~p@λ@ؑ% !9!# pDzKn"}$d~KbRdgK> C)r? `ȑ@ H$WrWR$OK ,Yh)#KvN[?:C$0qp c!)yh%$cdRt*ŇIЀ0J>`kgCJ+q0Kp,# D0VL/%k+I=. zv5R0TN&0EB%̓B ϓ"J͗"%}d,̥PΗb|ɞqZ}~KmԄڨP`9rX&^&UZ\咱V2IJ)\-%{Y@X Ԕ$6pF n`$ [jHo*Yۤ)^oa='MKJhF %sN ng%-yb)풱G2J.)]%{G@ [..O'F/C/2F8,1)r@HQ<&Y)_b?G,G=}\'$GI8!>!r'I?)g%d' )~RO휷ZP+J"\% _eɫI(W%d])~Q/ nF-T79o2 ݖ THnѻ)EHMN2Jm)zSݐ7%FpO<=/%|_"% 'EI=x,?HR/Ip^Sv0h%2d˼0[2%2-i-}elrϖ/jϊ r\@`sd+n4@ 1X6V r 9vL 0#d8hdrd19Vrl.0(g4>Q4^`<Lx I2 |g6^LQ Sdk/&=! LcΑG`#L2d4SdՋrdOٲ9Gfrl.4ٽBcse0r|ey2Z y2Y"Y+esl-s<9>Wyq)ygX*BX&Kev eQ(2.J˶Urd/5VVerP/Q.bP;ACZlzF(Fdord-Y,[z9V$vQ@(͝Կ`*VF ehdL.Y&eTmrl&[V]Ua 1~8 OFeO&|##e_6:(G˱}r|l \FQcpBᘌNLNn8.GNq(3uRcq>q@EͼW?>+s p.<Eɷn,9/dl^r;'q#+|Z)Z 1u! qMF7e|M&|+]#elTٺ)G˱krl_ 8࣊)3JNw'ܗ=F+2+eQ'G=x$e9zOݕdn@ /`gέCaUU +  xʪ}bRJVJPYð6T~ 90@9 _A_!> G)zb R5P(J?* QPF 8*h*dwo?LRa1Z1(%:L U{hYT 9`38MT8LRgW1Y1 k)=.6dPLei0]`f(xBf*n>OS"(4ŘkĦ*i=5L&әκUc0_s`(xB*6W,RX1(%:WSs{^lkʪ `),SR(Tr*d³R%Rї**\X˕R%Vė*va(YɷXԞeuQu VAV!/)N16)fZD)J|b k9*с*EŌP [X ڦblWDPةk-QbJDD1Glj2)bJbGU(U>*dأD(8kݣʔ.՟-划Z^vDtXG(GSQ8 >*~T1N)i:D*#Jb 8t^lu%+ #s <gt^grAJ䢢UobWg%~V3ר2.+ #\k Wt]Wr'\U"7bRۊuE^UbJb_wgpDa5hJt)2={ qWA|W!f =x*{}7. luuڲv-cY0 R ʆ ,hfohehijC .djۦw^A_HC؏ Q}!#~02 SN(w*̆`#ye9͇x$ {^5FB}.4As1\s='ë́%,eBXa!,h9K!YQ#+^U\ 0ZcKaKRkXvfaeuQ:X zBs:uZ`l-(|8A1pVKmC07@c4wBFK`K]/GiKF6n&a)d_`RRhAhR  vsDy,@Ceq3@x1 : q$ǠwsFC84N@$a+. eεw)C4,#@X!: iHAUFCyZg`9OsK1%?S\aZ\k^e+] $[㒫0rWquF +W8ch)'c܆1pwa B\=4}߁h~0z*`+Fg?E!x{ WHޗ 0ꏡC5U֒=G0ڏBGr꛴~LPD*U4YUR $52E'T՜Z$56QORa"'Eg*39d**Uv3UcjSYjtg0&5f*X 9a 2-V,P,UQTk]񅪽 @,+F@r`J+bVxJ*-+UcjSYRP+U{E@X ENSsE*X8a 70zmRzlVw5E7Fj&5AWT{}Xs~O/%VlSi;T!hwdʓn綫]5JUsjU.5]~365~1CWA8ƒq@Ee*>ê{rPQqT5V=} '<b0 N0IN8“pBEU|B%'U?gUjV' 5~ROѫav#y\` /2]R\VME5rE/UռZE5vA_T uSwepn&#PmPIEj7UN5=պFojj78H# U!爇*!葊߫T{EWc @-Gj=] J9bt h+a(#,c:9g[eZ並i Ьh+4v[,5!z" ZxE7bB772#3Y}Q7BbJNg@<sb B`䗩!(2(6s=0` 䌃KCR#8c4c$BcXQ Pl$BȀ05:,D&1B>'LF0&!T$DZT#c2#EQl#{Re3f 01Y~3LD /AH9Y P {fkn%Ea,b /BybYXZQl/F#~U\拕b BdrOWHW#c=27 k-FU(٫*NXF[zku[%mD`#lndMmAx"Ł/6H 7"c+2!k;nDM(ٛcFw Avqnw1NJމPd/w!c2#EwN߅읕;9eK…88 CqDQ98̓:P BV9o蟨^)N3)(GCF §9e)ާquEOi?4Le[L \d -"B?""W.e_@d^EB]D Ⱦ .ԟm%@?mtnpMo0un!|k*Po ;dE-Ⱦ`'!9e )Cv){g<|(z}D!#ԩ2#d=D(v ~}Nrt YHea5(zbQIf}[p4zx6{n mca1c1\ð?C`4LrG9[q?xl8+c_dP1C1PLFb7(hlcCq|%VW~6qx 1X&`<|}Ym8lLf>&8=6 儙/g֐5LƠӘ S1Møw CL l4~;THYB)eo0Ԙ!s0 0,La߳qd>gcc6bk.ƱY8>۳pPDfq%_z|" 3YYQ!Ƌ1Yڊnɖr/ lV!.8ۋk-挡dE,WaYk gp chƫ1)b'V 8k ;k',Vsăا$˷`P(ር0D1F0.dHTQ܅m8Zc8^@bNr>F2%vs w3B)F{1.d_ y[{=vierH E AbpA80e r#(e8r e8:YC r?} S!Ww/U|3si ʙpY 0H9F0.k+g&gquGX9vy`r^֋3ķ\bq q _䚫U2\elMl]8v /cR[̩I%N{m;V0m6&w)Ǵ}l>w8Zcq۷m~72o|Cx1|i!&YOG8҃菰M̞zp!?J C$wK^&}?&a#7!>#7bs}ݛpބWv1K؉g "01r Lp.!Cy$2yFL)$Ky%g|y9kv0c `$cG1Hɪ6)2c9X(b ّ-PNH$L&01&T@$Bg|bL%4bx'$X|<|o)dL'`o 3E Bf$2315ˣ$ R) gpwXv X 9d dA ^@],$D_HBb.#bą^@*D̫C{b9+b%G"p%C h5+YCöX+눵_$ bGu8 ,X8b#b=A^OfT[b1YBM6{=Gpw猉?𦞮I[ 9ccA; F.m%DNRb!NOjB18f˟},Gs3>CWEe$rqGuD>O}A#/9cg < :IqBN `:Mrb!I!'}TZCsHKٝAY1Es39.|o_vD.<1. y;G}.Pq%+!53 θI ƸN-r;  b!wĺE7H: u8,9RZsR w 9A|oF#'cb@P>#ľG{C kJuYG$;@b=u !+=r!Z2!wo{* zƶV2a B0A"!/Kr$'dA!k`͒?mӤ?37tsms`Fbwh B58!sdr?r_f ?Ser2:0Xʸ cBh| TT2&5Sel\pH3{w(`)250HAM kL 3C7!k pIukVf90Pj@)se^Ș2eNȞe6d5.c^9(B`1, (KeqURFY2 2$d/~8/] 5iFY+e%7ZdE !:!/W[>d B*/WO F}XfJ9˔"(b!3HQ ~=d}27;5YBj})K1o b(ጭ!X!-Cd{Ȼ0%!cGBݡxI.v( 1H1lQy{d} 79\AC!,d>ᒽ2^ )# rCQ9BCH I92N!瑣!9!_]C s!xA΄>"|_ E gCƥy9d(gC'(g8/M͓B \uCXWJO#jLk!zȼBkؕPjȾ7C ={?o`{vT0w!x*BnW=?0ĝq?d>Yw= OCnEU Ch>b!8~M Sȣ#lfQ~!hKM =àWBzyx0ƽ¤_؃Grz1 l [}.w#\KZQ  <Aa ya48dHˑ\In6a7Grv^rqV]7Ya { #hT 2"Xmd82& `GGc#a{D8XGݥwkT[L a0)2).bb0 ‘)a}Rؘ6g@+?擄=1\9x'rȦ 2- 3 2A0&3ƜyWfz+}:ԧ d hA a, GacI\-Y <= <Oջci22A Un3/ +¦m=7ֲ] 9a=}Vw'JUa/W1pD_W5  VpD__jTNﳠZEEL0ZdC;l Eac3#GcxQ^Pf:y_DXo mWb;l a-LvUm31v]-7nήj|>d. =J{]0{~/ga@\.ҽ؞p|osʾ!K-Xa?eeqIF2#eah8@reaQl7}S ~Qfu%fuޯSj7yVW?nPLԠiun機Oi]fjVի&?ڲ:WY ZVWz0AjOR~uޯӸ8v-:|Y]kZ7kQ]jҤNuIf-Tל?6kѲԬAO͚;hyԖ)fiQA7gj:ӒSdRܴiܲNTZ~Ԝ;S5֦} dՐؠiOP(MW^OصCnuyAJ z/'K!$Hv?Opӧ{R苠˩JLhHij)JMQ[u&%Kzg&7}zfF4~7_:3k,'ٍwFO3x7[I!X+E̴lJ{1T/>5 =\虺m3Ӻd|l WhA gPƳۥ8_ʍi)5:u5ծAbڤw!jq Ow.Oj }-Hamі <3t7_#3)nvO$M"61]:z4!}ho8&A1dAKX~XTNG1c /n$3TS5^B/xNo߱5 'K=\Z wUmN]z=׺ISru|\#)i=),$_0Gz陎Fbn:xfu|od H-rRV-Át@-|*XZr Y`1E5?lh [r8ծQ Dza~wP<9/%^lѡi^6ro槃QE-`Lf*cx Ԣ+SbbQHV_]VtW\Ɏ5"'u3;Oq縤.k6V6rh9n6P۶7{WCg'G8IWPZ2etHuhh1<3}s)kg=֮cȖ^#7YE_;afД5c<{GL(]I>w8n0"v"yg5>*{qb u_'Z}ժQ OקkxkԈb+ov΍Ƭǎ? L#V35Ȭl{}+Nqע=L{z_W #]qwW9kp)I3=~qOT{'װQrU&&Nx昦ҜNipݴçY?Na>LLwUןCsխW#0}VJ]uֺt&T꟝ Jުg<>ɺgDosTӜUxQb"-֥vw}Z~h ݻ#ZCF {5>5;*-Ȁ 1-5zT]GWwSqYqbW~(Qz{G4acgǗ_>`>Lo< nё n[c*p5.-Z/[*Bؤ̅1-I̱¢VqaQbb8Ѭ.NIH4v 0':?=va4wvI%zRL:6:<@r;~Z&9b6sL/g.着<ɢμxvYz5cf7wu }yjO!F&[t' 9km\B/iuQ7yqn,S?j=^?7XN xbDtvipz;zQ\t,W/oU{1opd%R6m\=g'0wMŒ\4^ h!aTypZ_dKw4/ g$|pUɬjZ""]jҽu:{#լSFi<8HӾRE-*;lTVJDJ=7;Ep/I7%/D{TQ]Yݞ ;ZN!im:zI?wr_&װ"$Nv/Mb8iҾ$Ey~/$#|,=,teӦm"/~өwi{CIϼwtMw-ǞۧVZ~PR%u.0E_ݓz͘ecG_zUn'Y2!FA/sSOo.C-e\y6ΌwռEK礔>w 7z4ӞNwN,~'{6ξ9k~f=r>ftSn;igI~*Y ШԆ0_HC`3tg#o{ s<?搷F_ߚ۴u3sFWTtC/qIx7 6)[;FimkhvqjU L6LHxsd mWf|;=򩖛f(|-!W/]wo>3w5pvftHd/Q-G*9k\t}7pm3~u811ċeg?}S5qj7}Q4|)A{f Ϝ}f3%<(U7RH|vji9om:qߧ=oc5 ̢̯]n̋yY5pc>-O%I;DH٭gitn|Z.Y{55ן,~,ONVbWfKsr(ͽ~ZFg_L~p٥JljABxw׬E̮M3-Umm/{.5ti\bCU& snکǭS"^Ql(V;x&ٟN;g -1`2oDpn(!?qҵ3_RZtNspRiP*.~Oq;vVߴ63{ ۰A-Ze Lj~|uFޙת_q o4<5Z }5諝;Ў 7M_&;EYwQ^ZϢ)$KLd_;Ymٰsq˴gOқs!FkQ߷wM DW|ԑڮWi_[G+#m% 5T*! bzn&=*OD&6*!bb|➙hbҎ4-F_նJQi;WjA g}_<_sʥ4NWNǴ)wVO4>DڏV^:3i әu386kWݏq7tӾhι{Mh/S]76mN]:2yOF_Ykul߾c=kD* FC]ʵ;wU9m *eUVcq}OH%F)epo l]ܵW MEֿ, 113ҟ6-v"F,+Ïc B;黱sS;s;)'2]+IV~S|,3V_xcD1̆Nӆqf(nPtH11Kwk6tY{~߬Je7 Hڎ_n %o o>;|:'Pn^Sc/̮!&{Sm?/j!i-_W1V"IS?5۴JRUT=CGJݒ_jPuޑص[G6kmڙ%h/;ffP,}͍胖΍~]R~[_*G==s__՚diA:mkuZȤMTkm:=6& :6 r%M!\RZ/?R;i|4vZ6ȍs\ . Mi(Tc0`hL64Me!|w~mrs{olߞ7D&}VYRR9J>;{$cmM"(B!){_ _&֙^2eSoD{XUŢLtl|>.i7\%kNqQ 3=H(+T&㧉gA;rWMQd&e7_Ji?-1~9H_壛 (&ޓv%E|'A41/OYMIN qiEdbC$ =TN*YiP勵f,%U+ \'ЪrԄi'ek2_k.ܼbRd SAvTQڌERd:=g1\p=_VzEaۛZ O RlM~/]@Pk-Pźh.\ =mR3ᇧìgd)Xd=X#ٳ@t-Y]"!\T`aMdo2ol-HBlZ2UbnVH́ 3G4uqEY3r{V6ߌ 8SpCC@P]@ډS4!i]g-)ب,E)cB9" W$pq%I~QC JUkԼa}tq--vDPr\!ZE[ ܲԎNJ(o]_X $'6AVíɘ(DtQQun`_ˬ>#ycc`YLbg%~: Ru[)Š>4;x"=K"`"<}9e\,)LFX~֊]X]qyVugF X9Ln4U]'_ȞN\M}WK8kYk"$Z*c:ʡنnW9nWu%>ݩP) ӾuM*t'5pl|7*Q:M)0w Z"Bф!2 >@hFǕ=vm% TcGy;->qPjN,SMO`w%vD 6T<Ň-pb]n;(J*w;MLe{r^˜&lcw>c3E0pz3lirAT45EbsmnAJn%, \8xNLM{pZy7v 4rFz& 5^4:sh23Yhاq15z}$9ufos@m )|[ޔ۲H<>ձEՃ( K\ylMZa=" WV78AwB3DZJ$A 1kðSE62Q10D.߉E%"r2h.e9VoR2)9MCȫekBlA.")&agBE0EI LEs4‡cY_^e|apW ȂLk>B9vMqLcw`OWF2G$ws_EӤdh^>]{E! ]rן0B:.Zc$uqXr2xCǜZ*z`ɔmWY?JNȰ+=g2oT~peq(Bwo$Il5UM*XuDB0rQ$y)~0(>8-SQ:RHb1{Q ydOa۷g۵@ǝ-2W 8\*@q:a5&N>+B [Y#>}ܖ并dE$q܁ڷM'^cܪ6 /z_Z#MR ~Dۓ Y2*3C Tܬ7pPT*boH4O%Źd/3M')a`פO;/jRaOgZmG(ҽCe4ڥz{Dy#˖SՌc.Po"e_q-Ab?-] wa2]p2-NE܅ މ~N _@J4<07GٙS߉P?gBzޮ^Ip EA5T'O%.&^SٱP'nB`1Od  OWk^ߣh8ئ 4{4@}nqe7q%![N-7x`𫒑YE`ŋV[9fh %yLi1{614Xϭdz:;_99x,=X*/! 6B"^T7t ^FsKjġ]n/GGn>,i]9<9W4D<-FQv]b9ҝ޼ "h 6p66ZF4V.`Ll\R},WyeocĄ&⨎obP~%Ԡ|ЌHly{3! FkA#ř&N-`;XkeݚAx! |7]3),dg%ny.B-U Ȓ+_X O`O 9r./ ~-CSb~k/Ouݛl6UE֛ U`z@g4MqZGxZ¸QTyx=LN~?47ZNH2dߠ |cvo6+65mBu6[vr*ʪ Y]̉t.$8,tV9&*Ub"s.m]nc* g3A?bYMTA尰I9&E9 &ya]6Κ(evVtٖ'UlRHj2)Q''a[V Kfnl2[ZT&S}m7&^ak1_=I=* 3VhN 2 dI˰5ɽBd*Bӄӂ, 'V d1*>ngu8m tVVG8bmfW 2tilelive-vector-0.1.3/test/test-b/1.0.1.vector.pbf000066400000000000000000000544071217155126300214510ustar00rootroot00000000000000xtw`ǵ5fwf{wq IIl'yK%z#p[+EH"Do{]thޛofg{y/;7ΙUo"^_? b$Ȣ"U1 JF`jJLS db SNq@yBKUemkT*LžTX JLW0mˈsR=aU^Ju|asTL=^žw^@/\ac?ԟ7?^?x~y! -Ra c*eWOTO+'UWk/~lJO엝~ 8LA*u+M* +77ci_La{Kf*[*7PaEǿ%2l>o8 vZSSao4*,V Sai:N#5\a5SctYǪOONZ ,klfQ*.Gw54\z!G֏5oMzv}^ +o>lfQa k3f܌멙{O07?މg$N@X3W؎z4*, W!H>Xj(a CW,*,FeϨVa+*3?#s}*Zoe1ZVVg\a% թv=wWX;uIG/4:w24{w} +ll@o[)A*+쟰3 w!9?zg?f.;'؝..jMSrpv"p = @л70/w~<k[is 5g`s@`@`hX1À5Ab83 $ [TUa#a'p#h4#<3@q >$F{pFk$Lq/l $S $@/\'tO `T =8B$xZ{2>2 08fTl@/SXD\B=8C!T X/_PY Y bˀˁXE ${1pEB@/RJV1jX`1P-m@k^Hob[ b`z` YVq x66qnbl/7fo`nV)o!`#俺Qɇ@80O>! H5bOsg<,94i`\E` q اs*Z,jDW8*W2@ 7p^@k ~$. p.˜O0UGTa-w@}DwA!0; ;!|Q&c0S \?)Kn+ğ`?ΓP. cGO!P=W~/-#xGO)}`=D)8=@>}^/L|.>_($xy_ 1D0 k/$v ]L?C9`200`%Cc`B|&CgXcR,R+0V`,X' 'c$A+s`c8+8B8Xx+[^9`344`-c`B|&gZTiFP  h d!Bl b\"X x'؅3/$bA3DEX8a1RR|iLeJ0W !LH,e4_%fS@1/Z&X@\,~b}`lMNłVpC@wRk2@l` hK P&Ķ z`̝E R.ҐP [^97 地[匰K@{K {}ʅ>A/y@r!KgW:oRAbpD @pXÂqB0O Q!~XHÂs(oM|J 8-s>-󂷠a`\̋uNoYS*pI+\U^a/ 蚀/ BWuA"7`]We"8Ce[)M|K-o|[ 5# x [!~GH;s;$愃b> U3Nx*'X@ @rEo5x"ĺn"$ y{NnRo)zZZȪzHb9@zbhbXEgE6@A"g","bj*1L4@1/&v 9`Y+0Fp#X_Qbl9AƈQbbh!`$̬qf)E0&sNfI"*I"EblO9KbbhOIbпO[X_Gj9"s8PsbxH~$c D}h,E5OsE{ w^*h-F(℥",b%"Z&%"Y.z\$d+R"1DDgI( eŸV`5/&֊xHJDoU[#։X/Dk_#&VYVswl&_p#lQ7LF1Y7*Zb|$EgSsP( ";8`w0vxHvCG4V!&n2?NFDpA`":$"9,1vDQ<&Z1_`D )N0IN8%“pBDE|B$gI1vVO9R,_H@$Yx)WHNЗnkR/(,`!&!.@)$k/C$@r!PV![:Qh aќ0VaIxDRl9IIRbd1!a '=9jH%0r4 Ne).)i)S%cdΖ9R|"S%gnX (P`>,|''E/K|X"EPϗ${ 8`Q{ImHmT`9rX&^&UZJ].Hr(̵R/${, $ :H` \$Q$RKRI_/eYHRbdu!`Waw=SV lc][avHxDvJ~*%}dݒCo${l 8Zd87 e}_aHxD2!!K}O2HQ: IOr2vt6u1 gqR'⸄NIDN>!H 8+$?!%K 9s@?R+$x.H貄/HR쪤_kd]ɾ(9B/kbgUn0MN%pCB%|C"w$ݔbw%d|+$)%nHMɹnp@&kW3 / pJ><# ?ckK'~_2JwHߗ$<8 ՞ _%W]e ȓyQaL]e]]eC4)%O6zfo.DWΓr ৗX~Teqe؏+2+|ɱO6` ɉOv.vD. A a22.z4T1J6G9>TNP)ֽhGh 1X/ñ 0NFdT&͌p #l6ov?ȱE6vfl[f";CfYs+Ua 0^'ý GFeG&#ce}lò_{d{ {<g&cecp\ᨌNLN^8&N18-gd?&'19rjuO 2<dtQdrɋ%~^cel\ͫuQd 8bAR&5|9 372)odr+u9v[֯ټ+[7u9l_oB70>Q§ 1}Nx pOFe|O&dO/}x"Oe;9~_Nܓs/$E  誰ªª<VuWpWP`SXeUK+<%UVVjk(%U0@_ GAG!@_%}cbRJ}OH wYGUa0B' U`# Q0Qpξ@Pk/PC@q!0g%*|N0r8e1 1 xX%6Q*$ŜXX%1F*Θ0;Φ) 8`1TPTT|f)4Řsk$*4řr@^cͪ1@!W`!SSB[ "E/TŊD(B%1O g^V7D5+ XELE TAT!+m4JE/RUZ+"%TgiX6 5 (fQ Qu .VzυJlUI)JX*NqH(?*Q%R%V@)#qf1B(T![`)SbL1+ڢ˔Db)Ni(刍 ~ET@9C  ڣr >EߥbQ⻔Aޥ8>KQV}MԞ38# qXA|X!;Qb'bTSuLQ8tlu;%VF8 x(輂(gEE?bWg>8gBNAQ*5S5\ek1U]WUהMEb]Uהž8W}]奫iJt)1}x qOA|O!3gbxo&V<+ 3N(p# h(ă!:i0á9ZCa|L  W6.e_`$\G3  (HAe15 G(hΨ0fD!S9`S` D! x&MTĥlhM01S3%$Lɵg.T9eBNa!#̅h>s!YB[Bh,bh͇B B s9 4f`),p)A"HV`,P_ U\ 0&:E!#a0b-G@!!Zq1$}7 P_ u0&:!zW-i!(e2 aBRH22hlvhxLB :R.vƩCmL~9 r&'D! ɞF0 0"vr\@Cgc!9 Әc0vǠq'uAhq1k>G'!8K< g < : )HAzC44.@"B9_/^/J{eVV!ʔ@x!Bt⫐|\Pм0~ &BtZ\!?G6w.g| ]Ƹ=@rsM0wuh߅Νq3KPFwx x MSywB\b\U )LsGwP՘ʯTSeWc**zO觚U&zvO顆wc*?(Ji8 eNFZOZlh(Yõx34d 鿿$Qͼ11NccV9h>^3&hD͚y7FsjA N`ݓ5013ip*cLt O O/Rj>K3fk͚ŧj)=UsjLvأs5Ps9b2DkP# `[s5cf.֬Z|(칚S2 5~^%j DE #ip)Cih4BkPR-Rӗj*\Y˵R-QK5(Dq5ƾv5ch1rF2FiX#5b4}flMUjb^9!#}PXZ Q5XڢRl,L-b4L3kڢ˴DfiNi(刲fs٪7!vj!vqn br pFj.-Owi~Ԭo-q[hq#YjCtC;bR`J-BHo^D+adAf_dB(=˕Z؂1YbG#8!#4 BAbC>(>%#{rMӈ"jbGDpC Ghu@1HQ(>%#{r\'Dg3%#0&r$'2&#<)Ql*'"c2#k2OD Ȟ !cg j<{ f2,Θ,Ƙg"2= > 9Y P|JD, 39bh&Ee,b "!b[X*B(ً(D,B拕b bW!yʫQ髑UQbW#gUHX sL[8>A}p/`ogjm%` 0Fg Ű1`4 ! ^L`c$6Gakl`gHHrJX hc11hLc~Ef1ؘ͉cpb4`gtU5L`2!5b8&c4 ɘLSb 6f`s&a)ؙyHMioQ1laUA`BxUM08luCbxANctӘlES 6.`"8394G~mDJ G\ C\Ɨ1Jcױ~7y[p N\\9byӹm1w8.w6Fb|{8ؑgZl>ַ8~'ncvn8zc3# 3xxL-Ə1%A=DĜG>e&qf I8C5%Np CA,!B+"Bb,%2b-&nM\HBM\K|z}7rV0JXEJXAjW&Уk%1X}5Vgw nPRݔug M'kܒ#Ro F17k>=@&;Y1_i TL-lecaୄ$dL,']DFC$${q3f>c猙 :@>Bz Z3{"ab!G*}R:vY)rcLr r# .i'b%9?NLj}8BEUS<"g\""c\ 2"]%Eb\#7ĺLI/cA1W r rCnxAnt!Ax&1%=b'$q7s,Q:ĬE]!!c< yy'!y@*8c˫3Er#k2"[̋:Gp$/¾U=#f=eI^i5/|&Bw Gwaޑ8f>VFHOwjޑX;b k`wq~EՇSk?BU9TeW 0#dX۫fpʐ1"bXC}UDq0~1d 1 2:Ek#椈5·8/߃^'&Gk*LT\L 2QGsfĚSF)PpJni+'eva!e.̩L)dcKSF9PDjS 2"n).b8FȒ(+"҈,b-xa(,T lkxe ,g2W0#dULcu\FdEYPGL<y82F gXA#xml'ŌQ16FMk}$u$QK"ZO名p, 90V[dKm-#d+l;#fy+5ly%[8d# "`7ᐽAvGо!#~a9 {"y(b='~#9d﫫]G9!"(|$BN~?G#y&b)G#Αg(G8_K@og< g#~ 2=G bĊGg#s.Ehy鬗YŢ23Օ׸D5A#jC\7#歈uǵs\vc+lv;De;m߉Ւ]1EHn$q'bߍ8wx>pո Z+5xx 43ģz"iPc#7O|5GGϨC@!0H(ȋRH ݢE=8/JzF}HhwT5D;QGԣt:y Yz̢ / 3H?Gq(_j/j V~~Qbm-֦ddHDD}s e(Q2ADCQ}dE)& ШS ;/KbLqQblQ2!M&EqQcrԜQ/=Eъ1C6ߤ 2% 242AF(%3̌fEiQcvԼY}L:S>CfU s`.BExn̏%kA4VFEQsd!Qg32s4GYKȇ1Ȓh EQcYscE%?(a ' uR|E/%+ayr)YWDU &GQgyB)Y__ȎZkžL(Zk$G⨱FMQ8T:tX> ;.2(AʢhKE(?R13mcKTm:eQos7UeqlzGdV*v~_f'j.hy43jG<ǻ3Ttvs&L_y{n*rlPEkiV릙m5Loq 7"5JoX bqMWhܴYqWM7qJTAߩٴfڍo f4NKs2ZdrrM~\Ej~JlElqf6U!mYUFbF5jNUCm~fENm;tOWPrڗiḴBRjXӬ>m"$G྘?}+ (ˬVmg:YUݼmvǬɌ:0mr[dzY`f}Ùxi:e~E˪YTݚ[鞴W쒪5 gҪX+eVNf/M-}U$5յIz1C̶Afؤi_Nzn֙m(".#&7s㧠a\MC&Yڷig5 GONgm݊ F}3NoTۗkZvK=EjekYphX=1ݢ'~2SӪ&;.brF?wA5a>gr#j6l^K*Y6Zx]D1Ճ޹P]5[unѥRn>*W30>iUmOY`!/; \jgըٜ>lorרb7(DD#5I͚7eN_d5 whԴ&+bjt&M_r7Q* dvm[a^wՃP,RݗnR~_?AnͨѴ:SnM3VFlTjRI p19( kqjW"4W~@~Z1\->9Ǽ7.eM]DmZRQqxf>|TyVan0ֺ쎙mm[&ˡ6iKjMc_f>Kw=ٺkf~w2Ȭ\wiQj]&$J~^jv:~Lqދ.fO[81y9ܢOͿj^)'H 55IjD1ԓެ-=\)۵b3]O:SvTo=+j'^//-$2vHUd i&rڗ)+;tsHKzU1cVێm}#"=\CD_̪susc%=/M\ﶧV kbL ʇK~%9ߴ65ں51}ϿDƭ9 &'x'jy 0Mkr c7$wTb s l }l"XK0֩b*X,&WiUB.wok <}tg/DrAQ}1B ɏp^L鍘cf<#R>fo^ 2yvv)}lן̓4M'⟬8?ndtj }Fze=K+&zBSyqwڍ?|:O^?OyVzUss5Bn0V $}g]>A5=ǬgZOsT'YEW%&~mFW~ޡ凖Pե]>}B Dnea/ƧZ_fT\0!&{x#tvPn\|բv nr*9>NL

}͓+`UЖқsMqM}+}\Mڥi@vgϛ^7:y/ \H3N.,O%V%&x֘dҠ~:sݓmGo]F`giZ՟*TȌv-iӡ3 %[temX-2;CZPZ8JLi/i}W/t}Gf~ЋNjHf'+,fM'|#ӿeSfGl֐<&3XҊAI`;ұR|ܦ|eNk7f%׸ӃJFI/ &ܷykA6n 99"Y[?t7al0:'x:|Ԍ*MHTo`g uX/0o\cƟW;LHze%w,Wdmd=g~U\0Ycd`25@휬nςO}p\uZj[aK$wKKwMjҴ{RJ;;8z4 nn:euȪ(~/K K~f;r>fwnidޕ"&Q'%oa⛑ﺆf$zWvov|O}A ~ƛmӪlT`ٝS ~!&ݠ?XH~oRpV 3[ & O>l4p1.3AMv2UKVS-/^`Q$-.2[B_:y/҂}fs֮(kwn8`F^[r!&7:^C[e7(%Awut-T)p!br~kf4nn2eha<~Kɧ~>U_JBַ+)$?:شOַxtԞyzX%KcQWϮ%7Z}<Ϭj z1Ҏ<:aʇuɿxW<ōO%k¬f"ߏeMՊ{`>@L^ڙne?uϗ_~vԟqbrp;ݫըڢSN-&3-/m /qgmyq \bٕ& ɿzsnǭW^IOl9(Q?x&yN g:-1`ǜO3&޺Ż$J=gQB/C|Z)S^7o枔 |-L{\xAk˭VQ f )'3A|ŷauZ֩|ʏ쎼3^hj43x &rՠvZ>C177q>8j@վ_fٿGxYh?l-1Ǘ.n7~ڬ^}f~&e fA̖ m=rDl)_rQ$ܚU `{sx~CM(2;+''3 ]p͒fW"0/r*|˿8=WzrxNk캔=dp.u2;|&Bq~qH ?쮳 %|~ 0RiUjqPp N3e<;'۽y'so= Zsv0yۭ0 w\y[O|SeuĴZi};;'ϚM%=焍y|^#q[ osw5MpF`&3 y!$Gm+y+?#y.PYjPy68ۂ'](w_ 1/Ug5Jg:3z۸4nFvnv}}C%֭>F2ճyjs4锕ӱ3'jI`z6mڵ*+53FP!O9E`\#}V[kљ_sۦ3O+\V6 TW\rm[֠Aleϝ*~q TҢs|>o۵tO5Gnd}?F+ $빇95;D {oәߛ}"өB{bHkt>}ݏdJ ;ܛYb6?<8%,]*%?RLjj܆7no>Gٍ\732:ׂdo[F=϶7 }_1U [R5af+ y] MﴪImZbG>YЧQ1Bx7W遁rVzC$Zz[tW6kmڙh^ ;gr`M,}ōQf;}_R~k_*G';?=^}?]Õ\֬,ڒWl뷐);&c7g ;ި]WHLrϟܪض3nck@FaP)KK Gj'ƎCqnKl_s} t !&& @t :Zӆ"U1 LQ6Ï@s}}cQHIP+pJն M|1* ~XgW],3?$޺jE$!E#ı!|Ӻ n$ _H}fZy{mQWzmOuTnhck.ׅFM#)nҢ+0~ZbF?a|n/({W=P[jFР\:miDWzP*&ĴF/!qI2 n՝RSTE͘XzKWRGUB ӀO"e^Hyk1żï`=¿ m먢ˤt z)MbNjA jf&4>4$r_.\@Pk-Pź{h.|=mRᇧìgd)Xd=[ٳ@L-Y]"!\ugk-22}eX-HBlF2bnH 3G4uqEYr{ֈ6߂ 8pCC@iP]@ډӔ4!\g-)ؤ,E)Mnr*Db/KnJ$@X7yC$; [Y춉2w}wh1m-TDCsR;;)yxt}a1@(YEPw&Q襢 jatYosG2y:) 5`YLb!~:> Ru[)>4;x"?C" `"\ؾ2W,)L&X~5w9,r*Ό#6r4iT ^P?=.꧛1hWt,p-ײTh"$Zg:ʡ>W9cnWu%^ݩh) ӾyéMjt'5|l%>כ{=ꦔMwCSP4a=*O?e}Iq0Z R %[҄<e)ns[lo\PA_SDsDOZVרԶmU8 ';?RSp 9s뢤=z6Fфr}RP }sx/Wy a9p"ZODu>KrEgMbeOz0o]e_ޖp.4njs&t,'<ZnNx1ߖBQJ1\H4qݔmdqF"\l( qWjj-)[#w+mMnHJi6@V [_߫_+4bN4\RG%m}quw717%Co)!  rpT% re;WPjGwy->qPjN,SMcw%vD6<녇,pbl;(J"w;MLer^F˜&\kw>cE0p3firMAT4Ebm>uAJn%, |8xNLC{pZy7v 4qFf& ^4:sOъe|#g6ųаO'b !W[kwzHs͢@R 3!eav#x}0c(\{QHsFzDmnp>FI _rδJ(Ŭ+J_ NٸʜRF8PIpW.ГGXqAN84z-joW˨ݽ7P؂\"rjEER(MD*`Pk%u׋K@AD?P,h7]EGXEǯS,~r:j&0%ҍ"e~F=9I'H &\I`t;u*,׷zwEd]yh'r̓I%F9 T Ò)۪r!aW:$3j{ Ϙ9Le^TzpeP;H(4HۛT 4JىRӏ?~5Z2rQ$y)~0,>8ĭSQVa5 ?baV Ǐŭzj)j) xV V|8{mڒ}bhx=rrOhTmKuc]^.4F)%*]e)seTg5n%" ,9^Vetϟs3t]fR '4-)Z,Ϡl JÛ#2N9v^6δ::P[G߸h5'!rG-1"-,͡0t;MpZ*~&_@V[e2eZZոE {ߎ!N _@\&4<027GٙSߎPhC?zɖ^I2N} G=\=(} cKKbM@zZhGLk#hG6 4{}.qe7qh![Nޭx``9E`ŋVM[S'E>3<, mC`6O =L=ŏr|~rs<~5 FR #VwMZ(6Ypmd -魗Pȣ}讣7x/W1,H*9<9םT`4D< v݈f[8ҝ޲h 6ph6ZF=0޴V^hj\R}gW9eoc<$`ob.)'WY5gJ9asԮ' JC5hBD MTZ. ܱ^ :8y-BvA<)& }gJX_/ΒKlpUkűo%VӁ췪Ji姰 Ry9P ̮̐VWgt1y3N7ur'mY2C.)tˏ#aT8-Tep>ɘ]ǟU]c@TXZ6 ê6+ j B`΅O'K1c'L8rJCs(aqzVzT!]_U9Ks{#ԶYmr;i߲SYV%UnCʜIX ABXk#&8?pr<6 $J!4)q O¦~(V'gP0R 1[tmfY&V`8 &6za]7(W-kVږ'U[cx%j2Z)UaIN7 ; 1@18ZA%'}eut7L@=6Pu<ջnB7@Zbz~& N U@cKحpt =Gf$1aik;D/ɚUӂ, ' g1*7>fM8m tVXG8ca tilelive-vector-0.1.3/test/test-b/1.1.0.vector.pbf000066400000000000000000000610341217155126300214430ustar00rootroot00000000000000xtw`ǝ8pf{w(\8Ni66K.9[e >; .&z3;B|wxyw{P?};EXWAI,* @2Dѡt=YlWzP/GGSH?@ֺ<^LL``f̆& f![čiziNZ[Zq1+ 6_` Vk:(Xg_~}6X(XO k@|A}Awswsl/`[РRVzgSD:Xh|HWE-`vVp{ (a>|zS5zЛ }>L P?{Rf`7w@%9, 080A 2#s0kgpGo`&@P4MQf(pF4р9X=8;x?@8:Fs36a"0S̀I< &L4`Mtn&&pR"LB'>kfP΄Y\p p9 s@H\`<Bayė3@:Tȣ,`1_ 1@^ rНc 0Wk Wgpo W` 'b{ikbp Zp 3M^ Z[*aURR( ƁncV ȗ ^ۀXۀ8[ m m ܚ[9pH`r`{@ 0؇s5 = = +441:p '20OO4p@p u Pǁa Jp8ps 8 rǃs} 8{x@x6QZ+\e_W׀y X׀}8w{x׀@x5rn7Tp IZ{ yXEp n= DDžr2yڄh MBw!z@s&&^B܄[ v+=wBM 8-hIS&MП؟E*p@J8/`;D ~¢D(80-94Ƅ\!L&&QB9Z +#oB8,q`^[ |ǀ ''I&ɂ5^NN?N ǁKJiM4L Ng44s`.5]g )xLi0 7ө/4DŽ\X L''Eł5_R](xy 0OֻNeXW+X/J/*!5+:*{ܕW)˅R'_WV;BUXWXz!3ժs`U &,J AM\FÞM.[P [M[U@U Bl/k`]V!"[`+_֘Mav3`pv hw d_6]Y#X{݂Kw .!ܝ0'U3h p \8,Z&Q!tjNj|%GV AJC*4 s3N @Ns`>.g`s{J !8.'N}c%G?.0". ".貀/8yE. U&_Bx!_◰n7y[mȝ8)w`{[n !)7FoӓD?bT* Dv@Q狤HB M D.W bP br@#a?4zzs{3HQ EbHZo/:D^b[ {%@/tnoh@JṔ",f@D$ŸFŢ9DE{ AW,%bP,% P"FkOJYOE0HFxHƈL)cEkh8-z#EI'.A+Z)Q'zI#zJ{J=$d~S$%RS&Aa ֟__P̅ 3aJxDIW,\,ك%gb R8 ?@U~C*a,p~$4R$2J,Kh.c$g䎔?L Ka˿e` cB)K $4A$2QRɜ$Y=YrH+qRP*`)4)I`*q`1`fHxDfJ4,i=Kr*$wMR0M &T.|dZC*4l a\.̓\&̑| ϑ)s2W2J\^$9%w͕9R0W $.L~|kTX"LXƅ\ƄR $sd-UZr+%o/eR4rՄ FULX˅u\˄* pD6dQJ&,%oWIZ)J*. w$#r| ;(Gel1=,{eC pwft~`qI`qqdpF}Vv);!O{Euy\`/dxſ 2 +r|@(Wel_{Y.9(h7(pC7pex7etG7er7ݒ{uKN'W[SnɁyJ(7: YaJtQ`B )TLX]qz(nW+PJP@b5W@/&BfB/Up/S墷b)Vo8V^J[ {%@/%hmH#d.V@ 90P (Q (dp=+*V졊3Lq)^(A$D9Wtw* W&TQ WHFPhP%3*fbTq3^qG+H#pD"IԢ vW'Z ȈI< Ą )TibNUI=Mq+ś`NL630rTPg*drŜX=Wq)|+WJP3`&Ht$-PB,b.bB-QB,hb.SE\q*w-RJH &B.{l{&MaV2aV+pV*hW**UVV):YkoTUJ2VrGo>oPFlfnbFmQFlG<)&ڦZq(&ߨpcBlD9cZ\Z/;9K;CAC!{Uک{kbSݭx;T ᕧ*W&!d*B+CA˙b]P쫊sMq/)?|ovyan(B!oro2ᆂn+BčwbT k87[ĩ_R] CPi!_U! A@RͿ34A3CtB3 `098TH A/@o{2D} I_] ~ "n~/aʼn%߾4}Q‰0AC2{g 4@C3 Wb890X+:a4 ɁQdFC<10^FBs,FB:Go$G`$ G$Gğ&0 ,x"Y Mx$a9hvtBwC pBL@rt}@g43`fB8!*x:$`s4+5ڳ3Л0ù0 ~6y*|H<LDžc|B<Eqr15K 7a0b>_bȏh X΄J. !Z rHVjQ ЪTAw%*0\yxv4cz.lp=Auly=47Ck=@g+t7Bo=`= %:N'|{Jl`;#9%ՌC3! Z =jA5 gc9N<]ZiAPÈ8~F@tHe9݃aMD n)]_T8 Aq+1ArfzA$AtNC8A`Xu\TݓLh@p psL8 Br1+%he\Y蝃Uٌp >v `MN܂&#n@tɖ&{Mh߅=B&o& o$9@o#]4CIe(PaJN*N*g|WSU/_;AvRXAv){)B7tg{=U؃ﮢ^*j^Z=TS"ՠvO\#6g U0 \(Qa1hd?hŪ9XU{ U݁WԠX 0PU9q+KWZa*ΈQ*j`EcTgR?\ F$<U:Fg:mT:lyjnVEuF[`Kuylo:`;9 ]E;T]%;xf}V][uw^Qj5ܮ&*sZ߫},~ _5,>P>$Pר!թU}WԠF %L=ڃ=8#,QNGY#*:#**Q[+O.ΫWqMWqEEU|E%7T?:\MպڷT^W;W Sq_} gsL:i _c4xU h8_#هbU 4Psin+|-(|- ?}v!5Ѓ=9K=CC5C#}ܪ}5fӜ"y=5у!OP 3k`3z1ChD%ģX3jVfҜ;k-(bn,HdR 0f ypF H ipY5{ܑ7\ip-1/QLjRN`)#ihidYK5sfjd͙4TiAKq.5%1LSQƉi,cT MT22͜Ye]94wiT-(© 1cOe;KTf3b'jp#fkhgkds4sf셚Hsi͟spv"GOV`I,&,2 .e -Tj|fЬRsVir[K`.I%8/V$z$Vk` #8VUXu^:Uit Qsi^т*-\k]^ы%I [5 5MÛ5=;hffm/5gnּ-Y h̉3AOo@ڝňݜأ݌إޥ}Yb7Kbfh~n]Z[ w%.,}$Z>h qVpPC5|P#G4~CyTivÚwHj!-<9q%tjeS+ Bx'5x5tJç5r&^?r'4f쳚sNsk?'ݒsc5>?ǚ}QX9qEqICW5|I#״˚y].k ͹W5_҂Zx)cK U uKp w5x 5tO÷5r?섬;Ӽ;[ h털͉.}?K3]%(D+D!(yn.(.(+DG/{1%>L˅~eBHyU Dn" OB>ݮ3b1Cˆ Cx0"Q,>#5#3 7Q0b0'K~DT4(8K1EdRdNDV)'!g2r#cQP±0 ;ͩ0 S(cT.LCp*ЃSNz*n*#grg"o*P0ePƅ9p+ Vrf1 3aBNȜrdC|F^9gb'v%y7ͻ,Dl-"0c!ڼ[Z%Ye(w Pe¸diCXdiJW0UW":N dAV"grW!o+QI$ai eiG`#sb#Mo@d3>NY-ZنM[ (X %ҨƌT3Kn@KfT#jDv!j|{;%Q% 1lJf3 reȬE~dF o?kP5 Qu%F0(u8Ɖ<ƈ:#\ȉTOCIdC)FqC~ .!8Ι֜#q8ljcY. |2/!/# r/ Ϣ &YNocJbU1:'n x5DnȼȾȽȿ(81ՂqljNc}1H CfglCvtn>!> ~B܏gƳٷư%n8"cX_u0㻰BlV!{cv{`pPn8'aa9m,bЏ E\aa4~{6KU+~?_"mgo(eb0C0 0ʄ! x&#p8C25 m8֊1eF)7aXʌx,&pČ͉*$Lxb,Jq86!rY 5>Z1(cNLp #0q&3ؚ)4M~,ʸ0 /hX0`l.p6*0q&pv1s78Ê)mEX̉%.f"be8/f%c{vVbw)cpQB,.ⷔĈUfNTa1ZjLzloFN՜}z[ Y+6a=i 7b1چfLQ/;p!nq6saWأ)L؅npvcݘsqvsa?>SZ2VC20`x Ÿl'cc+Q~-6!j9QcOߧ2'q1<ň$&gqf!?s:ع݋;88Ó q%Pb#.apW8q+5/crgn``&vna`2rB\y{dY+ncpw9qû}`҉ğf>b8{{wwqx'pa:Y@` T*t!L`Bu#+!I]كX]ݓ8ۛx]ߕ]Hؕ$eO3<ԘɌ>eF?n؏} Op_BL/X]BO~K~$їa;. f n !p34 #C b' b H% & &ɡuOT0b#F0c811MP) G2xbN DbO"do G` G'hN 7ݬN!S81)(#heL'ԛB133ӈ7e$B²(oֱѡY (@ E1"d6ĜCrb%<>%/',pVB e^u-y\τum$x!2o=17k=g+q7/4':N:\y^l#`;K_X͌ x;!;Iv!'.bU{7qw񪉿$ܞ䱝۞;ӔVj^1 a>TCCĪ!v-qj5$ܗP!XVGJDGq(# 1OOR$~F{G}bΒ b=_gX&g9s9CyrGoϲ%E\"y%%$3\vzzG] ]&JUN\#*#t+ ٿpW}8{u* ĉz%h*Ynp'Rrwr!Wn]bw֝.{?S$Pp_ ]sW5 uZn:?<받NBqNz|puLn[N_-Խn_PO\E쳤'tPČ(QtR@֫nҝ[{uHaIcXOV PUk'p#hdf 푺3JwqOP f}DXp,Shdcusn퉺3Iw?/0V0G'G7x;,a}Xrb2LGu\qia*Kdnԝrݝ{SuLaYR2U *6f"Jc67p63*t4W:>PbݝCkVd}^R#?Ď kZ,eYeYJ/ɊY+uknҝպ[{t,åI.K<-:V5:bZnZfThtA>NʵV7f]{kuJaUBTq[˶,-:ʈmخmتjoɗzf٦;tknԝ]UV=ئ[![yӛyn#ڭ=QGrc2cjtG'k/bnН[W{pOLDkc3>8Zanaf討kuR}1:_q={uVamRZnwkqɴ%9þl8W B&sFxxp>˕DVLjkr+7 x) t r+[Lnw (׍C5 `ǑN)x! R, sʺg]RNה}#grO.5!֕btOe=U/HLz^)w퓊3 ̤[*b:="(aLSaRa~9v{$:H$b JL)I.IL2e`rTXz`/Ie39ʐa)0"DzW)x:O).I㊹^yJӑr&ogr:Φ9L<Τ )b=ؙTxsy:/Y).Y%[+LBWSr\cI#WRu#eL9ˁ{+]ISTxY9)\bN;Q&w3eƝwR~*Ni3?mMigLCWV_tN.itMJ46Kq4,-f״#mL;d07k:~]ґrL{*W4)}2JNmMV]vpIәrQ77~݄Mx@GFI(aFqisP*Iۃӎ/%A7~;7Պ*Ctf2eaikh΀74ICƶśl#FeRŀi4:GɘtLcfi1btLcw$GO{z X/$Ƴ$&dK)kBڞsǧ p|:>e?¤4O?tY}Q;-MIt8C4Y/%DMdz̈43LxE93mJ qaF:gģvv=*G4zM_5iԛ~V_ФE2SZjOz>jy?̭7if&o6mj}ؼ+*k,Ң+o6i/RכT_{)/ymA}eVo6~WZח^nԲi}fn٨+_/ҢɛaWZE66z>jM[7me3g6=- 3m{ڼa^ʯ6mҫhEvy4͏}ɍo.ƿ{֋A GOv;|HHhNo7Lk@/Ն E[ü~:Oa۷sڿY!_~K_6'5lhN荶xI,tnʹȾ5l`#A_'omo~M:}]6Eq4yF{. NM |_/wPIi(H@ErC>ߺQ쉶[gIG6&Fw:vlYC 9ofMVDjbT'sQ ӪaУ->0#A#{>N >yy!w>y?0-[z-6:T\ay{yxyvc>w/7/o^ cz(֯am/EhZ4l VLsڳCf1Q^~Uf*B')[tCjDOM^ը ,^~{m?-{޲y{9P9Q}Kr"l? xm^}喬u܏9z+ѰmP29 Rd/)д߱qK_mq9.4dNW3NIbo{軙7۬+lD1'?N/ZDI6};Fzx<e4;z4l Qܿ<8X7G5eԤkpG2kӍE4.k$tHDsI|.-H)G_}5yzurSٝ 1VծW4bGҤA ۽><#]d9}a _yŶ>y?~䷊I"ځO3l5:ɅQ-db8<_Wm˫Flб{'XΦn Ȧw+ss%>fZGkFyqjn} 7l`Ty~?iI7V~bD4;Hk1Mͩgm=ؒ+WD=mܶrhf9/@[ڡ-c^(5oiDkjf?~-LŜc~(,h7z7J򏍚50iӎ4zC۷3CoD3j x:1xnݢy^|5[^ygVhP"]6Zl sT4Z̺l}h+4"ԕh=zk/FqK̀|k)N_˖0ۉQmʆQ?׀Xe ~t|%;6й0s ֮gdnI{Ix|>@_m njɒo6c %Ѩ?4jݜ˼va_6,%粆Bż'h<;V9 m>YVV9{J)&s2~պs47b/6}/ȼJ\42^Lv/vP9cm+ e6?UkF|-?-iղ;P9^evudJ5XYY,^݉C&ete;·ȨDthȞF,FȉOlo}%^.Nͣ僾lNѨet73xo;|gk${ʿ]&]+-cbΙ8h߼y>z43~s2xc xu]&l=5Gho7g[llzZ21gPh밿s?}'*\FE9}6:1Ͽ6AѪk!'^&03/}n ?[yĜ;^KFls/ߧV]6s;E L򇼏-Y|2/SzNlAZ`~=_xdgQ+ٯivEٳ,K4oFg~ Y^wļI~m/g E?|(dFN_e1Ei~]X^;(f>iͽ+d̥4s?pQUbҘCYG~6yFlG?mAѵx)_6!o^HbΩwçx(O=߰#(lڷk^l^(䠸 vx2-4N{="v%bv׫\%̈if'|x=~1sg]|>yG&ߥW-I'C;}QٔOVEا2;Ym ;fWn3v9ݝӘ3ǨSkGrczf܏:ox^?~~\#䴍tw1/5mub'#z0rvWԉ {Fvrx?r}#N$~a 9f*8k{kKNȉSeY@׬[d, {ۣ"=,hx7~9XmEz1ωEӝ6Oe~;ljm>p3*slmG^TYވU|ϮE_K_'權vZc?BG_>{-q A@A%B7fћ/e<QE _ѓ!{?h„O-h~6\˗?vsffonУ- }=%š=m؏~(KĜC~Os毶dK'{Qn`p<7rqUe~l W2|Ya$343IJ6dn3TՕ>}pR,UuywQ+Juܠp&=H- %>pOKYˡǫ/4+&EJr'4]yCiV=qm#%UGo=sאa1:9m-ґO6%Q814]}*?zFzqE"YT(՘r a^]Lcs\~Ad|Ec:6LdL^)J ^>?37;FCnw) {YҼSu^~Ӵ͕ܽjL:g-l\h‘-N\tۯkɫ1#WADzeW̟qFBD2#٪!>"P`f,mflԡ"=k5t:;oᆳ&^ Ač:]m|dLw"/~2ҽ ׇyHb\Sm[!jЊ]7Y9><2WAڋ؛.,=˯[@suzyi;>\e*st ibCv7_| -^vɫK豄KY_`t4IT (ګPh YB\ } L{HrLcݚG03n~*ێ?P_Dyɩ*T 7Gt0xi J%[,Tn#ߐ6I,^{+Ki G\7M~BGo*iYg rh;,ӱT$31 V9{[b^=B=wZFG䣯c1sE.Ob<kצxFɢZ%,'֓SUlwSdmDb ?dQT̸[Ի!Bo+dxux.qO={MakH%jC9۫bʄQ^S_*De|1SՎYt}[KzIT,oZG=,O&%ԻE$Τ+e7%nm2t7\D%I{]u}Qnu(影B,CG_@ 쵧(83=JZkZvZSWfE,qHD<qM1 "L-steRҩ3 "$Ôa>u](6DxP]rP}`HE+1I=?*`bW?n=R B7,,Io iqh{u̷Zbvql{qeoĖqaHI/ ӋlV1(5[osAee|43Shyttbx W9 :@*!DI$7c::W`ԝk?8MȻ$ <ďwBUs /xT5|TIW6WF6֋G!Br8Öz) &ڊ%ug"<:zU)brlOy64AOȎ"KR4[ע$,Jc@u)i B.p@ )N 7lKc\HIپl =Ü{¨leCBIB*AklU5IPByL*^q[BkkK^ڸf4S>Ӡ b 1ZmK )P 3bȱ6as{@wҲ^ >5}ѭ]JLjiZIf@oXU!HKCµ6B9Neϡ^/Za6B6,fcG2M:ؓjc+i;Fg؟CH*ȩ~\(VTBYFnT*W;z1q(wk.n D=9x#J0ϹVL >r_nu.ى=>K<m~=# aghdLڪRUb#:؎yUɀT:6'KlKp%ZfcZײކ?Dd*g %f$ĒlJDAb%ySKTԖ~7I63ʡ{Uܳ7Pbςtm)D-S|tusBUTєcs Z_ZmQNMOONkNya'mҔz[S..*Rsvu Bک R A(G}C3yb۩T:&2ʒǷ_]keLn,7q5XfJdBKESԕ!yR* DH7[ Kvri ĩvL%,WED fˡ4X#OAy|-p X Sv+*Cz? j@S89X2:2Bu"*4XPw#]KK3Fwī׸\ l2B(ibF-'d_C:r?g:Ǧz~3:Ռ%]Eh-q>׬0cC{~ɡ+#&.|N^ aPi,+CWH(Sp1~ĭt ጒ w^^RC[ԼZ\ɼq׆JDg<W?&eg ŏ4W?&wAߢ ס,8/҈4kTmiY%7):QU fK(9ƃA#W-VVZ_^enNٝs-aI\ه.ôD稣s(#l:y4%>reʝb{/p^1q5%٢E`Wz?v|BLeJ ` .iM`ep;o%_?q3#SdoCYw.pK/Aş%Mε:tFXgC d>`K# _ḤLiS%S0Y='Y4ۂdmXmW/|;mKe'5{; Vb1cӪpb2OԼ#~a*t*>P,Yi>}xTo+T }l@٧̛Brߡep n` +`_gqvHmrw3fĻ{&f`-C?ܼ M[t?bJ\(OebpDS8ះ& xي`'0SYfR,.\!c$~kU9HsNo@A0l=.E!>#! "Pǐ=x+gbN'x˴M=SB~!Վp= Tt2 PI[vgMض@$Q>͍E򽙊z=kHr" Lh?8MJOevWP|T-r~T"5:a˭otcM c`S[zpo-}]V8Ȫ5͕0tocCȦf'}RW䱧ޞC/GW=MHEm@^{^ ig$&P::ެN~ cBxnVWMi12@N=Hon>Dpj-c}H{S<5I¼m5pJ@ aTK{gp댪mg;Vk)&5W7㧚ZU3%CB]GOa=Ul,oͳ_g)*Kcɇ(S+U8I2Y"qKCeGDn{2KIZLwel: a义vl<>sTxq)2n`L}9PA>A\"p3'hLa})N9M f/9D"l{a4&@WqJ,vFh"#HWm&jl' tK5ݲMș3P,] g"$!ma>"I$;DsFŅI_N,B =Azz5w_qrsQ@:'*uilm.^ρvUzx!|ق]186jodK,h5۴6@}vB` >ΗS=G5^Gp+R-E:e$#瑲·DIu'm\K;iG$;E{~ Ύ3;$rB6My@^h:'(cӳ$loGk-A u( Y۔'h͝V6gG|qiEK)ۣD6!t| F)-Z:&zFcكYq71_2;r ZrY /Xh:<<8&6qn"GIz姴^B:9m.^6 Jz@p&j3#QTW8E>8ԖcBjе:fιHUM))9xE+ʀΆ($1ǰS\+^ʂX#B+l¯ObKN&`oxLT[e`@'S\~V 7ZyquL &X*V,Nb@Ii@Cg [6>ԝ[TɁT$APgQeV@'B`ʬtIK҄42:)@BϏl?ǀUMKDF :ul_+ѴDdM'H GQZ)bWŚ毯@v_)*AD4@8϶oc WL"MY5K-_זޘ0DnWkpiͿb!I $We#si&zl.ɀ qM5}Atilelive-vector-0.1.3/test/test-b/1.1.1.vector.pbf000066400000000000000000000607561217155126300214560ustar00rootroot00000000000000xtw`Ǚm;3nŎ'Nw.WRr`llcpI|IlŖm;]轈.DMwD7fz7GOyfW挀[S _ԫ $A S PM-SBv=ēz֋@}1qk'@Z'TLb9Тb6rMX f,˷-'pCNĢ'XlKTUbcTXkq*z?Fe~i?cc9ǨίTIMd-$&z |;NI{OO f`r)TTXGi*CɃ=mx?0|:aN쇱p$b+ i,3S*soɓw/~4I'9b~Jb*kQ3!kF n0h6b9L4b/b/XSnJ%Ok4 _ĚbT?AhA~b-Ыyneڿr~{U"U"'"[,O[*XwT-[vdY.m9|wDt*Vޣbb{~W,F}C}?x/|?z/'^,V523XЖ}~Lڢv-$k8h~͉zYL*9}~Nž@_&osܿy??ȉ}mF'4m5cBҋ@"@ p! AdE"D (8ֳR-Ebޜތ H<X8[ ^ ^)T&0A 084A If``N pGo$`hP #N hc h@JAQ*(x((N9ԙLh\ LdI0I 0r'2%I I+$L$ML 97jdGM@#TrL+YW2$EXs] V" .8E>`!bL@K^2_hX ^ ] _ U \ E)`1ާP j5V3ju Wk= X jN=:t#C!l` lmne-mx ;@k'gpwo;` hK a)Aj{9`{`@d?::/p/=WtjB}jQ1qNp d6O4pX 8BEٿws p.xts\tpк}8{x@xDRs\R=N]tkL:׿u _Vn\m`_M_5^ѵpEF 8  T$t0 ` N',xEAX(DS}N 'h@ ݄]jCWpW t^Mpz n!݄vB@_` |ujB_c0@O lA_p *~)'& s5a3B '` # HIKk`+x#D a OÅx-#(cxce 2L``Mq3Ypo2!'De~7rʣ.j@]4ES`L4** 2k`OY;[f4!*ӄhjJ aQ`.#s@s0yH b]"x yB47.l%>IWR,cU\22Y%ЕV%8ZV~,*!Z/UAߤZ-5L~5_+L~ x@ مZ6j(o5BZ֤5AQ[ ` #l愭[M[]Hf!؛gmYf!ڒpKEjSԄaGF@{\#}9v V`{@jn!I 50@ ߦ&!FcC:"C9*$-N v/ !!C)|i^R ߡ&I8xN 贀O ,2'`s{^N !8)'dJ8 4.M 8/1E]EXpI %&_BxI.sn&ӿo ӿ);)4%XwGo M!%D7S$~el<AS",x*N".IgP$Z]EHtnw$EbP(EbT(fS~@M!Ћz#QI_16%ҥKt#Ġ)'t@cC (@(A",f",""&>*],:Dw b1(b40 ZfTD#H?J#6RƊH)2-#`n6;&8gq0A`&xH&r4Nt&nMqb0^ ljT|ְeZ`*ӟpӟ*"* 1[+Ekh٢;Gf41*hjJ 5S `#"DPDHLz|f|Y,KDoyb8_EҦ!'"XrV1e"Z!e"Y qh*ѩբB`VѲLL u?SZXE֊h׊dcEDkh͢E6:1X+hmJX {˲_ [Esngm")m"%&bhS#{Doob]}aFJDP93@V$Ĥc:/:EbP+Ũ66f@ ~Eps"<DtBDr2 8.ZDݳwB11<.FR1B{[) 9gspA༈.H.*9Ѻ,D^N ΋91:'A'gԄk"78o0uuΚpC ѹ+DbxC0I|tb@;H@DE~ tX"uΒArHnW+RM ;Hу4828f^.Et爞=$K=$[ʦjw#%^] zHaw)!匠/0Bh;Ŝ0PŌ0@B$<@"Kt5K*y$X Ha HHq=m2O0LÙ| !&?\B#%<\"`Q"Y%DrHX)%R0\ Khx  ``I$4^e %T&JvLɒ7^KL K,qTqB S9`2 M̐Tɪ쩒S)3%oO)R8U)GQ# % 0Jp̖< ϖ|)#Y ${,E7OHl)#ESln¤'( e=e^: {%Z+{pI {8a7mlLaF#c:*9&eGT:.u䞐_'N<ΟdԄ꟔)럖IJBg$|J"gzRII9/$䟔SRxRN^lK (K p.K"\ _U)%d_{CHE)$R =Ȇ47%pns f[+[+G%dߖAJm)%VJ km֛_BɔP(U2%ɨdY elNW&{dPPGXv"uRw`K=z˸LȉzV_);d rC{Qq i ;A Cd8hdLxekl!{Ce r4( ’ OhF}4R`4h%2%R(3ekl;Ah9%hTJ%ljI/S &`LrNfI2"I2*'Li=Yv ٫r0I'ѤT`;^T`&Tr,V2L͖L̑ͿRv̓7[+`V̔0V+2io^ p#,/RFX&3Dl-E\vW_$ p-L 9b<ϥ^JbjX-jX%52^%8W:ٮA~j9ZVq- ۔^(M p3lVo69[S7v,;;dwmrI7ѦINvْKȰvhwdT٪/don9)`7t,a] 1AA8$2>$#r2}Pvq;,C)(fFǗ/epNr)d2:-29LǗsNvi?)'HO$1O:5 .2K\ /12"2*'%ٺ&ۗdސ+I.%9.r]m;n;2dtWƷdr/[n}پ-;d*m9%V sO,5͢"tTئ_XP@GuVpGtQJ"EMq+^g/RJXDO0mГzqBob $増bS^_q(^=L=cM09``+xB$&X*v S7X`+1P+Ո\'%(`#TQ +p$CPhP%*VbT2xP‘J4"%Fԡ lO[ 8&(h'(<륉5E'*TŝxLP‰J4!Lۙ+`Tp@+`f*xBf)I&U(lŮP9;W)~P %fpPyC{Ir".d Z YBZ gV)b_ p-H 85aV0JNXBA ^/LT5Rq*:ūVJB W*ъ li+`lM Y%$;*Fު8wmVJA 7*ц#*z)ziv2.ح] SA5 ީ=9/RKq)n(.%ةhgJ Qw@ pr!d SV3A:SP (A%:pLȿêN0IN8pBA|B!gzRaUUq*9;'ThuHj94p_x_Pe_PȕEź^WˊQ .(E%.pӡ-*"t-N[pSAw|S!w@k{u_o);J [JtэMXTJQ@!EZ aGT:C\I4  0(aGtL1[L}fjz2@a Qo{Brh{@/{@tC7{' {gё|@mA1C AdbC\ ΁  0(@b"uiiT #  H"XhN)tˠ?#`8F#R\HԀ`<'@8鏇h"!<Z=:Н0)`<T:">+m*`:̀p:LiTs:fB{:tfAw6*?`8FsR4N 5 \1\N\FA0 3-ssKsa0sa4/ẼqkNO6E~DmX 2FV12V@ 0[- UЩj譀~ FR2n'.>_mCmXZFX !\k!ZH6\{^M^ _0\)b-Gk8ߖ"B!s36vB ])b;vC{;tjz;{aF۲8b7~i #@!j!:q-$r~:haAA- è65n+X#%#/!< :1HN8NA8tNC N@8 8c uS;꦳cppRpZ}:W{z`xF粄s1W5>a q#nCx!nBt⛐͹tA>п0 79W>^hO:@E*,T):J: PRB鬺]TA5,TjN; S*s*=ZUQݾOA75FRB7N#y>Q诂P UXT4HT2XibŪ3Tu /VjXFOUxM_ϩD}4\%0Fp#hKT2ZM3FuǪ(%j8BJR J 5?TUPq*T4Ae*f `LVr՛ԠL ǩQY (IJ6$} 1t 0ME*J5E3UkjOWY;[*TLSj4-%LR8?Sey0_axJ=O;CU>_SSLVunSZ5اj/}}\ŧ1aaG1eGTt\GTeuBI=zUQãjt$E#:a@3 0Y8³qFEU|F%qE:U^VV ΨY5:"ռ]6oԻ*Vqu^c**/lZTV;wC=5FW9W![u U3 5vU i upFsGbEY4vռN_ZXEZ?LjG@MG`计^Z:jV9}5Z] {hQѝ3501^Ahhjd$Uf bC46k-,֢YP1?tfQNZ6%5ZK4gռ_õDf +tB]Te Q4Xe2Lв%T&jvLɚ7^KL K,Eq4L Q) QS5XS44MS42]ˎ5C5Bs+5ok-,ע))b GqB8Zfj`C944Wó42OKl͚ٳ5g.Լ?[ fil-fq²PtgF,bFX K5khkJ%\h ]y4,%Z8E, fDf* T3jX QȺVkL֜Ajj-ZT9a7nVѓQa3'lfFؤޤm|ڬY5{ܝI7k&-ܬER&8k`?-4!j8bkbjxF5̈ͩlhn-Ѣ)`7,y,. 4pq@1A AX34fҜc{\k!-8`8W3W]}R'4VOr) d:39ԏI:'5׼ Q hI-:: XE/ě+qUWⲆiFkɧpW4f_ќ{Ki-WrjeN1GF 4xh辆hAΈw5EȻwբ;)GtBË̈tBň.vF wBJٝ=Q Q xP̈^f>>~F?Ad#g r!7 w`۬3`0PPp RPd@PD(FP AP IC8bܦ~4 Qe2X!<()OȚRLD$C~) ƢEcSXNبec#LFpT0B9zQ?e gr#o򧠠SPT9a6<4JFV0B%BDd6ʦS 9s;y_JV2ETrD|Jn[wXغ  W|d-B",F-Eɺ($ 05c(3cǓ QJYFf99ky+U(\Ԍ*(gØX8bb=B^&;LY^-݊_(\)c=GSbbGDpClGhٍw~(bj9{yQESvnax%SeqQAk9|?ꐽ9{yߏZGQm刁ڽ"F0Q1q q Cdd##4r  X8kݩ"F2Y1yy8E!r)W@#2/# r""ϣ ϣ\8u5!!p!npMo0un!|({~Yw}9w{yQxESu(b4CGCgb" GVGlGN'v^! Ax,M`x*H bcD7 `;uǸ+&=p낭^퍽8삣8̍dzJ}08?/F0I1Nak agvco/oJ wC.R,`0qp 1PJ0\eFb{vFaw4J? Cq8 GCSPXaab c30,ex,&qn`lbg"v'aoKq08"r]ksԸcP9b c2-ؙؚ Mdp2SB9' 돨dY0Y09d.ΕYYؙ؛Y8Y8"friXBX1\ 1ZBLl-_*l/r/B.Ep"5b"#`#Tsj aFk0^ZIcFTcg=v7`o q 8ZVq#~2ZOb؈&:f؂f؄V7a gvlf.m8q > ӟΎ'3n j{8`/{}`Rjc{v` ajpG5 5֩ʙaP9ar,:'wqP8Ku8)8g0<0:)Ll?> ؽK?S8;ɶ (g1 QNT F718Ӊ;xS?$LP+>mUg#3 P3 `J+Y$**5ęCܹ}B^AJV2ETrre/V 8b! b>AObA-8KxIDS|NղoeeT1rϹV!m-3+bq $"rU*Ng;<`Vo k + \k @ZB6f:bm":l&m /2#ZةZ:6.`J6fvAvFN 9v{;qjx;HDR;q֟eY<} Q e} x!TKCĮ%NqkI$ڗ=u]GcGca4>JȗpS#:I#9E4Hr@{DG}0_, ŀ"rcxatೄ\$9sĹDĻ@s$8Ks$:rvy$]u _w%8:*A7JMkq8{x7H; Ht51H{dq$*;܍)8>.AKH=B*{騻tA_Ht圎vAGgv)븋Nze=:%^f^9u6W{hOkc>8:fa8ÌQ:1WF:֭}XwwTA֣Wuq«u#Nņs,fSu\3̔ӺsVwy=mztC._?qcVl7~IcnU^a::;7t]]N0n90O6rS=n=;p ^sGn?oqK[YP `S#:Zl.hFͰv'a= w2FɈ:L-6xK7Z~Q3;z!} ؇Az{2c8ņ;};7z#Ee+* 08 ᐡ 4 2}<ȰJ {0ܑ7H_4Ĉ<([! y”j6cp Ì6PG1?3ΰÙ` h#cDt2.w],&`rlJ9g1&h'dj ͤ9lL77HIM6j&9e5,dY mJ1r4=p|[`3gQejI%g;;45, 1s.fEZjEYdaUbYn+ o) ,2FZ![aX ڀ @k kQFa3jYo oW*#6UFZ Wq\ieMqL6s73&m1&lMB"pb$cf#ڔ Cf+Y4Cj Qvhwdonf݆pk oOv6]J)WQZV#@Loj~9`y ^Va7Æ{ɗԧg3%7d:i9L˜f|i8g 79_\vQ|L) xQ蒁reW\5kw)K`Ddn!7 xAn薁o䶑ݳ_7;}p=ûe׍^7Ru?hT7ؐf.*LvNm<ܹԒ"hLXT{rY*Q`bFeg\($Ln `Lki0!;3(6fTl ،ԟqUa&%1„%1D#M<$ao 3tFi%f0 Kh܎qD9%&(U!LX &oRL0!)c2әhLo|6$efTHHJ9e Q Fl2Sp hM2̖2t*LI bF%S&_'Y~42Sp62\2ɼĖ|Z`ڳMg.2Yl3f7ߗ8ŎL8,IXKe d,3*3f bFXnҐ0X[SofZiU1۱ڄՌDkL$ks \զtכޚlLh#1Y)s3lcYvm216h7LNLgn5ͦ 6&3ȶ؎p^Ԏ̎&۱3穝y;] tvǐ3;;hG[EfNIR1ĔZT2J$f gs zk<Nf<4R)MX(LtćLr4G9fZMt4w$3CWCIL\`&8SNgrAN茉O䬙;7sta:Mzzc[~~}M+MpEra咉I2aÄ˦uʹ ] .e3P]d&3˼ 2 nǖZr1n讉o䞙^}z`wLCƭT٥xnjn?osʪK)W021P:f((:epQtdW1cw82nu$A阉2Ǿ(Slx{)=#4zgO}I3dE=8?cˀ1c@11gOg{@q/ DF爛]__?5}|-oG]AQgٷkj}W^{UkLLic?/ϽT_{)[֬Q+-K/7j\}h֨֗^i[aWh+-_mR}ןk\&/ [LXrK0-i-o]SWkҫiNm G ЪM~r-F~iiHQ soN o6l b@-7QIԒWHy][fgZ4JĞjLzx_G_{݂v[}Vo9!rbkal[F/6@H>i&Q֏_b5lz'?3ryP03mޏ94yA]¿ܶ5mTyv!7.//mVyr|/7W6l5wXG bުl|_?6WO?hZK&z&ڦbFײS.eӖhw"cb1u~y6y{tl+[\.uo D~vxT8Y+[c-zטGm5'}.Wt?LΪy]#>9,)Z Â,׽x]{5Wnt~!N~e@#Zq,g4@YR5nYS;5N{ ()[OM}Io[ų-E_HM[dloBkt}o,]X~و%nl[Mu]6Cw~+{w5τy[{>;RkK?{m6|6|{z+yG}0?5^Mh 6<^rߤ;,jkwVr`Aqm/jG-{m;vm bSǹԤǾѻ(n[l)pМbްl|:gljS&ދ| DZyklufZ.q2<'H`N8>-b[_i+X?ŜsQEh݆,Z F"}ǡq2y k;o?Ff-X`&Ιbj,}amV)Txi=}K\^ڋ.&Kx;}-¼OT~=y}XqI xK/~N7J. 6\GKj5+;|EX#%MO~ϽYz3Cll16Q;>4jф M{6ۆv؊F\0.7<@ZQx17z9=e.ċ/ʖ/[ts_,s/3qzEqfv/2(ļщwX6a^uf7TRNWFr5pfɲjֈsvmy'֋% c\66xsQW'#dyG~G| nŏW961op"op?}7v\F^cSU.Z'2;7lumb,frۭӴ}`/;㷉y˳/^%%&9hyhkaٮXvS-/lz\?'ӛϰ,xd.o]x}%%5e-#^OJś^zYOiCz|ϥlL٤L֭>op9U E /ߴd:~!\UN5]![.I*y&ԅ>/s1.Lt+e'uK/ygS~SQyӧY׻;or+:'_|lg_ٯ vOy,3r̛'?xŋ,Y^7^b^Lw_č-CEvPcUgO.-SW |\tbvJTI'ͽ+o,t!߶&UJ?t$A=ڵ{)b# m>͊]/N@a<}*yz{^>5ze|Oz4l裶mTߚƗ܍BJ4i߈kC|^?=$bNnD0ib^L'4|k'g7zM_gc['SWW7ylϣs-}~ݪ]A\SM䟿McxUM/cv;FUx&9ռ7q>tfkGڶ.CǸ]xί{V?vII1^~xG40r+uŽQjD?|&ؑ8Gn~41nV6v3?x=߈UNyп-v3g_[{Mb>_/6;Zէ2NM$Cwyck>f{3rN+y~_1'L;,GO8.t2ݶ׋)T a| qPra7|?,_e$\״WryAȋk>4~*d%!yW&1oF~_tdthIGzY>?enWE; ׾_ڌNv]Q~n0i5ɝ ky8I%Lmъ䨺Q$^ͩW!m]~$wF=J7UGeG5&% Bf{33& SSLwP=CO4y@D{zpG% JXdrOV\qQ8C]V#Ju}Q5ܞݺ &dl.gRAgt8T]Hf{ϘD5baX G6,ҡO6(9852]c*?rzvE"j?mY8BGAal*}̗hZnXOEcO| Hz]Bc:6kL$u^./^>07;sD#T!|;Ņy%\[Pxi^îC.?WǠ[BNP'qd J#LnKυuȝtC,>gB!|W~fJ"i :d:p}.L)(LiSO,23Ij˄w0JU_3ڞ \RlT 9h=74wssbwN%Գ6`.UuĘtRXf@5$DMz1CWAl0bN|n#!"lgIQvAPFOfLkiv'-ԡ=e9ut:r:3 t.(\! i/bo /vy 7<@qʀLr!&0G& >,gzй0Ge0io\\ODE]BuF5J@lHg\BOHUZ*VY*(pNDǭhLSWQ= Sx,.5T+x;O4>Vz5 /5`3~ ifo"pu-Ha4dOɵN&}pEkӖ~ %-*=xc}T&?? XC˖(d" gbvuصh(s'1EhEJzt> -W! Z=|JԴLrCG[ujCiZ "&; eCQzE & "L-wsxe!(锎!ɥ<& eD>Ak"=*}Rsc<TbR?Et^F7&Lĭ'Dj!냅bySrϐ]L\ΈCRo1fzGم!l+kJYƅ$%Qx}^gRxH JR~M4^ԡ5kLڷKO{Dѓ}tK]$1؉bEI5˦ؗk?mбϒ<ďCMs+2ȍxw5|TMWN637@.!9B|8,st<S }[Axu#RDd|lM44AAm D&{Aʊ F-~js %#(TlX6 O_\#r)[:6loΞpgtC:A젂HдҷA 9)ǀ=9AH]4- *1ܲg.AUzGLJ acr70 #D@%^bvvU(u!ǹ˥X>lS`mIb}1Olr .W6B~AQ{oM`׈} =!!P]aؖ&,\y~q_[j*SPLl'R˴n%yE#iW y&VR̨T%Ni,;sQ!h#nR-mmo>Ipm9gg͵ ۫pR >qD;50heיj[rq Ԍ_v.O]N+ +X`Nј%}2jw#40[ZV!084x1ؘHAܚh[:|(Yxy/(՗NA-}XMjRTLx[tHʺ6e(ykŬz/s{'>;w1GJj X̩,@}VO3EŰ֖@M;I]'Vl߭1J÷R7Bypnl* ` ),=[n1KVlE]zݎrKuU<6Ds>[qneX%ص!HL֒-7IJE>QբS;%YAݻ%˸5 QER=T"oLl i+EQjNF0z$+KVV4&J᝶Z+6`QWّw=*g"T2 ed[?\"ƪ[FU@Xk܂?d?uU mJLr$%ݦJD_VKu)MY?w&!̨ˇ֤r7oĐ? v;ei>椨⥨Ah0(՞ VLOM6Ncya;mL)AgŜǝ*anj֡=S}~?i#Lr + k4A-r~D#@3l3 IAhdqeYF;Ii Ev)L%g/E%qq"uuޠ|-p X Su ~)*c9㡳q#T'( &AŌҽ] 68cnۨLt%(J#$k 2Cz2z3ToD$&GMh{䱼e SQ4/ b1˗DE1$W>'P`x0d}'k56z 5H? !6J _2LKK̡u'tLH}^n}˄;@ <[:BS- SvVvq:V|R/|o2T3[PV:vy8wvYE Z⏏ʵ962tFXgÐ d>R]$Gf%'HVZN_r{kwlp|p]s|#.*څGK l <,M8~.:cxw I!|kR:lX e XߛhKg>_rX:6#adK Wh 𐨜ŋй@7Ej O6{v}"А:C! "P=#xgbGtIz'M~BPѽW7@%YNٙuJSض@$w{ll˥i5dzIpESv4 j8/>*-JDֽ&mFI833 ުAQM' $ww;@p&sCtYZY|F*;&] 2dPnV|"ëVMHnIm:m>(x98?$ڈ< u{q$(:]+o" SJO9V.+ǝ vb}Ȍmոk2[ zGE>&];՛u$lY-o:(b({J:^llPD4N*̦2\&rS7nlE(A Η_ .<ז ҒsV Ku_HΑ墄{9z>Fb8*N/pQʽJ' wkMZd?" f׎f-˫U4ck0c`dЈX@z^3]t7ND(7F7:mL;ɾ&߃Aͽ=fKT 1=uV? f]^$g */@o3d JmZk*T>"t۳XzbV>cixu#zOmE?LǓ1qk[|Ax2 $#Ƞp'Pd$?*1r? (}1QRRj.#Fc@6DAJ{aV*Ĥ~+Qc~F-:u<4EhMmG_xdď"v[]2!9v :}WCqĤ=%1@0恴bܣ(4 [}nT] 5H!"[w<';Ϲ$.:Zhp`Iv:oA[%Y Gn`cZV+N6قdY^n͈jC7c!rŨ|U佥9 +jF+rZSvйM[]"1q'ii\c2nGvEE|Jpniΐ~ yiY`'#}4!;W%$b"s'$+RnC: [ Hc^ cE##dq}eA4 Ql ^12Ŗ~am _bZ'ai_'YX~f 9&yqq/&TP X!ƅ WӀ\G? BT#BY4u,NaҬ.GⅣs(>_qUM1IF,6ob ,D53$=xr&T6:-O*YRxR#嫺mo7؇) W2X > b@!A!͆-NY%- [bD f $V+.N,l r1j!-M;s)hk!T{tilelive-vector-0.1.3/test/test-b/2.1.1.vector.pbf000066400000000000000000001215751217155126300214540ustar00rootroot00000000000000xtiuYY&lVi)FS9&1&HFez"pI͝(\ˉdhkȎ4*?G1]J%YZ% K jdMJ~jP#2i x ?>/<=*aKpWn U8<L*'VFTJ'?uQRg/*Q&] $(Lå^FX  TR'1fMU]RzkZٰ3$͑jn%'VQLR(ETZQLdrYx": *P )>:FѾX!$?+UUʹeVgjJ^b(ܕvoܙDdJ.aōĚ4Ĵȕ w.7N6.`NC x@yЎe^I|^,#mVE+UM m)9h:rwYJMm-̆=@].z,}юrαąiSiJʴ`5`9SYvlǫx^"S.7r1岃 jdpR )of[)Ni/>Ъ b ,#Xj&1L¾ U@AFkR +VW"On` N .&Mt*Xf: {発>S> Mrո]twbpo SQRaG10UI~ q_]T+clBTWk\}6ིfMJ{T|g$kr+ 9a_1Rk,AA՛^;n&l8!] 1)J{b\Θ`-Mweo/;h.T*KqS&4ѵK80nY. sP24'v[,n^fr= hAl+$F$ʦw10R VQ)`Bmi1^&c3yXDZ܆3]r"{J惠Gt@)xfK9MDpmWRBOԃV}ޭnPkqjmjȯ2:Evzĵ(Q?)t>S2P Dd'2*V\읻1ұ'Lmk˗;kL2D)M v A '+K0e 兲a &ۆ+#1Nmn;9 Zғ[o bEXml7=wԹIoEeA}PS(-vs nN^ ˇn΁: TW&߈e*f4&0ھVpr)d7Նέ#37)"K7xKg75d#d{1=ӓt;t)w;xR8dj+sD4sAi KqlaR`m0)a7uͼY3^*6ZՍaNB(MūWb~,tH C5jW!Va Oĸ -f] GCY &blK;\S.nd3>]հ4< v.mL9mòfQ"sB"4\GZd~SH@ O=">-ZF7LPSם7ȿy|jӥ^B@ 2Kn6؉L?P"] *042jv8}sel};QxX M;겖3s fQ5fpYS$bMZ\[ PvXtErS. lfAF8ećĢWpD<2z]ficb!Tr9޾> uE9T\Kͮ^] Uthx7$F|7|Ofu4WkȧNtrkOc VJ9iݝ$1v[&8ͬgVUM0iL]u7' 4ju1!\jžR}M"T6>8sc1XxMSVj4j⚀'HariڠSc.5y/PB''S=P֌9dgi*o4􄛏Č f R"C͘/;_Xh(Ld"K'uP+BfY SE c"vV;V"k#'TL3\V9ftAY h6]SP~Ќ?զ0FPU.XW>6|̤ʜ ?iOT~]h0AYE/n Vg-)I VO&O ahApρimR9Vxj3h 9imZWs6J r qb_hyWrz!8[D?1ZbI;ZYj0%13[O"JZ a6QqG`Q_I5X E`4 _Ĉhx]$+#q (m&ՂfQ7@[ oʫBm;J& IyP01U0ȖFkf0ڂ!C07.i>TBѪfN\ajd:<>{0w $PjmoҹB1R/&rcJ1:9 B Rμ0p%Q]핁˄/Tq.KjxH߽Hk$:&;ɬP3niD<! S8"@#YGFˬ(ME B g q UHZF+@MC&&rV'\}/`bك^:TnP:tRʀצp20!gh4Sܩ(QLey2bCds /!}ZiiaYj`}n=yp`V]u@D6Yk)0Tƭf|a"KA;/wO~V$,L`T,G+̅7g/u{bMVD@L"d9M3K ao|Op@GyqCѿ${Q:B=XRB ,jXR$Û:NX#&U!PvXhQ`Ƨ`@)} (p^oa!,<ѵ>@#-+ ,,ALi94b &b;\ooI5Kx.l:܇ǂq& Af[AHQm LݼUţR"rL"hn*vBHlty^o_NրjIsiB^؝Wv `at$GԠ20y[^79v23 "-YƌR<[ӁaT||c$Dۿ"M+Ez3p| 8Y45s.R Jw "wV"e . *'n9Z>uS24rg{Fd$j j>V[cz 4P ƅҽ̌JmL]"3ae.|,>6<),f|F". b/_貘dX[hz,v*^02~!4L Cc(7Bd l#Kj Ff2(FBJt&PTZgCJy)uE5n%`:`y%Iba=q&> uE-˂{u8I Rzv0JUoxb;6W޲:9Dޕs@l\VO3",ȾKR\ݠQad?2FQ13#5l}z|1*'6VȲڏ$^`jvP#:w>YdI?``;hE\>W.)3pcM=息 ϰa*X – A(9Ql"`so Q [d'8ٴ\c"Z()׭^Շ =ۨ]n;0 CWfB1bVͷ@!@RtLnvYDƕڞ_( Eeo $,>w]}8{p.H)(B    N|ž{Ն2}VlKk3a]@K }haok!*ZǗG"RT~DW`vdOTԯ|?"#2ת|\2.#dd3LH2=4T-s}Meu#n}W_k/~mxܥ f6" @hlA@ŁaXoXLo Z8KЀ{i 1;lyQ|T1Bn57v`!4J)AwȨYbԘ4YM>hl P a3î.1R1xX#Fv' -8,6u1+ljomAb$Ѧ1KSYCoܿ=u?I$7؋ّcm )=2yvbN}JzBQc07RJ3}ŋϠs@3v$$[qP3}i ;Cdp8p1['g!~&s/z,Tsm|b18Fc1H["tKKSq%3xUZ{!⤕LT!q/ "K,eʅWQԝ &ՕԅE+J@MWGEm / 1|a MN2B#: >g71GLEs#waÀЃ7XYɴBoUǠRd@ Jaa!>Zb2ʷI&2u&h,:8dt2$EG!D:(ZVq̣ʗ L|\H [ MfsYɒ&b:R6 o 2`BU̍KeK^XaO񅁸-DP@K9HKx+ָXdFc}KQCA@W`m@,ys6ԐUj: $nIuKͧ)  Fs6"~ӧ|?gk)!b{neG QW˱qUp8oȦr\Rd11Q* ZR+pՄh=bӜa]Nuf)+ Aa}KBye%$ (>7[e3nl-!l-',f"<,# yȐ$p*ŲbwX}O V#O.$F ٱ&*/JۋFBܤ >ui[lHDz_jؾQ!p`#oVn&ByO"]~Q\g2l[d@t\{bic [&xI x4[x%M,Z(َl%+}S.0 N h0k@T&؀8!3K`H jثfCGRLBXKOTws'M [3+A2Jɖ3eu:7gM:сlZ=禨3.c+C%w|6'bW|SD>BYk=kVxHtN{3^d) %4OaHǤɀ Pnn Q7D"|.|Όb6խs{YFҳ7f | WԀI+)!N_pbȧȨ ǥ ]p_tXib^;2OMvdvKk!Ge܊`4T2F0b>$,Aeo,i"S yǂzD=GWQ==I4i su͜9d?WFLhh|#yK}*~tӆ 3CΒ=t:g͠r_bn UiNal}Mg3W-/Հ {vt>tPJnAN.gmlzYPaPv+ˡ nN>{ BP>jjmK+It+ɣ|`#B?M:榁^=Su>A"UA[Blͦ*=9j"fD!v,ZabC&6@L؜̽L pӕ"جLLG » J|_{aZ¦fm l0d:ߥ2.68&ʥ{^D´ L ǨyMl#2 A'7[T:6ZmMaR%_@\lm%tہ2#̷Ikf9VjL`*6`r]ʧ^f>xn U8qoM8 劌L1wilj<" pS&:f^}6}r`}Xb N\ [j&5h>1!X\禄n"ONd?"֪9#P4Aĉlr' U[DlنbIR[ 0m ["`fiw_tYW/ Dǁ`C%Q΅" = qґƬ [v ;!PSf3 wwF8.Ȟk0V@,L89`2=02Mo-7Ef~*DgnJxnVux r~fׄͺk3 [5\&3Fn#l*ȏ,0yn0uXNRtzUz zA-rߟrmh;Xb߳0!8d+QQ)H~a byǦk ~\m:FЛ'[Vm)wsiTMf-[rXaf@^-EK"xe;W±^n[Fb,̭[X4j *3+1r-D_${i'f0&k+VH2eMDJeg Qj,ᣥǑO, ZĔGw/dPM{;ݥ!I?\VEJ`~u`fgؐ }bwxh8-~{y>e%|-$󭜲0۱):PJٵ_q!#;*UWg^C% $Q:gZfU0s"DPXn?c͓Ӷ,ip$~C  z5^CƣxP sj1}H .}Z Ê1~x/ 4ba"+Ƥ kz9g.$l@Df7nMU%2C"+Sش 6B=U-(oznjӮ3DKk'ot\HAA3IJYVS.m檋,,Wm Bԣ{>;u>l| G'եke|l։ш=_˔(_wO˘#>^t2|Gh7}&{*s&u}_roCO_XI!Q pşl Ը| y:7h?G}7 Å:cs[ ? ,⟏sW6a#/7\xϧ{Ng>w!~kzL:`dĖD{_>rgX-хl?o=[C>m.O?˘-:w/S\QxFt$ ^ڶ<8ۏݼ3/Ekew_w] >rŅ:άx\}=b;~z]s|WxD_.j=+;BoX,h:xHwG7~CpϏ.GUxS񽗯'!\E>^Yi]~I^>w/<ܺd \sa!oI퇰])?pVdWo{GϿ\?yY2X^~0 W_y|?qp)ܸ?zb[ T:_u?T?{/>#ˋ8tio1?~<_Vﻗ|Y5Ǔ9R7{RqiK}+^w|Û=pa?q|Û_{ʊ_xM\/w.Ïw/^;~=OqN._(w)Fc(b Aٿ1s~D|bo;Gԛ09/ۏt*R`{/}{~q=~?;y*">>.9.1ZcVXCWʳw,&7 Bse-/Yc~fkؚwx[܅ RsǼ؄>Ö1 "U`]-ɉߓ6%%~s&.YU<_&mQ < w$TĿ4_w3ᓂjȰZgLDU.4YĎ2t `5HN-rQ3p\<`)Qځ=|9MI%C"xWm4:#eaH[qv6Rdui\*^ud}ܨ]wXجikYxW}3hc3P?f|QuE(k O0 -𖵤6e.Sz+%[$U<hmA] yrC ]r ld\j n^逝N?\)knQ$ʴS7Uu&%.\`=ABlQ&?B'"CL k N}^v¾BiDuM̟QRvQ,['ߌ;bVɳ)yҞʄee(g)KOYJgD _:͖X2'ZղsτgZjkV2܁zt(C:ma F)J2l+]?wgC0~D85xs˜;al3u6+x_VV<Ǐlެ1~QXm\r#xp,|fe f$?㬕1}*A)&xJy}$ /XH^$>wQAc{rL: lpr|}3G!p|!fxGp'(8߮>^>uX|zo{O_hB|ߣ0V=r菩ut/ CiZ`9i CɼM=jq[⣋V?ċ'b˷Gӧ2 D];C"H;E`o>;%3)^qxPOM`ÝfIw@NؔV0\`۪ogUt  섛x=NH}e=y,:?vk[Spn'Әf/snrS0ভ\a2`g˱Ȟ>|"ȳOO.ۏ/axkr}m=?+C+mG^񀆾;tPK O:crY"W-L4% fl:K E؈O7ۨ2:CV!㡄*`xPPuO'TIcsOKX:Nn RaHvHZu?{OLz]i(M/M,&7 ?,6'|PU-T/DôsLQס| ;={߱NyOmZ&t!9նn BxIIs#_Ӣdkx#,΅o)\R8Q;7PB&):m:L#N739ֻ1G:zg{BW`,@=΁bW.1YS)yhS59.TTp-VUq1&.[m2`36\vR\ 0tE, Wbar'ًԖ:ծ $9;\%y\O?ǡ\ؒ>Ktx=?"đq黎/}w ˎ2+}3?Lr~%m;>rE/Ɵ#:Y`# ~CxNy>Ā=x@~>؇]8_l7Dt{/(~12+w|!yS_AyD~h)YVcQ$B NEwFZhq"~]cC=ax;) B_)^%~0yROgK./8FFlso-tΕE \ mueKf#*{)kCݯ$eXQ֓ J'$IA=vqG|*8ص58cR֣$6YIhIqE ee^#<X6IK$;HB7ZXP&`.HQ:17%}r){LIRR )Ʊ=zD9KIX<lW%ے g"K@DtnHN31NR\, @uL ind[68p o撕wQel$R Aٽ?wzt S{j['Ed}Q[tR'wg+ cd1vVJ E=3_tFi)J.yFGZ#Kitf$\Jp0 Opw.t&b"vңƉ+pߢ:oСJjaZo$Ú-ߦemy[7Wv\XKrONĿ-( |wB _H=':y2& S~`mIqzX X Vtu(/%L{>kīme)xe7}Y0Ƭ267z{If% "X^z2Ub?%>U_X">+e٢+)ypJ'E4?[_Uȶg'iZfrx7~v$aev)+A_[J.ڞ=< L;<~-妵!j0+fC rsKȦidʋKWYYUW#|Eqzlk<οs+GA GNJ(a}' ƚI [-=^-bU`4r#ycS]ϯjlΦS= ]%e,+u͡E#qA1{TBҖޫx#LͨyJ1TvO2& lv.4|#lXruH% Ɲ?$OݥפﶋXgJ?ctU$,_*nRGig IdUlɏTU8@ˠ*/xu9AZzpS>iȈJ[11xg[8r5et-ۯJ O3MW]--{$mq+h޹p=Ew8 1x%’VOVg=I UYb-V_kCO4D(O*Xc}RfeWcX_j|A{f` p9S0iER ~,c"Iawn1㳎r; ,f0ӁH0qTy8«>"vW,ZS]C8+<ѝZBoՈT{3Gv6"էX]-q7X)W=zMzlh#hN +iW$`iWHY8NEY}xF+ xkAJ[\Fn+RmS5_a)gkm(dUצ˹K[;*%,Vֶ&[[Ay]OX!/nUM^!!N$_I퍶UwpA-MJ8 d.oXjZ oSvW+;[^vg~_Y$T+,5~˶ CMtvIov<}ف~Ey=;>²wpAwVˇmji(ye+}D Gczembh~L ; bG3|d( Lkpc;<)rhRr~6s.;eORg1vgS$a.t}Mj d'srvvY9̩/!Z}|f4 ZK}v8Ӓ/V)~EvtJ4ZMa麟iCS6=fgeZ2[UKa 񯩈ke#y'Bc3[~C =OlPXp(oF$g1j!Ah6I!d]K%)!yc[w6hp<vE,hWٲVbv~xz~#%gH7;7 $+I;v%穓vw( RR:!ݘ=e@:D9~MTON%a.cq`7Pv:Jyٿ[ yz7Vyh:?NO,Nh2DСmo5Ï LOtnكSh782-# WaۤƜ?QJ8T0tmIղ|`S=B1ڮW=705xKSa$\`H|]_ROP ˖g c$9?DbEU\+kyeyu^7*SY ꑤ| êN#oh绛)cnEpWQγ}S/,+n^IVgOX M}߰^-~|_K45V%9BZQv.T@RYo+ mvk{3 \ηvI[OKp,w B\v5Sf[kc"e"_ Pa{^~W#e%?:H@hF:tw4YLYi n 7)%|Ώ,n#G7Gt8E ;&!_a![=5L~{`C-D]C׎R*0%<x}Ly<<p̿Q!~?8Jz( mq_w;ZaҮ,GdvG >6/a&4VϷPOcKX)ҽ|Gxt-㛢=(DX>|Uq`,ݱ*?Wk k:%||d\ˁIgT%ߴީϩޯ="bѸev2;2/\8rY,u]ՄR;ݥ&V,X x/FU3ZIioa?)S*~O'm'HA[30' %7&o\@| X^- C[<*'9<_PekFӼcr-)rr7 (*֛O~L~ZVԔ|ZvG/?xe ;p<0XDY`? bG/0CHNBZW] {8Ic\ WmtX sw-3T\,|+JxBxHcgpƿ^' #ʰWXo3J!H~6LkzR8]kvE3(or _ $W'wB`=P܁#R`O5w]. 5o^C7,;=;,x1׽|*|kTz6^ S5q.*a=_=;I|Mz]= p##arz]U kizQnyٹ2))X-.ɠhǠ4d&윆5kj9?ATIHj-B$ñ@֦%@:ӕ<9l0"N 1¾ͮ{[G5t`=1RPkxVH>q`RG/<0 iZ]Ȏs;?\m" 5,V3};{Eu Sœ)N0ܭ{CbY AѦTv1;ݣd&0;/tֆ #4nXGfKúGA"^ 'JᎺFv$hﲌg+ns܉OlWe7{o4HE`ҳm;]NT1RrQ}/5'IQ ODoAeڇX~R(G`vOXw_f>F6Z5 fӲ-oPF+m{%ҪrMS66 ZYÍ_0n\Yee32+@;,yvA ՂP;!JeW†9VCE.uEV(%}lFU17.>dǞўh@ffYşRތwʚdWJa^tOg\og@N, tr -%z.A3vƶ2!F(KB*hNO9=~D6lHId[˚*"dg_c]>;4 `VXS9 5VZR.Q s)a=d;emo0t7koX_P7=3 Kcɷ+\ز((*&VD F{]_T0rT.I 껼\5"X=^QEK5R}#FH  J_Q*eݳX7,~JjesF`<9GI?<2ZUpKf^5%?}uPQ2c R!r,@ܨG5CgvnVtp/``5\YG`5dV:UrӒl6$G`(-F{FjW48֒&dag1p|gHXjuHszq(&*p< HeWᖨVj4w.=J GN#& a1nW#P ~a.Vʬ6 X c!h(+QBh.¨4j%̖, ZԠXQ+ARl/a0#pc EXG b&jJec툺jڰAfRAEnU< N`FiY9q 6n= L  I![]EJd`iP0B,lB%kIr(B P1W_ oJP̀[+q>J\l]fgYu h|9rAY04/F%ep`8ݔʈ+x5sX0B_Pu`FK HN+ tF*ւF!&{l!UY4nb9Iݲ:EF?Q5c,nЛgq9}[~_ȿOg錄Q*VbDV=ǖҧ?uzG\/zƑD3$5ܔG  S*H\w8 zfXwܪI~J|U :&lCVe-Չ Lf,7%a 9X5[j': aK@%iQ'Xʅ!}%;*@U{Q)poaK??j=P*+x~+nl`"%o>0"4a=]2qQWPRfP7%nGg`ER]ơTQ@$跔HDwU56HA΅`}(ƈB42+3,0C?JQ:+%FT-&&8 e\I{[]>P_U,;խ\#W% %,Gx+i5 1?\j0.V0S3*(ِUw+PIzsQؓٵ~E\- }^ŎBhp~ߒocII&(U0qQ{:~.%nƬ[ !(gKS}D\>zʫ6hr\0nިڠǭ)oa Ғ!5uς "_W?'SΕsu \zU.[hl$t9Ē解<B{q=}*a&h±୭nAĿeㅩx3| 3dOeCwZפk#31j%UTonj[>HfUʆV3yҕ`]v7Sd*\Ad꾞/|]7WL6|MX½6ϫwO%kbh0a"ȣV ~.ˬg?=گ&CAfip9?ә>(O/[e&31 : +٘acW1ǿ/,LS(K!9 ?ùcٖ#vN/\X .u?pJ\FKXʘ\!˕jύ YGO;P.cumVK?_f"%ϱ_R"wp,{ߺ4ABVC-4^߈WsM+5u*ffR`*b Ъ >XjWjA^ 1x+Bp|_Kׂ7Pv~ ,tjG/`jZp?1LxiPn-OBoS]Z9+i_ ۜ*JJF X( :\\nm4{X8x^e{1mh,3QIF9i\T1^۶Һ)3)j;UKwxAG8ƺU:%*~h$i΃*En[["IY;XH"*l~%jfSxD);]t=Ĵw/W@=?[Z(:rkX1`tז֪=, -LwJL,6 y1e Pi*7wXe6i/ݤN1^U^ +ws(Ie,A>]RR'5J@4{tv{eXSg'ݗu)O WnBk_DtoMI$kPiA<4R]C](YNjh~;DG_{j[E OGtCpq0SdJ?5U]EMc*]|>Cjb3P:c>*B^E聿)Qjf0]I ?OFas9lTÊ4v,|uzP待rnGv5;&> )cц kebgOUin؟f"xIz?S+YOڈe .Vt=}:!||]u{G*^vDTb` fE 5 _k)bK}9zW}x\B|Ϋ64҉hQ&5g ?/1줓}CO+å TMߣ/jR4R8J-䯵Os݆\?o*BV^Tr;pL+WrU %@U_YJY!)" xJK?X:Vp15+L^m0N#C 0g%FPr? 00߈0P@ݍ@+X{5CT5$( $\aZ osKt/R|%@ suN`ܕ`@+l fD5Υ~_O#M[kQ堞Av5SO&=+prPwavGB+tKT S#*tV¥EX4 iG`!bOewk 4-` a"bL)YvNi ƞgoV9pruT"?+ k&ЎuVgsV2xG)T,]"އ]}+fؾϵ gmfgHwuIT%%L=^*իr3Lx)KtG}ݲnv5ѫ1`bI,v a/1/;I4Xx*jBaNF؞Š{_j1a׼"ZTV3G |rbZq^)4s.5Qmhe~[o{@ubrsXkz锏5+nl0bUAt + Auܑ'Ε&otߙriITvf5~cS=K͐]]6]C}{e|Toӻn[=r`tܾͩCu*;`5}%_s8Ua&(/m$#I]c^So?=K+1[JM tfT.V`22}@ʫ/@| w!VC[Ƀ3]4_nm7Ho>1ep]ib* k&-"rF]6!;J 'ӊo%'].qUQIRKS*{'l%SoN&m % : zC,G$KMXLmɓӳ6 /+RCvZ9awgzI dfkBzrzx&8pW X-Ӯ~gg˵ӯjDR- mc P400¾m߱U4 /߾ `P%u0Ұ8 KU!,0q̇[n 3Raf_A@JX4~K5=ԗď[d{E4^rtZj@Wd'܍KB2+-Rc0Aϫ^}C]:iOYK}ŎKZwŶqǺRe%miGz8]LJ5~e8v5w|o٬ 2O}SsZXԨ%{n\ \!E 1{@P*Kl/Z3y?x}RٔC7  iجͼTC\9Cww̶W5c]ygfb5ec)< M[zx< 6vzzT?met ؂,3Gea?y䊐D4 ))]̟I\c=K]T(Fk)G(aӍi wu*YQA!8Bc=#Q4)m歭L o䦘?(a#5 ]7 u^v nX)a 3ZhWoXZ*^v/]mc(Zf/ҹϺ\pۦO5Ks~znbP8 xmÍs+ 7.S}~˲Rjlɶil+= W\yz)T.gJ\v[3ZU_̬e{Rƶe ?zZS `bȏ7eE` EYSEY`톢 "(2E~Tp= =tsxJUDxE7Ϸ1 :lhd| )FP1MlG{eDžR\8aы>?}3`=놡'۝t֔Ypdn`oe0/ n.aIݷ=kߢl{2JRD^̗!|_Irg?#̤ػ9?f?˶f?zUuQ܊tl,tҼ xuȋ&` #A $JPb}D '~SDrj3 !8@4mj)ّ,/*8.fNu[O(oGmY/*qHlzyN?3ѧiOu<qqzO;+dF弄B=bX:rvtqXHOmإm> 6T_֭uȊSt%zoa" ƗYc/ꐋpOӖGoެǪ0e϶ [.ic-3hv x]]7-KJ)KtI;T|z9ox.Wo( nܱ\`esst]Blpάq0F[mL!+6ؽysn٘Uri:'<Ϲuj)~a |íK"n4A+R l FF}Y-~iܜ+tR v~ωw7Y,`~$)҇lda@ErRR++`tcYa%|V͒˂[ JE-bVD<mT%@5DbU8;1?|ۡFԁI<  @84$'Cfm%\+؃A|SHRI)*=XTժY`YIV$K:|\띁f߹N]?x|RYmw.O3ӇBjAR全 i>m~NL ]e&oSzd,b('x&=)!WB SY%̙c"N{[P¼[[Ŵ[kңŢxJXB[lpk&4"y68nڝٲN|̈́iENһu3#u>fձrJ:4,we%y~x ,p+# de>  Pu9L62:O\ft}Og؈?C[8JjVSBęVҮv&k;-9µ-ĸ:kWSB 'G˷(a3ayzBN41#Y(y4߰h/hG-ɣm̶WNdݠ`',\qAEljj,!,` zoVp7y)zV7=]y9Y`#T%\a|*Q(aiesK6VGFp0ڡ^L,=&wږV[afm;4j+oQWkׯ1&|Mݨy< ]l+y&,x*&NfPXޠvåQn "%fmlJ֔T Uޤ |lSOޢ8)p.ji̸ᘍ&e-VJ6]ȳ_ӧmv )|UvbRd{3i^b C&J~Z.D)mnjnukS&73X7昞IsG=tt-'w]imq+R#)w2{B,όQ6Y.{-wي.-tvޙ.Q 3dIBPA<S8z~#,=!8,A1צF-G]حXfru Z(^2|'tu׏>堊/&ڙYQC`Rf]7T5}DL-|πͮvzo9ĭa؅`di]}Sa::&̧ږmr %]ESO) Tl-Y7'P2TiyYou%,z/Sz$d_IJ|MYp=@7|7YÏ=xcSUa&@)kWґݲ'!@[ZԪqow%5oHL;ZboYu=_A(mVҕoF.S?e/Oԍv[mk~XRJ"qYd׍%/%isĸvxvߎKY@gc$^2vIEiK#':ځaGh`?.YDgNa#t5#vvÈaKF-m ]vmO[;#7uUD¶]2b͠_Ka+S^J kG쟚:ӥ2 ,kVբ'(aU󽜎lG'-a1kkI1eCHQ\8LӓV+)ӗGk4eȣ2Zh#] 3Tg\xP$vA8B bl"sQL${uY:ꡤs5>cd8<lNoyXՒn3ƌl 69wxI&'0m'5(aW_y}=#Ǻy*l;F,aU04766c6@ {GN&Tv~^oDW|*ļ xZC- _D'F%OzRN7O9ҁ옓]a/Qɋ;b¢YgO9Ӂ _ ]vٔcpULݵN %l2gzے]!|]E2xkub_(&l-x/|mI[[)'Om2O3mprҡNT YBO99_+%/$&;e䕝{#ۃwMYڄW-) [QPoRvL݊:I[|ExN>ٕ.J89ymS<+vӕ<:"zCmux8{cqJ lJ^ɛZQRŒ)Z-QºɧRa{VM^ƒOj.]S$@e(+,vA;ݵvS`,U퉖T.r;CQf.M>ee In_}RǴŢ)[w}]=m1kʱԾ9J4oJoV>HK&~B:ԅJ%Wcm]ZL|J ''㔉MwKgY82^Ywvʆ'%7L $U rVKVPe̟o+uͪkZtOw]{/LY?g$b+L|ըGelDs|D jguXؠ习WN^sӥb BN`_fr#3QY2rV fi3NCr^$г!Xlt8ct$ɴ ?kFsDt2|cE t8}l#x;.„תdIMY!/C5D1UÓF1~;SQS*c'[wHk&Sl ) ] P? `Kzv .ƿ_)EZը[be,U3 Ʌtі%5AT7D5oFjӶگj =2\\UWzݭ 'JsCWm,S0 t'98e,h2yEj_#ĿWsԖTᢉPd (e̢.cTcnX ׻1| az9e!B%Ԓ.̈Ye!!tX\YYPCwBZ5S1}wh63+2u~g?)NIKypʪ[{'&o;<ר~Xnl򠣻_tLi*o0חs4X,ak^vFnyT܉`YV_tףQk(Vfg;c9S }P(}\1kzUOipqdC~Q }!zF!5 ou[MC-[VГovtݓډ|CI+sslh~T&_džlx!@zj]%^ķNڐ'_ذI8Eo uTy.tоrMS5cfFff&Wn UNNFߣ-˶pOUz4 ~à Kk(E=L[d9H !_Mcc 7WC`%o\_ѥ/AJZ5=e91>0w}ǧ">Z7ar8XU߽ʲx5?x}G\r"RuJK!1-Z$)`XިhxE'@w {6y>ER~۠uUo5JR~&Sx#s%X٬xZ/f r<=ηxRvӮK>8l\).Lװ?gȷ}=?M6pWC9o) yEMꀻu[mxMŠUx8W/T,w|XJmT y; y^{ME+y@|g]|!h^Kpi]2ہ_0Wa1B.DvUpYUIp7ҙy/R(֛}_?SPl*odb!r<5`*^ʶ~_,HU<.%͇ȕ@Hq'M C-n>RKpSVM3ÚɯL>N`^S01Te*H=l4ME 4o3+>r[aTljJey T}]Rf.JkSdL[ZBZ*cdM#TE-ЫX 83pCNi`]Y-~%MA<󒛺 ;,6{)MJXdpӛr'eqȂE VXsBwTˆW_~ԘXրM^jǒ u.`ItͣnzvJp968<\xZ3bEC sO!u -T[7ԖjoqM56qW[;%-e`cMQ¥jxG[ PҮZ+vew~jSlwZ+xv;`5?f>'e FyxP g2<b  AL0ƲԢY{) Xbִ!]pAݓfh9\wv$owY+>(s|l<`A)x=?~RY`Ueb_d|T WHVC:EzZIKu֞ J&JHYpDPw^S#ZLE!2t6B[?"}a|9$ۼNY62FC<ʹmE+0xUJB ţң*%5J%5JxaJ6J(=%˛<%,01V[E 5-JXw;R6A'\A&tA. oR+g+)- O~M b] 紒ikQ\֪>3&U JǘE yŠ4z~JZmqF/D8&CQ<DƎp 6'Kt@fK>=%@% ,)[N8eZ4!ٻ/\ŗBvۂQI[˓PYw[Ok)tauvš\;amp<0o)aȝ-´*!|W:9%K 'nHǘN OSol!;9ַؽf Zj{J89~j R`%mvpaVJlJX8~i Jw۞>s(/OJd3%vL%7 MF ͅCSsQz㭮ޠmWc _@H$%,jo>ٕ%|۴6>~jZ&^C{(a-R–4poRZBVxǐIJXr{m+rÜa?%̼qQ+}J{2/%fo0K" %l}:hE@Rgš-aN+EaCvu_O_z2Ĺ˙i޿Q¼q+gƭ+ӶlQ¹0)K n:0u9#=Qޛ֘6$Kf$%iI+䋶~ӂjkqNuP[ح+MnVj]!0:9>C '1U"Ƴm1i=QGdKÏߴIZ-η|Y9L݉t/PI{Zjmk5a6>cmSWRꝸEN\"\ntXm_?3oksw Mxp%O]IK7fR±({:U CjK(wI-]|m$#p4nٖeܔ-l9`!~q$$,oOj-N8"̣e?;"\k6J3zLF[l:(0ᄚ4|@tQ0YiNc9BF]PpQ9ՔtID8DJD(CDҊmHDHDDnFC\7yys>6I״ Qi?C3N~2%>GP%Z~!4BʁogG28 GxvY…9o=c(QUT^˗tyr#m`B76n@{c2c>j}bIp +ͧ01Nie)3!cNL<`B+5w3n">o1[ْI벻Qowwj{AR.%YS=(QTW._|ȩVZFŶF]X}qw: ֑-O],чͅUC ȳz8_ȞjrF/geU]`[ 'F8D0m2$FoH' c2$DwDE̫B H8} Fb5 (] pGL^۩@p(?(SAu~5w)^`2ox Y_k=UV5K@0#MX0#4WlxA{C0\Go"h7/Z(Y-rYڳo >+^=^\-!g5&SȨi_!hc/Pd2y];T.B`$l,nË 1³t|Zh%iVŢ=z $ \ZRZPJj*nNّ%r0FgԣGPVJ\,NwSjmsw;jS':B 8lr  6mFRW{yKgSmd77nvGp1ٕD QUB I~'$S>MjN6v`]jmWP^Ro;0|9;m *E5Ջ[8,?R'6WTf90\&> =5?ٖMËYr;K]+0*TzWV8$7z6j|wo.V:ZP_[ fYG iET@K P%UR "3FtFQ@`pry "7 20 (2{\A0`*㜏Q98?"X5tA@zF1>i%"t5%&KU,`S IWZXb 7>s 5QbpMhQ$?(ӏR9`,w¯#| n"1b0+45Kcd[Bsx mɩA!(+Fpȸ%nfjWb:ta Zu0zGHUBRA]9P I2س GP_%N>A(8˛"p$FX ;itXz&>~M@0l xc+zUGV`x= 9W^i_2܏xr&JK5XBp$aoTEu#R_DB͠K*dl\M"4`Qu.UVR7K6)N5佾$\Rg_{53V1o~{^~$3FY~g\KҌwbtilelive-vector-0.1.3/test/test-c.xml000066400000000000000000000017531217155126300175410ustar00rootroot00000000000000 -180,-85.0511,180,85.0511 0,0,2 png8:m=h 0 8 1 coastline tilelive-vector-0.1.3/test/test.js000066400000000000000000000365251217155126300171420ustar00rootroot00000000000000var tilelive = require('tilelive'); var url = require('url'); var zlib = require('zlib'); var assert = require('assert'); var Vector = require('..'); var path = require('path'); var fs = require('fs'); var imageEqualsFile = require('./image.js'); // Load fixture data. var xml = { a: fs.readFileSync(path.resolve(__dirname + '/test-a.xml'), 'utf8'), b: fs.readFileSync(path.resolve(__dirname + '/test-b.xml'), 'utf8'), c: fs.readFileSync(path.resolve(__dirname + '/test-c.xml'), 'utf8') }; var infos = { a: { minzoom:0, maxzoom:1 }, b: { minzoom:0, maxzoom:2, maskLevel:1 } }; var tiles = { a: fs.readdirSync(path.resolve(__dirname + '/test-a')).reduce(function(memo, basename) { var key = basename.split('.').slice(0,3).join('.'); memo[key] = fs.readFileSync(path.resolve(__dirname + '/test-a/' + basename)); return memo; }, {}), b: fs.readdirSync(path.resolve(__dirname + '/test-b')).reduce(function(memo, basename) { var key = basename.split('.').slice(0,3).join('.'); memo[key] = fs.readFileSync(path.resolve(__dirname + '/test-b/' + basename)); return memo; }, {}) }; // Additional error tile fixtures. zlib.deflate(new Buffer('asdf'), function(err, deflated) { if (err) throw err; tiles.a['1.0.2'] = new Buffer('asdf'); // invalid deflate tiles.a['1.0.3'] = deflated; // invalid protobuf }); var now = new Date; // Tilelive test source. tilelive.protocols['test:'] = Testsource; function Testsource(uri, callback) { if (uri && uri.pathname) uri = uri.pathname.slice(1); this.uri = uri; if (uri) this.data = { minzoom: infos[uri].minzoom, maxzoom: infos[uri].maxzoom, maskLevel: infos[uri].maskLevel }; this.stats = {}; return callback && callback(null, this); }; Testsource.prototype.getTile = function(z,x,y,callback) { var key = [z,x,y].join('.'); // Count number of times each key is requested for tests. this.stats[key] = this.stats[key] || 0; this.stats[key]++; // Headers. var headers = { 'Last-Modified': now.toUTCString(), 'ETag':'73f12a518adef759138c142865287a18', 'Content-Type':'application/x-protobuf' }; if (!tiles[this.uri][key]) { return callback(new Error('Tile does not exist')); } else { return callback(null, tiles[this.uri][key], headers); } }; Testsource.prototype.getInfo = function(callback) { return callback(null, this.data); }; describe('init', function() { it('should fail without backend', function(done) { new Vector({ xml: xml.c }, function(err) { assert.equal(err.message, 'No backend'); done(); }); }); it('should fail without xml', function(done) { new Vector({ backend: new Testsource() }, function(err) { assert.equal(err.message, 'No xml'); done(); }); }); it('should load with callback', function(done) { new Vector({ backend: new Testsource(), xml: xml.a }, function(err, source) { assert.ifError(err); assert.ok(source); done(); }); }); it('#open should call all listeners', function(done) { var v = new Vector({ backend: new Testsource(), xml: xml.a }); var remaining = 3; for (var i = 0; i < remaining; i++) v.open(function(err, source) { assert.ifError(err); assert.ok(source); if (!--remaining) done(); }); }); it('should get info', function(done) { new Vector({ backend: new Testsource(), xml: xml.a }, function(err, source) { assert.ifError(err); assert.ok(source); source.getInfo(function(err, info) { assert.ifError(err); assert.equal('test-a', info.name); assert.equal(0, info.minzoom); assert.equal(8, info.maxzoom); assert.deepEqual([0,0,2], info.center); assert.deepEqual([-180,-85.0511,180,85.0511], info.bounds); assert.deepEqual({"level2":"property"}, info.level1, 'JSON key stores deep attribute data'); assert.deepEqual(1, info.scale, 'JSON key does not overwrite other params'); done(); }); }); }); it('should update xml, backend', function(done) { new Vector({xml:xml.a}, function(err, source) { assert.ifError(err); assert.equal('a',source._backend.uri); source.getInfo(function(err, info) { assert.ifError(err); assert.equal('test-a', info.name); source.update({xml:xml.b}, function(err) { assert.ifError(err); source.getInfo(function(err, info) { assert.ifError(err); assert.equal('test-b', info.name); assert.equal('b',source._backend.uri); done(); }); }); }); }); }); it('should use fallback backend', function(done) { new Vector({ source:'test:///a', xml: xml.c }, function(err, source) { assert.ifError(err); assert.ok(source); assert.equal('a',source._backend.uri); done(); }); }); }); describe('tiles', function() { var sources = { a: new Vector({ backend: new Testsource('a'), xml: xml.a }), b: new Vector({ backend: new Testsource('b'), xml: xml.b }), c: new Vector({ backend: new Testsource('b'), xml: xml.b, scale:2 }), d: new Vector({ backend: new Testsource('a'), xml: xml.a }), e: new Vector({ backend: new Testsource('a'), xml: xml.a, format:'png8:c=2' }), f: new Vector({ backend: new Testsource('a'), xml: xml.a.replace('png8:m=h', 'png8:c=2') }), g: new Vector({ backend: new Testsource('a'), xml: xml.a.replace('"scale">1', '"scale">2') }) }; var tests = { // 2.0.0, 2.0.1 test overzooming. // 1.1.2, 1.1.3 test that solid bg tiles are generated even when no // backend tile exists. a: ['0.0.0', '1.0.0', '1.0.1', '1.1.0', '1.1.1', '1.1.2', '1.1.3', '2.0.0', '2.0.1'], // 2.1.1 should use z2 vector tile -- a coastline shapefile // 2.1.2 should use maskLevel -- place dots, like the others b: ['0.0.0', '1.0.0', '1.0.1', '1.1.0', '1.1.1', '2.1.1', '2.1.2'], // test scale factor. unlike previous test, 3.2.2/3.2.3 will be coast // and 3.2.4 should fallback to the maskLevel c: ['0.0.0', '1.0.0', '1.0.1', '1.1.0', '1.1.1', '2.1.1', '2.1.2', '3.2.2', '3.2.3', '3.2.4'], // Checks for ETag stability. d: ['0.0.0', '1.0.0', '1.0.1', '1.1.0'], // Checks that explicit format in source URI overrides map parameters. e: ['0.0.0'], // Checks that format in map parameters beats default code fallback. f: ['0.0.0'], // Checks that scale in map parameters beats default code fallback. g: ['0.0.0'] }; var formats = { json: { ctype: 'application/json' }, jpeg: { ctype: 'image/jpeg' }, png: { ctype: 'image/png' }, svg: { ctype: 'image/svg+xml' }, utf: { ctype: 'application/json' } }; var etags = {}; Object.keys(tests).forEach(function(source) { before(function(done) { sources[source].open(done); }); }); Object.keys(tests).forEach(function(source) { tests[source].forEach(function(key) { var z = key.split('.')[0] | 0; var x = key.split('.')[1] | 0; var y = key.split('.')[2] | 0; var remaining = 2; it('should render ' + source + ' (' + key + ')', function(done) { sources[source].getTile(z,x,y, function(err, buffer, headers) { assert.ifError(err); // No backend tiles last modified defaults to Date 0. // Otherwise, Last-Modified from backend should be passed. if (['1.1.2','1.1.3'].indexOf(key) >= 0) { assert.equal(headers['Last-Modified'], new Date(0).toUTCString()); } else { assert.equal(headers['Last-Modified'], now.toUTCString()); } // Check for presence of ETag and store away for later // ETag comparison. assert.ok('ETag' in headers); etags[source] = etags[source] || {}; etags[source][key] = headers['ETag']; // Content-Type. assert.equal(headers['Content-Type'], 'image/png'); // Load/draw stats attached to buffer. assert.equal('number', typeof buffer._loadtime); assert.equal('number', typeof buffer._drawtime); imageEqualsFile(buffer, __dirname + '/expected/' + source + '.' + key + '.png', function(err) { assert.ifError(err); if (!--remaining) done(); }); // fs.writeFileSync(__dirname + '/expected/' + source + '.' + key + '.png', buffer); }); sources[source].getHeaders(z,x,y, function(err, headers) { assert.ifError(err); // No backend tiles last modified defaults to Date 0. // Otherwise, Last-Modified from backend should be passed. if (['1.1.2','1.1.3'].indexOf(key) >= 0) { assert.equal(headers['Last-Modified'], new Date(0).toUTCString()); } else { assert.equal(headers['Last-Modified'], now.toUTCString()); } // Content-Type. assert.equal(undefined, headers['Content-Type']); if (!--remaining) done(); }); }); }); }); Object.keys(formats).forEach(function(format) { it('format a (0.0.0) as ' + format, function(done) { var source = 'a'; var key = '0.0.0'; var filepath = __dirname + '/expected/' + source + '.' + key + '.' + format; var cbTile = function(err, buffer, headers) { assert.ifError(err); assert.equal(headers['Content-Type'], formats[format].ctype); if (format === 'utf' || format === 'json') { assert.deepEqual(buffer, JSON.parse(fs.readFileSync(filepath, 'utf8'))); done(); // fs.writeFileSync(filepath, JSON.stringify(buffer, null, 2)); // done(); } else if (format === 'svg') { assert.equal(buffer.length, fs.readFileSync(filepath).length); done(); } else { imageEqualsFile(buffer, filepath, function(err) { assert.ifError(err); done(); }); // fs.writeFileSync(filepath, buffer); // done(); } }; cbTile.format = format; sources[source].getTile(0,0,0, cbTile); }); }); it('errors out on bad deflate', function(done) { sources.a.getTile(1, 0, 2, function(err) { assert.equal('Z_DATA_ERROR', err.code); done(); }); }); it('errors out on bad protobuf', function(done) { sources.a.getTile(1, 0, 3, function(err) { assert.equal('could not parse protobuf', err.message); done(); }); }); it('same backend/xml => same ETags', function(done) { tests.a.slice(0,4).forEach(function(key) { assert.equal(etags.a[key], etags.d[key]); }); done(); }); it('diff blank tiles => diff ETags', function(done) { assert.notEqual(etags.a['1.1.2'], etags.a['1.1.3']); done(); }); it('diff backend => diff ETags', function(done) { tests.a.slice(0,4).forEach(function(key) { assert.notEqual(etags.a[key], etags.b[key]); }); done(); }); it('diff scale => diff ETags', function(done) { tests.a.slice(0,4).forEach(function(key) { assert.notEqual(etags.b[key], etags.c[key]); }); done(); }); }); describe('cache', function() { var source = new Vector({ backend: new Testsource('a'), xml: xml.a, maxAge: 1000 }); var requests = ['0.0.0', '1.0.0', '1.0.1', '1.1.0', '1.1.1', '2.0.0', '2.0.1']; before(function(done) { source.open(done); }); requests.forEach(function(key) { var z = key.split('.')[0] | 0; var x = key.split('.')[1] | 0; var y = key.split('.')[2] | 0; before(function(done) { // Request each tile twice. source.getTile(z, x, y, function(err, buffer, headers) { assert.ifError(err); source.getTile(z, x, y, function(err, buffer, headers) { assert.ifError(err); done(); }); }); }); }); it('lockingcache should singleton requests to backend', function(done) { assert.equal(source._backend.stats['0.0.0'], 1); assert.equal(source._backend.stats['1.0.0'], 1); assert.equal(source._backend.stats['1.0.1'], 1); assert.equal(source._backend.stats['1.1.0'], 1); assert.equal(source._backend.stats['1.1.1'], 1); assert.equal(source._backend.stats['2.0.0'], undefined); assert.equal(source._backend.stats['2.0.1'], undefined); done(); }); it('cached tiles should expire after maxAge', function(done) { source.getTile(0, 0, 0, function(err, buffer, headers) { assert.ifError(err); setTimeout(function() { source.getTile(1, 0, 0, function(err, buffer, headers) { assert.ifError(err); assert.equal(source._backend.stats['0.0.0'], 1); assert.equal(source._backend.stats['1.0.0'], 2); done(); }); }, 1000); }); }); }); describe('reap', function() { var source = new Vector({ backend: new Testsource('a'), xml: xml.a, maxAge: 1000, reap: 500 }); var requests = ['0.0.0', '1.0.0', '1.0.1', '1.1.0', '1.1.1']; before(function(done) { source.open(done); }); requests.forEach(function(key) { var z = key.split('.')[0] | 0; var x = key.split('.')[1] | 0; var y = key.split('.')[2] | 0; before(function(done) { source.getTile(z, x, y, function(err, buffer, headers) { assert.ifError(err); done(); }); }); }); it('backend should have a populated cache', function(done) { assert.equal(Object.keys(source._backend._vectorCache).length, 5); done(); }); it('backend should reap expired tiles', function(done) { setTimeout(function() { source.getTile(0, 0, 0, function(err, buffer, headers) { assert.ifError(err); setTimeout(function() { assert.equal(Object.keys(source._backend._vectorCache).length, 0); done(); }, 500); }); }, 500); }); });