@unovis/ts 1.1.1-beta.6 → 1.1.1-beta.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (710) hide show
  1. package/declaration.d.ts +1 -0
  2. package/index.ts +1 -0
  3. package/licences.txt +43 -0
  4. package/maps.ts +1 -0
  5. package/package.json +1 -1
  6. package/rollup.config.js +71 -0
  7. package/rules/ts-getter-setter.js +35 -0
  8. package/src/components/area/config.ts +29 -0
  9. package/src/components/area/index.ts +133 -0
  10. package/{components/area/style.js → src/components/area/style.ts} +9 -10
  11. package/src/components/area/types.ts +2 -0
  12. package/src/components/axis/config.ts +76 -0
  13. package/src/components/axis/index.ts +363 -0
  14. package/{components/axis/style.js → src/components/axis/style.ts} +27 -22
  15. package/src/components/axis/types.ts +4 -0
  16. package/src/components/brush/config.ts +51 -0
  17. package/src/components/brush/index.ts +233 -0
  18. package/{components/brush/style.js → src/components/brush/style.ts} +15 -14
  19. package/src/components/brush/types.ts +8 -0
  20. package/src/components/bullet-legend/config.ts +38 -0
  21. package/src/components/bullet-legend/index.ts +104 -0
  22. package/{components/bullet-legend/style.js → src/components/bullet-legend/style.ts} +18 -16
  23. package/src/components/bullet-legend/types.ts +7 -0
  24. package/src/components/chord-diagram/config.ts +53 -0
  25. package/src/components/chord-diagram/index.ts +401 -0
  26. package/src/components/chord-diagram/modules/label.ts +155 -0
  27. package/src/components/chord-diagram/modules/link.ts +91 -0
  28. package/src/components/chord-diagram/modules/node.ts +80 -0
  29. package/{components/chord-diagram/style.js → src/components/chord-diagram/style.ts} +39 -30
  30. package/src/components/chord-diagram/types.ts +68 -0
  31. package/src/components/crosshair/config.ts +48 -0
  32. package/src/components/crosshair/index.ts +220 -0
  33. package/{components/crosshair/style.js → src/components/crosshair/style.ts} +12 -12
  34. package/src/components/crosshair/types.ts +15 -0
  35. package/src/components/donut/config.ts +65 -0
  36. package/src/components/donut/index.ts +148 -0
  37. package/src/components/donut/modules/arc.ts +86 -0
  38. package/{components/donut/style.js → src/components/donut/style.ts} +20 -18
  39. package/src/components/donut/types.ts +17 -0
  40. package/src/components/flow-legend/config.ts +31 -0
  41. package/src/components/flow-legend/index.ts +103 -0
  42. package/{components/flow-legend/style.js → src/components/flow-legend/style.ts} +25 -21
  43. package/src/components/flow-legend/types.ts +10 -0
  44. package/src/components/free-brush/config.ts +54 -0
  45. package/src/components/free-brush/index.ts +207 -0
  46. package/{components/free-brush/style.js → src/components/free-brush/style.ts} +12 -12
  47. package/src/components/free-brush/types.ts +8 -0
  48. package/src/components/graph/config.ts +280 -0
  49. package/src/components/graph/index.ts +809 -0
  50. package/src/components/graph/modules/layout-helpers.ts +96 -0
  51. package/src/components/graph/modules/layout.ts +502 -0
  52. package/src/components/graph/modules/link/helper.ts +105 -0
  53. package/src/components/graph/modules/link/index.ts +302 -0
  54. package/{components/graph/modules/link/style.js → src/components/graph/modules/link/style.ts} +45 -34
  55. package/src/components/graph/modules/node/helper.ts +162 -0
  56. package/src/components/graph/modules/node/index.ts +343 -0
  57. package/{components/graph/modules/node/style.js → src/components/graph/modules/node/style.ts} +72 -52
  58. package/src/components/graph/modules/panel/helper.ts +160 -0
  59. package/src/components/graph/modules/panel/index.ts +137 -0
  60. package/{components/graph/modules/panel/style.js → src/components/graph/modules/panel/style.ts} +42 -32
  61. package/src/components/graph/modules/shape.ts +108 -0
  62. package/src/components/graph/modules/zoom-levels.ts +6 -0
  63. package/src/components/graph/style.ts +72 -0
  64. package/src/components/graph/types.ts +152 -0
  65. package/src/components/grouped-bar/config.ts +40 -0
  66. package/src/components/grouped-bar/index.ts +325 -0
  67. package/{components/grouped-bar/style.js → src/components/grouped-bar/style.ts} +15 -14
  68. package/src/components/leaflet-flow-map/config.ts +60 -0
  69. package/src/components/leaflet-flow-map/index.ts +279 -0
  70. package/src/components/leaflet-flow-map/renderer-utils.ts +14 -0
  71. package/src/components/leaflet-flow-map/renderer.ts +146 -0
  72. package/{components/leaflet-flow-map/shaders.js → src/components/leaflet-flow-map/shaders.ts} +4 -7
  73. package/src/components/leaflet-flow-map/types.ts +18 -0
  74. package/src/components/leaflet-map/config.ts +234 -0
  75. package/src/components/leaflet-map/index.ts +808 -0
  76. package/src/components/leaflet-map/leaflet.css +625 -0
  77. package/src/components/leaflet-map/modules/clusterBackground.ts +34 -0
  78. package/src/components/leaflet-map/modules/donut.ts +37 -0
  79. package/src/components/leaflet-map/modules/map.ts +178 -0
  80. package/src/components/leaflet-map/modules/node.ts +208 -0
  81. package/src/components/leaflet-map/modules/selectionRing.ts +63 -0
  82. package/src/components/leaflet-map/modules/utils.ts +290 -0
  83. package/{components → src/components}/leaflet-map/renderer/leaflet-maplibre-gl.js +76 -78
  84. package/src/components/leaflet-map/renderer/map-style.ts +24 -0
  85. package/src/components/leaflet-map/renderer/mapboxgl/mapboxgl-dark-theme.json +35 -0
  86. package/src/components/leaflet-map/renderer/mapboxgl/mapboxgl-light-theme.json +35 -0
  87. package/src/components/leaflet-map/renderer/mapboxgl/mapboxgl-settings.json +2185 -0
  88. package/src/components/leaflet-map/renderer/mapboxgl-layer.ts +43 -0
  89. package/src/components/leaflet-map/renderer/mapboxgl-utils.ts +40 -0
  90. package/{components → src/components}/leaflet-map/renderer/maplibre-gl.css.js +2 -4
  91. package/src/components/leaflet-map/style.ts +217 -0
  92. package/src/components/leaflet-map/types.ts +75 -0
  93. package/src/components/line/config.ts +34 -0
  94. package/src/components/line/index.ts +188 -0
  95. package/{components/line/style.js → src/components/line/style.ts} +18 -16
  96. package/src/components/line/types.ts +3 -0
  97. package/src/components/nested-donut/config.ts +75 -0
  98. package/src/components/nested-donut/index.ts +176 -0
  99. package/src/components/nested-donut/modules/arc.ts +78 -0
  100. package/src/components/nested-donut/modules/label.ts +63 -0
  101. package/src/components/nested-donut/style.ts +82 -0
  102. package/src/components/nested-donut/types.ts +29 -0
  103. package/src/components/sankey/config.ts +195 -0
  104. package/src/components/sankey/index.ts +387 -0
  105. package/src/components/sankey/modules/label.ts +228 -0
  106. package/src/components/sankey/modules/link.ts +141 -0
  107. package/src/components/sankey/modules/node.ts +221 -0
  108. package/{components/sankey/style.js → src/components/sankey/style.ts} +60 -44
  109. package/src/components/sankey/types.ts +95 -0
  110. package/src/components/scatter/config.ts +49 -0
  111. package/src/components/scatter/index.ts +220 -0
  112. package/src/components/scatter/modules/point.ts +123 -0
  113. package/src/components/scatter/modules/utils.ts +150 -0
  114. package/{components/scatter/style.js → src/components/scatter/style.ts} +15 -14
  115. package/src/components/scatter/types.ts +21 -0
  116. package/src/components/stacked-bar/config.ts +42 -0
  117. package/src/components/stacked-bar/index.ts +267 -0
  118. package/{components/stacked-bar/style.js → src/components/stacked-bar/style.ts} +15 -14
  119. package/src/components/stacked-bar/types.ts +5 -0
  120. package/src/components/timeline/config.ts +49 -0
  121. package/src/components/timeline/index.ts +302 -0
  122. package/{components/timeline/style.js → src/components/timeline/style.ts} +39 -30
  123. package/src/components/tooltip/config.ts +69 -0
  124. package/src/components/tooltip/index.ts +220 -0
  125. package/{components → src/components}/tooltip/style.js +11 -14
  126. package/src/components/topojson-map/config.ts +124 -0
  127. package/src/components/topojson-map/index.ts +436 -0
  128. package/{components/topojson-map/style.js → src/components/topojson-map/style.ts} +33 -26
  129. package/src/components/topojson-map/types.ts +123 -0
  130. package/src/components/topojson-map/utils.ts +29 -0
  131. package/src/components/vis-controls/config.ts +16 -0
  132. package/src/components/vis-controls/index.ts +68 -0
  133. package/{components/vis-controls/style.js → src/components/vis-controls/style.ts} +34 -27
  134. package/src/components/vis-controls/types.ts +14 -0
  135. package/src/components/xy-labels/config.ts +56 -0
  136. package/src/components/xy-labels/index.ts +109 -0
  137. package/src/components/xy-labels/modules/label.ts +140 -0
  138. package/{components/xy-labels/style.js → src/components/xy-labels/style.ts} +15 -14
  139. package/src/components/xy-labels/types.ts +26 -0
  140. package/src/components.ts +56 -0
  141. package/src/containers/single-container/config.ts +15 -0
  142. package/src/containers/single-container/index.ts +150 -0
  143. package/src/containers/xy-container/config.ts +112 -0
  144. package/src/containers/xy-container/index.ts +407 -0
  145. package/src/containers.ts +6 -0
  146. package/src/core/component/config.ts +61 -0
  147. package/src/core/component/index.ts +154 -0
  148. package/src/core/component/types.ts +9 -0
  149. package/src/core/config/index.ts +12 -0
  150. package/src/core/container/config.ts +56 -0
  151. package/src/core/container/index.ts +136 -0
  152. package/src/core/xy-component/config.ts +46 -0
  153. package/src/core/xy-component/index.ts +90 -0
  154. package/src/data-models/core.ts +15 -0
  155. package/src/data-models/graph.ts +138 -0
  156. package/src/data-models/map-graph.ts +72 -0
  157. package/src/data-models/map.ts +18 -0
  158. package/src/data-models/series.ts +16 -0
  159. package/src/index.ts +7 -0
  160. package/src/maps/china-provinces.json +1 -0
  161. package/src/maps/fr-regions.json +1 -0
  162. package/src/maps/germany-regions.json +1 -0
  163. package/src/maps/ind-regions.json +1 -0
  164. package/src/maps/uk-regions.json +1 -0
  165. package/src/maps/us-counties.json +1 -0
  166. package/src/maps/us-states.json +1 -0
  167. package/src/maps/world-110m-alpha.json +1 -0
  168. package/src/maps/world-simple.json +1 -0
  169. package/src/maps/world-simplest.json +1 -0
  170. package/src/maps.ts +34 -0
  171. package/src/styles/colors.ts +28 -0
  172. package/src/styles/index.ts +38 -0
  173. package/{styles/sizes.js → src/styles/sizes.ts} +6 -8
  174. package/src/types/accessor.ts +5 -0
  175. package/src/types/component.ts +15 -0
  176. package/src/types/curve.ts +62 -0
  177. package/src/types/data.ts +5 -0
  178. package/src/types/direction.ts +6 -0
  179. package/src/types/graph.ts +40 -0
  180. package/src/types/map.ts +5 -0
  181. package/src/types/misc.ts +10 -0
  182. package/src/types/position.ts +23 -0
  183. package/src/types/scale.ts +47 -0
  184. package/src/types/shape.ts +7 -0
  185. package/src/types/spacing.ts +6 -0
  186. package/src/types/svg.ts +32 -0
  187. package/src/types/symbol.ts +21 -0
  188. package/src/types/text.ts +71 -0
  189. package/src/types.ts +31 -0
  190. package/src/utils/color.ts +41 -0
  191. package/src/utils/d3.ts +15 -0
  192. package/src/utils/data.ts +328 -0
  193. package/src/utils/html.ts +13 -0
  194. package/src/utils/map.ts +29 -0
  195. package/src/utils/misc.ts +54 -0
  196. package/src/utils/path.ts +196 -0
  197. package/src/utils/scale.ts +1 -0
  198. package/src/utils/style.ts +37 -0
  199. package/src/utils/svg.ts +49 -0
  200. package/src/utils/text.ts +529 -0
  201. package/src/utils/type.ts +9 -0
  202. package/tsconfig.json +29 -0
  203. package/components/area/config.d.ts +0 -25
  204. package/components/area/config.js +0 -16
  205. package/components/area/config.js.map +0 -1
  206. package/components/area/index.d.ts +0 -19
  207. package/components/area/index.js +0 -102
  208. package/components/area/index.js.map +0 -1
  209. package/components/area/style.d.ts +0 -3
  210. package/components/area/style.js.map +0 -1
  211. package/components/area/types.d.ts +0 -6
  212. package/components/axis/config.d.ts +0 -71
  213. package/components/axis/config.js +0 -32
  214. package/components/axis/config.js.map +0 -1
  215. package/components/axis/index.d.ts +0 -44
  216. package/components/axis/index.js +0 -305
  217. package/components/axis/index.js.map +0 -1
  218. package/components/axis/style.d.ts +0 -9
  219. package/components/axis/style.js.map +0 -1
  220. package/components/axis/types.d.ts +0 -4
  221. package/components/axis/types.js +0 -8
  222. package/components/axis/types.js.map +0 -1
  223. package/components/brush/config.d.ts +0 -42
  224. package/components/brush/config.js +0 -24
  225. package/components/brush/config.js.map +0 -1
  226. package/components/brush/index.d.ts +0 -28
  227. package/components/brush/index.js +0 -199
  228. package/components/brush/index.js.map +0 -1
  229. package/components/brush/style.d.ts +0 -5
  230. package/components/brush/style.js.map +0 -1
  231. package/components/brush/types.d.ts +0 -7
  232. package/components/brush/types.js +0 -8
  233. package/components/brush/types.js.map +0 -1
  234. package/components/bullet-legend/config.d.ts +0 -34
  235. package/components/bullet-legend/config.js +0 -16
  236. package/components/bullet-legend/config.js.map +0 -1
  237. package/components/bullet-legend/index.d.ts +0 -19
  238. package/components/bullet-legend/index.js +0 -79
  239. package/components/bullet-legend/index.js.map +0 -1
  240. package/components/bullet-legend/style.d.ts +0 -6
  241. package/components/bullet-legend/style.js.map +0 -1
  242. package/components/bullet-legend/types.d.ts +0 -7
  243. package/components/bullet-legend/types.js +0 -2
  244. package/components/bullet-legend/types.js.map +0 -1
  245. package/components/chord-diagram/config.d.ts +0 -44
  246. package/components/chord-diagram/config.js +0 -25
  247. package/components/chord-diagram/config.js.map +0 -1
  248. package/components/chord-diagram/index.d.ts +0 -42
  249. package/components/chord-diagram/index.js +0 -305
  250. package/components/chord-diagram/index.js.map +0 -1
  251. package/components/chord-diagram/modules/label.d.ts +0 -8
  252. package/components/chord-diagram/modules/label.js +0 -115
  253. package/components/chord-diagram/modules/label.js.map +0 -1
  254. package/components/chord-diagram/modules/link.d.ts +0 -21
  255. package/components/chord-diagram/modules/link.js +0 -63
  256. package/components/chord-diagram/modules/link.js.map +0 -1
  257. package/components/chord-diagram/modules/node.d.ts +0 -17
  258. package/components/chord-diagram/modules/node.js +0 -52
  259. package/components/chord-diagram/modules/node.js.map +0 -1
  260. package/components/chord-diagram/style.d.ts +0 -13
  261. package/components/chord-diagram/style.js.map +0 -1
  262. package/components/chord-diagram/types.d.ts +0 -58
  263. package/components/chord-diagram/types.js +0 -8
  264. package/components/chord-diagram/types.js.map +0 -1
  265. package/components/crosshair/config.d.ts +0 -43
  266. package/components/crosshair/config.js +0 -19
  267. package/components/crosshair/config.js.map +0 -1
  268. package/components/crosshair/index.d.ts +0 -35
  269. package/components/crosshair/index.js +0 -183
  270. package/components/crosshair/index.js.map +0 -1
  271. package/components/crosshair/style.d.ts +0 -4
  272. package/components/crosshair/style.js.map +0 -1
  273. package/components/crosshair/types.d.ts +0 -13
  274. package/components/crosshair/types.js +0 -2
  275. package/components/crosshair/types.js.map +0 -1
  276. package/components/donut/config.d.ts +0 -59
  277. package/components/donut/config.js +0 -28
  278. package/components/donut/config.js.map +0 -1
  279. package/components/donut/index.d.ts +0 -21
  280. package/components/donut/index.js +0 -107
  281. package/components/donut/index.js.map +0 -1
  282. package/components/donut/modules/arc.d.ts +0 -10
  283. package/components/donut/modules/arc.js +0 -59
  284. package/components/donut/modules/arc.js.map +0 -1
  285. package/components/donut/style.d.ts +0 -7
  286. package/components/donut/style.js.map +0 -1
  287. package/components/donut/types.d.ts +0 -20
  288. package/components/flow-legend/config.d.ts +0 -29
  289. package/components/flow-legend/config.js +0 -18
  290. package/components/flow-legend/config.js.map +0 -1
  291. package/components/flow-legend/index.d.ts +0 -16
  292. package/components/flow-legend/index.js +0 -75
  293. package/components/flow-legend/index.js.map +0 -1
  294. package/components/flow-legend/style.d.ts +0 -8
  295. package/components/flow-legend/style.js.map +0 -1
  296. package/components/flow-legend/types.d.ts +0 -9
  297. package/components/flow-legend/types.js +0 -8
  298. package/components/flow-legend/types.js.map +0 -1
  299. package/components/free-brush/config.d.ts +0 -45
  300. package/components/free-brush/config.js +0 -24
  301. package/components/free-brush/config.js.map +0 -1
  302. package/components/free-brush/index.d.ts +0 -20
  303. package/components/free-brush/index.js +0 -192
  304. package/components/free-brush/index.js.map +0 -1
  305. package/components/free-brush/style.d.ts +0 -4
  306. package/components/free-brush/style.js.map +0 -1
  307. package/components/free-brush/types.d.ts +0 -7
  308. package/components/free-brush/types.js +0 -9
  309. package/components/free-brush/types.js.map +0 -1
  310. package/components/graph/config.d.ts +0 -238
  311. package/components/graph/config.js +0 -84
  312. package/components/graph/config.js.map +0 -1
  313. package/components/graph/index.d.ts +0 -126
  314. package/components/graph/index.js +0 -656
  315. package/components/graph/index.js.map +0 -1
  316. package/components/graph/modules/layout-helpers.d.ts +0 -21
  317. package/components/graph/modules/layout-helpers.js +0 -69
  318. package/components/graph/modules/layout-helpers.js.map +0 -1
  319. package/components/graph/modules/layout.d.ts +0 -10
  320. package/components/graph/modules/layout.js +0 -399
  321. package/components/graph/modules/layout.js.map +0 -1
  322. package/components/graph/modules/link/helper.d.ts +0 -25
  323. package/components/graph/modules/link/helper.js +0 -74
  324. package/components/graph/modules/link/helper.js.map +0 -1
  325. package/components/graph/modules/link/index.d.ts +0 -11
  326. package/components/graph/modules/link/index.js +0 -212
  327. package/components/graph/modules/link/index.js.map +0 -1
  328. package/components/graph/modules/link/style.d.ts +0 -15
  329. package/components/graph/modules/link/style.js.map +0 -1
  330. package/components/graph/modules/node/helper.d.ts +0 -21
  331. package/components/graph/modules/node/helper.js +0 -126
  332. package/components/graph/modules/node/helper.js.map +0 -1
  333. package/components/graph/modules/node/index.d.ts +0 -11
  334. package/components/graph/modules/node/index.js +0 -252
  335. package/components/graph/modules/node/index.js.map +0 -1
  336. package/components/graph/modules/node/style.d.ts +0 -24
  337. package/components/graph/modules/node/style.js.map +0 -1
  338. package/components/graph/modules/panel/helper.d.ts +0 -18
  339. package/components/graph/modules/panel/helper.js +0 -111
  340. package/components/graph/modules/panel/helper.js.map +0 -1
  341. package/components/graph/modules/panel/index.d.ts +0 -7
  342. package/components/graph/modules/panel/index.js +0 -98
  343. package/components/graph/modules/panel/index.js.map +0 -1
  344. package/components/graph/modules/panel/style.d.ts +0 -14
  345. package/components/graph/modules/panel/style.js.map +0 -1
  346. package/components/graph/modules/shape.d.ts +0 -6
  347. package/components/graph/modules/shape.js +0 -80
  348. package/components/graph/modules/shape.js.map +0 -1
  349. package/components/graph/modules/zoom-levels.d.ts +0 -6
  350. package/components/graph/modules/zoom-levels.js +0 -10
  351. package/components/graph/modules/zoom-levels.js.map +0 -1
  352. package/components/graph/style.d.ts +0 -6
  353. package/components/graph/style.js +0 -66
  354. package/components/graph/style.js.map +0 -1
  355. package/components/graph/types.d.ts +0 -125
  356. package/components/graph/types.js +0 -30
  357. package/components/graph/types.js.map +0 -1
  358. package/components/grouped-bar/config.d.ts +0 -36
  359. package/components/grouped-bar/config.js +0 -20
  360. package/components/grouped-bar/config.js.map +0 -1
  361. package/components/grouped-bar/index.d.ts +0 -32
  362. package/components/grouped-bar/index.js +0 -249
  363. package/components/grouped-bar/index.js.map +0 -1
  364. package/components/grouped-bar/style.d.ts +0 -5
  365. package/components/grouped-bar/style.js.map +0 -1
  366. package/components/leaflet-flow-map/config.d.ts +0 -46
  367. package/components/leaflet-flow-map/config.js +0 -25
  368. package/components/leaflet-flow-map/config.js.map +0 -1
  369. package/components/leaflet-flow-map/index.d.ts +0 -52
  370. package/components/leaflet-flow-map/index.js +0 -220
  371. package/components/leaflet-flow-map/index.js.map +0 -1
  372. package/components/leaflet-flow-map/renderer-utils.d.ts +0 -5
  373. package/components/leaflet-flow-map/renderer-utils.js +0 -15
  374. package/components/leaflet-flow-map/renderer-utils.js.map +0 -1
  375. package/components/leaflet-flow-map/renderer.d.ts +0 -26
  376. package/components/leaflet-flow-map/renderer.js +0 -117
  377. package/components/leaflet-flow-map/renderer.js.map +0 -1
  378. package/components/leaflet-flow-map/shaders.d.ts +0 -2
  379. package/components/leaflet-flow-map/shaders.js.map +0 -1
  380. package/components/leaflet-flow-map/types.d.ts +0 -23
  381. package/components/leaflet-map/config.d.ts +0 -193
  382. package/components/leaflet-map/config.js +0 -71
  383. package/components/leaflet-map/config.js.map +0 -1
  384. package/components/leaflet-map/index.d.ts +0 -130
  385. package/components/leaflet-map/index.js +0 -690
  386. package/components/leaflet-map/index.js.map +0 -1
  387. package/components/leaflet-map/leaflet.css.js +0 -5
  388. package/components/leaflet-map/leaflet.css.js.map +0 -1
  389. package/components/leaflet-map/modules/clusterBackground.d.ts +0 -5
  390. package/components/leaflet-map/modules/clusterBackground.js +0 -27
  391. package/components/leaflet-map/modules/clusterBackground.js.map +0 -1
  392. package/components/leaflet-map/modules/donut.d.ts +0 -3
  393. package/components/leaflet-map/modules/donut.js +0 -25
  394. package/components/leaflet-map/modules/donut.js.map +0 -1
  395. package/components/leaflet-map/modules/map.d.ts +0 -14
  396. package/components/leaflet-map/modules/map.js +0 -154
  397. package/components/leaflet-map/modules/map.js.map +0 -1
  398. package/components/leaflet-map/modules/node.d.ts +0 -9
  399. package/components/leaflet-map/modules/node.js +0 -162
  400. package/components/leaflet-map/modules/node.js.map +0 -1
  401. package/components/leaflet-map/modules/selectionRing.d.ts +0 -7
  402. package/components/leaflet-map/modules/selectionRing.js +0 -41
  403. package/components/leaflet-map/modules/selectionRing.js.map +0 -1
  404. package/components/leaflet-map/modules/utils.d.ts +0 -50
  405. package/components/leaflet-map/modules/utils.js +0 -210
  406. package/components/leaflet-map/modules/utils.js.map +0 -1
  407. package/components/leaflet-map/renderer/leaflet-maplibre-gl.js.map +0 -1
  408. package/components/leaflet-map/renderer/map-style.d.ts +0 -4
  409. package/components/leaflet-map/renderer/map-style.js +0 -15
  410. package/components/leaflet-map/renderer/map-style.js.map +0 -1
  411. package/components/leaflet-map/renderer/mapboxgl/mapboxgl-dark-theme.json.js +0 -40
  412. package/components/leaflet-map/renderer/mapboxgl/mapboxgl-dark-theme.json.js.map +0 -1
  413. package/components/leaflet-map/renderer/mapboxgl/mapboxgl-light-theme.json.js +0 -40
  414. package/components/leaflet-map/renderer/mapboxgl/mapboxgl-light-theme.json.js.map +0 -1
  415. package/components/leaflet-map/renderer/mapboxgl/mapboxgl-settings.json.js +0 -4981
  416. package/components/leaflet-map/renderer/mapboxgl/mapboxgl-settings.json.js.map +0 -1
  417. package/components/leaflet-map/renderer/mapboxgl-layer.d.ts +0 -8
  418. package/components/leaflet-map/renderer/mapboxgl-layer.js +0 -27
  419. package/components/leaflet-map/renderer/mapboxgl-layer.js.map +0 -1
  420. package/components/leaflet-map/renderer/mapboxgl-utils.d.ts +0 -4
  421. package/components/leaflet-map/renderer/mapboxgl-utils.js +0 -39
  422. package/components/leaflet-map/renderer/mapboxgl-utils.js.map +0 -1
  423. package/components/leaflet-map/renderer/maplibre-gl.css.js.map +0 -1
  424. package/components/leaflet-map/style.d.ts +0 -52
  425. package/components/leaflet-map/style.js +0 -183
  426. package/components/leaflet-map/style.js.map +0 -1
  427. package/components/leaflet-map/types.d.ts +0 -75
  428. package/components/leaflet-map/types.js +0 -15
  429. package/components/leaflet-map/types.js.map +0 -1
  430. package/components/line/config.d.ts +0 -30
  431. package/components/line/config.js +0 -17
  432. package/components/line/config.js.map +0 -1
  433. package/components/line/index.d.ts +0 -27
  434. package/components/line/index.js +0 -152
  435. package/components/line/index.js.map +0 -1
  436. package/components/line/style.d.ts +0 -6
  437. package/components/line/style.js.map +0 -1
  438. package/components/line/types.d.ts +0 -12
  439. package/components/nested-donut/config.d.ts +0 -59
  440. package/components/nested-donut/config.js +0 -19
  441. package/components/nested-donut/config.js.map +0 -1
  442. package/components/nested-donut/index.d.ts +0 -38
  443. package/components/nested-donut/index.js +0 -133
  444. package/components/nested-donut/index.js.map +0 -1
  445. package/components/nested-donut/modules/arc.d.ts +0 -17
  446. package/components/nested-donut/modules/arc.js +0 -50
  447. package/components/nested-donut/modules/arc.js.map +0 -1
  448. package/components/nested-donut/modules/label.d.ts +0 -7
  449. package/components/nested-donut/modules/label.js +0 -34
  450. package/components/nested-donut/modules/label.js.map +0 -1
  451. package/components/nested-donut/style.d.ts +0 -26
  452. package/components/nested-donut/style.js +0 -70
  453. package/components/nested-donut/style.js.map +0 -1
  454. package/components/nested-donut/types.d.ts +0 -24
  455. package/components/nested-donut/types.js +0 -11
  456. package/components/nested-donut/types.js.map +0 -1
  457. package/components/sankey/config.d.ts +0 -162
  458. package/components/sankey/config.js +0 -65
  459. package/components/sankey/config.js.map +0 -1
  460. package/components/sankey/index.d.ts +0 -59
  461. package/components/sankey/index.js +0 -306
  462. package/components/sankey/index.js.map +0 -1
  463. package/components/sankey/modules/label.d.ts +0 -23
  464. package/components/sankey/modules/label.js +0 -168
  465. package/components/sankey/modules/label.js.map +0 -1
  466. package/components/sankey/modules/link.d.ts +0 -14
  467. package/components/sankey/modules/link.js +0 -108
  468. package/components/sankey/modules/link.js.map +0 -1
  469. package/components/sankey/modules/node.d.ts +0 -10
  470. package/components/sankey/modules/node.js +0 -156
  471. package/components/sankey/modules/node.js.map +0 -1
  472. package/components/sankey/style.d.ts +0 -20
  473. package/components/sankey/style.js.map +0 -1
  474. package/components/sankey/types.d.ts +0 -84
  475. package/components/sankey/types.js +0 -34
  476. package/components/sankey/types.js.map +0 -1
  477. package/components/scatter/config.d.ts +0 -44
  478. package/components/scatter/config.js +0 -23
  479. package/components/scatter/config.js.map +0 -1
  480. package/components/scatter/index.d.ts +0 -28
  481. package/components/scatter/index.js +0 -167
  482. package/components/scatter/index.js.map +0 -1
  483. package/components/scatter/modules/point.d.ts +0 -7
  484. package/components/scatter/modules/point.js +0 -86
  485. package/components/scatter/modules/point.js.map +0 -1
  486. package/components/scatter/modules/utils.d.ts +0 -11
  487. package/components/scatter/modules/utils.js +0 -112
  488. package/components/scatter/modules/utils.js.map +0 -1
  489. package/components/scatter/style.d.ts +0 -5
  490. package/components/scatter/style.js.map +0 -1
  491. package/components/scatter/types.d.ts +0 -19
  492. package/components/stacked-bar/config.d.ts +0 -38
  493. package/components/stacked-bar/config.js +0 -20
  494. package/components/stacked-bar/config.js.map +0 -1
  495. package/components/stacked-bar/index.d.ts +0 -28
  496. package/components/stacked-bar/index.js +0 -208
  497. package/components/stacked-bar/index.js.map +0 -1
  498. package/components/stacked-bar/style.d.ts +0 -5
  499. package/components/stacked-bar/style.js.map +0 -1
  500. package/components/stacked-bar/types.d.ts +0 -5
  501. package/components/timeline/config.d.ts +0 -43
  502. package/components/timeline/config.js +0 -24
  503. package/components/timeline/config.js.map +0 -1
  504. package/components/timeline/index.d.ts +0 -41
  505. package/components/timeline/index.js +0 -244
  506. package/components/timeline/index.js.map +0 -1
  507. package/components/timeline/style.d.ts +0 -13
  508. package/components/timeline/style.js.map +0 -1
  509. package/components/tooltip/config.d.ts +0 -68
  510. package/components/tooltip/config.js +0 -20
  511. package/components/tooltip/config.js.map +0 -1
  512. package/components/tooltip/index.d.ts +0 -36
  513. package/components/tooltip/index.js +0 -184
  514. package/components/tooltip/index.js.map +0 -1
  515. package/components/tooltip/style.js.map +0 -1
  516. package/components/topojson-map/config.d.ts +0 -99
  517. package/components/topojson-map/config.js +0 -42
  518. package/components/topojson-map/config.js.map +0 -1
  519. package/components/topojson-map/index.d.ts +0 -52
  520. package/components/topojson-map/index.js +0 -355
  521. package/components/topojson-map/index.js.map +0 -1
  522. package/components/topojson-map/style.d.ts +0 -11
  523. package/components/topojson-map/style.js.map +0 -1
  524. package/components/topojson-map/types.d.ts +0 -78
  525. package/components/topojson-map/types.js +0 -80
  526. package/components/topojson-map/types.js.map +0 -1
  527. package/components/topojson-map/utils.d.ts +0 -3
  528. package/components/topojson-map/utils.js +0 -30
  529. package/components/topojson-map/utils.js.map +0 -1
  530. package/components/vis-controls/config.d.ts +0 -12
  531. package/components/vis-controls/config.js +0 -13
  532. package/components/vis-controls/config.js.map +0 -1
  533. package/components/vis-controls/index.d.ts +0 -14
  534. package/components/vis-controls/index.js +0 -52
  535. package/components/vis-controls/index.js.map +0 -1
  536. package/components/vis-controls/style.d.ts +0 -11
  537. package/components/vis-controls/style.js.map +0 -1
  538. package/components/vis-controls/types.d.ts +0 -13
  539. package/components/vis-controls/types.js +0 -8
  540. package/components/vis-controls/types.js.map +0 -1
  541. package/components/xy-labels/config.d.ts +0 -48
  542. package/components/xy-labels/config.js +0 -25
  543. package/components/xy-labels/config.js.map +0 -1
  544. package/components/xy-labels/index.d.ts +0 -15
  545. package/components/xy-labels/index.js +0 -87
  546. package/components/xy-labels/index.js.map +0 -1
  547. package/components/xy-labels/modules/label.d.ts +0 -9
  548. package/components/xy-labels/modules/label.js +0 -107
  549. package/components/xy-labels/modules/label.js.map +0 -1
  550. package/components/xy-labels/style.d.ts +0 -5
  551. package/components/xy-labels/style.js.map +0 -1
  552. package/components/xy-labels/types.d.ts +0 -23
  553. package/components/xy-labels/types.js +0 -9
  554. package/components/xy-labels/types.js.map +0 -1
  555. package/components.d.ts +0 -51
  556. package/components.js +0 -29
  557. package/components.js.map +0 -1
  558. package/containers/single-container/config.d.ts +0 -12
  559. package/containers/single-container/config.js +0 -12
  560. package/containers/single-container/config.js.map +0 -1
  561. package/containers/single-container/index.d.ts +0 -19
  562. package/containers/single-container/index.js +0 -128
  563. package/containers/single-container/index.js.map +0 -1
  564. package/containers/xy-container/config.d.ts +0 -99
  565. package/containers/xy-container/config.js +0 -30
  566. package/containers/xy-container/config.js.map +0 -1
  567. package/containers/xy-container/index.d.ts +0 -34
  568. package/containers/xy-container/index.js +0 -330
  569. package/containers/xy-container/index.js.map +0 -1
  570. package/containers.d.ts +0 -6
  571. package/containers.js +0 -4
  572. package/containers.js.map +0 -1
  573. package/core/component/config.d.ts +0 -58
  574. package/core/component/config.js +0 -14
  575. package/core/component/config.js.map +0 -1
  576. package/core/component/index.d.ts +0 -43
  577. package/core/component/index.js +0 -118
  578. package/core/component/index.js.map +0 -1
  579. package/core/component/types.d.ts +0 -2
  580. package/core/component/types.js +0 -2
  581. package/core/component/types.js.map +0 -1
  582. package/core/config/index.d.ts +0 -3
  583. package/core/config/index.js +0 -16
  584. package/core/config/index.js.map +0 -1
  585. package/core/container/config.d.ts +0 -48
  586. package/core/container/config.js +0 -29
  587. package/core/container/config.js.map +0 -1
  588. package/core/container/index.d.ts +0 -26
  589. package/core/container/index.js +0 -105
  590. package/core/container/index.js.map +0 -1
  591. package/core/xy-component/config.d.ts +0 -38
  592. package/core/xy-component/config.js +0 -20
  593. package/core/xy-component/config.js.map +0 -1
  594. package/core/xy-component/index.d.ts +0 -27
  595. package/core/xy-component/index.js +0 -74
  596. package/core/xy-component/index.js.map +0 -1
  597. package/data-models/core.d.ts +0 -6
  598. package/data-models/core.js +0 -14
  599. package/data-models/core.js.map +0 -1
  600. package/data-models/graph.d.ts +0 -24
  601. package/data-models/graph.js +0 -107
  602. package/data-models/graph.js.map +0 -1
  603. package/data-models/map-graph.d.ts +0 -21
  604. package/data-models/map-graph.js +0 -62
  605. package/data-models/map-graph.js.map +0 -1
  606. package/data-models/map.d.ts +0 -5
  607. package/data-models/map.js +0 -12
  608. package/data-models/map.js.map +0 -1
  609. package/data-models/series.d.ts +0 -6
  610. package/data-models/series.js +0 -19
  611. package/data-models/series.js.map +0 -1
  612. package/index.d.ts +0 -7
  613. package/index.js +0 -55
  614. package/index.js.map +0 -1
  615. package/maps/china-provinces.json.js +0 -140373
  616. package/maps/fr-regions.json.js +0 -14162
  617. package/maps/germany-regions.json.js +0 -35760
  618. package/maps/ind-regions.json.js +0 -290584
  619. package/maps/uk-regions.json.js +0 -96233
  620. package/maps/us-counties.json.js +0 -206318
  621. package/maps/us-states.json.js +0 -16345
  622. package/maps/world-110m-alpha.json.js +0 -251366
  623. package/maps/world-simple.json.js +0 -89428
  624. package/maps/world-simplest.json.js +0 -28175
  625. package/maps.d.ts +0 -60
  626. package/maps.js +0 -23
  627. package/styles/colors.d.ts +0 -7
  628. package/styles/colors.js +0 -24
  629. package/styles/colors.js.map +0 -1
  630. package/styles/index.d.ts +0 -7
  631. package/styles/index.js +0 -38
  632. package/styles/index.js.map +0 -1
  633. package/styles/sizes.d.ts +0 -2
  634. package/styles/sizes.js.map +0 -1
  635. package/types/accessor.d.ts +0 -5
  636. package/types/accessor.js +0 -2
  637. package/types/accessor.js.map +0 -1
  638. package/types/component.d.ts +0 -13
  639. package/types/component.js +0 -14
  640. package/types/component.js.map +0 -1
  641. package/types/curve.d.ts +0 -40
  642. package/types/curve.js +0 -46
  643. package/types/curve.js.map +0 -1
  644. package/types/data.d.ts +0 -7
  645. package/types/data.js +0 -2
  646. package/types/data.js.map +0 -1
  647. package/types/direction.d.ts +0 -6
  648. package/types/direction.js +0 -10
  649. package/types/direction.js.map +0 -1
  650. package/types/graph.d.ts +0 -35
  651. package/types/graph.js +0 -2
  652. package/types/graph.js.map +0 -1
  653. package/types/map.d.ts +0 -4
  654. package/types/map.js +0 -2
  655. package/types/map.js.map +0 -1
  656. package/types/misc.d.ts +0 -8
  657. package/types/position.d.ts +0 -20
  658. package/types/position.js +0 -27
  659. package/types/position.js.map +0 -1
  660. package/types/scale.d.ts +0 -23
  661. package/types/scale.js +0 -27
  662. package/types/scale.js.map +0 -1
  663. package/types/shape.d.ts +0 -7
  664. package/types/shape.js +0 -11
  665. package/types/shape.js.map +0 -1
  666. package/types/spacing.d.ts +0 -6
  667. package/types/spacing.js +0 -2
  668. package/types/spacing.js.map +0 -1
  669. package/types/svg.d.ts +0 -18
  670. package/types/svg.js +0 -22
  671. package/types/svg.js.map +0 -1
  672. package/types/symbol.d.ts +0 -18
  673. package/types/symbol.js +0 -24
  674. package/types/symbol.js.map +0 -1
  675. package/types/text.d.ts +0 -47
  676. package/types/text.js +0 -26
  677. package/types/text.js.map +0 -1
  678. package/types.d.ts +0 -27
  679. package/types.js +0 -30
  680. package/types.js.map +0 -1
  681. package/utils/color.d.ts +0 -10
  682. package/utils/color.js +0 -32
  683. package/utils/color.js.map +0 -1
  684. package/utils/d3.d.ts +0 -3
  685. package/utils/d3.js +0 -16
  686. package/utils/d3.js.map +0 -1
  687. package/utils/data.d.ts +0 -45
  688. package/utils/data.js +0 -274
  689. package/utils/data.js.map +0 -1
  690. package/utils/html.d.ts +0 -1
  691. package/utils/html.js +0 -16
  692. package/utils/html.js.map +0 -1
  693. package/utils/map.d.ts +0 -2
  694. package/utils/map.js +0 -20
  695. package/utils/map.js.map +0 -1
  696. package/utils/misc.d.ts +0 -9
  697. package/utils/misc.js +0 -47
  698. package/utils/misc.js.map +0 -1
  699. package/utils/path.d.ts +0 -23
  700. package/utils/path.js +0 -144
  701. package/utils/path.js.map +0 -1
  702. package/utils/scale.d.ts +0 -1
  703. package/utils/style.d.ts +0 -6
  704. package/utils/style.js +0 -24
  705. package/utils/style.js.map +0 -1
  706. package/utils/svg.d.ts +0 -3
  707. package/utils/text.d.ts +0 -139
  708. package/utils/text.js +0 -443
  709. package/utils/text.js.map +0 -1
  710. package/utils/type.d.ts +0 -5
@@ -0,0 +1 @@
1
+ {"type": "Topology", "arcs": [[[35365, 34965], [85, 0]], [[35450, 34965], [117, 0], [1, -46]], [[35568, 34919], [-1, -169]], [[35567, 34750], [-152, 0]], [[35415, 34750], [-50, 0]], [[35365, 34750], [0, 215]], [[23734, 37557], [0, 59], [161, -1]], [[23895, 37615], [61, 1]], [[23956, 37616], [2, -131]], [[23958, 37485], [-66, -16]], [[23892, 37469], [-29, 21], [-21, 55], [-30, -7]], [[23812, 37538], [-78, 19]], [[31936, 30025], [1, 160]], [[31937, 30185], [0, 159], [194, 0], [0, 54], [46, 0], [0, 53], [92, 1]], [[32269, 30452], [0, -108], [78, 0]], [[32347, 30344], [2, -323]], [[32349, 30021], [-92, 1], [0, -54], [-274, 3], [0, 54], [-47, 0]], [[35412, 34320], [2, 0]], [[35414, 34320], [193, 0], [0, -18]], [[35607, 34302], [0, -144]], [[35607, 34158], [0, -161]], [[35607, 33997], [-195, 1]], [[35412, 33998], [-1, 107]], [[35411, 34105], [1, 215]], [[34819, 33891], [196, 0]], [[35015, 33891], [1, 0]], [[35016, 33891], [0, -215]], [[35016, 33676], [-48, 0]], [[34968, 33676], [-149, 0]], [[34819, 33676], [0, 215]], [[48939, 20251], [7, 12]], [[48946, 20263], [5, -1]], [[48951, 20262], [-1, -45]], [[48950, 20217], [-22, -51]], [[48928, 20166], [-22, 2]], [[48906, 20168], [0, 14]], [[48906, 20182], [33, 69]], [[35317, 36050], [105, 0]], [[35422, 36050], [190, 1]], [[35612, 36051], [0, -216]], [[35612, 35835], [-64, 0]], [[35548, 35835], [-142, 0]], [[35406, 35835], [-89, 0]], [[35317, 35835], [0, 215]], [[34240, 28172], [0, -90], [52, 0]], [[34292, 28082], [0, -142]], [[34292, 27940], [-275, 0]], [[34017, 27940], [0, 233]], [[34017, 28173], [223, -1]], [[25293, 33494], [64, 9]], [[25357, 33503], [-2, -171]], [[25355, 33332], [-218, 1], [-31, 47], [-36, 0], [-42, -43], [-116, -38]], [[24912, 33299], [-5, 76], [10, 77]], [[24917, 33452], [27, 20], [6, 41], [28, 24], [83, -62], [11, 18], [221, 1]], [[40506, 31733], [42, -17], [24, 19]], [[40572, 31735], [26, -63], [-7, -38], [20, -49]], [[40611, 31585], [-132, 7]], [[40479, 31592], [-8, -1]], [[40471, 31591], [35, 142]], [[41087, 34395], [200, 0]], [[41287, 34395], [1, -108]], [[41288, 34287], [-17, 0], [-25, -107]], [[41246, 34180], [-159, 1]], [[41087, 34181], [0, 62]], [[41087, 34243], [0, 152]], [[33157, 30164], [40, 0]], [[33197, 30164], [189, -1]], [[33386, 30163], [0, -297]], [[33386, 29866], [-227, -4]], [[33159, 29862], [-2, 302]], [[40229, 29661], [91, -2]], [[40320, 29659], [-5, -240]], [[40315, 29419], [-140, -1], [-15, -9]], [[40160, 29409], [-72, 9]], [[40088, 29418], [1, 56], [23, -1], [1, 63], [60, -1], [1, 54], [23, 9], [9, 63], [23, 0]], [[33360, 30701], [234, -1]], [[33594, 30700], [-2, -268]], [[33592, 30432], [-166, 0]], [[33426, 30432], [-68, 0]], [[33358, 30432], [2, 269]], [[41087, 34181], [0, -109]], [[41087, 34072], [-99, -1], [-50, 27], [-76, -1]], [[40862, 34097], [0, 81], [25, 27]], [[40887, 34205], [101, 1], [0, 27], [99, 10]], [[41623, 29729], [14, 15], [60, 4]], [[41697, 29748], [24, 7]], [[41721, 29755], [-5, -62], [62, -121]], [[41778, 29572], [-26, -26]], [[41752, 29546], [-13, 0]], [[41739, 29546], [-66, 28], [-50, 155]], [[38287, 35868], [-1, 54]], [[38286, 35922], [230, 0]], [[38516, 35922], [25, -44], [56, -7], [-1, -110], [-33, -12], [-19, -42]], [[38544, 35707], [-6, -25], [-45, -28]], [[38493, 35654], [-71, -7], [-36, -21], [-48, 2]], [[38338, 35628], [1, 241], [-52, -1]], [[37371, 31190], [46, -1], [1, 54], [47, -1], [1, 45]], [[37466, 31287], [25, -13], [23, -90], [45, -16], [58, -45]], [[37617, 31123], [-10, -35], [15, -65]], [[37622, 31023], [-176, 5]], [[37446, 31028], [-77, 2], [1, 45]], [[37370, 31075], [1, 115]], [[26240, 37292], [-2, 87]], [[26238, 37379], [163, -1]], [[26401, 37378], [54, -1]], [[26455, 37377], [245, -1]], [[26700, 37376], [53, -86]], [[26753, 37290], [87, -48], [57, -109], [-41, -61], [-51, -116], [-5, -30]], [[26800, 36926], [-18, -76], [-24, -41]], [[26758, 36809], [-210, 2]], [[26548, 36811], [0, 53], [-92, 0], [-20, 62], [-53, 43], [-36, 110], [0, 63], [-26, 45], [17, 52], [0, 54], [-98, -1]], [[42551, 34200], [157, 2]], [[42708, 34202], [5, -111]], [[42713, 34091], [-14, -41], [-79, -81]], [[42620, 33969], [-69, 0]], [[42551, 33969], [0, 100]], [[42551, 34069], [0, 131]], [[38717, 28874], [178, 0]], [[38895, 28874], [2, -245]], [[38897, 28629], [-15, -1]], [[38882, 28628], [-162, -14]], [[38720, 28614], [-3, 260]], [[36652, 32790], [241, -7]], [[36893, 32783], [-1, -27]], [[36892, 32756], [-4, -188]], [[36888, 32568], [-23, -4], [-207, 8]], [[36658, 32572], [-11, 0], [5, 144]], [[36652, 32716], [0, 74]], [[31018, 32413], [0, 118]], [[31018, 32531], [0, 172], [329, -2]], [[31347, 32701], [74, 0], [28, 15]], [[31449, 32716], [94, -113]], [[31543, 32603], [48, -60], [13, -46], [42, -87], [38, -34]], [[31684, 32376], [19, -28], [-12, -62]], [[31691, 32286], [-254, -2]], [[31437, 32284], [-238, 0], [-1, 54], [-46, 0]], [[31152, 32338], [0, 24], [-67, 28], [-22, 30], [-45, -7]], [[42977, 31108], [132, 1], [-5, 20]], [[43104, 31129], [102, -8]], [[43206, 31121], [48, 3]], [[43254, 31124], [-39, -159], [35, -17]], [[43250, 30948], [-24, -38]], [[43226, 30910], [-64, 66], [-36, -43], [-66, -25]], [[43060, 30908], [-89, -2]], [[42971, 30906], [6, 202]], [[29055, 34909], [201, 1]], [[29256, 34910], [1, -260]], [[29257, 34650], [-1, -203]], [[29256, 34447], [-24, -27], [-71, -39]], [[29161, 34381], [17, 29], [-22, 34], [-8, 51], [-55, 20]], [[29093, 34515], [-39, 38]], [[29054, 34553], [30, 67], [7, 90], [-15, 86], [-20, 23], [15, 46], [-16, 44]], [[36333, 31305], [102, 0]], [[36435, 31305], [5, -37]], [[36440, 31268], [25, -211]], [[36465, 31057], [9, -75]], [[36474, 30982], [-145, 0]], [[36329, 30982], [0, 162], [4, 161]], [[42341, 34820], [-1, -87]], [[42340, 34733], [-43, 0], [1, -45], [-85, -1], [0, -43], [-42, -1]], [[42171, 34643], [-42, 1], [0, 38]], [[42129, 34682], [88, 79], [16, 1], [108, 58]], [[42768, 32013], [-5, -28]], [[42763, 31985], [-27, 12], [32, 16]], [[42513, 31974], [77, 44]], [[42590, 32018], [46, 32], [27, -17]], [[42663, 32033], [31, -70], [6, -70]], [[42700, 31893], [-46, -22], [-27, -32], [-87, -26]], [[42540, 31813], [-16, 65]], [[42524, 31878], [23, 27]], [[42547, 31905], [-36, 48], [2, 21]], [[40501, 30807], [25, 62], [15, 2]], [[40541, 30871], [52, -30]], [[40593, 30841], [30, -76]], [[40623, 30765], [-34, -100], [21, -85]], [[40610, 30580], [-1, 0]], [[40609, 30580], [-125, -1]], [[40484, 30579], [-43, -1]], [[40441, 30578], [-48, -1]], [[40393, 30577], [40, 38], [-2, 64]], [[40431, 30679], [70, 128]], [[31306, 29386], [-2, 208]], [[31304, 29594], [269, 0], [0, -53], [178, 1], [1, -107]], [[31752, 29435], [0, -105], [-16, 0], [-1, -274], [219, 1]], [[31954, 29057], [2, -321]], [[31956, 28736], [-31, 0]], [[31925, 28736], [-142, 0], [-328, 1]], [[31455, 28737], [-165, 0]], [[31290, 28737], [0, 590], [16, 59]], [[30128, 30328], [294, 0], [281, -1]], [[30703, 30327], [4, -196], [1, -483]], [[30708, 29648], [-125, 0], [0, -171]], [[30583, 29477], [-196, 0], [-40, 5], [-220, 0]], [[30127, 29482], [0, 352]], [[30127, 29834], [1, 494]], [[39323, 28928], [-50, 41], [6, 35], [78, 60]], [[39357, 29064], [18, -4]], [[39375, 29060], [36, -27], [89, 0]], [[39500, 29033], [0, -107], [23, 0]], [[39523, 28926], [0, -27]], [[39523, 28899], [-22, -6], [0, -75], [-44, 0], [1, -79], [-20, -8]], [[39438, 28731], [-177, -1]], [[39261, 28730], [1, 44], [28, 76], [-5, 62], [38, 16]], [[29256, 34910], [0, 316]], [[29256, 35226], [1, 312]], [[29257, 35538], [0, 183]], [[29257, 35721], [101, -1], [0, -48], [102, 0]], [[29460, 35672], [-4, -68], [-1, -418], [21, 0], [0, -106], [213, -4]], [[29689, 35076], [3, -163], [-1, -264]], [[29691, 34649], [-434, 1]], [[36411, 32226], [237, -9]], [[36648, 32217], [-1, -35]], [[36647, 32182], [-3, -144]], [[36644, 32038], [-233, 9]], [[36411, 32047], [0, 179]], [[35529, 26706], [94, -5], [45, -17]], [[35668, 26684], [-24, -176]], [[35644, 26508], [-28, -45], [-82, -59], [-96, -100]], [[35438, 26304], [12, 49]], [[35450, 26353], [2, 13], [0, 5], [37, 13], [59, 64], [69, 30], [-5, 47], [-73, -61], [-28, -3], [-9, 53], [-27, 6]], [[35475, 26520], [-54, 60]], [[35421, 26580], [-6, 40], [22, 39], [57, 21], [35, 26]], [[44394, 31895], [-47, -6]], [[44347, 31889], [-1, 35]], [[44346, 31924], [48, -29]], [[42670, 32680], [56, 52], [39, -9], [72, 57], [28, 94], [19, 19], [25, -42], [31, -1]], [[42940, 32850], [-10, -45]], [[42930, 32805], [-22, -72], [4, -27], [-23, -48], [-29, -30], [6, -24]], [[42866, 32604], [-44, -45], [-27, -80]], [[42795, 32479], [-91, -17], [-42, 7], [-43, 41], [1, 69]], [[42620, 32579], [13, 68], [37, 33]], [[34754, 30022], [26, 46], [85, -27], [13, 17]], [[34878, 30058], [23, -86], [60, -7], [-13, -62]], [[34948, 29903], [-1, -261]], [[34947, 29642], [-192, -1]], [[34755, 29641], [-1, 228]], [[34754, 29869], [0, 153]], [[44196, 32111], [13, -22]], [[44209, 32089], [23, -32]], [[44232, 32057], [-36, -6], [6, -40]], [[44202, 32011], [-5, -24], [26, 0]], [[44223, 31987], [39, -32]], [[44262, 31955], [-9, -29]], [[44253, 31926], [-17, 33], [-35, -4], [-63, 29]], [[44138, 31984], [1, 63], [-14, 9]], [[44125, 32056], [5, 30], [66, 25]], [[33174, 34294], [-2, 135]], [[33172, 34429], [0, 107], [31, -1]], [[33203, 34535], [251, 1]], [[33454, 34536], [60, 0]], [[33514, 34536], [0, -215], [9, -27]], [[33523, 34294], [-349, 0]], [[34222, 34097], [99, -8]], [[34321, 34089], [104, -7]], [[34425, 34082], [0, -191]], [[34425, 33891], [-197, 0]], [[34228, 33891], [-5, 0]], [[34223, 33891], [-1, 206]], [[36801, 27533], [13, 52], [-6, 67]], [[36808, 27652], [1, 28], [-26, 25], [10, 45]], [[36793, 27750], [111, 0], [0, 54], [44, 0], [0, -54], [111, 0]], [[37059, 27750], [43, -15], [0, -73], [15, -64], [45, 0], [3, -46], [-48, 0], [0, -27]], [[37117, 27525], [-57, 9], [-259, -1]], [[37236, 29362], [285, -4]], [[37521, 29358], [-6, -77], [12, -28], [-4, -71]], [[37523, 29182], [-10, -20], [-80, -67], [-63, 1]], [[37370, 29096], [0, 54], [-45, 0], [0, 31], [-47, 24], [-43, 0]], [[37235, 29205], [1, 157]], [[36474, 30982], [18, -151]], [[36492, 30831], [-1, -5]], [[36491, 30826], [-21, -10], [-5, -42], [-44, 16], [-32, -20], [-36, 38], [-27, -21]], [[36326, 30787], [-7, 24], [-77, 33], [-19, 27]], [[36223, 30871], [-36, 42], [2, 69]], [[36189, 30982], [140, 0]], [[40346, 30502], [21, -146]], [[40367, 30356], [3, -22]], [[40370, 30334], [6, -40]], [[40376, 30294], [-20, -21], [-34, -76], [-90, -103]], [[40232, 30094], [-114, 0]], [[40118, 30094], [-2, 141], [23, 29]], [[40139, 30264], [24, 3], [95, 89], [69, 128], [19, 18]], [[43924, 35265], [97, 0], [16, -57]], [[44037, 35208], [3, -131], [59, 4]], [[44099, 35081], [0, -171]], [[44099, 34910], [-281, -1]], [[43818, 34909], [-61, -1]], [[43757, 34908], [12, 292]], [[43769, 35200], [1, 39], [26, 28], [74, -2]], [[43870, 35265], [54, 0]], [[43232, 34677], [-9, -106], [-51, -18], [-1, -51]], [[43171, 34502], [-49, -5]], [[43122, 34497], [1, 61], [-85, 3], [-33, -31]], [[43005, 34530], [-15, 49], [0, 98]], [[42990, 34677], [242, 0]], [[38175, 27903], [0, 215]], [[38175, 28118], [9, 0]], [[38184, 28118], [87, 1]], [[38271, 28119], [0, -59], [20, -34], [20, -85]], [[38311, 27941], [5, -40], [0, -177], [23, -31], [13, -47]], [[38352, 27646], [-61, 37], [-80, -11]], [[38211, 27672], [3, 49], [-30, 46], [-9, 35], [0, 101]], [[43852, 32783], [24, 22], [49, -44], [27, -10]], [[43952, 32751], [-3, -5], [0, -1], [-6, -37], [1, -6], [0, -1], [1, -2], [6, -27], [0, -1], [2, -1], [0, -1], [2, -1], [3, -6], [0, -1], [0, -1], [0, -3], [0, 0], [0, -1]], [[43958, 32656], [1, -1]], [[43959, 32655], [-27, -47], [10, -17]], [[43942, 32591], [-19, 1]], [[43923, 32592], [-34, 24]], [[43889, 32616], [-9, 21], [-27, -6]], [[43853, 32631], [-39, 36]], [[43814, 32667], [-7, 26]], [[43807, 32693], [1, 35], [44, 55]], [[39569, 37369], [18, -53], [-1, -215], [28, 0]], [[39614, 37101], [-88, -171], [-64, -93], [10, -17]], [[39472, 36820], [-31, 8], [-32, 42], [38, 101], [-104, 14], [10, 44], [30, 41], [8, 63], [-31, 74]], [[39360, 37207], [65, 0], [0, 109], [35, 0], [0, 54]], [[39460, 37370], [109, -1]], [[39609, 34427], [24, 14]], [[39633, 34441], [38, 27], [72, -41], [16, 11]], [[39759, 34438], [0, -40]], [[39759, 34398], [0, -160]], [[39759, 34238], [-24, -46], [-50, 0], [1, -63]], [[39686, 34129], [-74, 0]], [[39612, 34129], [-4, 108], [1, 190]], [[42023, 28322], [-15, -99]], [[42008, 28223], [-32, -44], [-31, 0], [-11, -31]], [[41934, 28148], [-54, 17], [-9, -40], [-22, 0]], [[41849, 28125], [-33, 46], [-1, 53], [-33, 33]], [[41782, 28257], [39, -10], [45, 42], [37, 2], [-15, 58]], [[41888, 28349], [52, -17], [53, 11], [30, -21]], [[40927, 29470], [54, 8]], [[40981, 29478], [36, 0]], [[41017, 29478], [-1, -157], [-34, -10]], [[40982, 29311], [0, 35], [-64, 2]], [[40918, 29348], [9, 30], [0, 92]], [[40514, 34761], [162, 0]], [[40676, 34761], [8, -39]], [[40684, 34722], [1, -103]], [[40685, 34619], [-170, -2]], [[40515, 34617], [-1, 144]], [[36801, 27533], [-29, -40], [-28, -75]], [[36744, 27418], [-3, 69], [-75, 32], [0, 24], [-36, 57]], [[36630, 27600], [-1, 50]], [[36629, 27650], [94, 1]], [[36723, 27651], [85, 1]], [[41186, 33500], [175, -14]], [[41361, 33486], [-6, -110]], [[41355, 33376], [-47, -86]], [[41308, 33290], [-95, 1]], [[41213, 33291], [7, 102], [-41, 4]], [[41179, 33397], [7, 103]], [[45837, 35252], [42, -9], [3, -35], [74, -19], [-1, -30], [93, 18], [50, -8], [26, -48]], [[46124, 35121], [41, -60]], [[46165, 35061], [-53, -17], [-27, 8], [-82, -12], [-13, 15], [-69, -23], [-43, 41], [-2, 41], [-50, -12]], [[45826, 35102], [-5, 41], [16, 109]], [[40092, 31782], [42, -35], [0, -44], [40, -52]], [[40174, 31651], [1, -58]], [[40175, 31593], [-100, 7]], [[40075, 31600], [-90, 7]], [[39985, 31607], [3, 77]], [[39988, 31684], [104, 98]], [[42977, 31108], [0, 35]], [[42977, 31143], [4, 211]], [[42981, 31354], [0, 5]], [[42981, 31359], [119, -4]], [[43100, 31355], [-2, -203], [6, -23]], [[35654, 32546], [173, -1]], [[35827, 32545], [0, -80]], [[35827, 32465], [-1, -189]], [[35826, 32276], [0, -81]], [[35826, 32195], [-246, 2]], [[35580, 32197], [2, 296]], [[35582, 32493], [71, 0], [1, 53]], [[46686, 35184], [28, -1]], [[46714, 35183], [-14, -81]], [[46700, 35102], [-65, -47], [-21, 29]], [[46614, 35084], [11, 13], [3, 16], [35, 18], [23, 53]], [[29004, 35913], [-389, 0]], [[28615, 35913], [-77, -2]], [[28538, 35911], [0, 215]], [[28538, 36126], [1, 54], [234, -1]], [[28773, 36179], [0, -53], [78, 0], [0, -27]], [[28851, 36099], [-3, -107], [22, 7], [68, -55], [66, -31]], [[35098, 27285], [15, -12], [122, 95]], [[35235, 27368], [82, -87], [-5, -9]], [[35312, 27272], [-27, -30], [1, -45], [-17, -76]], [[35269, 27121], [-162, -169]], [[35107, 26952], [-51, 69]], [[35056, 27021], [-56, 81], [8, 15]], [[35008, 27117], [90, 168]], [[40393, 30577], [-57, 1]], [[40336, 30578], [-113, 3]], [[40223, 30581], [-3, 145]], [[40220, 30726], [22, 11], [35, -16], [22, 43], [57, 21]], [[40356, 30785], [50, -35], [23, -38], [2, -33]], [[41331, 36674], [-247, -2]], [[41084, 36672], [0, 1]], [[41084, 36673], [3, 213]], [[41087, 36886], [215, 3]], [[41302, 36889], [30, -48], [21, -65], [-56, 29], [-24, -24], [5, -49], [53, -58]], [[40572, 31735], [99, 86]], [[40671, 31821], [29, -25], [39, 15], [44, -71]], [[40783, 31740], [0, -32], [-41, -47], [-46, -83]], [[40696, 31578], [-3, 0]], [[40693, 31578], [-82, 7]], [[40319, 31214], [60, 42], [65, -22], [41, -42]], [[40485, 31192], [18, -63], [-21, -51]], [[40482, 31078], [-78, 17], [-67, -16]], [[40337, 31079], [-34, 22]], [[40303, 31101], [16, 36], [0, 77]], [[35644, 29801], [26, -18], [13, 46], [48, -7], [13, 48], [89, 14], [43, -12]], [[35876, 29872], [-3, -10], [-2, -224]], [[35871, 29638], [0, -32]], [[35871, 29606], [-190, -36]], [[35681, 29570], [-39, -6], [0, 35]], [[35642, 29599], [2, 202]], [[36097, 33674], [13, 0]], [[36110, 33674], [52, -61], [46, -24], [40, 22]], [[36248, 33611], [50, -47]], [[36298, 33564], [-18, -19], [-22, -61], [-37, -47]], [[36221, 33437], [-26, 23], [-98, 0]], [[36097, 33460], [0, 214]], [[34240, 27444], [-38, 1], [0, 102], [-29, 0]], [[34173, 27547], [1, 134]], [[34174, 27681], [197, -3]], [[34371, 27678], [1, -94], [165, 3]], [[34537, 27587], [2, -221]], [[34539, 27366], [-113, 70], [-45, 6], [-141, 2]], [[41615, 26695], [109, 1], [0, -18], [68, 1]], [[41792, 26679], [18, -46], [36, -17], [36, -54]], [[41882, 26562], [-86, 0], [0, -27], [-185, -1]], [[41611, 26534], [10, 97], [-6, 64]], [[41002, 27670], [0, -110]], [[41002, 27560], [-35, -14], [-49, 16], [-42, -55], [11, -30]], [[40887, 27477], [-89, 31]], [[40798, 27508], [-37, 33], [-17, 38], [-19, 108]], [[40725, 27687], [202, 2], [3, -18], [72, -1]], [[39995, 28115], [88, 0]], [[40083, 28115], [66, -1]], [[40149, 28114], [-1, -178], [84, -1]], [[40232, 27935], [-31, -41], [21, -92], [-15, -27], [-35, -9], [-5, -24]], [[40167, 27742], [-1, -75]], [[40166, 27667], [-132, 58], [-43, 10]], [[39991, 27735], [4, 380]], [[38934, 30017], [46, 0]], [[38980, 30017], [0, -163]], [[38980, 29854], [-92, 1], [0, -36], [-45, -9]], [[38843, 29810], [-69, -1]], [[38774, 29809], [24, 46], [-1, 161]], [[38797, 30016], [137, 1]], [[20045, 43326], [46, 16], [68, 85], [-33, 35], [50, 41], [-4, 36], [32, 46], [65, 0], [132, -25], [5, 35], [-31, 37], [81, 47], [64, -7], [40, 34], [-43, 67], [11, 29]], [[20528, 43802], [133, -24], [70, -62], [68, -16], [18, -62], [78, -27]], [[20895, 43611], [-22, -62], [-40, -33], [103, -108]], [[20936, 43408], [17, -53], [-7, -62], [37, -80], [9, -70], [19, -33], [-51, -54], [-40, -82], [-68, -90], [-97, -78], [-74, -24], [-78, 22], [-19, 89], [-23, 39], [13, 45], [-48, 76], [47, 34], [45, 69], [-17, 43], [22, 65], [-14, 101], [-28, -5], [17, -70], [-26, -22], [-19, -158], [-56, -54], [-60, 23], [-57, 3], [-118, 71], [-63, 63], [-1, 41], [79, 36], [-27, 37], [9, 92], [-6, 65], [-51, -12], [29, -41], [-25, -88], [-69, -103], [-71, 38], [-21, 45]], [[20187, 43159], [26, 31], [72, -67], [-44, -109], [-35, 43], [-19, 102]], [[20355, 42904], [96, 30], [0, -87], [-38, 0], [-58, 57]], [[40562, 36245], [102, -2]], [[40664, 36243], [106, 0]], [[40770, 36243], [1, -213]], [[40771, 36030], [-210, -1]], [[40561, 36029], [1, 216]], [[35016, 33676], [197, 0]], [[35213, 33676], [0, -215]], [[35213, 33461], [-245, 0]], [[34968, 33461], [0, 215]], [[42062, 27055], [-17, 29]], [[42045, 27084], [100, 34], [8, 12]], [[42153, 27130], [7, -85], [116, 3], [-2, 90], [23, 10]], [[42297, 27148], [59, -173], [102, -220]], [[42458, 26755], [-102, -1], [1, -109], [-10, 0]], [[42347, 26645], [-12, 49], [-39, 84], [-32, -26], [-21, 29], [-41, 1], [-20, 27]], [[42182, 26809], [5, 65], [-64, 70], [-13, 50], [-35, 15], [-13, 46]], [[34802, 30928], [0, 108], [46, 0]], [[34848, 31036], [232, 0]], [[35080, 31036], [1, -215]], [[35081, 30821], [0, -25]], [[35081, 30796], [0, -1]], [[35081, 30795], [-123, 6], [-62, 20]], [[34896, 30821], [-91, 0], [-3, 107]], [[48482, 20393], [1, -74]], [[48483, 20319], [-10, 17]], [[48473, 20336], [-16, 59]], [[48457, 20395], [25, -2]], [[49378, 20320], [0, -10], [-15, -30], [-38, 14], [-8, 37], [61, -11]], [[40553, 30333], [17, 0]], [[40570, 30333], [-9, -28], [1, -87], [35, -5]], [[40597, 30213], [-18, -183]], [[40579, 30030], [-91, 3], [-72, -13]], [[40416, 30020], [-18, 127]], [[40398, 30147], [33, 0], [23, 52], [67, 41], [32, 93]], [[25710, 33459], [8, 85], [-16, 13], [-7, 117]], [[25695, 33674], [315, 0], [418, 1]], [[26428, 33675], [27, -38], [8, -44], [-15, -74], [13, -42], [-9, -83], [-44, -17], [-26, -57], [-51, -45], [19, -72], [-32, -46], [8, -42]], [[26326, 33115], [-39, -12]], [[26287, 33103], [-387, 0]], [[25900, 33103], [0, 23], [-135, 153], [-24, 18], [12, 80], [6, 126], [-49, -44]], [[34819, 33676], [-101, 0]], [[34718, 33676], [-96, 0]], [[34622, 33676], [0, 215]], [[34622, 33891], [1, 0]], [[34623, 33891], [194, 0]], [[34817, 33891], [2, 0]], [[37906, 34068], [122, 1]], [[38028, 34069], [-2, -219]], [[38026, 33850], [-1, -56]], [[38025, 33794], [-258, 4]], [[37767, 33798], [3, 30]], [[37770, 33828], [15, 58], [19, 22]], [[37804, 33908], [19, 8], [7, 130], [76, 22]], [[35109, 35835], [90, 0]], [[35199, 35835], [1, -204]], [[35200, 35631], [-104, 0]], [[35096, 35631], [-191, -1]], [[34905, 35630], [-14, 18]], [[34891, 35648], [-3, 186]], [[34888, 35834], [66, 0]], [[34954, 35834], [155, 1]], [[25189, 36492], [0, -79], [159, 2], [0, -31], [53, 0], [0, -51], [106, 0]], [[25507, 36333], [-1, -215]], [[25506, 36118], [-51, 0], [-1, -161], [-52, 0]], [[25402, 35957], [-157, 1], [0, 53], [-53, 0], [0, 54], [-161, -1], [0, 53], [-104, 3], [0, 106], [-50, 3], [-2, 156]], [[24875, 36385], [52, 0], [-1, 53], [71, 0], [0, 53], [192, 1]], [[45742, 36769], [151, 2], [127, -5]], [[46020, 36766], [9, -108], [-19, -32]], [[46010, 36626], [-15, 13], [-59, -10], [-21, -58], [-24, 12], [-32, -48]], [[45859, 36535], [-50, 11], [-83, 44]], [[45726, 36590], [-12, 23], [21, 39], [6, 54], [-19, 19], [20, 44]], [[39460, 37370], [1, 161], [-219, 0]], [[39242, 37531], [0, 107]], [[39242, 37638], [1, 159], [54, 1], [-23, 53], [0, 91]], [[39274, 37942], [63, -2], [69, -27], [47, -33], [26, -57], [57, -73], [23, -48], [57, -22], [62, 4]], [[39678, 37684], [0, -207]], [[39678, 37477], [-54, 0], [-1, -108], [-54, 0]], [[45934, 34649], [16, 30], [91, 12], [17, -39]], [[46058, 34652], [16, -36], [46, 6], [8, -61], [-34, -31], [19, -65]], [[46113, 34465], [-86, -15]], [[46027, 34450], [-51, 112], [-37, 0], [-5, 87]], [[42758, 31212], [-1, -56]], [[42757, 31156], [-9, -256]], [[42748, 30900], [-50, -1]], [[42698, 30899], [-12, 48], [-53, 60], [2, 20], [-58, 20]], [[42577, 31047], [-5, 50], [37, 18], [8, 46], [-11, 27]], [[42606, 31188], [78, 34], [74, -10]], [[38990, 32950], [1, 54]], [[38991, 33004], [145, -2]], [[39136, 33002], [0, -36], [45, -3]], [[39181, 32963], [0, -72], [-17, -57], [19, -24]], [[39183, 32810], [-194, 4]], [[38989, 32814], [1, 136]], [[37400, 33861], [173, -1]], [[37573, 33860], [0, -27]], [[37573, 33833], [-1, -190]], [[37572, 33643], [-146, 2]], [[37426, 33645], [-25, 1], [0, 51]], [[37401, 33697], [-1, 164]], [[36784, 33649], [174, 5]], [[36958, 33654], [-1, -162], [42, -1]], [[36999, 33491], [-4, -54]], [[36995, 33437], [-210, -2]], [[36785, 33435], [0, 107]], [[36785, 33542], [-1, 107]], [[44099, 34910], [17, 0]], [[44116, 34910], [22, -250]], [[44138, 34660], [-37, -28], [-278, -5]], [[43823, 34627], [-5, 282]], [[35534, 35233], [81, -21]], [[35615, 35212], [28, -27], [-11, -68], [22, -37]], [[35654, 35080], [-161, 1]], [[35493, 35081], [2, 152], [39, 0]], [[40245, 36622], [-113, 2]], [[40132, 36624], [3, 79], [38, 0], [21, 39], [54, -12], [27, 63], [57, 47], [14, -35], [-8, -89], [-21, -33], [4, -61]], [[40321, 36622], [-76, 0]], [[44096, 31976], [13, -9]], [[44109, 31967], [15, -19], [46, -3], [24, -30], [33, -5]], [[44227, 31910], [-18, -53], [-60, -37]], [[44149, 31820], [-45, -32]], [[44104, 31788], [-14, 65], [-74, 39]], [[44016, 31892], [62, 74], [18, 10]], [[35475, 26520], [-2, -1], [-4, -6], [-6, -21], [0, 0], [0, 0], [0, 0], [0, -9], [0, -2], [0, 0], [0, -1], [1, 0], [0, -6], [1, -10]], [[35465, 26464], [-145, -29], [9, -29], [33, -25]], [[35362, 26381], [-55, -32], [-27, -35]], [[35280, 26314], [-20, -1]], [[35260, 26313], [-25, 31], [-37, 3], [-34, 24], [-26, -3]], [[35138, 26368], [72, 139]], [[35210, 26507], [94, 101]], [[35304, 26608], [45, -2], [57, -38], [15, 12]], [[40680, 33379], [0, 29]], [[40680, 33408], [147, 0], [0, 14]], [[40827, 33422], [49, -1]], [[40876, 33421], [15, -25], [-10, -158]], [[40881, 33238], [-120, 12], [-83, -4]], [[40678, 33246], [2, 133]], [[40774, 28687], [64, -1], [4, 30]], [[40842, 28716], [46, -58]], [[40888, 28658], [33, -28], [-19, -85], [4, -42]], [[40906, 28503], [-67, -1]], [[40839, 28502], [-42, 0]], [[40797, 28502], [5, 38], [-29, 55], [1, 92]], [[40883, 29753], [30, 0]], [[40913, 29753], [8, -10], [-14, -121], [-26, 0], [0, -51]], [[40881, 29571], [-15, 0]], [[40866, 29571], [0, 77], [-30, 45]], [[40836, 29693], [0, 61], [47, -1]], [[29690, 35813], [-1, 336]], [[29689, 36149], [26, -36], [49, -1], [40, -90], [51, 40], [13, 34], [43, 24], [44, -19], [56, -73]], [[30011, 36028], [62, -70], [0, -49], [103, 0], [105, -27], [-1, -27], [156, -45], [79, 7], [244, 1], [0, 18]], [[30759, 35836], [27, 0]], [[30786, 35836], [7, -18], [1, -213], [6, 0], [0, -213], [-18, 0], [1, -215], [8, 0]], [[30791, 35177], [0, -106]], [[30791, 35071], [-205, 0], [-457, 1]], [[30129, 35072], [-12, 105], [-1, 160], [-62, 42], [-44, 59], [-24, 55], [-79, 41], [0, 34], [-30, 36], [-31, 86], [-1, 62], [-26, 0], [0, 60], [-129, 1]], [[40541, 33014], [1, 11]], [[40542, 33025], [15, -8], [44, 38], [52, 21]], [[40653, 33076], [19, -45], [-16, -35]], [[40656, 32996], [-117, 1], [2, 17]], [[41721, 29755], [42, 29], [48, -7]], [[41811, 29777], [10, -34], [35, -21]], [[41856, 29722], [38, -32]], [[41894, 29690], [-116, -118]], [[32912, 34293], [14, 0]], [[32926, 34293], [248, 0]], [[33174, 34293], [0, -156]], [[33174, 34137], [-261, 0]], [[32913, 34137], [-1, 156]], [[30143, 37842], [165, -1]], [[30308, 37841], [350, 4]], [[30658, 37845], [15, -47], [-12, -21], [17, -92]], [[30678, 37685], [0, -63], [-64, 0], [-44, -54], [0, -27], [-127, 0], [-36, -17], [0, -64], [-163, 0]], [[30244, 37460], [0, 90], [-36, 53], [0, 54], [-19, 24], [0, 54], [-46, 27], [0, 80]], [[44106, 34062], [10, -11], [98, 30]], [[44214, 34081], [72, -64]], [[44286, 34017], [-62, -49], [49, -172]], [[44273, 33796], [-57, -26], [-11, -21]], [[44205, 33749], [-12, 29], [-48, 36]], [[44145, 33814], [-28, 40], [4, 23]], [[44121, 33877], [-50, 39], [35, 48], [-19, 61], [19, 37]], [[35422, 36050], [0, 215]], [[35422, 36265], [190, 0]], [[35612, 36265], [0, -214]], [[41882, 32733], [-4, 82], [48, 31], [79, 14]], [[42005, 32860], [34, -33]], [[42039, 32827], [-24, -22], [11, -77], [-76, -42], [-7, -45]], [[41943, 32641], [-33, -35], [-25, 14], [1, 51]], [[41886, 32671], [-4, 62]], [[44969, 34350], [-11, -1]], [[44958, 34349], [48, 54], [23, 66], [59, 43]], [[45088, 34512], [142, -95]], [[45230, 34417], [-59, -72]], [[45171, 34345], [-60, -75], [-5, -27], [-51, -6]], [[45055, 34237], [-86, 113]], [[33745, 33676], [238, -1]], [[33983, 33675], [7, 0]], [[33990, 33675], [-1, -268]], [[33989, 33407], [-235, 1]], [[33754, 33408], [-9, 0]], [[33745, 33408], [0, 268]], [[39820, 32566], [-1, 28], [49, 8]], [[39868, 32602], [48, 2], [-1, -36], [49, 0], [-1, -53]], [[39963, 32515], [-13, -47]], [[39950, 32468], [-14, -10], [7, -61], [-35, -6], [-29, -48]], [[39879, 32343], [-70, 96]], [[39809, 32439], [21, 36], [-14, 51], [4, 40]], [[38751, 30331], [68, 9]], [[38819, 30340], [154, -1]], [[38973, 30339], [-1, -54]], [[38972, 30285], [-23, -9], [0, -62], [-15, -18]], [[38934, 30196], [-45, 9], [-139, 0]], [[38750, 30205], [1, 72]], [[38751, 30277], [0, 54]], [[34721, 35526], [14, -32], [68, -40]], [[34803, 35454], [2, -75]], [[34805, 35379], [-121, 11], [-55, 15], [-107, 56], [-131, -55]], [[34391, 35406], [1, 119]], [[34392, 35525], [329, 1]], [[36763, 37475], [6, 54]], [[36769, 37529], [159, 1], [0, -57]], [[36928, 37473], [-1, -106], [-37, 0], [2, -153]], [[36892, 37214], [1, -108]], [[36893, 37106], [-108, 1]], [[36785, 37107], [-2, 162]], [[36783, 37269], [-2, 99], [-18, 0], [0, 107]], [[34800, 38949], [170, -1]], [[34970, 38948], [333, 0]], [[35303, 38948], [20, -162], [-11, -53]], [[35312, 38733], [-332, 0]], [[34980, 38733], [-169, 1]], [[34811, 38734], [0, 107], [-11, 108]], [[41873, 33533], [165, -9]], [[42038, 33524], [25, -2], [-1, -54], [25, -1], [-1, -48]], [[42086, 33419], [-44, 3], [-15, -27], [6, -41], [-50, 8], [-9, -27]], [[41974, 33335], [-92, 6], [4, 56]], [[41886, 33397], [10, 108], [-23, 28]], [[42171, 34507], [169, 0]], [[42340, 34507], [1, -132]], [[42341, 34375], [0, -91], [-37, 0]], [[42304, 34284], [-133, 1]], [[42171, 34285], [0, 222]], [[29691, 34649], [0, -359]], [[29691, 34290], [-199, -1], [-236, 1], [0, 157]], [[25658, 34267], [-9, 0], [3, 281], [-1, 357]], [[25651, 34905], [282, -1], [209, 3]], [[26142, 34907], [249, 1], [261, 1]], [[26652, 34909], [4, 0]], [[26656, 34909], [0, -617]], [[26656, 34292], [-1, -221], [-99, 0], [-23, -72]], [[26533, 33999], [-4, 97], [-146, 1], [0, 107], [-346, -1], [-152, 0], [0, 65], [-227, -1]], [[34522, 25816], [69, -1], [0, 53]], [[34591, 25868], [107, 3], [12, -58]], [[34710, 25813], [14, -19], [0, -57], [11, -54], [21, 0], [-2, -167]], [[34754, 25516], [-231, 1]], [[34523, 25517], [-1, 299]], [[33176, 33086], [0, -216]], [[33176, 32870], [1, -50]], [[33177, 32820], [-253, -2], [-239, 0]], [[32685, 32818], [4, 48], [1, 214]], [[32690, 33080], [194, 1], [292, 5]], [[24162, 37029], [45, 17], [358, 0]], [[24565, 37046], [19, -36], [33, -15], [1, -75]], [[24618, 36920], [-22, -33], [42, -72], [-67, -50], [31, -74]], [[24602, 36691], [-291, 0], [-58, 31], [-26, 51], [-48, 24], [-36, 44], [17, 41], [-16, 48], [-28, -9]], [[24116, 36921], [-8, 36]], [[24108, 36957], [54, 9], [0, 63]], [[36482, 30421], [60, -20], [130, -3], [38, -17]], [[36710, 30381], [-2, -194]], [[36708, 30187], [-139, 3], [5, -101]], [[36574, 30089], [-99, -1]], [[36475, 30088], [4, 196]], [[36479, 30284], [3, 137]], [[41012, 29058], [15, -9]], [[41027, 29049], [41, -1], [34, -23]], [[41102, 29025], [-1, -109]], [[41101, 28916], [-48, -24], [-30, -50]], [[41023, 28842], [-43, 11], [-24, 25]], [[40956, 28878], [-32, 41], [0, 47]], [[40924, 28966], [25, 17], [33, 65], [30, 10]], [[41012, 29058], [22, 5]], [[41034, 29063], [-2, -5]], [[41032, 29058], [-20, 0]], [[39686, 34129], [1, -107]], [[39687, 34022], [1, -54]], [[39688, 33968], [-189, 1]], [[39499, 33969], [1, 9]], [[39500, 33978], [0, 151]], [[39500, 34129], [112, 0]], [[40640, 31302], [-3, 32], [21, 52], [30, 2], [42, 46]], [[40730, 31434], [58, -82], [42, -21], [13, -25]], [[40843, 31306], [9, -34], [34, -37]], [[40886, 31235], [-45, -38], [-43, -11], [-59, -37]], [[40739, 31149], [-18, 53], [-81, 100]], [[34891, 35648], [-249, 109], [-11, 78]], [[34631, 35835], [168, -1]], [[34799, 35834], [89, 0]], [[44688, 32612], [108, 7], [25, 40], [-15, 60]], [[44806, 32719], [127, -1]], [[44933, 32718], [-63, -219], [-21, -42]], [[44849, 32457], [-166, -21]], [[44683, 32436], [-16, 30], [52, 41], [-2, 43], [-29, 62]], [[39313, 32792], [18, 0]], [[39331, 32792], [114, -1]], [[39445, 32791], [-15, -48], [-26, -9], [1, -38]], [[39405, 32696], [-27, -32], [-20, -54], [-37, 10], [-23, -22]], [[39298, 32598], [-1, 2]], [[39297, 32600], [15, 20], [-9, 53], [15, 51], [-5, 68]], [[40319, 34293], [135, 2]], [[40454, 34295], [-1, -54]], [[40453, 34241], [1, -163], [-50, 0]], [[40404, 34078], [-82, 0]], [[40322, 34078], [-3, 215]], [[40782, 32732], [11, 12]], [[40793, 32744], [42, -70], [7, -59]], [[40842, 32615], [18, -47]], [[40860, 32568], [-97, -56]], [[40763, 32512], [-13, 39], [-31, 9]], [[40719, 32560], [-6, 97]], [[40713, 32657], [69, 75]], [[36873, 34229], [0, -196]], [[36873, 34033], [-95, -2]], [[36778, 34031], [-105, -2]], [[36673, 34029], [1, 199]], [[36674, 34228], [199, 1]], [[40322, 34078], [-99, -1]], [[40223, 34077], [-32, -1], [-3, 215]], [[40188, 34291], [0, 27]], [[40188, 34318], [114, 3]], [[40302, 34321], [17, -28]], [[40454, 34295], [-2, 107], [14, 53]], [[40466, 34455], [50, 0]], [[40516, 34455], [169, 4]], [[40685, 34459], [0, -11]], [[40685, 34448], [0, -163]], [[40685, 34285], [1, -41]], [[40686, 34244], [-118, -3]], [[40568, 34241], [-115, 0]], [[40138, 34588], [0, -27]], [[40138, 34561], [3, -162], [-11, 0]], [[40130, 34399], [-169, -1]], [[39961, 34398], [0, 161]], [[39961, 34559], [0, 27], [177, 2]], [[33699, 34964], [252, -2]], [[33951, 34962], [1, -213]], [[33952, 34749], [-195, -1]], [[33757, 34748], [-57, 1]], [[33700, 34749], [-1, 215]], [[33620, 37554], [47, 68], [45, -6], [98, 27]], [[33810, 37643], [18, -61], [-4, -49], [-31, -65], [7, -45], [44, -79]], [[33844, 37344], [-395, 0], [-252, 0]], [[33197, 37344], [0, 67]], [[33197, 37411], [59, 7], [81, -32], [78, 7], [84, 51], [82, 67], [39, 43]], [[34325, 26662], [5, 0]], [[34330, 26662], [1, -269]], [[34331, 26393], [-313, -4]], [[34018, 26389], [-1, 278]], [[34017, 26667], [308, -5]], [[37669, 36049], [0, -213]], [[37669, 35836], [-153, -1]], [[37516, 35835], [-160, 0]], [[37356, 35835], [0, 206]], [[37356, 36041], [0, 9], [161, -1]], [[37517, 36049], [152, 0]], [[42386, 30477], [17, -77], [-16, -39], [8, -55]], [[42395, 30306], [-237, 18]], [[42158, 30324], [-25, 154]], [[42133, 30478], [253, -1]], [[35612, 36927], [74, -14], [78, -43]], [[35764, 36870], [29, -15]], [[35793, 36855], [25, -34], [106, -99]], [[35924, 36722], [0, -28], [-48, 0], [-1, -53], [-262, 0]], [[35613, 36641], [-1, 106]], [[35612, 36747], [0, 180]], [[29054, 34553], [-68, 4], [-26, -33], [-62, 14], [-7, 17]], [[28891, 34555], [-14, 69], [-34, 12], [-7, 56], [-17, 32], [9, 68], [-56, 116]], [[28772, 34908], [21, 0]], [[28793, 34908], [262, 1]], [[37202, 36604], [14, 72]], [[37216, 36676], [276, -3]], [[37492, 36673], [0, -107]], [[37492, 36566], [0, -89], [-78, 1]], [[37414, 36478], [-98, 16], [-84, 91]], [[37232, 36585], [-30, 19]], [[41934, 28148], [13, -5], [6, -80], [-5, -50]], [[41948, 28013], [-59, -50], [-5, -45], [20, -68], [-19, -125]], [[41885, 27725], [-53, -2], [-18, 41], [-1, 88]], [[41813, 27852], [28, 133], [-118, 7], [2, 135], [124, -2]], [[40579, 30030], [54, -9]], [[40633, 30021], [-24, -80], [-31, -29]], [[40578, 29912], [-147, -2]], [[40431, 29910], [-5, 38]], [[40426, 29948], [-10, 72]], [[38740, 34041], [59, 2], [39, 41], [26, 1], [-1, 54], [26, 1]], [[38889, 34140], [150, 2], [4, -87], [50, 1]], [[39093, 34056], [0, -135]], [[39093, 33921], [0, -72]], [[39093, 33849], [-50, -1]], [[39043, 33848], [-250, 1]], [[38793, 33849], [-50, -1], [0, 27]], [[38743, 33875], [-3, 166]], [[47028, 36427], [48, 18]], [[47076, 36445], [24, -117], [-1, -57], [36, -16], [-5, -34]], [[47130, 36221], [-13, -92]], [[47117, 36129], [-35, -43], [-87, 81], [-21, -32], [-51, 29]], [[46923, 36164], [-2, 17], [66, 93], [41, 153]], [[26645, 38599], [178, 0], [56, 9], [0, -63], [77, 0]], [[26956, 38545], [0, -294]], [[26956, 38251], [-112, 1], [-19, -27], [-179, -3]], [[26646, 38222], [-1, 377]], [[27144, 31725], [68, 7], [426, 0], [0, -6], [310, 0]], [[27948, 31726], [3, -401], [-48, -106], [-39, -4], [-55, 78], [-59, -9], [-53, 8], [-55, -34], [6, -68], [14, -40], [8, -161], [15, -23], [-11, -69], [37, -110], [11, -99], [-27, -28], [12, -27], [-13, -44]], [[27694, 30589], [-272, 310], [-170, 188]], [[27252, 31087], [-86, 96]], [[27166, 31183], [0, 128], [-21, 1], [-1, 413]], [[34230, 33676], [195, 0]], [[34425, 33676], [48, 0]], [[34473, 33676], [1, -268]], [[34474, 33408], [-234, -1]], [[34240, 33407], [-11, 0]], [[34229, 33407], [1, 269]], [[34805, 35379], [2, -200]], [[34807, 35179], [0, -215]], [[34807, 34964], [-200, 0]], [[34607, 34964], [-201, -1]], [[34406, 34963], [-5, 0]], [[34401, 34963], [-5, 214], [0, 215], [-5, 14]], [[36652, 32790], [-24, 1], [-4, 54], [4, 109]], [[36628, 32954], [2, 52]], [[36630, 33006], [121, -5], [1, 18], [147, -6]], [[36899, 33013], [-6, -230]], [[37802, 36134], [44, 0], [7, 50], [68, 9]], [[37921, 36193], [77, -5]], [[37998, 36188], [27, 0], [1, -214]], [[38026, 35974], [-152, 0]], [[37874, 35974], [6, 31], [-17, 44]], [[37863, 36049], [-61, 85]], [[37415, 28826], [0, 81]], [[37415, 28907], [121, 0]], [[37536, 28907], [18, 0], [9, -68], [34, -10]], [[37597, 28829], [-7, -41], [9, -70]], [[37599, 28718], [-6, -27], [-44, 0]], [[37549, 28691], [-134, 0]], [[37415, 28691], [0, 135]], [[39990, 31927], [-30, 94]], [[39960, 32021], [136, 9]], [[40096, 32030], [47, -75], [-3, -29]], [[40140, 31926], [-8, -71], [-17, 5]], [[40115, 31860], [-46, 27], [-27, -15], [-52, 55]], [[38749, 33075], [-2, -177]], [[38747, 32898], [-149, 1]], [[38598, 32899], [-1, 81], [-17, 0], [-1, 77]], [[38579, 33057], [23, 18], [147, 0]], [[38024, 33739], [95, 0], [39, -76], [40, 4]], [[38198, 33667], [-30, -69]], [[38168, 33598], [5, -23]], [[38173, 33575], [-150, 4]], [[38023, 33579], [1, 160]], [[36461, 36695], [1, 54], [107, -1]], [[36569, 36748], [106, 0]], [[36675, 36748], [1, -161]], [[36676, 36587], [-106, 0], [-1, -54], [-106, 0], [0, 53]], [[36463, 36586], [-2, 109]], [[37492, 36673], [0, 163], [-9, 54]], [[37483, 36890], [214, -1]], [[37697, 36889], [6, -54], [0, -163]], [[37703, 36672], [0, -106]], [[37703, 36566], [-211, 0]], [[31543, 32603], [325, -4]], [[31868, 32599], [0, -211]], [[31868, 32388], [-26, 17], [-26, 47], [-30, -35], [-76, -45], [-26, 4]], [[38189, 32220], [169, -1]], [[38358, 32219], [0, -28]], [[38358, 32191], [1, -176], [-32, 2]], [[38327, 32017], [-144, 2]], [[38183, 32019], [1, 173], [5, 28]], [[34003, 29059], [-2, -272]], [[34001, 28787], [-36, 0]], [[33965, 28787], [-188, 2]], [[33777, 28789], [2, 271]], [[33779, 29060], [224, -1]], [[44753, 34688], [-9, 221]], [[44744, 34909], [54, 0]], [[44798, 34909], [35, -38], [4, -31], [54, -23]], [[44891, 34817], [41, -61], [4, -83], [-12, -10]], [[44924, 34663], [-50, -98], [-35, -43], [-41, -83]], [[44798, 34439], [-63, -4]], [[44735, 34435], [28, 17], [-10, 236]], [[45329, 35683], [-8, 73]], [[45321, 35756], [120, 16], [41, -95], [85, 38]], [[45567, 35715], [9, -127], [-27, -98]], [[45549, 35490], [-21, -30], [3, -67]], [[45531, 35393], [-58, -3]], [[45473, 35390], [-85, 95], [-38, 14]], [[45350, 35499], [-2, 17]], [[45348, 35516], [-19, 167]], [[35562, 27931], [48, 30], [52, 109], [42, 32]], [[35704, 28102], [32, -93]], [[35736, 28009], [2, -101], [-10, -33], [34, -116], [-20, -54]], [[35742, 27705], [-2, 30], [-61, 0]], [[35679, 27735], [7, 30], [-32, 54], [-50, 57], [-56, 20], [14, 35]], [[35402, 29942], [-15, 72]], [[35387, 30014], [16, 63]], [[35403, 30077], [114, 0], [37, -36]], [[35554, 30041], [17, -31], [-32, -40], [14, -64]], [[35553, 29906], [-37, 10], [-8, -38], [-30, -16], [-15, 28], [-31, -10], [-30, 62]], [[43244, 33503], [52, 0]], [[43296, 33503], [187, 0]], [[43483, 33503], [16, 0]], [[43499, 33503], [4, -53]], [[43503, 33450], [-59, -74]], [[43444, 33376], [-82, 12]], [[43362, 33388], [-60, 46], [-71, -105], [-48, 24]], [[43183, 33353], [61, 150]], [[42414, 33502], [137, 0]], [[42551, 33502], [43, 0]], [[42594, 33502], [11, -51]], [[42605, 33451], [-45, -46], [2, -58]], [[42562, 33347], [-22, -25]], [[42540, 33322], [-32, 13]], [[42508, 33335], [-43, 16], [-55, 67], [-44, 14]], [[42366, 33432], [28, 8], [20, 62]], [[37921, 36193], [-6, 103], [0, 216]], [[37915, 36512], [106, 0]], [[38021, 36512], [-1, -54], [53, 0], [0, -53], [212, 1]], [[38285, 36406], [1, -109]], [[38286, 36297], [0, -57]], [[38286, 36240], [-54, 3], [-204, -2], [-27, -14], [-3, -39]], [[23892, 37469], [1, -227]], [[23893, 37242], [-156, -4], [-109, 6]], [[23628, 37244], [1, 77], [15, 102], [-33, 93], [67, -40], [43, 34], [17, -15], [74, 43]], [[23895, 37615], [-6, 252]], [[23889, 37867], [92, 1]], [[23981, 37868], [-1, -18], [418, -1]], [[24398, 37849], [85, -6], [72, -15], [36, 34], [132, 0]], [[24723, 37862], [35, -49], [-5, -42], [-28, -63], [24, -90], [-55, 0]], [[24694, 37618], [-313, -2]], [[24381, 37616], [-425, 0]], [[43757, 34908], [-199, 1]], [[43558, 34909], [-44, 0]], [[43514, 34909], [0, 322]], [[43514, 35231], [118, 0]], [[43632, 35231], [86, -2], [0, -27], [51, -2]], [[37827, 34823], [0, 54]], [[37827, 34877], [204, -1]], [[38031, 34876], [0, -108]], [[38031, 34768], [-1, -108]], [[38030, 34660], [-203, 1]], [[37827, 34661], [0, 162]], [[40030, 32865], [0, -164]], [[40030, 32701], [0, -18], [-163, 1]], [[39867, 32684], [0, 81]], [[39867, 32765], [0, 99]], [[39867, 32864], [163, 1]], [[40883, 29753], [1, 195], [31, -4]], [[40915, 29944], [7, -24], [103, -102]], [[41025, 29818], [-38, -79], [-32, 13]], [[40955, 29752], [-42, 1]], [[40885, 30318], [11, -59], [27, 0], [0, -53]], [[40923, 30206], [-141, 0], [-31, 19]], [[40751, 30225], [-1, 84]], [[40750, 30309], [124, 0], [11, 9]], [[29915, 38696], [-2, -244]], [[29913, 38452], [-57, -2], [-23, -21], [-44, 8], [-9, -104], [-137, -79], [-24, -1]], [[29619, 38253], [-185, 0]], [[29434, 38253], [-57, 18], [0, 49], [-41, 0], [-78, 41], [29, 66], [-188, 0]], [[29099, 38427], [0, 178]], [[29099, 38605], [-1, 90]], [[29098, 38695], [254, 0], [0, 54], [31, 0]], [[29383, 38749], [57, 0], [0, 53], [339, 0], [3, -52], [49, 0], [0, -55], [84, 1]], [[34208, 35360], [6, -183], [0, -215]], [[34214, 34962], [-10, 0]], [[34204, 34962], [-210, 0]], [[33994, 34962], [0, 215], [-7, 0], [0, 214], [-6, 40]], [[33981, 35431], [28, -23], [138, -40], [61, -8]], [[40921, 31571], [15, 0]], [[40936, 31571], [105, -2]], [[41041, 31569], [35, -105]], [[41076, 31464], [-43, -92]], [[41033, 31372], [-28, -24], [-69, 8], [-63, -17]], [[40873, 31339], [19, 42], [-9, 112], [39, 29], [-1, 49]], [[43515, 31370], [75, -13], [10, -22], [45, -5]], [[43645, 31330], [-108, -237]], [[43537, 31093], [-13, 35], [-62, 62], [-52, 29]], [[43410, 31219], [1, 36], [21, 58]], [[43432, 31313], [37, -3], [15, 40], [31, 20]], [[44287, 33185], [-37, 19]], [[44250, 33204], [-40, 25], [0, 58], [79, 0], [0, -81]], [[44289, 33206], [-2, -21]], [[35654, 32546], [1, 216]], [[35655, 32762], [1, 134]], [[35656, 32896], [177, 0]], [[35833, 32896], [-2, -188]], [[35831, 32708], [-4, -163]], [[36205, 35039], [101, 0]], [[36306, 35039], [100, -1]], [[36406, 35038], [0, -214]], [[36406, 34824], [-50, 0]], [[36356, 34824], [-152, 1]], [[36204, 34825], [1, 214]], [[37772, 28861], [112, 5], [23, 21], [26, -21]], [[37933, 28866], [-17, -48], [47, -5], [10, -3], [1, -3]], [[37974, 28807], [-30, -41], [-4, -37], [-25, -4], [-36, -69]], [[37879, 28656], [-43, -16], [-8, -38], [20, -21]], [[37848, 28581], [-27, -10]], [[37821, 28571], [-72, 12]], [[37749, 28583], [-14, 31], [1, 49]], [[37736, 28663], [28, 30], [8, 168]], [[40808, 30963], [0, 7], [-2, 3]], [[40806, 30973], [17, 21], [82, 0], [48, -29]], [[40953, 30965], [40, -22], [59, -69]], [[41052, 30874], [-26, -37], [-3, -69]], [[41023, 30768], [-28, -26], [-52, 10], [-35, -37]], [[40908, 30715], [-89, 49]], [[40819, 30764], [37, 28], [1, 42], [-49, 129]], [[33177, 32602], [208, 0]], [[33385, 32602], [10, 0]], [[33395, 32602], [0, -269], [7, -56]], [[33402, 32277], [-224, 1]], [[33178, 32278], [-1, 324]], [[36487, 35470], [0, -163]], [[36487, 35307], [0, -53]], [[36487, 35254], [-205, 1]], [[36282, 35255], [0, 216]], [[36282, 35471], [205, -1]], [[26902, 36237], [41, 0], [10, 132], [16, 49]], [[26969, 36418], [35, 40], [27, -6]], [[27031, 36452], [2, -108], [-27, 0], [0, -107]], [[27006, 36237], [-26, 0], [-4, -212]], [[26976, 36025], [-100, 0]], [[26876, 36025], [-87, 0]], [[26789, 36025], [0, 107], [61, 0], [17, 53], [35, -1], [0, 53]], [[37617, 31123], [42, 47], [18, -1]], [[37677, 31169], [108, -3], [-1, -27], [47, -1]], [[37831, 31138], [69, -1]], [[37900, 31137], [-23, -53], [-45, -63], [-6, -108], [-93, 2]], [[37733, 30915], [-92, 3]], [[37641, 30918], [2, 109], [-21, -4]], [[37498, 30595], [1, 34]], [[37499, 30629], [52, -3], [43, -21], [43, 2]], [[37637, 30607], [0, -68], [48, -1], [-3, -153], [25, -21], [3, -56], [-19, -40]], [[37691, 30268], [-11, 1]], [[37680, 30269], [-142, 4]], [[37538, 30273], [0, 81], [-36, 1], [15, 66], [3, 174], [-22, 0]], [[39500, 34129], [0, 169]], [[39500, 34298], [-1, 96]], [[39499, 34394], [49, -2], [61, 35]], [[41297, 30255], [96, 10], [33, 37]], [[41426, 30302], [22, -27]], [[41448, 30275], [-18, -48], [-9, -88]], [[41421, 30139], [-25, -21], [-55, 16], [-25, -25]], [[41316, 30109], [8, 23], [-25, 39], [-2, 84]], [[42096, 25349], [-1, 158]], [[42095, 25507], [271, 0], [26, 117]], [[42392, 25624], [1, -386]], [[42393, 25238], [1, -46]], [[42394, 25192], [-169, -4], [-2, 163], [-127, -2]], [[41610, 29723], [-29, -54], [-34, -6], [-12, -36]], [[41535, 29627], [-57, 3], [-13, 13]], [[41465, 29643], [12, 31], [-12, 38], [27, 47], [-19, 22]], [[41473, 29781], [20, 25]], [[41493, 29806], [25, -62], [34, 14], [58, -35]], [[36744, 27418], [-30, -29], [37, -79]], [[36751, 27310], [-71, -5], [-58, -21], [-96, -53]], [[36526, 27231], [-2, 201], [-36, 1]], [[36488, 27433], [-2, 138]], [[36486, 27571], [67, 3], [7, 32], [31, 12], [39, -18]], [[29060, 37849], [-46, 29], [-2, 43], [-22, 21]], [[28990, 37942], [52, 0], [0, 54], [166, 7], [0, 47], [33, 0], [-1, -48], [75, -18], [24, -37], [89, -60]], [[29428, 37887], [14, -32], [72, -57], [52, -5], [27, 24]], [[29593, 37817], [-4, -302]], [[29589, 37515], [0, -23]], [[29589, 37492], [-218, 5]], [[29371, 37497], [-121, 0]], [[29250, 37497], [-25, 77], [27, 50], [-40, 33], [-43, -8], [-32, 81], [-4, 40], [-32, 5], [-41, 74]], [[30596, 32217], [213, 0]], [[30809, 32217], [0, -134]], [[30809, 32083], [0, -260]], [[30809, 31823], [-391, -1]], [[30418, 31822], [39, 91], [-1, 47], [31, 40], [7, 35], [43, 23], [32, 52], [6, 74], [21, 33]], [[35191, 28316], [33, -47], [29, 22]], [[35253, 28291], [90, -181]], [[35343, 28110], [-82, -60], [-25, -84]], [[35236, 27966], [-135, 73], [-88, 22]], [[35013, 28061], [-36, 79]], [[34977, 28140], [2, 21]], [[34979, 28161], [212, 155]], [[38895, 29308], [44, 0]], [[38939, 29308], [203, 1]], [[39142, 29309], [-18, -216]], [[39124, 29093], [-229, -1]], [[38895, 29092], [0, 216]], [[36907, 30181], [31, -1]], [[36938, 30180], [22, -36], [69, -2], [0, -18], [71, -7], [-3, -48], [68, -2]], [[37165, 30067], [-3, -107], [-24, 2], [24, -109]], [[37162, 29853], [-60, -25], [-32, 5]], [[37070, 29833], [-15, 23], [-66, 19], [-5, 32], [-31, 37]], [[36953, 29944], [-27, 59], [-5, 93], [-14, 31], [0, 54]], [[24727, 34908], [-367, 6]], [[24360, 34914], [2, 288], [1, 322]], [[24363, 35524], [0, 44], [82, 6], [29, 88], [21, 28], [-19, 60], [-47, 48]], [[24429, 35798], [0, 72], [56, 36]], [[24485, 35906], [292, 1]], [[24777, 35907], [-7, -160], [-1, -377], [203, -1], [2, -464]], [[24974, 34905], [-247, 3]], [[44432, 35946], [78, -7], [-2, 24], [109, -11]], [[44617, 35952], [8, -135]], [[44625, 35817], [-25, 8], [-21, -101], [-9, -102]], [[44570, 35622], [-48, 18]], [[44522, 35640], [-76, 39], [-24, -26], [-37, 16], [-74, -2]], [[44311, 35667], [-55, 16], [-5, 102]], [[44251, 35785], [89, 64], [50, -6], [41, 38], [1, 65]], [[48753, 20297], [32, -8]], [[48785, 20289], [0, -25]], [[48785, 20264], [-27, -19]], [[48758, 20245], [-20, 2]], [[48738, 20247], [15, 50]], [[40376, 30294], [22, -147]], [[40426, 29948], [-57, -14]], [[40369, 29934], [-91, 17]], [[40278, 29951], [1, 13], [-47, 130]], [[34539, 27366], [60, -37]], [[34599, 27329], [-12, -19]], [[34587, 27310], [-53, -79], [-24, 38], [-187, 2]], [[34323, 27271], [-83, 0]], [[34240, 27271], [0, 173]], [[30658, 37845], [-28, 59]], [[30630, 37904], [185, 5], [326, 0], [-1, -9], [276, 1]], [[31416, 37901], [-14, -9], [0, -215], [-15, 0], [0, -214], [-16, 0], [0, -215]], [[31371, 37248], [-19, 0], [-1, -270], [-19, 0], [0, -106]], [[31332, 36872], [-212, 0], [-1, 107], [17, -1], [0, 198], [-79, 7], [-12, 115]], [[31045, 37298], [0, 165], [-29, 0], [-1, 104], [-9, 56], [-54, 0], [-9, 53], [-246, 0]], [[30697, 37676], [-19, 9]], [[32322, 31820], [401, 3]], [[32723, 31823], [37, 0]], [[32760, 31823], [0, -309]], [[32760, 31514], [-18, 0], [1, -275]], [[32743, 31239], [0, -195]], [[32743, 31044], [-146, 0]], [[32597, 31044], [0, 160], [5, 54], [-187, 0], [0, 55], [-94, 0], [0, 27]], [[32321, 31340], [1, 480]], [[40223, 37690], [0, -161]], [[40223, 37529], [0, -170]], [[40223, 37359], [-27, -23], [-54, 19], [-63, 1], [-56, -36], [-17, -71], [-42, -20]], [[39964, 37229], [-13, 85], [0, 162], [-55, 0]], [[39896, 37476], [0, 108], [109, -1], [0, 108], [218, -1]], [[45050, 34919], [144, 95]], [[45194, 35014], [62, -34], [102, -11], [31, 49], [40, -30]], [[45429, 34988], [-8, -30]], [[45421, 34958], [-14, -110], [9, -91], [-5, -101]], [[45411, 34656], [-76, -5], [-54, 14], [-51, -8]], [[45230, 34657], [-12, 33], [-78, 62], [53, 80], [-143, 87]], [[44929, 33669], [56, -65], [12, -58], [36, -2], [37, -36]], [[45070, 33508], [-62, -75]], [[45008, 33433], [-26, 53], [-22, 7], [-66, 113]], [[44894, 33606], [2, 38], [33, 25]], [[38159, 33130], [19, 43], [108, -8], [-1, 31], [49, 0], [24, 23]], [[38358, 33219], [1, -162]], [[38359, 33057], [-56, 0], [-1, -47]], [[38302, 33010], [-76, 27]], [[38226, 33037], [-30, -8], [-22, 24], [-15, 77]], [[43809, 32258], [-72, 15]], [[43737, 32273], [47, 172]], [[43784, 32445], [20, -11]], [[43804, 32434], [69, -66], [27, -44], [33, -14]], [[43933, 32310], [29, -47], [21, 0], [47, -54]], [[44030, 32209], [-51, -54]], [[43979, 32155], [-61, 35], [-49, 65], [-25, -11], [-35, 14]], [[33176, 33086], [0, 53]], [[33176, 33139], [247, 1]], [[33423, 33140], [-2, -268]], [[33421, 32872], [-36, 0]], [[33385, 32872], [-209, -2]], [[39678, 37684], [43, 24], [62, -60], [83, 38], [43, -22], [40, 38], [155, 92], [8, -10], [111, 20]], [[40223, 37804], [0, -114]], [[39896, 37476], [-218, 1]], [[37486, 31513], [13, 0]], [[37499, 31513], [195, 1]], [[37694, 31514], [97, -2]], [[37791, 31512], [-2, -100], [-49, 1], [0, -54], [-54, 3]], [[37686, 31362], [-203, 4]], [[37483, 31366], [3, 147]], [[34683, 25191], [116, 324]], [[34799, 25515], [146, -1]], [[34945, 25514], [0, -102], [12, -2]], [[34957, 25410], [-21, -101], [62, -9], [0, -53]], [[34998, 25247], [0, -172]], [[34998, 25075], [-28, -9], [-140, 11], [-85, 78], [-62, 36]], [[43017, 30354], [-5, 6]], [[43012, 30360], [57, 88], [-8, 40]], [[43061, 30488], [68, -3], [67, 74]], [[43196, 30559], [36, -25], [23, -48]], [[43255, 30486], [21, -61], [21, -29], [-27, -126]], [[43270, 30270], [-36, -22], [-52, -93]], [[43182, 30155], [-165, 199]], [[40355, 36030], [0, -215]], [[40355, 35815], [0, -107]], [[40355, 35708], [-99, -1]], [[40256, 35707], [-109, 1], [0, 107]], [[40147, 35815], [1, 215]], [[40148, 36030], [207, 0]], [[25357, 37263], [57, 14]], [[25414, 37277], [87, 13], [43, 42], [60, -4]], [[25604, 37328], [-1, -195], [81, 0], [0, -53], [45, 0], [0, -268], [-7, -53]], [[25722, 36759], [-222, -1]], [[25500, 36758], [-52, 0], [0, 45]], [[25448, 36803], [14, 63], [-54, -1], [0, 55], [-54, 0], [3, 343]], [[36177, 37606], [185, 0]], [[36362, 37606], [34, -12]], [[36396, 37594], [4, -355]], [[36400, 37239], [-216, 0]], [[36184, 37239], [-3, 205]], [[36181, 37444], [-4, 162]], [[36806, 30820], [18, 18], [33, -13], [71, 24], [7, -36], [50, -23]], [[36985, 30790], [10, -6]], [[36995, 30784], [-1, -65], [-77, 2], [-32, -43], [-77, -7], [1, -71]], [[36809, 30600], [-161, 4], [-29, 45]], [[36619, 30649], [1, 27], [47, -1], [1, 45]], [[36668, 30720], [47, 10], [1, 55], [47, -4], [7, 56], [36, -17]], [[42143, 30847], [-35, 89]], [[42108, 30936], [1, 3]], [[42109, 30939], [250, -13]], [[42359, 30926], [6, -37]], [[42365, 30889], [-4, -54]], [[42361, 30835], [-218, 12]], [[36661, 29694], [47, -1], [48, 37]], [[36756, 29730], [23, -69], [22, -10]], [[36801, 29651], [-5, -38], [16, -29], [6, -57], [-39, -71], [-34, -13], [-3, -34], [23, -44]], [[36765, 29365], [-4, 0]], [[36761, 29365], [-100, 0]], [[36661, 29365], [0, 156]], [[36661, 29521], [0, 173]], [[42161, 26751], [-19, -44], [0, -45], [57, -1], [0, -18], [148, 2]], [[42347, 26645], [22, -47], [22, -16], [-1, -73], [11, -28]], [[42401, 26481], [-345, 0]], [[42056, 26481], [-1, 259], [5, 12], [101, -1]], [[30596, 32217], [1, 35], [41, 16], [6, 33]], [[30644, 32301], [28, 29], [25, 51]], [[30697, 32381], [44, 10], [30, 27]], [[30771, 32418], [38, -121], [0, -80]], [[28793, 34908], [1, 106], [16, 42], [-24, 29]], [[28786, 35085], [62, 0], [38, -18], [9, 99]], [[28895, 35166], [121, 0]], [[29016, 35166], [17, -33], [-3, -55], [-26, -41], [13, -70], [35, -16], [3, -42]], [[40583, 29854], [60, -19]], [[40643, 29835], [-2, -128], [42, 1]], [[40683, 29708], [-18, -39]], [[40665, 29669], [-40, -46], [-32, -7]], [[40593, 29616], [-121, 2]], [[40472, 29618], [-5, 33]], [[40467, 29651], [-15, 105]], [[40452, 29756], [22, 0], [104, 38], [5, 60]], [[35392, 33407], [66, 0]], [[35458, 33407], [98, 0]], [[35556, 33407], [-57, -81], [-3, -25], [35, -63], [53, -75], [56, 1]], [[35640, 33164], [-1, -80], [-48, 0]], [[35591, 33084], [0, 18], [-89, 0], [-64, 10], [1, 80], [-49, 1]], [[35390, 33193], [2, 214]], [[34017, 27940], [-368, -3]], [[33649, 27937], [-1, 233]], [[33648, 28170], [119, 2]], [[33767, 28172], [250, 1]], [[41949, 31911], [33, -55], [20, -59]], [[42002, 31797], [-25, -18]], [[41977, 31779], [-49, -40], [-56, -6], [-12, -36], [-41, -16], [-57, -38]], [[41762, 31643], [-33, 103]], [[41729, 31746], [47, 18], [-13, 41]], [[41763, 31805], [78, 43]], [[41841, 31848], [32, -2], [28, 46], [48, 19]], [[41989, 31274], [115, 4]], [[42104, 31278], [88, -58], [7, -17]], [[42199, 31203], [-7, -45], [4, -79]], [[42196, 31079], [-13, -17]], [[42183, 31062], [-36, 11], [-47, -5], [-20, 29], [-47, 31], [-43, 54]], [[41990, 31182], [31, 65], [-32, 27]], [[28851, 36099], [61, -18], [121, -9], [25, 28], [45, -4]], [[29103, 36096], [0, -186]], [[29103, 35910], [-99, 3]], [[39591, 32592], [8, -9], [98, 0]], [[39697, 32583], [24, -17]], [[39721, 32566], [0, -53], [-91, -91], [-18, -57]], [[39612, 32365], [-15, 12]], [[39597, 32377], [-65, 26]], [[39532, 32403], [-9, 58], [2, 81]], [[39525, 32542], [0, 22], [66, 0], [0, 28]], [[40446, 31941], [17, 30], [53, 20], [12, 23]], [[40528, 32014], [47, -33], [6, -44]], [[40581, 31937], [-71, -116], [-11, -45]], [[40499, 31776], [-96, 8]], [[40403, 31784], [-23, 43], [-10, 63]], [[40370, 31890], [76, 51]], [[40590, 32910], [59, 20], [32, -5], [8, 44]], [[40689, 32969], [59, -49]], [[40748, 32920], [-53, -8], [-2, -27]], [[40693, 32885], [-65, -36]], [[40628, 32849], [-38, 61]], [[40793, 32744], [35, 31]], [[40828, 32775], [118, 24]], [[40946, 32799], [19, -17]], [[40965, 32782], [6, -48], [20, -11]], [[40991, 32723], [-40, -54]], [[40951, 32669], [-66, -53], [-43, -1]], [[47130, 36221], [47, -11], [18, 37], [43, -17]], [[47238, 36230], [-24, -70], [49, -12], [-19, -70], [20, -42]], [[47264, 36036], [-25, -50], [-35, -14], [-23, 34]], [[47181, 36006], [-2, 63], [-36, 22], [-26, 38]], [[29589, 37515], [274, -1]], [[29863, 37514], [22, -54], [-1, -54], [82, 0]], [[29966, 37406], [-3, -52], [-36, -1], [-25, -108], [1, -108], [-54, 0], [0, -27], [-54, 0], [0, -26], [-53, 0], [0, -108], [-58, 0], [0, -109]], [[29684, 36867], [-71, 0], [4, 109], [-1, 270], [-31, 0], [0, 215], [4, 31]], [[35642, 29599], [-196, 5]], [[35446, 29604], [-48, 6]], [[35398, 29610], [0, 329]], [[35398, 29939], [4, 3]], [[35553, 29906], [-15, -33], [39, -12], [14, -31], [31, 4], [22, -33]], [[42551, 33502], [0, 149]], [[42551, 33651], [101, 35], [69, -19], [57, -3]], [[42778, 33664], [32, -36], [4, -126]], [[42814, 33502], [-220, 0]], [[9976, 50959], [0, -85], [-22, -53], [98, 0], [0, -54], [99, 0], [0, -53], [98, 0], [-25, -54], [0, -160], [194, 0], [0, -53], [68, 0], [0, -214], [-28, -54], [-283, 0], [0, -107], [-283, 0], [-19, -53], [0, -107], [-186, 0], [0, 53], [-94, 0], [0, 54], [-186, 0], [0, -107], [-186, 0], [0, 107], [-372, 0], [0, -214], [-464, 0], [0, -107], [-276, 0], [5, -267]], [[8114, 49431], [-91, 0], [0, -54], [-315, 0], [-445, 0], [-631, 0], [-331, 0], [0, 107], [-90, 0], [0, 107], [-122, 0], [0, 214], [-33, 0], [0, 214], [-34, 64]], [[6022, 50083], [249, 7], [43, -46], [-64, -79], [19, -72], [-38, -51], [65, -80], [118, 15], [143, -16], [182, 19], [56, -31], [100, -7], [118, 24], [123, -27], [69, 55], [58, 79], [90, 9], [62, -27], [87, 27], [-57, 50], [-172, 38], [-74, -1], [-97, -28], [18, 99], [-97, 61], [-74, 67], [-93, 8], [-61, 74], [9, 29], [136, 21], [26, -40], [95, -67], [-25, -70], [132, -91], [83, -37], [108, 25], [-71, 51], [-88, 37], [-83, 59], [38, 102], [53, 50], [-59, 54], [-137, -15], [-50, -20], [-115, -10], [-83, 32], [-65, -23], [-58, 20], [-335, 63], [-6, 80], [-52, 99], [-88, 105], [-56, 33], [-142, 53], [-371, 191]], [[5591, 50981], [386, 0], [0, 107], [774, 0], [0, 53], [305, 0], [0, -53], [203, 0], [0, 53], [203, 0], [0, -53], [405, 0], [0, 53], [203, 0], [0, -53], [539, 0], [567, 0], [0, -54], [400, 0], [0, -53], [400, 0], [0, -22]], [[34245, 33139], [237, 0]], [[34482, 33139], [4, 0]], [[34486, 33139], [-2, -269]], [[34484, 32870], [-236, 0]], [[34248, 32870], [-6, 0]], [[34242, 32870], [3, 269]], [[39375, 29060], [13, 50], [-2, 47], [-16, 52], [-3, 61], [27, 21], [23, 66]], [[39417, 29357], [128, -2]], [[39545, 29355], [0, -79]], [[39545, 29276], [-22, -27], [-1, -108], [-22, 0], [0, -108]], [[39545, 29276], [45, 0], [0, -27], [130, 4]], [[39720, 29253], [1, -67]], [[39721, 29186], [-13, -67], [-28, -81], [-136, -4], [1, -108], [-22, 0]], [[39543, 30464], [-3, -51], [-42, -92]], [[39498, 30321], [-266, 9]], [[39232, 30330], [19, 191]], [[39251, 30521], [54, -6], [23, -48], [37, -39], [33, -3], [23, 23], [79, 36], [43, -20]], [[34497, 32275], [0, 57]], [[34497, 32332], [236, -1]], [[34733, 32331], [3, -56]], [[34736, 32275], [0, -162]], [[34736, 32113], [-239, 0]], [[34497, 32113], [0, 162]], [[40951, 32669], [57, -84], [37, -27]], [[41045, 32558], [-45, -47]], [[41000, 32511], [-90, -30]], [[40910, 32481], [-41, 29], [12, 40], [-21, 18]], [[39895, 31186], [45, 81]], [[39940, 31267], [82, -71], [76, -19]], [[40098, 31177], [-24, -155]], [[40074, 31022], [-17, -44]], [[40057, 30978], [-43, 20], [-30, -25], [-56, 46], [-42, -8]], [[39886, 31011], [-21, 15]], [[39865, 31026], [-4, 26], [36, 24], [6, 39], [-8, 71]], [[41248, 28321], [34, 14]], [[41282, 28335], [-1, -30], [43, -35], [14, -48], [-7, -43], [11, -44]], [[41342, 28135], [-78, 3]], [[41264, 28138], [-44, 29]], [[41220, 28167], [29, 79], [-1, 75]], [[33960, 32871], [1, -269]], [[33961, 32602], [-192, 1]], [[33769, 32603], [-1, 269]], [[33768, 32872], [192, -1]], [[34267, 31822], [37, 0]], [[34304, 31822], [36, -74], [34, -37]], [[34374, 31711], [0, -138], [-135, -2]], [[34239, 31571], [-173, 0]], [[34066, 31571], [0, 253]], [[34066, 31824], [201, -2]], [[39093, 33849], [-1, -249]], [[39092, 33600], [-5, -54]], [[39087, 33546], [-119, 0]], [[38968, 33546], [1, 163]], [[38969, 33709], [74, 139]], [[33614, 29868], [1, -270]], [[33615, 29598], [-226, -1]], [[33389, 29597], [-3, 269]], [[33386, 29866], [228, 2]], [[49038, 20272], [-41, -13], [-15, 18]], [[48982, 20277], [36, 41]], [[49018, 20318], [20, -46]], [[39357, 29064], [-33, 62], [-54, -24], [-1, 33], [-34, 115], [-32, 57], [15, 44]], [[39218, 29351], [89, 50], [18, 27], [39, 20]], [[39364, 29448], [2, -84], [51, -7]], [[28538, 36126], [-130, 1], [0, 161]], [[28408, 36288], [79, -2], [0, 90]], [[28487, 36376], [-12, 30], [53, 49], [25, -11], [82, -4], [38, -20], [12, 50], [30, 24], [84, -27], [28, 14], [74, 3], [27, -16], [42, 21], [38, -5]], [[29008, 36484], [0, -93], [-76, 1], [0, -53], [-27, 0], [-2, -79], [-24, -27], [-53, 0], [0, -54], [-53, 0]], [[36487, 35684], [0, 151]], [[36487, 35835], [85, 0]], [[36572, 35835], [121, 0]], [[36693, 35835], [0, -151]], [[36693, 35684], [0, -215]], [[36693, 35469], [-206, 1]], [[36487, 35470], [0, 214]], [[48928, 20166], [35, -29]], [[48963, 20137], [-24, -36]], [[48939, 20101], [-60, 29]], [[48879, 20130], [-9, 10]], [[48870, 20140], [36, 28]], [[32787, 39230], [400, 0]], [[33187, 39230], [0, -119]], [[33187, 39111], [-57, 0], [0, -53], [-36, 0], [0, -108]], [[33094, 38950], [-284, 0]], [[32810, 38950], [0, 54]], [[32810, 39004], [-23, 54], [0, 172]], [[43206, 31121], [28, 232]], [[43234, 31353], [65, -2]], [[43299, 31351], [-1, -87], [23, -15]], [[43321, 31249], [23, -37], [-26, -57], [-31, -32], [-33, 1]], [[35749, 34827], [203, -2]], [[35952, 34825], [50, 0]], [[36002, 34825], [0, -161], [26, 0], [0, -60]], [[36028, 34604], [-217, 1]], [[35811, 34605], [-27, 2], [-24, 56], [-4, 50]], [[35756, 34713], [25, 68], [-32, 46]], [[34391, 35406], [-69, -20], [-53, -34], [-61, 8]], [[33981, 35431], [0, 95]], [[33981, 35526], [289, -1]], [[34270, 35525], [122, 0]], [[36487, 35307], [206, 0]], [[36693, 35307], [0, -53]], [[36693, 35254], [17, -54], [0, -161]], [[36710, 35039], [-102, 0]], [[36608, 35039], [-101, -1]], [[36507, 35038], [0, 163], [-20, 53]], [[38984, 32031], [1, 161]], [[38985, 32192], [129, 1]], [[39114, 32193], [-2, -109]], [[39112, 32084], [-25, -20], [-15, -81], [36, -67], [-28, -51]], [[39080, 31865], [0, 56], [-96, 110]], [[40105, 31388], [68, 80]], [[40173, 31468], [66, -9]], [[40239, 31459], [-8, -76], [29, -31]], [[40260, 31352], [-12, -66]], [[40248, 31286], [-26, -23], [-28, 9], [-56, -14]], [[40138, 31258], [-33, 130]], [[42759, 31696], [18, 22], [86, -24], [58, 22], [13, 18]], [[42934, 31734], [-33, -194]], [[42901, 31540], [-136, 0]], [[42765, 31540], [-11, 0]], [[42754, 31540], [-2, 71], [-16, 75], [23, 10]], [[42819, 31628], [20, -14], [9, 26], [-16, 7], [-13, -19]], [[44036, 32961], [27, -2]], [[44063, 32959], [4, -30]], [[44067, 32929], [-1, -4]], [[44066, 32925], [-30, 36]], [[37473, 34392], [102, 1]], [[37575, 34393], [100, -1]], [[37675, 34392], [-1, -161]], [[37674, 34231], [-201, -1]], [[37473, 34230], [0, 162]], [[29060, 37849], [-39, 12], [-23, -27], [0, -96], [-65, -8]], [[28933, 37730], [-105, 0], [-44, -31], [-20, -39], [-58, -22]], [[28706, 37638], [-5, 145], [-39, 27], [-54, 0], [0, 83], [-113, -1], [0, 213], [-115, 2], [0, 190], [-24, 1], [-13, 65]], [[28343, 38363], [7, 41], [-17, 36], [37, 19], [8, 83], [34, 43]], [[28412, 38585], [31, -79], [0, -80], [26, -42], [53, -7], [71, 11], [60, -18], [26, -37], [41, -25], [100, 6]], [[28820, 38314], [2, -199], [44, -31], [67, -9], [-1, -133], [58, 0]], [[29339, 33559], [-15, 54]], [[29324, 33613], [-5, 480]], [[29319, 34093], [66, 43], [41, -5], [121, 29], [51, 30], [69, -17], [45, 4]], [[29712, 34177], [10, -3]], [[29722, 34174], [0, -249], [0, -370]], [[29722, 33555], [-236, 0], [-147, 4]], [[34701, 31822], [86, -1]], [[34787, 31821], [102, 0]], [[34889, 31821], [4, -249]], [[34893, 31572], [0, -81]], [[34893, 31491], [-187, 0]], [[34706, 31491], [-5, 331]], [[35871, 29638], [39, 21], [64, -5], [58, -21], [50, -38], [28, -7]], [[36110, 29588], [1, -1]], [[36111, 29587], [-1, -1]], [[36110, 29586], [-89, -19], [-29, 8], [-41, -35], [-24, 2], [-58, -53]], [[35869, 29489], [2, 117]], [[40105, 31388], [-31, 29], [-33, 3]], [[40041, 31420], [6, 65], [18, 21]], [[40065, 31506], [26, -27], [82, -11]], [[41250, 31968], [-9, 14]], [[41241, 31982], [-9, 47]], [[41232, 32029], [32, 25], [31, -23], [31, 26], [58, 21], [33, -5]], [[41417, 32073], [10, -105], [44, -25]], [[41471, 31943], [-27, -49], [1, -62], [-27, -9]], [[41418, 31823], [-27, 13]], [[41391, 31836], [5, 51], [-16, 43], [-56, 39], [-6, 36], [-48, -1], [-20, -36]], [[35613, 36641], [0, -108]], [[35613, 36533], [-1, -54]], [[35612, 36479], [-188, 0]], [[35424, 36479], [0, 161]], [[35424, 36640], [1, 107]], [[35425, 36747], [187, 0]], [[24360, 34914], [-188, -2], [-222, 0]], [[23950, 34912], [1, 431]], [[23951, 35343], [33, 33], [62, -3], [26, 14], [68, 3], [102, 99], [44, 0], [25, 35], [52, 0]], [[48369, 20188], [32, -2]], [[48401, 20186], [-6, -27]], [[48395, 20159], [-26, 29]], [[34017, 26667], [2, 270]], [[34019, 26937], [303, 3]], [[34322, 26940], [3, -278]], [[32302, 34723], [297, 0]], [[32599, 34723], [1, -161]], [[32600, 34562], [-4, -27]], [[32596, 34535], [-294, 0]], [[32302, 34535], [0, 105]], [[32302, 34640], [0, 83]], [[36771, 34608], [1, -216]], [[36772, 34392], [-98, -3]], [[36674, 34389], [-99, 0]], [[36575, 34389], [0, 214]], [[36575, 34603], [150, -1], [46, 6]], [[42393, 25238], [255, 0], [97, -8]], [[42745, 25230], [-19, -213]], [[42726, 25017], [-77, -12], [-168, 0], [0, 14], [-84, 0]], [[42397, 25019], [-3, 173]], [[41728, 28954], [24, -38], [53, 17]], [[41805, 28933], [22, -98], [-19, -153]], [[41808, 28682], [-29, 18], [-61, 15]], [[41718, 28715], [-22, 2]], [[41696, 28717], [32, 237]], [[41419, 35943], [223, 10]], [[41642, 35953], [9, -91], [20, -65], [7, -131], [9, -35]], [[41687, 35631], [-215, -9]], [[41472, 35622], [-1, 80], [-52, 0], [-1, 26]], [[41418, 35728], [8, 1], [-7, 214]], [[35680, 29342], [0, -86]], [[35680, 29256], [0, -17], [-97, -1]], [[35583, 29238], [1, 104]], [[35584, 29342], [96, 0]], [[41434, 35185], [93, 3]], [[41527, 35188], [-23, -62], [-61, -21], [-28, -48], [-2, -93], [-23, -37]], [[41390, 34927], [-48, 40], [-106, -5]], [[41236, 34962], [-6, 216]], [[41230, 35178], [204, 7]], [[36043, 36050], [5, 0]], [[36048, 36050], [-1, -215]], [[36047, 35835], [-177, 0]], [[35870, 35835], [-84, 0]], [[35786, 35835], [0, 216]], [[35786, 36051], [257, -1]], [[36769, 37529], [-6, 6], [-1, 204], [15, 3], [1, 132]], [[36778, 37874], [0, 140]], [[36778, 38014], [313, -2]], [[37091, 38012], [-2, -160]], [[37089, 37852], [3, -215]], [[37092, 37637], [0, -161]], [[37092, 37476], [-164, -3]], [[34811, 38734], [-57, -1], [0, -107], [-45, 0], [0, -65]], [[34709, 38561], [-43, 0], [-21, 52], [-34, -11], [-25, 48], [-78, -32], [-36, 62], [-56, 29], [-1, 133]], [[34415, 38842], [100, 0], [1, 107]], [[34516, 38949], [284, 0]], [[43234, 31353], [-88, 2]], [[43146, 31355], [7, 185]], [[43153, 31540], [148, 0]], [[43301, 31540], [-2, -189]], [[34242, 32870], [-242, 0]], [[34000, 32870], [3, 269]], [[34003, 33139], [236, 0]], [[34239, 33139], [6, 0]], [[38090, 29680], [0, -160], [20, 0]], [[38110, 29520], [16, -42], [-9, -65]], [[38117, 29413], [-93, 0], [0, -55]], [[38024, 29358], [-110, 2]], [[37914, 29360], [18, 33], [-25, 48], [42, 2], [-2, 47], [-22, 79], [-29, 34], [17, 29], [-20, 48]], [[37893, 29680], [197, 0]], [[34687, 29054], [44, -1]], [[34731, 29053], [0, -132], [-33, -24]], [[34698, 28897], [-162, -113]], [[34536, 28784], [-85, 1]], [[34451, 28785], [2, 269]], [[34453, 29054], [8, 0]], [[34461, 29054], [226, 0]], [[38024, 29358], [0, -39], [-21, -66], [-1, -108], [105, 0]], [[38107, 29145], [2, -27]], [[38109, 29118], [-3, -30], [-59, 3], [0, -82], [-39, 1], [-6, 81], [-34, 1]], [[37968, 29092], [-34, 5], [-14, 34], [40, 54], [-45, 19], [9, 53], [32, 28], [-7, 54], [-34, -48], [-21, 14], [20, 51]], [[37914, 29356], [0, 4]], [[35269, 27121], [115, -173]], [[35384, 26948], [-144, -148]], [[35240, 26800], [-48, 38], [-69, -69]], [[35123, 26769], [-78, 119], [62, 64]], [[36263, 28357], [-20, 24]], [[36243, 28381], [60, 63]], [[36303, 28444], [60, -43], [76, -14], [38, -35], [7, -35], [25, -14], [29, -46]], [[36538, 28257], [47, -31], [39, -46]], [[36624, 28180], [-143, -41]], [[36481, 28139], [-46, 16]], [[36435, 28155], [-26, 17], [-57, 12], [-39, 25]], [[36313, 28209], [-24, 111], [-26, 37]], [[41963, 30054], [7, 28], [53, 4], [84, -65], [29, -3]], [[42136, 30018], [-43, -123]], [[42093, 29895], [-35, -39]], [[42058, 29856], [-81, 32], [-25, 67], [-49, -8]], [[41903, 29947], [60, 107]], [[37466, 32620], [240, -2]], [[37706, 32618], [6, -83]], [[37712, 32535], [-1, -64], [-114, 0], [-55, -25]], [[37542, 32446], [-72, 4]], [[37470, 32450], [2, 89], [-6, 81]], [[37691, 30268], [36, -1], [1, 54], [94, -3]], [[37822, 30318], [38, -1], [12, -37], [35, -32], [40, -65], [15, -5]], [[37962, 30178], [-12, -117], [-15, -17]], [[37935, 30044], [-33, -30], [-9, -60], [-77, 6], [-13, 19]], [[37803, 29979], [-10, 41]], [[37793, 30020], [-30, 38], [-12, 51], [-74, 6], [3, 154]], [[36657, 32002], [186, -5]], [[36843, 31997], [8, -114]], [[36851, 31883], [-1, -63]], [[36850, 31820], [0, -45]], [[36850, 31775], [-197, 5]], [[36653, 31780], [1, 72]], [[36654, 31852], [3, 150]], [[43427, 32462], [10, 20], [13, -14], [-6, -21], [-17, 15]], [[38482, 34652], [101, 1]], [[38583, 34653], [202, 0]], [[38785, 34653], [1, -170]], [[38786, 34483], [-41, 8], [-33, -13], [-10, -42], [-47, 0], [0, -53]], [[38655, 34383], [-75, 1]], [[38580, 34384], [0, 52], [-96, 1]], [[38484, 34437], [-2, 215]], [[41555, 33025], [23, -2], [-3, -55], [48, -4]], [[41623, 32964], [-5, -62], [-34, -94], [-33, -16]], [[41551, 32792], [-12, 11], [-23, 104], [-59, -19]], [[41457, 32888], [-45, -58], [-58, -8]], [[41354, 32822], [-1, 245]], [[41353, 33067], [25, -34], [177, -8]], [[41515, 31171], [33, -14], [16, 41], [65, 48], [15, -16]], [[41644, 31230], [-4, -45], [46, 6]], [[41686, 31191], [42, -98]], [[41728, 31093], [-45, -9], [-128, -73], [-34, -4]], [[41521, 31007], [-34, 69]], [[41487, 31076], [29, 54], [-1, 41]], [[28000, 35381], [0, -141]], [[28000, 35240], [-30, -6]], [[27970, 35234], [-29, -2], [-25, -17], [-52, 39], [-57, 24], [-40, 1], [-65, 31]], [[27702, 35310], [-1, 124], [10, 0]], [[27711, 35434], [100, 0], [9, -25], [128, -1], [0, -27], [52, 0]], [[41580, 33284], [101, 1], [1, 16], [98, -7]], [[41780, 33294], [13, -56], [-4, -55]], [[41789, 33183], [-16, 1], [-7, -110]], [[41766, 33074], [-49, 5]], [[41717, 33079], [4, 63], [-48, 27], [-99, 17]], [[41574, 33186], [6, 98]], [[35191, 28316], [-81, 165]], [[35110, 28481], [143, 98]], [[35253, 28579], [104, 72], [46, -95]], [[35403, 28556], [57, -115]], [[35460, 28441], [-207, -150]], [[27547, 36106], [-8, 7]], [[27539, 36113], [10, 20], [-35, 42], [10, 65], [-62, 29], [-14, 49], [-42, 35]], [[27406, 36353], [29, 52], [-4, 54], [-29, 43], [60, 43], [33, 72], [59, -28], [62, 54]], [[27616, 36643], [-3, -38], [47, -60], [46, -9], [2, -25], [65, 10], [29, 37], [20, 76], [44, 42], [21, -22], [-12, -49], [62, -1], [25, -58], [88, -97], [137, -45], [22, 21], [49, -86], [8, -51]], [[28266, 36288], [-42, 0], [0, -108], [-18, 0], [6, -87], [29, -67], [-65, -56], [-102, -60], [-16, -32]], [[28058, 35878], [-34, 50], [-48, 46], [-64, 16], [-62, 50], [-7, 34], [-97, 5], [-6, -31], [-67, 51], [-57, 0], [-26, 40], [-43, -33]], [[37516, 35835], [0, -177]], [[37516, 35658], [-206, 0]], [[37310, 35658], [0, 177]], [[37310, 35835], [46, 0]], [[42392, 25624], [323, -1], [28, 8]], [[42743, 25631], [21, -107], [-4, -141], [-15, -153]], [[41697, 29748], [-41, 91], [-31, 122]], [[41625, 29961], [35, -18]], [[41660, 29943], [62, -57], [33, -18], [43, -50], [13, -41]], [[39770, 28583], [-1, 48]], [[39769, 28631], [-1, 81], [23, 1]], [[39791, 28713], [178, 1]], [[39969, 28714], [0, -191], [-22, 0], [0, -80]], [[39947, 28443], [-88, -1]], [[39859, 28442], [-60, 1], [-30, 66], [1, 74]], [[40075, 31600], [-10, -94]], [[40041, 31420], [-47, -23], [-26, 15], [-48, -29], [-15, -26]], [[39905, 31357], [-55, 59], [-14, 40]], [[39836, 31456], [26, 9], [57, 131]], [[39919, 31596], [66, 11]], [[44196, 32111], [-22, 31]], [[44174, 32142], [7, 23], [-66, 84], [-46, 18], [-64, 106]], [[44005, 32373], [14, 50], [34, -5]], [[44053, 32418], [15, -61], [71, -51], [30, 7], [23, -41]], [[44192, 32272], [42, -77]], [[44234, 32195], [-5, -91], [-20, -15]], [[36978, 31513], [10, 0]], [[36988, 31513], [-3, -233]], [[36985, 31280], [-78, 2]], [[36907, 31282], [-31, 1], [-30, 46], [-17, 63], [-68, 2]], [[36761, 31394], [-23, 37], [0, 82]], [[36738, 31513], [123, 0]], [[36861, 31513], [117, 0]], [[43234, 32483], [21, 18], [18, -6], [-2, -26], [-37, 14]], [[18227, 44683], [151, 4], [54, 100], [81, -44], [81, -31], [127, -73], [56, 4]], [[18777, 44643], [82, -16], [42, -149], [-34, -26], [-79, 4], [-69, 50], [-143, 79], [-39, -28], [39, -30], [2, -58], [-63, -73], [-79, 25], [-2, 20], [-66, 45], [-32, 48], [-47, 2], [-9, 56], [-53, 91]], [[18984, 43726], [-14, -69], [-61, 40], [-15, 46], [-46, 49], [-100, 178], [-43, 15], [-54, 48], [-47, 1], [-29, 51], [54, 16], [3, 32], [39, 49], [-61, 45], [36, 34], [19, 62], [-81, -10], [-59, 83], [58, 36], [12, 52], [47, 33], [91, -46], [63, -43], [94, -6], [19, -42], [-16, -58], [64, -214], [35, -163], [-13, -102], [5, -117]], [[18453, 44318], [2, 60], [38, 5], [53, -33], [24, -39], [81, 0], [-25, -43], [-37, -8], [-42, -85], [-95, -9], [5, 54], [39, 25], [-34, 29], [-9, 44]], [[24162, 37029], [0, 53], [-81, 71], [0, 53]], [[24081, 37206], [73, 5]], [[24154, 37211], [-1, -44], [39, -24], [103, -34], [83, -9]], [[24378, 37100], [64, 21], [78, 41]], [[24520, 37162], [7, -79], [38, -37]], [[40220, 30726], [-18, 40]], [[40202, 30766], [14, 37], [2, 108]], [[40218, 30911], [26, -6], [91, 11]], [[40335, 30916], [29, -25], [24, -52], [-32, -54]], [[36165, 38251], [223, -2]], [[36388, 38249], [3, -54], [2, -320], [-56, 0]], [[36337, 37875], [-163, 0]], [[36174, 37875], [-3, 215]], [[36171, 38090], [-6, 161]], [[34935, 37553], [317, 0]], [[35252, 37553], [9, 0], [0, -176], [13, -39]], [[35274, 37338], [-327, 1]], [[34947, 37339], [-12, 0]], [[34935, 37339], [0, 214]], [[45074, 36758], [37, -26], [50, -483], [-4, -44]], [[45157, 36205], [-139, -18]], [[45018, 36187], [-91, -12], [-46, 29]], [[44881, 36204], [-120, 74]], [[44761, 36278], [-181, 115]], [[44580, 36393], [41, 69], [113, 117], [87, 81], [106, 58], [40, 33], [63, 20], [44, -13]], [[37894, 32079], [1, 53], [-45, 2], [1, 54], [68, -2]], [[37919, 32186], [73, 9], [95, 0], [-1, -142], [16, -63]], [[38102, 31990], [-1, -65], [-18, -17], [0, -54]], [[38083, 31854], [-81, 2], [-23, 26]], [[37979, 31882], [0, 29], [-47, 35], [-38, 133]], [[24860, 32879], [10, 4], [40, -129]], [[24910, 32754], [0, -129]], [[24910, 32625], [-85, -34], [-53, -10], [-56, 19], [-47, -102]], [[24669, 32498], [-36, 1], [-33, -43], [-33, -3], [-21, 28]], [[24546, 32481], [65, 11], [12, 46], [31, 23], [9, 72]], [[24663, 32633], [31, 29], [9, 50], [-22, 45], [20, 45], [-23, 13], [-31, 55], [12, 24]], [[24659, 32894], [52, -1]], [[24711, 32893], [149, -14]], [[40685, 34448], [151, 0], [0, -27], [50, 0], [0, -27]], [[40886, 34394], [0, -108], [-25, 0]], [[40861, 34286], [-176, -1]], [[40568, 34241], [2, -216]], [[40570, 34025], [-58, 0]], [[40512, 34025], [-107, -1]], [[40405, 34024], [-1, 54]], [[42700, 31893], [21, 5]], [[42721, 31898], [9, -30], [-16, -77], [-39, -47]], [[42675, 31744], [-66, -46], [-4, -33], [-30, -22]], [[42575, 31643], [-74, 137]], [[42501, 31780], [39, 33]], [[25074, 30572], [141, 8], [100, 76], [53, -32], [20, 1], [80, -53], [32, -1], [59, -46], [28, 2]], [[25587, 30527], [13, 0]], [[25600, 30527], [0, -275], [-16, -49]], [[25584, 30203], [-35, 23], [-103, 2], [-34, -5], [-58, 32], [-58, 8], [-144, -16], [-18, 46], [-58, 36], [19, 69], [-16, 39], [12, 54], [-16, 36], [-1, 45]], [[25249, 29972], [76, 14], [44, -51], [-65, -29], [-55, 66]], [[25392, 30018], [72, -12], [40, -44], [-25, -16], [-67, 12], [-20, 60]], [[41979, 32569], [30, 11], [52, -4], [-2, -22], [75, -77], [9, -45]], [[42143, 32432], [-22, 1], [-28, -38], [6, -58], [19, -26]], [[42118, 32311], [-41, -2]], [[42077, 32309], [-22, 29], [-28, -16], [-27, 79], [-85, 33], [21, 21]], [[41936, 32455], [-17, 14], [17, 63], [43, 37]], [[38751, 30331], [-23, -1], [-1, 162], [-23, 0], [0, 92]], [[38704, 30584], [67, 0]], [[38771, 30584], [79, 1]], [[38850, 30585], [0, -84], [-31, -27], [0, -134]], [[39137, 32072], [35, 30], [85, 12], [10, 20]], [[39267, 32134], [55, -15]], [[39322, 32119], [2, -44], [36, 7], [20, -25]], [[39380, 32057], [-122, -97], [-6, -27]], [[39252, 31933], [-43, -20]], [[39209, 31913], [-11, 78], [-61, 81]], [[36282, 35471], [0, 213]], [[36282, 35684], [205, 0]], [[36673, 34029], [-94, -1]], [[36579, 34028], [-104, -1]], [[36475, 34027], [0, 203]], [[36475, 34230], [199, -2]], [[42971, 30906], [-93, -2]], [[42878, 30904], [-130, -4]], [[42757, 31156], [220, -13]], [[44611, 33503], [10, -213]], [[44621, 33290], [-39, -8], [-64, 8]], [[44518, 33290], [14, 111], [-46, -9]], [[44486, 33392], [-68, 110]], [[44418, 33502], [42, 0]], [[44460, 33502], [151, 1]], [[39688, 33968], [1, -67]], [[39689, 33901], [-67, -36], [-49, -60], [-35, -28], [14, -24]], [[39552, 33753], [-55, 13]], [[39497, 33766], [2, 203]], [[34611, 34749], [198, 0]], [[34809, 34749], [2, -160]], [[34811, 34589], [0, -54]], [[34811, 34535], [-197, 0]], [[34614, 34535], [-3, 0]], [[34611, 34535], [0, 214]], [[35213, 33891], [197, -1]], [[35410, 33890], [0, -215]], [[35410, 33675], [-197, 1]], [[35213, 33676], [0, 215]], [[35412, 33998], [-2, -108]], [[35213, 33891], [0, 215]], [[35213, 34106], [198, -1]], [[41417, 32073], [-5, 32], [37, 42], [44, -14]], [[41493, 32133], [10, -10]], [[41503, 32123], [41, -12], [9, -34], [44, -78]], [[41597, 31999], [-10, -9]], [[41587, 31990], [-38, -2], [-62, -53], [-16, 8]], [[38031, 34876], [0, 54]], [[38031, 34930], [324, 0]], [[38355, 34930], [1, -65]], [[38356, 34865], [-16, -77], [-23, -13]], [[38317, 34775], [-33, -33]], [[38284, 34742], [-96, 29], [-72, -24], [-36, 21], [-49, 0]], [[36048, 36050], [258, 0]], [[36306, 36050], [2, 0]], [[36308, 36050], [0, -214]], [[36308, 35836], [-26, 0]], [[36282, 35836], [-206, -1]], [[36076, 35835], [-29, 0]], [[37096, 36265], [2, 0]], [[37098, 36265], [158, -1]], [[37256, 36264], [-5, -214]], [[37251, 36050], [-155, 0]], [[37096, 36050], [0, 215]], [[36833, 36050], [106, 0]], [[36939, 36050], [155, 0]], [[37094, 36050], [0, -215]], [[37094, 35835], [-195, 0]], [[36899, 35835], [-66, 0]], [[36833, 35835], [0, 215]], [[25326, 32755], [22, -48]], [[25348, 32707], [-68, -37], [-87, -142], [-60, -117], [-60, -75]], [[25073, 32336], [-119, 152]], [[24954, 32488], [-30, 91]], [[24924, 32579], [44, -2], [20, 26], [87, 43], [17, 39], [45, 26], [87, 20], [44, 18], [58, 6]], [[46852, 34735], [5, 28], [41, 29]], [[46898, 34792], [29, -30], [92, -29], [31, 23], [81, 35], [-12, 74], [19, 13], [22, -87], [4, -72], [-139, -39], [-40, 5], [-43, -20], [-24, -32], [-62, -9], [-15, -15], [-11, 7], [15, 11], [7, 108]], [[44192, 32272], [30, 26]], [[44222, 32298], [27, -16], [20, -60], [21, -22], [40, 1], [35, -53]], [[44365, 32148], [-36, -8]], [[44329, 32140], [-95, 55]], [[43171, 34502], [60, 13], [97, -61], [11, -38]], [[43339, 34416], [-24, 1], [-17, -44], [0, -139]], [[43298, 34234], [-179, 3]], [[43119, 34237], [0, 86]], [[43119, 34323], [3, 174]], [[39499, 34394], [0, 82]], [[39499, 34476], [1, 106]], [[39500, 34582], [0, 157]], [[39500, 34739], [44, -50], [88, -12]], [[39632, 34677], [1, -236]], [[40057, 30978], [-5, -135]], [[40052, 30843], [-71, -58], [-46, 22]], [[39935, 30807], [-32, 6]], [[39903, 30813], [-25, 44], [-3, 34], [11, 120]], [[40479, 31592], [-3, -59]], [[40476, 31533], [-67, -18], [-25, -61]], [[40384, 31454], [-35, 42], [-56, 32], [-48, -14]], [[40245, 31514], [11, 75]], [[40256, 31589], [154, -2]], [[40410, 31587], [61, 4]], [[39308, 33481], [3, -127]], [[39311, 33354], [-24, 0], [1, -63]], [[39288, 33291], [-200, -3]], [[39088, 33288], [0, 45]], [[39088, 33333], [0, 126]], [[39088, 33459], [178, 1], [42, 21]], [[38577, 31146], [67, 27], [36, -1], [28, -40]], [[38708, 31132], [-5, -39]], [[38703, 31093], [-20, 3], [-44, -150]], [[38639, 30946], [-48, 39], [-79, -4], [-37, -31], [-13, -30]], [[38462, 30920], [-17, 38], [8, 37], [-9, 49], [56, 11], [34, 93], [43, -2]], [[26758, 36809], [-28, -35], [7, -54], [-30, -57]], [[26707, 36663], [-15, -35], [-48, -24], [-43, -123], [-35, -39], [-8, -53], [23, -38], [-13, -21]], [[26568, 36330], [-116, -1], [0, 54], [-46, 35], [-166, 0], [-50, -53], [-29, -54], [-34, -9]], [[26127, 36302], [-116, -1], [13, 49], [26, 27], [-6, 44], [51, 86], [-30, 36], [-57, 14], [-5, 20], [101, 30], [-15, 53], [41, 24], [-8, 51]], [[26122, 36735], [49, 54], [71, -30], [54, 38], [29, -41], [93, 1], [0, 53], [130, 1]], [[44037, 35208], [95, -13], [-3, 48]], [[44129, 35243], [87, 4]], [[44216, 35247], [2, -162], [32, -1]], [[44250, 35084], [-13, -28], [-37, 34], [-101, -9]], [[40267, 35169], [0, -217]], [[40267, 34952], [-200, 1]], [[40067, 34953], [0, 106], [-62, 0]], [[40005, 35059], [40, 109]], [[40045, 35168], [222, 1]], [[37955, 34498], [278, -4]], [[38233, 34494], [-1, -109]], [[38232, 34385], [-1, -54]], [[38231, 34331], [-151, 3]], [[38080, 34334], [-71, 1]], [[38009, 34335], [0, 2]], [[38009, 34337], [-18, 51], [-23, 7], [-31, 51], [18, 52]], [[41643, 32593], [-13, -69], [37, -42], [22, -76]], [[41689, 32406], [-36, 4], [-13, -45]], [[41640, 32365], [-55, 23], [-41, 32], [-51, 20], [-17, -22]], [[41476, 32418], [-15, 26]], [[41461, 32444], [58, 65], [-15, 39]], [[41504, 32548], [30, 9], [26, 33]], [[41560, 32590], [42, 12], [41, -9]], [[41476, 32418], [11, -32], [-18, -33]], [[41469, 32353], [-37, 19], [-79, -76], [4, -34]], [[41357, 32262], [-55, 63], [-47, 30]], [[41255, 32355], [22, 49], [5, 57]], [[41282, 32461], [74, 50]], [[41356, 32511], [-2, -35], [32, -30], [75, -2]], [[39600, 32064], [38, -6], [47, 21]], [[39685, 32079], [30, -32], [21, -58], [37, -35]], [[39773, 31954], [-12, -32], [13, -45], [-20, -12]], [[39754, 31865], [-48, -5]], [[39706, 31860], [-86, -12], [-4, 19]], [[39616, 31867], [-33, 53]], [[39583, 31920], [-24, 64], [41, 80]], [[38991, 33004], [-49, -1], [1, 188]], [[38943, 33191], [145, -1]], [[39088, 33190], [0, -27], [48, 0]], [[39136, 33163], [0, -161]], [[40806, 30973], [-25, 13]], [[40781, 30986], [19, 16], [121, 140]], [[40921, 31142], [42, -57]], [[40963, 31085], [-6, -23], [12, -87], [-16, -10]], [[34946, 36856], [212, -1]], [[35158, 36855], [2, -215]], [[35160, 36640], [-1, -161]], [[35159, 36479], [-157, 1]], [[35002, 36480], [-1, 53], [-53, 1]], [[34948, 36534], [-2, 322]], [[8687, 22303], [66, 5], [47, 70], [22, 7], [19, -51], [38, -61], [-2, -44], [83, -99], [-26, -23], [-43, -3], [-35, 31], [-40, 5], [-57, -8], [-12, 44], [-41, 70], [-19, 57]], [[41505, 27393], [1, 0], [7, 0], [10, 38]], [[41523, 27431], [35, 28]], [[41558, 27459], [28, -44], [33, -19]], [[41619, 27396], [1, -163]], [[41620, 27233], [-50, 12], [-72, 4]], [[41498, 27249], [-9, 29], [5, 79], [11, 36]], [[39687, 34022], [141, -1]], [[39828, 34021], [33, 0], [1, -80]], [[39862, 33941], [-1, -134]], [[39861, 33807], [-173, 0]], [[39688, 33807], [1, 94]], [[44171, 34219], [-21, -44], [-3, -51], [-37, -55]], [[44110, 34069], [-42, 23], [-110, 11]], [[43958, 34103], [-28, 5], [-2, 65]], [[43928, 34173], [182, 50], [61, -4]], [[35876, 29872], [37, 20]], [[35913, 29892], [91, 32], [8, -27], [40, -9], [57, 7]], [[36109, 29895], [1, -307]], [[42726, 25017], [-4, -126], [-51, -34], [-42, -134], [2, -99], [-18, -20]], [[42613, 24604], [-23, -44], [-28, -22]], [[42562, 24538], [-3, 2], [0, 1], [-3, 3], [0, 2], [-1, 0], [-1, 3], [-1, 1], [-5, -1], [0, 0], [-1, -1], [-1, -1], [-4, -4], [-3, -1], [-5, -1], [-5, -1]], [[42529, 24540], [1, 5], [-6, 0], [-1, -6]], [[42523, 24539], [-9, -1], [-2, 0], [0, 0], [-7, -3], [0, 0], [-9, -3], [-1, 0], [-3, -1], [-10, -12], [-9, -8], [-12, 6], [-2, 0], [-5, -1], [-1, -6], [-2, -4], [-2, 2], [-1, 0], [-7, 6], [-37, 10]], [[42404, 24524], [-7, 115], [0, 273]], [[42397, 24912], [0, 107]], [[33482, 33891], [9, 0]], [[33491, 33891], [-1, -215]], [[33490, 33676], [-37, 0]], [[33453, 33676], [-279, 0]], [[33174, 33676], [0, 214]], [[33174, 33890], [308, 1]], [[35902, 28500], [33, -1], [-12, -69]], [[35923, 28430], [20, -80], [16, -28], [-30, -36], [-2, -66], [-15, -43]], [[35912, 28177], [-91, -2], [-33, -14], [-53, -46], [-31, -13]], [[35704, 28102], [0, 52], [-17, 23], [-20, 117], [3, 45]], [[35670, 28339], [36, 35]], [[35706, 28374], [196, 126]], [[30847, 33215], [-27, 32], [11, 36]], [[30831, 33283], [138, 0]], [[30969, 33283], [299, -2]], [[31268, 33281], [-33, -40], [4, -61], [-40, -69], [3, -18]], [[31202, 33093], [-9, -37]], [[31193, 33056], [-24, 29], [-37, 0], [-27, -41], [-46, 9], [-69, 77], [-94, 0], [-31, 34], [-18, 51]], [[35312, 38733], [-2, -13]], [[35310, 38720], [33, -79], [6, -59], [74, -171]], [[35423, 38411], [-255, 0]], [[35168, 38411], [-179, 0]], [[34989, 38411], [0, 215], [-9, 107]], [[39805, 34761], [131, 0]], [[39936, 34761], [-1, -68], [17, -49], [-16, -31], [0, -54]], [[39936, 34559], [-52, 0], [-25, -19], [-36, -72], [-64, -30]], [[39759, 34438], [-1, 293]], [[39758, 34731], [47, 30]], [[40224, 33810], [0, -170]], [[40224, 33640], [-33, -11]], [[40191, 33629], [-131, 0]], [[40060, 33629], [-1, 157]], [[40059, 33786], [0, 22]], [[40059, 33808], [165, 2]], [[43839, 31641], [23, 6], [0, -20], [-21, -5], [-2, 19]], [[35312, 31169], [227, 0]], [[35539, 31169], [0, -187]], [[35539, 30982], [-2, -108]], [[35537, 30874], [-225, 0]], [[35312, 30874], [0, 161]], [[35312, 31035], [0, 134]], [[33385, 32872], [0, -270]], [[33177, 32602], [0, 4]], [[33177, 32606], [0, 214]], [[40541, 29197], [-21, 76]], [[40520, 29273], [140, 2]], [[40660, 29275], [70, -18]], [[40730, 29257], [3, -161]], [[40733, 29096], [-93, 0], [0, 15], [-75, 0]], [[40565, 29111], [-24, 86]], [[42106, 29381], [22, -24], [-5, -42], [33, -60], [9, -59]], [[42165, 29196], [-9, -27], [16, -66]], [[42172, 29103], [-69, -65]], [[42103, 29038], [-61, 35], [-66, 64]], [[41976, 29137], [-12, 19], [43, 141]], [[42007, 29297], [99, 84]], [[48818, 20381], [0, 4]], [[48818, 20385], [40, -14]], [[48858, 20371], [17, -43]], [[48875, 20328], [-19, -42]], [[48856, 20286], [-10, -5]], [[48846, 20281], [-7, -4]], [[48839, 20277], [-12, 87]], [[48827, 20364], [-9, 17]], [[33842, 29599], [229, 0]], [[34071, 29599], [1, -270]], [[34072, 29329], [-68, 0]], [[34004, 29329], [-163, 1]], [[33841, 29330], [1, 269]], [[40886, 34556], [0, 36]], [[40886, 34592], [200, 1]], [[41086, 34593], [0, -45]], [[41086, 34548], [1, -153]], [[41087, 34395], [-151, -1]], [[40936, 34394], [0, 162], [-50, 0]], [[46244, 36240], [-1, 0]], [[46243, 36240], [-12, 71], [38, 41], [63, 7]], [[46332, 36359], [31, 36]], [[46363, 36395], [30, -46], [48, -17], [5, -31], [58, -3], [12, -23]], [[46516, 36275], [21, -89], [-7, -28], [9, -66], [-88, -14], [14, -82]], [[46465, 35996], [5, -39], [-56, -8], [-1, -39], [-33, -36]], [[46380, 35874], [-40, -9], [-13, 39], [-38, -51]], [[46289, 35853], [-57, 9], [-61, 26], [-53, 9]], [[46118, 35897], [10, 59], [44, 46]], [[46172, 36002], [15, 71], [21, 20], [2, 46], [37, 55], [-3, 46]], [[36653, 31780], [-3, -113]], [[36650, 31667], [-239, 11]], [[36411, 31678], [0, 144]], [[36411, 31822], [0, 36]], [[36411, 31858], [243, -6]], [[39300, 32582], [81, -1], [48, -17], [0, -20]], [[39429, 32544], [-5, -167]], [[39424, 32377], [-58, -13], [-41, 15]], [[39325, 32379], [9, -58], [-17, -21], [-36, 16]], [[39281, 32316], [-28, 57]], [[39253, 32373], [34, 2], [-9, 85], [10, 44], [44, 36], [-32, 42]], [[34589, 26666], [203, 1], [0, -22]], [[34792, 26645], [1, -343]], [[34793, 26302], [-205, 0]], [[34588, 26302], [1, 364]], [[39288, 33291], [2, -126]], [[39290, 33165], [-154, -2]], [[39088, 33190], [0, 98]], [[41043, 29838], [80, 89]], [[41123, 29927], [33, -18], [33, 4]], [[41189, 29913], [61, -55]], [[41250, 29858], [-76, -136]], [[41174, 29722], [-102, 91]], [[41072, 29813], [-29, 25]], [[35914, 37230], [270, 0]], [[36184, 37230], [3, -214]], [[36187, 37016], [-53, 0]], [[36134, 37016], [-215, 0]], [[35919, 37016], [-5, 214]], [[43591, 32974], [45, -42], [6, -43], [34, -20]], [[43676, 32869], [-67, -61], [-34, -45], [-28, 6]], [[43547, 32769], [-46, 58]], [[43501, 32827], [3, 47], [20, 35]], [[43524, 32909], [44, 20], [23, 45]], [[43138, 32318], [42, -13], [3, -38], [44, -27], [29, -80], [14, -3]], [[43270, 32157], [-67, -70]], [[43203, 32087], [-27, -21]], [[43176, 32066], [-44, 44]], [[43132, 32110], [-34, 26], [-34, 6], [-17, 45], [-25, 16]], [[43022, 32203], [40, 27], [36, 83], [40, 5]], [[25600, 30527], [72, -13], [14, -41], [117, -1], [41, -13]], [[25844, 30459], [107, -308], [-14, -77], [-52, 0], [-67, -57], [-1, -18]], [[25817, 29999], [-119, 62], [-23, 66], [-91, 76]], [[39315, 33165], [89, 3], [51, -14]], [[39455, 33154], [-13, -13], [37, -48], [0, -45], [26, -18], [-4, -33]], [[39501, 32997], [-4, -31]], [[39497, 32966], [-164, -1]], [[39333, 32965], [-16, 0]], [[39317, 32965], [-2, 200]], [[31371, 33092], [9, 18], [-6, 138], [21, 43]], [[31395, 33291], [35, -13], [45, 35], [6, 27], [53, 49], [-6, 17]], [[31528, 33406], [188, 1]], [[31716, 33407], [0, -270], [30, 0]], [[31746, 33137], [0, -267]], [[31746, 32870], [-279, -2]], [[31467, 32868], [28, 70], [-53, 84], [-34, -2], [-27, 32], [-10, 40]], [[25844, 30459], [12, 16], [159, 0], [358, 3]], [[26373, 30478], [0, -163], [9, -166], [-14, -78], [-25, -89], [-21, -45]], [[26322, 29937], [-84, 0], [0, -26], [-36, -35], [-24, -64]], [[26178, 29812], [-63, -24], [-66, 23], [8, 61], [-22, 62], [-33, 54], [-22, 8], [-76, -6], [-27, -19], [-60, 28]], [[25965, 29648], [26, -2], [77, -41], [25, -44], [-68, -6], [-10, 57], [-50, 36]], [[25964, 29372], [14, 2], [34, -62], [55, -58], [-24, -24], [-31, 32], [-48, 110]], [[27657, 29180], [84, 23], [25, 55], [3, 38], [-24, 74]], [[27745, 29370], [108, 2], [0, 267], [135, 1], [0, -54], [272, 0]], [[28260, 29586], [0, -538]], [[28260, 29048], [0, -288]], [[28260, 28760], [-399, 176], [-245, 105], [2, 76], [39, 63]], [[40570, 30333], [8, 22]], [[40578, 30355], [59, 7]], [[40637, 30362], [22, -16], [51, 2], [40, -17]], [[40750, 30331], [0, -22]], [[40751, 30225], [-35, -10], [-119, -2]], [[36306, 35039], [1, 163], [-25, 0], [0, 53]], [[36507, 35038], [-101, 0]], [[42096, 26049], [184, -3]], [[42280, 26046], [1, -25], [-30, -41], [1, -28], [40, -65], [35, -17], [2, -32], [39, -62]], [[42368, 25776], [-100, 3], [0, -55], [-43, 0], [0, -55], [-128, 1]], [[42097, 25670], [-1, 190]], [[42096, 25860], [0, 189]], [[42779, 32305], [2, 11], [11, 2], [-5, -23], [-8, 10]], [[46172, 36002], [-252, 98], [-3, 20]], [[45917, 36120], [21, 42]], [[45938, 36162], [26, -10], [40, 90], [64, -19], [33, 47]], [[46101, 36270], [27, -13], [59, 5], [56, -22]], [[34971, 32763], [0, 53]], [[34971, 32816], [241, 0]], [[35212, 32816], [0, -269]], [[35212, 32547], [-144, 0]], [[35068, 32547], [-96, 0]], [[34972, 32547], [-1, 216]], [[29259, 29641], [29, -77], [12, -56], [71, -164], [65, 97], [18, -5], [63, 37]], [[29517, 29473], [-1, -420]], [[29516, 29053], [-308, -1], [0, -6], [-179, 3], [-277, 0]], [[28752, 29049], [1, 268], [5, 200], [47, -37], [218, 0], [1, 161], [235, 0]], [[40886, 34592], [-17, 17], [-8, 119]], [[40861, 34728], [17, 0]], [[40878, 34728], [209, 8]], [[41087, 34736], [-1, -143]], [[31691, 32286], [-18, -84], [5, -23]], [[31678, 32179], [-112, -136]], [[31566, 32043], [-129, 0], [0, 27]], [[31437, 32070], [0, 214]], [[41615, 26695], [-27, 96], [18, 35], [-30, 54]], [[41576, 26880], [30, 25], [33, -15], [34, 22]], [[41673, 26912], [25, 4], [73, -56]], [[41771, 26860], [16, -39], [45, -67], [-34, -44], [-6, -31]], [[49164, 20309], [34, -4], [-12, -39], [-22, 43]], [[48788, 20382], [-26, -8], [2, -37]], [[48764, 20337], [-22, -6]], [[48742, 20331], [-5, 55]], [[48737, 20386], [51, -4]], [[40303, 31101], [-47, 13], [-42, -8]], [[40214, 31106], [-56, 75]], [[40158, 31181], [-20, 77]], [[40248, 31286], [14, -32], [39, -9], [18, -31]], [[43119, 34323], [-30, -25], [-44, -13], [-92, 3], [-30, 34], [-11, 75]], [[42912, 34397], [-2, 2]], [[42910, 34399], [39, 64], [1, 27], [55, 9], [0, 31]], [[35004, 36264], [209, 0]], [[35213, 36264], [0, -214]], [[35213, 36050], [-104, 1]], [[35109, 36051], [-106, 0]], [[35003, 36051], [1, 213]], [[34794, 36265], [0, -160]], [[34794, 36105], [-208, -1]], [[34586, 36104], [-52, 0]], [[34534, 36104], [1, 161]], [[34535, 36265], [98, 0]], [[34633, 36265], [161, 0]], [[40470, 33337], [1, -114]], [[40471, 33223], [-63, -45]], [[40408, 33178], [-55, -39], [-52, -1]], [[40301, 33138], [1, 135]], [[40302, 33273], [23, 0], [1, 64]], [[40326, 33337], [144, 0]], [[39820, 32566], [-99, 0]], [[39697, 32583], [0, 175]], [[39697, 32758], [65, -6]], [[39762, 32752], [38, 13], [67, 0]], [[39867, 32684], [1, -82]], [[44053, 32418], [-8, 30], [-35, 41], [23, 43]], [[44033, 32532], [24, 8]], [[44057, 32540], [15, -44], [39, -9]], [[44111, 32487], [14, -48]], [[44125, 32439], [74, -123], [23, -18]], [[42831, 29900], [34, -31], [132, -37], [49, 27], [26, -12]], [[43072, 29847], [3, -12]], [[43075, 29835], [-40, -56], [-12, -72], [-67, -80], [-38, -86]], [[42918, 29541], [-27, 11], [-24, 34], [-78, 76], [-56, -2]], [[42733, 29660], [55, 139], [-9, 28], [35, 32], [17, 41]], [[45678, 36481], [19, -73], [-16, -34], [8, -67]], [[45689, 36307], [-33, -45], [-21, -90], [28, -105], [-2, -41]], [[45661, 36026], [-26, -3]], [[45635, 36023], [-270, -37]], [[45365, 35986], [5, 32], [-45, 21], [-28, -12], [-53, 71], [35, 27], [-11, 93]], [[45268, 36218], [82, 11], [-21, 166], [101, 14]], [[45430, 36409], [91, 10], [88, 25], [15, 32], [54, 5]], [[37094, 35835], [11, 0]], [[37105, 35835], [0, -151]], [[37105, 35684], [-206, 0]], [[36899, 35684], [0, 151]], [[35617, 30767], [200, 0]], [[35817, 30767], [-1, -86]], [[35816, 30681], [-45, -62], [-2, -175]], [[35769, 30444], [-137, 0]], [[35632, 30444], [0, 87], [-37, 2]], [[35595, 30533], [1, 126], [21, 0], [0, 108]], [[41841, 31848], [-10, 54], [-28, 52], [-6, 37], [-28, 14]], [[41769, 32005], [151, 150]], [[41920, 32155], [18, -16]], [[41938, 32139], [-30, -22], [30, -39], [-1, -33], [33, -45], [28, -2], [21, -29]], [[42019, 31969], [-20, -29], [-50, -29]], [[42753, 32410], [52, 2], [21, -38], [105, -12]], [[42931, 32362], [18, -7], [-30, -61]], [[42919, 32294], [-62, 23], [-44, -61], [-45, -34]], [[42768, 32222], [-54, -31], [-33, 19]], [[42681, 32210], [-33, 40]], [[42648, 32250], [59, 113], [46, 47]], [[39185, 29813], [-11, -130]], [[39174, 29683], [-13, -152]], [[39161, 29531], [-159, -1]], [[39002, 29530], [-1, 136]], [[39001, 29666], [78, 23], [8, 33], [-18, 33]], [[39069, 29755], [63, 22], [23, 36], [30, 0]], [[40302, 32943], [0, -48], [49, -36], [1, -45]], [[40352, 32814], [-98, -1], [-24, -27]], [[40230, 32786], [-16, 9], [-1, 98]], [[40213, 32893], [40, 45]], [[40253, 32938], [49, 5]], [[33178, 32278], [0, -58]], [[33178, 32220], [-307, 0]], [[32871, 32220], [3, 111], [-1, 274]], [[32873, 32605], [304, 1]], [[34017, 27940], [-1, -260]], [[34016, 27680], [-254, -1]], [[33762, 27679], [-113, 0]], [[33649, 27679], [0, 258]], [[48448, 20182], [23, 5]], [[48471, 20187], [18, -78]], [[48489, 20109], [-32, 4]], [[48457, 20113], [-11, 13]], [[48446, 20126], [2, 56]], [[36223, 30871], [-53, -95], [-31, -27], [-44, 20]], [[36095, 30769], [-1, 160], [-160, 0]], [[35934, 30929], [0, 107], [-23, 0], [0, 81]], [[35911, 31117], [50, 0], [5, -40], [163, 13]], [[36129, 31090], [60, 0], [0, -108]], [[36851, 31883], [236, -6]], [[37087, 31877], [71, -11]], [[37158, 31866], [-3, -161]], [[37155, 31705], [-172, 4]], [[36983, 31709], [-16, 1], [2, 108], [-119, 2]], [[48642, 20310], [31, 13]], [[48673, 20323], [3, -70]], [[48676, 20253], [-23, -6], [-15, -53]], [[48638, 20194], [-10, 84]], [[48628, 20278], [-18, 18]], [[48610, 20296], [7, 6]], [[48617, 20302], [25, 8]], [[38573, 28386], [29, 0]], [[38602, 28386], [59, 1]], [[38661, 28387], [0, -55], [45, 1], [0, -208]], [[38706, 28125], [-56, -17], [-77, 12]], [[38573, 28120], [0, 266]], [[40541, 33014], [-30, -10]], [[40511, 33004], [-105, -1]], [[40406, 33003], [2, 175]], [[40471, 33223], [34, 25], [66, -1]], [[40571, 33247], [-29, -222]], [[33107, 38350], [73, -1], [63, -41], [34, -6], [47, 26], [56, -3], [62, 19], [28, -23], [-30, -31], [34, -67], [7, -47], [39, -17]], [[33520, 38159], [-1, -14], [-220, 0], [0, -161]], [[33299, 37984], [-145, 0]], [[33154, 37984], [-21, 18]], [[33133, 38002], [0, 196], [-26, 0], [0, 152]], [[41448, 30275], [26, -9]], [[41474, 30266], [40, 5], [16, -17], [13, -59], [26, -46]], [[41569, 30149], [-61, -26], [-29, -22], [-42, 8]], [[41437, 30109], [-16, 30]], [[37415, 28826], [-219, 1]], [[37196, 28827], [18, 55], [-1, 134]], [[37213, 29016], [67, 0], [0, 26], [90, 0]], [[37370, 29042], [0, -54], [45, -54], [0, -27]], [[44243, 32419], [50, 42]], [[44293, 32461], [4, -6], [3, -2], [1, 0], [1, -1], [1, 0], [0, -1], [5, -1], [2, -1], [44, -36], [6, -2], [1, 0], [0, 0], [3, -1], [1, -1], [3, -1], [2, -1], [10, -7], [24, -16], [4, -4], [0, 0], [1, 0], [7, -8], [0, -1], [0, 0], [-31, -47], [-5, -81]], [[44380, 32243], [-44, 88], [-38, 9]], [[44298, 32340], [-21, 58], [-34, 21]], [[35795, 27333], [27, 1], [63, 37]], [[35885, 27371], [94, -75], [81, -54]], [[36060, 27242], [-17, -87], [-38, 0], [-18, -69], [-27, -22], [-43, 20], [-41, -38]], [[35876, 27046], [-45, 46], [-19, 60], [-29, 26], [-1, 71], [-12, 6]], [[35770, 27255], [28, 1], [-3, 77]], [[38784, 36133], [123, 0]], [[38907, 36133], [1, -54]], [[38908, 36079], [-1, -161]], [[38907, 35918], [-52, -1]], [[38855, 35917], [-104, 6]], [[38751, 35923], [0, 72], [34, 72], [-1, 66]], [[29099, 38605], [-251, -1], [0, 35], [-28, 27], [-56, 1], [0, 27], [-365, 0]], [[28399, 38694], [-50, 6], [-44, 25], [1, 34], [-52, 46]], [[28254, 38805], [334, -1], [2, 107], [171, -3]], [[28761, 38908], [78, -18], [6, -34], [85, 0], [0, -27], [57, 0], [0, -80], [111, 0]], [[29098, 38749], [0, -54]], [[39057, 35430], [103, -1]], [[39160, 35429], [0, -143]], [[39160, 35286], [1, -72]], [[39161, 35214], [-176, 0]], [[38985, 35214], [-30, -1]], [[38955, 35213], [0, 216]], [[38955, 35429], [102, 1]], [[26287, 33103], [-144, -46], [0, -50], [220, -275]], [[26363, 32732], [-288, -358], [-33, 2]], [[26042, 32376], [-318, 320]], [[25724, 32696], [109, 0], [2, 270], [-49, -1], [0, 57], [37, 81], [77, 0]], [[38228, 34062], [1, 54]], [[38229, 34116], [199, -2]], [[38428, 34114], [-1, -53], [50, -1], [1, -69]], [[38478, 33991], [-23, -47]], [[38455, 33944], [-47, -36], [-38, -88], [-35, -32]], [[38335, 33788], [-109, 3], [0, 54]], [[38226, 33845], [2, 217]], [[45641, 34051], [-14, 144], [-18, 49]], [[45609, 34244], [6, 14], [2, -1], [2, -2], [6, -2], [2, 0], [5, -1], [3, 0], [4, -5], [87, -14], [38, 38], [160, -1], [61, 11], [68, 43], [14, 21], [48, 13], [33, -40], [42, 7], [30, -39], [76, 55], [20, -17], [-105, -49], [-122, -66], [-162, -64], [-125, -59], [-67, -22], [-62, 0], [-32, -13]], [[40680, 33379], [-96, 3]], [[40584, 33382], [1, 116]], [[40585, 33498], [96, 8]], [[40681, 33506], [-1, -98]], [[36650, 31667], [-3, -154]], [[36647, 31513], [-236, 0]], [[36411, 31513], [0, 105]], [[36411, 31618], [0, 60]], [[32302, 34723], [0, 187]], [[32302, 34910], [284, 1]], [[32586, 34911], [16, 0]], [[32602, 34911], [-3, -188]], [[31576, 31126], [162, -1], [149, -61], [111, 7], [166, -2]], [[32164, 31069], [152, 1], [19, 13], [111, -234], [37, -21]], [[32483, 30828], [0, -91], [-96, 1], [-116, -62]], [[32271, 30676], [0, 45], [-278, 0], [-230, 1], [0, -108]], [[31763, 30614], [-184, 0]], [[31579, 30614], [-3, 512]], [[40565, 29111], [34, -60]], [[40599, 29051], [-25, -23], [-120, -3], [2, -35], [-45, -1]], [[40411, 28989], [-2, 54], [-22, 0], [-90, 61]], [[40297, 29104], [-1, 62], [45, 20]], [[40341, 29186], [135, 1], [65, 10]], [[34914, 29355], [58, -1]], [[34972, 29354], [165, -4]], [[35137, 29350], [-3, -271]], [[35134, 29079], [-29, 0]], [[35105, 29079], [-196, 2]], [[34909, 29081], [5, 274]], [[34935, 37339], [-312, 2]], [[34623, 37341], [-123, 0]], [[34500, 37341], [1, 212]], [[34501, 37553], [422, 0]], [[34923, 37553], [12, 0]], [[34735, 38144], [220, 0]], [[34955, 38144], [111, 0]], [[35066, 38144], [0, -162], [11, 0], [0, -215]], [[35077, 37767], [-154, 1]], [[34923, 37768], [-176, 0]], [[34747, 37768], [0, 215], [-12, 0], [0, 161]], [[36676, 36587], [53, -1], [0, -27], [52, -20]], [[36781, 36539], [-48, -21], [-14, -39]], [[36719, 36479], [-8, -53]], [[36711, 36426], [-303, -1]], [[36408, 36425], [-2, 161], [57, 0]], [[40982, 29311], [-1, -51]], [[40981, 29260], [-34, -98]], [[40947, 29162], [-36, 35]], [[40911, 29197], [-46, 25], [-51, 58]], [[40814, 29280], [-8, 55]], [[40806, 29335], [16, 14], [83, 4], [13, -5]], [[23818, 32914], [72, 6], [0, 18], [101, 1], [24, 27], [113, -1]], [[24128, 32965], [27, -26], [30, -60], [28, -27]], [[24213, 32852], [-8, -42], [44, -49], [21, -60], [44, -73], [15, -46], [-20, -46]], [[24309, 32536], [4, -9]], [[24313, 32527], [-41, -19]], [[24272, 32508], [-38, 45], [-70, 15], [-71, 67], [-44, -13]], [[24049, 32622], [-55, 96], [-88, 71], [-48, 83], [-40, 42]], [[40985, 37365], [-54, 4], [0, 53], [-54, 1], [0, 53], [-326, 0], [-1, 54], [-54, 0]], [[40496, 37530], [0, 315]], [[40496, 37845], [125, 8], [-33, -44], [-13, -106], [18, -28], [67, -7], [27, -14], [73, 24], [35, -41], [57, 51], [72, 0], [13, 20], [50, -18], [-15, -53], [12, -114], [-44, -1], [-1, -43], [42, 11], [43, -30], [-20, -25], [75, -57], [55, 32], [30, 32], [54, -8], [30, -99], [-64, 10], [-56, -8], [-41, 22], [-59, -6], [-43, 12]], [[29257, 35538], [-237, 1]], [[29020, 35539], [1, 161], [-103, 1], [0, 51], [-96, 1], [-26, 36], [-181, 0], [0, 124]], [[29103, 35910], [67, 0], [16, -48], [28, 2], [43, -28]], [[29257, 35836], [0, -115]], [[41123, 29927], [-31, 47], [23, 75]], [[41115, 30049], [29, -39], [81, -20], [12, -40]], [[41237, 29950], [-48, -37]], [[41920, 28606], [35, 97], [28, 42]], [[41983, 28745], [32, -26], [-7, -61], [54, -67], [66, -41]], [[42128, 28550], [-33, -76], [-42, -23]], [[42053, 28451], [-17, 26], [-53, 44], [-63, 85]], [[33721, 27033], [22, 14], [20, 96], [-1, 126]], [[33762, 27269], [256, 0]], [[34018, 27269], [1, -332]], [[34019, 26937], [-243, -1]], [[33776, 26936], [-47, 55], [-8, 42]], [[36411, 31618], [-166, 1]], [[36245, 31619], [-4, 203]], [[36241, 31822], [170, 0]], [[43339, 34416], [28, 32], [178, -14]], [[43545, 34434], [63, -8]], [[43608, 34426], [24, -39]], [[43632, 34387], [-33, -25], [24, -46], [-9, -50], [-61, -28], [-13, -35], [-40, -36], [-8, -40]], [[43492, 34127], [4, -5]], [[43496, 34122], [-197, 0]], [[43299, 34122], [-1, 112]], [[40671, 35600], [204, -1]], [[40875, 35599], [2, -211]], [[40877, 35388], [-104, -4]], [[40773, 35384], [-102, 1]], [[40671, 35385], [0, 215]], [[48688, 20120], [42, -17]], [[48730, 20103], [-3, -24]], [[48727, 20079], [-20, -23], [-29, 27]], [[48678, 20083], [10, 37]], [[38579, 33057], [-25, 0]], [[38554, 33057], [-2, 323]], [[38552, 33380], [73, 1]], [[38625, 33381], [2, -108], [170, 0]], [[38797, 33273], [0, -81]], [[38797, 33192], [-48, -1], [0, -116]], [[39128, 30585], [7, 0]], [[39135, 30585], [-1, -148]], [[39134, 30437], [-154, 1]], [[38980, 30438], [-15, 63], [-30, 0], [0, 84]], [[38935, 30585], [16, 0]], [[38951, 30585], [177, 0]], [[38750, 30205], [1, -135]], [[38751, 30070], [-115, 1]], [[38636, 30071], [0, 17], [-92, 1]], [[38544, 30089], [0, 224]], [[38544, 30313], [23, 0]], [[38567, 30313], [83, 0], [101, -36]], [[37127, 28556], [154, 1], [1, 54], [111, -1]], [[37393, 28610], [-4, -58], [13, -66], [26, -57], [38, -15]], [[37466, 28414], [-190, -54], [-27, 10], [-11, 68]], [[37238, 28438], [-38, 50], [-44, 17], [-29, 51]], [[35936, 33998], [-25, 38]], [[35911, 34036], [171, -3]], [[36082, 34033], [75, -1]], [[36157, 34032], [10, -62], [-1, -134]], [[36166, 33836], [-163, 2]], [[36003, 33838], [-29, 48], [-38, 112]], [[38968, 33546], [-29, -32], [1, -54]], [[38940, 33460], [-93, 1]], [[38847, 33461], [-50, 1], [-1, 90], [-33, 7]], [[38763, 33559], [0, 64]], [[38763, 33623], [32, 1], [0, 81]], [[38795, 33705], [174, 4]], [[40267, 34952], [205, 1]], [[40472, 34953], [1, -192]], [[40473, 34761], [-161, -1]], [[40312, 34760], [-57, 0]], [[40255, 34760], [14, 25], [-2, 167]], [[38801, 32517], [185, 0]], [[38986, 32517], [-1, -135]], [[38985, 32382], [0, -27]], [[38985, 32355], [-193, 0]], [[38792, 32355], [-12, 54]], [[38780, 32409], [25, 69], [-4, 39]], [[30630, 37904], [-18, 14], [21, 68], [-30, 84], [-1, 149], [21, 55]], [[30623, 38274], [19, 39], [58, 36], [16, 35], [44, 13], [62, -17], [16, 43]], [[30838, 38423], [72, -19], [104, 1], [56, 9], [9, 37], [55, -2], [10, 23], [61, 26], [36, 73], [31, 16]], [[31272, 38587], [26, 0], [0, -55], [43, 0], [-1, -210], [-16, 0], [0, -108], [56, 1], [0, -108], [36, 0]], [[31416, 38107], [0, -198]], [[31416, 37909], [0, -8]], [[34623, 33891], [0, 209]], [[34623, 34100], [1, 6]], [[34624, 34106], [191, 0]], [[34815, 34106], [2, 0]], [[34817, 34106], [0, -215]], [[37356, 36041], [-105, 9]], [[37256, 36264], [55, 0]], [[37311, 36264], [101, 0], [0, -54], [105, 0]], [[37517, 36210], [0, -161]], [[45228, 34131], [103, -40]], [[45331, 34091], [-11, -19]], [[45320, 34072], [-18, -32]], [[45302, 34040], [-44, 10], [-69, -6]], [[45189, 34044], [1, 46]], [[45190, 34090], [38, 41]], [[48875, 20328], [24, -53]], [[48899, 20275], [-34, 7]], [[48865, 20282], [-9, 4]], [[39108, 28118], [-3, 71]], [[39105, 28189], [45, 18], [133, 1], [22, 11]], [[39305, 28219], [-1, -50], [15, -13], [-20, -114], [0, -40], [-17, -36], [8, -42]], [[39290, 27924], [-41, -108], [-2, -82], [-13, -35], [-30, 26], [-55, 16], [-28, -12]], [[39121, 27729], [-7, 226]], [[39114, 27955], [-6, 163]], [[35317, 35835], [-118, 0]], [[35109, 35835], [0, 216]], [[35213, 36050], [104, 0]], [[39314, 29921], [138, -3]], [[39452, 29918], [0, -26], [45, -3], [2, -109], [45, -1], [0, -54]], [[39544, 29725], [-90, 5], [-16, -55], [-75, 2]], [[39363, 29677], [-46, 0]], [[39317, 29677], [-3, 244]], [[40341, 29186], [0, 233]], [[40341, 29419], [158, 1]], [[40499, 29420], [21, -147]], [[43954, 31542], [58, 0]], [[44012, 31542], [31, -17], [-50, -168]], [[43993, 31357], [-39, -24], [3, -24]], [[43957, 31309], [-42, 28], [-25, 69], [-42, -14], [-17, 29], [13, 39], [-43, 42], [-54, 1], [-55, 13]], [[43692, 31516], [0, 25]], [[43692, 31541], [58, 1]], [[43750, 31542], [204, 0]], [[30126, 34084], [0, 208]], [[30126, 34292], [228, 0], [265, 1]], [[30619, 34293], [261, 1]], [[30880, 34294], [2, -249], [-25, -36], [-25, 0], [-5, -197]], [[30827, 33812], [-293, -1], [-409, 1]], [[30125, 33812], [1, 272]], [[40370, 31890], [-46, 10], [-23, 35]], [[40301, 31935], [-5, 74], [17, 74]], [[40313, 32083], [33, 30]], [[40346, 32113], [-1, -24], [46, -42], [55, -106]], [[40678, 33246], [-107, 1]], [[40470, 33337], [0, 45]], [[40470, 33382], [114, 0]], [[44008, 31040], [82, -45], [60, 37]], [[44150, 31032], [92, -9]], [[44242, 31023], [21, -52], [53, -40]], [[44316, 30931], [-73, -28], [14, -31], [-2, -45], [-45, 25], [-138, 39], [26, -33], [33, -2], [99, -55], [25, -5]], [[44255, 30796], [-11, -63], [-93, -12], [-22, 24]], [[44129, 30745], [-27, 29], [-101, 72]], [[44001, 30846], [6, 62], [27, 42], [-23, 28], [-3, 62]], [[48638, 20194], [-2, -6]], [[48636, 20188], [-2, -1]], [[48634, 20187], [-43, 5]], [[48591, 20192], [11, 54], [26, 32]], [[33774, 38198], [244, 0]], [[34018, 38198], [-1, -214], [17, 0], [-2, -215]], [[34032, 37769], [-253, 1]], [[33779, 37770], [-55, 35], [-14, 61], [-38, 71], [-12, 48]], [[33660, 37985], [23, 20], [-36, 87]], [[33647, 38092], [94, 1], [0, 105], [33, 0]], [[42698, 30899], [-49, -1]], [[42649, 30898], [-193, 2]], [[42456, 30900], [-15, 103], [28, 111]], [[42469, 31114], [33, -4], [75, -63]], [[39242, 37531], [0, -201]], [[39242, 37330], [-60, 26], [-73, 11], [-37, 23], [-47, -19], [-29, 16]], [[38996, 37387], [-43, 1], [-66, 36]], [[38887, 37424], [-25, 14]], [[38862, 37438], [0, 146]], [[38862, 37584], [0, 53]], [[38862, 37637], [135, 1]], [[38997, 37638], [245, 0]], [[36187, 37016], [161, 0], [0, -54]], [[36348, 36962], [2, -268]], [[36350, 36694], [-214, 0]], [[36136, 36694], [1, 161]], [[36137, 36855], [-3, 161]], [[41357, 32262], [5, -26]], [[41362, 32236], [-73, 13], [-14, -33], [-32, 1]], [[41243, 32217], [-81, 48]], [[41162, 32265], [34, 67]], [[41196, 32332], [47, 4], [12, 19]], [[35235, 27368], [1, 2]], [[35236, 27370], [127, 163]], [[35363, 27533], [78, 40], [22, 27]], [[35463, 27600], [49, -5], [21, -28], [5, -38]], [[35538, 27529], [23, -51]], [[35561, 27478], [-64, -105], [-69, -98]], [[35428, 27275], [-116, -3]], [[32301, 36496], [102, 21], [110, 0]], [[32513, 36517], [-2, -215], [52, 0], [1, -71]], [[32564, 36231], [-263, 0]], [[32301, 36231], [0, 24]], [[32301, 36255], [0, 241]], [[47979, 36917], [51, 9], [-48, 230]], [[47982, 37156], [106, 25]], [[48088, 37181], [37, -11], [33, -30], [95, -22], [0, -47], [-33, -8], [33, -82], [-27, -46], [37, -75], [28, -21], [49, 23], [50, -32], [32, -103], [24, -20], [0, -62], [-90, -103], [-53, -20], [1, 58], [-38, -8], [15, -38], [-90, -62], [26, -21], [-34, -31], [-32, 56], [-50, -15], [-33, -53], [-46, -8]], [[48022, 36400], [-26, 107], [-38, 216], [53, 11], [-32, 183]], [[33592, 30432], [64, 0]], [[33656, 30432], [-1, -268]], [[33655, 30164], [-41, -1]], [[33614, 30163], [-188, 0]], [[33426, 30163], [0, 269]], [[38862, 37584], [-163, 0], [0, 107], [-164, 0], [0, 53], [-54, 0], [-10, 107]], [[38471, 37851], [42, 33], [75, 0], [79, 13], [82, 39], [47, 50], [74, 11], [17, 19]], [[38887, 38016], [0, -166], [30, 1], [0, -53], [-55, 0], [0, -161]], [[38515, 29771], [1, -161], [60, -8], [1, -73]], [[38577, 29529], [-25, 0], [-21, -43]], [[38531, 29486], [-185, 73]], [[38346, 29559], [0, 52], [32, 26], [0, 119], [-11, 15]], [[38367, 29771], [148, 0]], [[23986, 36588], [33, -38], [-40, -13], [-42, -51], [21, -33], [-12, -101], [26, -33]], [[23972, 36319], [-259, 0]], [[23713, 36319], [26, 47], [-2, 45], [53, 0], [-2, 178]], [[23788, 36589], [198, -1]], [[35612, 36051], [169, 0]], [[35781, 36051], [5, 0]], [[35786, 35835], [-174, 0]], [[43299, 34122], [-75, -203]], [[43224, 33919], [-64, -16], [-15, 26], [-63, 30], [-41, -2], [-24, 45]], [[43017, 34002], [102, 151], [0, 84]], [[37370, 29096], [0, -54]], [[37213, 29016], [-45, 0], [0, 81]], [[37168, 29097], [6, 60], [16, 47], [45, 1]], [[44121, 33877], [-26, -11], [-129, -20], [-68, 5], [-48, -41], [-34, -13]], [[43816, 33797], [-25, 56]], [[43791, 33853], [58, 68], [109, 74], [148, 67]], [[33196, 36785], [0, 268]], [[33196, 37053], [231, 0]], [[33427, 37053], [-7, -54], [0, -214], [-7, -28], [159, 0], [0, -152]], [[33572, 36605], [-40, -34], [-43, -1], [-51, -32], [-38, -44], [-80, 7], [-28, -26], [-70, -1], [-26, -14]], [[33196, 36460], [0, 325]], [[36375, 29139], [-1, 87]], [[36374, 29226], [85, -62], [51, 1], [47, 32], [48, -31], [18, 26], [38, -28]], [[36661, 29164], [1, -186]], [[36662, 28978], [-136, -39], [-60, 40]], [[36466, 28979], [-38, 1]], [[36428, 28980], [-54, 16], [1, 143]], [[38997, 37638], [1, 266], [55, 0], [0, 54], [44, 0]], [[39097, 37958], [-14, -66], [21, -24], [83, 84], [30, -15], [57, 5]], [[36057, 31574], [45, 0], [0, -54]], [[36102, 31520], [-47, 0], [-2, -268]], [[36053, 31252], [-49, 10], [-29, 44], [-62, 0]], [[35913, 31306], [-23, 0], [1, 161]], [[35891, 31467], [1, 107]], [[35892, 31574], [165, 0]], [[37364, 33211], [50, -2]], [[37414, 33209], [92, -4], [-3, -108]], [[37503, 33097], [-24, -101], [13, -53], [-33, -59], [-4, -47]], [[37455, 32837], [-60, 22], [-16, 37]], [[37379, 32896], [7, 38], [-43, 45], [-9, 30]], [[37334, 33009], [-26, 30]], [[37308, 33039], [-2, 20], [58, 152]], [[48369, 20188], [-9, 9]], [[48360, 20197], [11, 17], [-14, 44]], [[48357, 20258], [46, -7]], [[48403, 20251], [27, -37]], [[48430, 20214], [-14, -13]], [[48416, 20201], [-15, -15]], [[34896, 30821], [2, -323]], [[34898, 30498], [-230, 0]], [[34668, 30498], [0, 150]], [[34668, 30648], [-1, 226]], [[34667, 30874], [0, 54]], [[34667, 30928], [135, 0]], [[31716, 33407], [0, 111]], [[31716, 33518], [0, 103]], [[31716, 33621], [110, 0]], [[31826, 33621], [41, 1]], [[31867, 33622], [-1, -77]], [[31866, 33545], [0, -76], [-19, -33], [19, 4]], [[31866, 33440], [2, -33]], [[31868, 33407], [-80, -197], [-42, -73]], [[41886, 32671], [-65, -31], [-30, -59]], [[41791, 32581], [-38, 50], [-68, 63]], [[41685, 32694], [80, 23], [16, 83]], [[41781, 32800], [30, 5]], [[41811, 32805], [71, -72]], [[33294, 28521], [221, -1]], [[33515, 28520], [0, -58]], [[33515, 28462], [0, -17]], [[33515, 28445], [-3, -277]], [[33512, 28168], [-218, 0]], [[33294, 28168], [0, 353]], [[37446, 31028], [-5, -216]], [[37441, 30812], [-99, 3]], [[37342, 30815], [0, 54], [-161, 5]], [[37181, 30874], [16, 53], [2, 107]], [[37199, 31034], [77, -3], [1, 45], [93, -1]], [[31395, 33291], [-31, 1]], [[31364, 33292], [-19, 52], [1, 49], [31, 43], [-37, 52], [-54, 43], [-21, 97]], [[31265, 33628], [79, -6], [23, -31], [51, -36], [26, -73], [43, 7]], [[31487, 33489], [6, -23], [56, -21], [-21, -39]], [[35307, 32116], [273, 1]], [[35580, 32117], [1, -108]], [[35581, 32009], [-1, -187]], [[35580, 31822], [-97, 0]], [[35483, 31822], [-174, 0]], [[35309, 31822], [-2, 294]], [[36806, 30820], [7, 242]], [[36813, 31062], [77, -3]], [[36890, 31059], [-1, -18], [155, -3]], [[37044, 31038], [-1, -81], [-24, 1], [-1, -81], [-31, 1], [-2, -88]], [[45329, 35683], [-35, -20], [-46, 13], [-91, -9], [-77, 36]], [[45080, 35703], [-68, 33], [41, 91], [-35, 360]], [[45157, 36205], [111, 13]], [[45365, 35986], [-68, -10], [24, -220]], [[42590, 32018], [-19, 66]], [[42571, 32084], [76, 52], [-13, 35], [47, 39]], [[42768, 32222], [23, -63], [-46, -76]], [[42745, 32083], [-82, -50]], [[34192, 28787], [36, -1]], [[34228, 28786], [189, -1]], [[34417, 28785], [-3, -204], [0, -174]], [[34414, 28407], [-43, -21], [-63, 11], [-67, 25]], [[34241, 28422], [-30, 12], [-23, 41]], [[34188, 28475], [4, 312]], [[9976, 50959], [346, 0], [487, 0], [655, 0], [440, 0], [682, 0], [684, 0], [764, 0], [0, 309], [584, 0], [655, 0], [619, 0], [318, -1]], [[16210, 51267], [0, -44], [0, -383], [0, -243], [0, -402], [0, -569]], [[16210, 49626], [-47, -12], [-98, -67], [-22, -60], [-175, -70], [-29, -34], [-125, 10], [-72, -14], [-78, -42], [-77, 0], [-29, -30], [-1, -55], [-57, -58], [-79, -5], [-185, -93], [-28, -125], [-49, -68], [-46, -13], [-138, 22]], [[14875, 48912], [-21, 26], [36, 32], [-31, 44], [52, 73], [-43, 34], [71, 23], [-23, 37], [-155, -7], [-56, -29], [-228, 47], [-106, -42], [-128, -4], [-59, -16], [9, 72], [-194, 60], [-26, 40], [58, 27], [-87, 58], [-83, -21], [-66, -46], [-154, -38], [-181, -5], [-104, -40], [-481, 0], [0, -214], [6, -172], [42, 20], [64, -53], [58, -24], [21, -35], [77, -57]], [[13143, 48702], [-473, 0], [0, 9], [-696, 0], [-240, -223], [-102, 15], [-22, 30], [-99, 0], [-29, -31], [-85, -14], [0, -107], [-76, 0], [0, -106], [-280, 0], [0, -107], [27, 0], [0, -81], [83, 0], [0, -26], [84, 0], [0, -75], [-249, -281]], [[10986, 47705], [0, -269]], [[10986, 47436], [-31, -53], [-142, 0], [0, -54], [-159, 0], [0, -53], [-338, 0], [-418, 0], [-682, 0], [0, 53], [-639, 0], [0, -53], [-320, 0], [0, -54], [-553, 0]], [[7704, 47222], [-166, 0], [0, 161], [-58, 0], [0, 213], [23, 1], [0, 213], [23, 62], [37, 8]], [[7563, 47880], [0, 161], [83, 0], [-10, 160], [84, 0], [0, 54], [168, 0], [0, 53], [78, 0], [0, 53], [85, 0], [0, 161], [-91, 0], [0, 214], [-7, 214], [82, 0], [0, 107], [88, 0], [-4, 213], [89, 0], [-4, 161], [-90, 0]], [[29385, 31824], [123, -3], [204, 0]], [[29712, 31821], [0, -500], [0, -324], [76, 0], [-8, -89], [0, -430], [-9, -162], [7, -53], [-5, -215], [0, -215], [-14, 0], [0, -129]], [[29759, 29704], [-47, 5]], [[29712, 29709], [0, 262], [-327, 0], [0, 162]], [[29385, 30133], [0, 541], [0, 420], [0, 413], [0, 317]], [[38315, 28562], [1, -227]], [[38316, 28335], [-7, 0]], [[38309, 28335], [-126, -1]], [[38183, 28334], [-37, 0]], [[38146, 28334], [0, 162], [-45, 0]], [[38101, 28496], [0, 54]], [[38101, 28550], [199, 1], [15, 11]], [[33594, 31241], [1, 272]], [[33595, 31513], [57, 1]], [[33652, 31514], [177, -1]], [[33829, 31513], [0, -273]], [[33829, 31240], [-235, 1]], [[32862, 28521], [196, 0]], [[33058, 28521], [7, -349]], [[33065, 28172], [-38, 0]], [[33027, 28172], [-18, 66], [-35, 41], [-40, 10], [-31, 32], [-41, -21]], [[32862, 28300], [0, 221]], [[30313, 36761], [162, 0]], [[30475, 36761], [147, 0]], [[30622, 36761], [13, -9], [21, -115], [34, -18], [6, -34], [93, -30], [69, -66]], [[30858, 36489], [73, -70], [7, -54], [17, -21], [0, -98]], [[30955, 36246], [-172, 1], [-440, 1]], [[30343, 36248], [-10, 0], [0, 217], [-8, 0], [0, 217], [-12, 79]], [[39417, 31106], [4, 41], [75, 54]], [[39496, 31201], [144, -21]], [[39640, 31180], [-5, -67]], [[39635, 31113], [-8, -78], [-46, -40]], [[39581, 30995], [-52, -27], [-48, 23], [-39, -27]], [[39442, 30964], [-37, 34], [12, 108]], [[38245, 30485], [45, 17]], [[38290, 30502], [44, 0], [1, -84]], [[38335, 30418], [-19, -76], [20, -29]], [[38336, 30313], [0, -27]], [[38336, 30286], [-46, -1], [1, -52], [-43, -1]], [[38248, 30232], [-74, 63]], [[38174, 30295], [10, 23], [-16, 48]], [[38168, 30366], [29, -6], [24, 33], [4, 36], [-14, 73], [34, -17]], [[36778, 34031], [5, -194]], [[36783, 33837], [0, -80]], [[36783, 33757], [-197, 2]], [[36586, 33759], [1, 153]], [[36587, 33912], [-8, 116]], [[48939, 20251], [-29, 9]], [[48910, 20260], [-1, 82]], [[48909, 20342], [23, -15]], [[48932, 20327], [0, -52], [14, -12]], [[40301, 33138], [-50, -1], [1, -38]], [[40252, 33099], [-27, -17], [-96, 6]], [[40129, 33088], [-2, 182]], [[40127, 33270], [58, 2]], [[40185, 33272], [117, 1]], [[40633, 30021], [81, -1]], [[40714, 30020], [6, -169]], [[40720, 29851], [-77, -16]], [[40583, 29854], [-5, 58]], [[41038, 33214], [56, -4]], [[41094, 33210], [-3, -140], [87, 0]], [[41178, 33070], [-14, -235]], [[41164, 32835], [-87, 79]], [[41077, 32914], [-65, 2]], [[41012, 32916], [26, 298]], [[40260, 31352], [64, -15], [53, 27], [7, 28]], [[40384, 31392], [33, -41], [94, -52], [37, -4]], [[40548, 31295], [8, -4]], [[40556, 31291], [-23, -24], [-36, 3], [-12, -78]], [[33187, 39111], [0, -53], [78, 0], [0, -161], [341, -1]], [[33606, 38896], [20, -54], [-1, -215], [20, 0], [-1, -107]], [[33644, 38520], [-392, -1]], [[33252, 38519], [0, 108], [-22, 0], [0, 216], [-22, 0], [0, 108], [-114, -1]], [[46124, 35121], [10, 84], [21, 21], [-14, 40], [21, 23], [-24, 66]], [[46138, 35355], [154, -6]], [[46292, 35349], [13, -1]], [[46305, 35348], [24, -45], [30, 4], [48, -20], [20, -37], [38, -20], [-12, -67], [-29, -38], [18, -24], [1, -71], [46, -24]], [[46489, 35006], [-9, -86]], [[46480, 34920], [-131, -6]], [[46349, 34914], [-1, 10], [-131, 3]], [[46217, 34927], [-15, 1]], [[46202, 34928], [1, 81], [-57, 14], [19, 38]], [[41244, 33986], [-13, -170]], [[41231, 33816], [-102, 10], [-100, 17]], [[41029, 33843], [5, 130]], [[41034, 33973], [4, 32], [50, 2]], [[41088, 34007], [156, -21]], [[25543, 31507], [19, -54], [24, 0], [0, -82], [-24, 1], [-4, -297]], [[25558, 31075], [-285, 0]], [[25273, 31075], [-9, 0]], [[25264, 31075], [-44, 73]], [[25220, 31148], [155, 169], [0, 136], [89, 0], [38, 11], [41, 43]], [[26404, 29592], [8, 41], [30, 32]], [[26442, 29665], [60, -9], [57, -36], [91, -3], [412, -1]], [[27062, 29616], [2, -217], [-10, 0], [-1, -281]], [[27053, 29118], [-444, -52], [-6, 57], [-25, 38], [-22, -12], [-2, 127], [-13, 85], [-20, 67], [-78, 131], [-39, 33]], [[48730, 20103], [32, 37]], [[48762, 20140], [15, 12]], [[48777, 20152], [25, -28]], [[48802, 20124], [-17, -23], [-6, -60]], [[48779, 20041], [-52, 38]], [[40981, 29260], [101, 0]], [[41082, 29260], [37, -74], [46, -23]], [[41165, 29163], [-28, 0], [-103, -100]], [[41034, 29063], [-29, 40], [-15, 49], [-43, 10]], [[48951, 20262], [25, 4]], [[48976, 20266], [29, -14], [16, -31]], [[49021, 20221], [-33, -20]], [[48988, 20201], [-38, 16]], [[36652, 32716], [-84, 2], [-24, 13], [-131, 4]], [[36413, 32735], [2, 160]], [[36415, 32895], [0, 68]], [[36415, 32963], [213, -9]], [[45421, 34958], [95, -46], [80, -16], [13, 44]], [[45609, 34940], [5, 0]], [[45614, 34940], [-14, -237]], [[45600, 34703], [-5, -86]], [[45595, 34617], [-176, -24], [-21, -30]], [[45398, 34563], [-6, 51], [19, 42]], [[35742, 27705], [24, -21], [3, -44]], [[35769, 27640], [-29, -11], [-14, -45], [20, -39]], [[35746, 27545], [-9, -11], [-55, 27], [-144, -32]], [[35463, 27600], [28, 52], [39, 32]], [[35530, 27684], [149, 51]], [[31868, 32599], [48, 0], [-1, 162]], [[31915, 32761], [387, 1]], [[32302, 32762], [-2, -232]], [[32300, 32530], [-1, -254]], [[32299, 32276], [-127, 51]], [[32172, 32327], [-128, 51], [-160, -11], [-16, 21]], [[37158, 31866], [95, -2]], [[37253, 31864], [189, -5]], [[37442, 31859], [71, -2]], [[37513, 31857], [-4, -162], [-7, 0]], [[37502, 31695], [-284, 8]], [[37218, 31703], [-63, 2]], [[33415, 39230], [573, 0]], [[33988, 39230], [-1, -173], [17, 0], [0, -107]], [[34004, 38950], [-57, -1]], [[33947, 38949], [-57, 0], [0, 54], [-284, 0], [0, -53]], [[33606, 38950], [-171, 0], [0, 108], [-20, 0], [0, 172]], [[43196, 30559], [-23, 55], [-3, 81]], [[43170, 30695], [1, 11]], [[43171, 30706], [94, 24], [38, 22], [77, -13]], [[43380, 30739], [-10, -70], [-14, -24], [10, -60], [67, -86]], [[43433, 30499], [-133, -3], [-45, -10]], [[30011, 36028], [96, 3], [0, 54], [79, 0], [-2, 53], [54, 0], [0, 55], [105, 0]], [[30343, 36193], [27, 0], [0, -54], [27, 0], [-1, -55], [52, 0], [0, -35], [60, -17], [94, 0], [0, -53], [105, 0], [0, -54], [52, 0], [0, -89]], [[41331, 36674], [21, -90], [-18, -64], [-2, -60]], [[41332, 36460], [-247, -2]], [[41085, 36458], [-1, 214]], [[24711, 32893], [6, 118], [24, 44]], [[24741, 33055], [59, 24]], [[24800, 33079], [25, -14], [36, 16], [42, -15], [33, 70], [104, 99], [36, 17], [278, 1]], [[25354, 33253], [1, -94]], [[25355, 33159], [1, -32]], [[25356, 33127], [0, -28]], [[25356, 33099], [-61, 0], [-18, -23], [-109, -1], [-16, -39], [-44, -32], [-69, 56], [-41, -7], [-15, -25], [-33, 7], [-51, -39], [-39, -117]], [[37199, 31034], [-62, 1]], [[37137, 31035], [5, 214], [-2, 27]], [[37140, 31276], [23, 0]], [[37163, 31276], [23, -28], [186, -4]], [[37372, 31244], [-1, -54]], [[33389, 29597], [0, -268]], [[33389, 29329], [-58, 1]], [[33331, 29330], [-168, -2]], [[33163, 29328], [0, 266]], [[33163, 29594], [226, 3]], [[44826, 35368], [19, 25], [2, 54]], [[44847, 35447], [15, 5]], [[44862, 35452], [32, -12], [17, 30], [84, -52], [13, 46], [50, -22]], [[45058, 35442], [50, -21]], [[45108, 35421], [-8, -48], [16, -77], [-36, -67]], [[45080, 35229], [-57, -3], [-77, -52], [-108, -48], [-18, -19], [-46, -4]], [[44774, 35103], [18, 60], [-13, 42], [31, 54], [2, 70], [14, 39]], [[42744, 30676], [77, 12], [21, 13], [103, -12]], [[42945, 30689], [21, -62], [47, -12]], [[43013, 30615], [-50, -32], [5, -50], [-57, -65]], [[42911, 30468], [-102, 1]], [[42809, 30469], [34, 57], [-22, 64], [10, 20], [-30, 51], [-21, -20], [-36, 35]], [[43061, 30488], [-2, 64], [-46, 63]], [[43013, 30615], [54, 73], [46, 30], [57, -23]], [[35607, 34158], [274, 0]], [[35881, 34158], [-20, -20], [17, -45], [23, -11], [10, -46]], [[35936, 33998], [-156, -1]], [[35780, 33997], [-173, 0]], [[43545, 34434], [-7, 108], [-73, 0], [1, 122]], [[43466, 34664], [94, 9]], [[43560, 34673], [66, -88], [27, 0]], [[43653, 34585], [0, -66], [-45, -93]], [[42620, 29512], [11, -69], [81, -76]], [[42712, 29367], [31, -58], [-29, -25], [-5, -43], [-62, 21], [-45, 4]], [[42602, 29266], [-7, 67], [7, 53], [-96, 9], [-36, 54], [-37, 16]], [[42433, 29465], [125, 95], [8, -34], [54, -14]], [[36833, 36050], [-52, 0]], [[36781, 36050], [0, 215]], [[36781, 36265], [106, 0]], [[36887, 36265], [52, 0]], [[36939, 36265], [0, -215]], [[34586, 36104], [5, -54], [1, -215]], [[34592, 35835], [-219, 0]], [[34373, 35835], [-48, 127], [-1, 43], [43, 49], [-19, 49]], [[34348, 36103], [186, 1]], [[40337, 31079], [4, -110], [16, -52]], [[40357, 30917], [-22, -1]], [[40218, 30911], [-25, 24], [-22, 60]], [[40171, 30995], [0, 46], [43, 65]], [[39311, 33354], [118, 4], [68, -6]], [[39497, 33352], [0, -80], [-25, -9], [-6, -46]], [[39466, 33217], [8, -36], [-19, -27]], [[39315, 33165], [-25, 0]], [[40965, 32782], [40, 30], [34, -6]], [[41039, 32806], [27, -62]], [[41066, 32744], [-22, -33]], [[41044, 32711], [-53, 12]], [[38623, 31513], [23, -1]], [[38646, 31512], [30, 1]], [[38676, 31513], [31, 3]], [[38707, 31516], [-6, -58], [-20, -36], [-17, -71], [-17, -15]], [[38647, 31336], [-63, -16]], [[38584, 31320], [8, 33], [32, 21], [-4, 39]], [[38620, 31413], [3, 100]], [[42918, 29541], [50, -20], [50, -36]], [[43018, 29485], [-31, -40], [-54, -16], [-87, -130], [-6, -24], [-44, -8], [-24, 24], [-19, 62], [-41, 14]], [[42620, 29512], [46, 26], [14, 89]], [[42680, 29627], [33, 4], [20, 29]], [[36938, 30216], [6, 213]], [[36944, 30429], [46, 19]], [[36990, 30448], [93, -1]], [[37083, 30447], [46, 0], [-5, -83], [46, -1], [29, -28], [7, -54]], [[37206, 30281], [-53, 2], [-15, -72], [-200, 5]], [[35833, 32896], [-1, 81]], [[35832, 32977], [195, 0]], [[36027, 32977], [0, -81]], [[36027, 32896], [-4, -188]], [[36023, 32708], [-192, 0]], [[42340, 34507], [0, 94]], [[42340, 34601], [211, -1]], [[42551, 34600], [0, -6]], [[42551, 34594], [0, -220]], [[42551, 34374], [-210, 1]], [[34506, 28417], [93, 79], [8, 47], [40, 8]], [[34647, 28551], [77, 14], [12, -24]], [[34736, 28541], [84, -165]], [[34820, 28376], [-127, -115]], [[34693, 28261], [-27, 24], [-13, 62], [-18, 23], [-53, 6], [-24, 17], [-39, 1], [-13, 23]], [[33125, 30975], [0, -4]], [[33125, 30971], [-2, -270]], [[33123, 30701], [-199, 2], [-182, -2]], [[32742, 30701], [1, 271]], [[32743, 30972], [382, 3]], [[42708, 34202], [-3, 90], [30, 43]], [[42735, 34335], [42, 63]], [[42777, 34398], [133, 1]], [[42912, 34397], [-1, -309]], [[42911, 34088], [-198, 3]], [[26753, 37290], [28, 23], [-12, 30], [24, 33]], [[26793, 37376], [24, 21], [58, 5], [0, 56], [26, 39], [66, -16], [51, 7], [23, 23], [53, 7], [-50, 45], [-19, 45]], [[27025, 37608], [41, -6], [52, -45], [77, -14], [20, 59], [46, 69], [450, 98]], [[27711, 37769], [56, -1], [58, 18]], [[27825, 37786], [-4, -88], [-35, -81], [-21, -75], [11, -60], [-15, -85], [30, -32], [2, -67], [-41, -12], [-29, -48], [28, -31], [2, -33], [-29, -69]], [[27724, 37105], [-44, -53], [-53, 25], [-2, -47], [82, -86], [-39, -61]], [[27668, 36883], [-558, -1], [-61, -22], [-13, -32]], [[27036, 36828], [-61, 13], [-25, 85], [-150, 0]], [[35212, 32816], [192, 0]], [[35404, 32816], [0, -54], [48, 0]], [[35452, 32762], [-8, -107], [-1, -162]], [[35443, 32493], [-136, 1]], [[35307, 32494], [0, 54], [-95, -1]], [[43289, 32164], [16, 55], [21, -7], [42, 63]], [[43368, 32275], [64, 19], [2, 20]], [[43434, 32314], [38, -38], [72, -27]], [[43544, 32249], [-4, -34], [-94, -183]], [[43446, 32032], [-22, -4], [-35, 40]], [[43389, 32068], [-38, 19], [-62, 77]], [[42649, 30898], [-92, -196]], [[42557, 30702], [-19, 15]], [[42538, 30717], [-51, 36], [-12, 49], [-25, 41], [-14, 57]], [[42436, 30900], [20, 0]], [[37087, 31877], [2, 112], [-5, 90]], [[37084, 32079], [1, 44], [95, -2]], [[37180, 32121], [72, -1]], [[37252, 32120], [-2, -135], [3, -121]], [[28955, 34206], [-57, -24], [-33, 0], [-27, 62], [-110, -95]], [[28728, 34149], [-102, 190]], [[28626, 34339], [134, 47], [94, 0], [50, -8]], [[28904, 34378], [18, -112], [33, -60]], [[36043, 36050], [0, 215]], [[36043, 36265], [154, -1]], [[36197, 36264], [4, -54], [105, 0]], [[36306, 36210], [0, -160]], [[42280, 26046], [117, 0]], [[42397, 26046], [41, 0], [1, -52], [42, 0]], [[42481, 25994], [1, -218]], [[42482, 25776], [0, -52], [-90, -100]], [[42392, 25624], [6, 121], [-30, 31]], [[40979, 30580], [54, 0]], [[41033, 30580], [30, 0]], [[41063, 30580], [9, -37], [48, -19], [11, -64]], [[41131, 30460], [-33, -44]], [[41098, 30416], [-36, 12], [-43, -61], [-53, 4]], [[40966, 30371], [24, 49], [5, 45], [-24, 27], [17, 26], [-28, 45], [19, 17]], [[37310, 35252], [0, 54]], [[37310, 35306], [206, -1]], [[37516, 35305], [0, -107], [7, -105]], [[37523, 35093], [-102, 0]], [[37421, 35093], [-102, -1]], [[37319, 35092], [0, 107], [-9, 53]], [[36687, 28470], [35, 24], [30, -14]], [[36752, 28480], [37, -72], [25, -20], [11, -44], [-9, -34], [32, -31], [6, -52]], [[36854, 28227], [-135, -11]], [[36719, 28216], [-56, -15]], [[36663, 28201], [4, 66], [-7, 34], [10, 42], [-9, 29], [27, 34], [-1, 64]], [[41353, 33067], [-50, 24]], [[41303, 33091], [14, 88]], [[41317, 33179], [247, -18]], [[41564, 33161], [-9, -136]], [[39364, 29448], [-1, 229]], [[39544, 29725], [46, -9], [22, -46]], [[39612, 29670], [-7, -45], [46, -74], [49, -27], [0, -18]], [[39700, 29506], [-58, -31], [0, -41], [-36, 1], [-16, -78], [-45, -2]], [[39523, 28899], [64, -42], [64, -92], [118, 1]], [[39769, 28766], [22, 0], [0, -53]], [[39769, 28631], [-258, 0]], [[39511, 28631], [-52, -2], [-21, 30], [0, 72]], [[38515, 29771], [122, 1]], [[38637, 29772], [0, -135], [55, 0]], [[38692, 29637], [-32, -16], [0, -91]], [[38660, 29530], [-83, -1]], [[34425, 34082], [119, -5], [79, 23]], [[34622, 33891], [-197, 0]], [[33491, 33891], [238, -1]], [[33729, 33890], [8, 0]], [[33737, 33890], [0, -214]], [[33737, 33676], [-247, 0]], [[44611, 33503], [30, 42], [55, 29]], [[44696, 33574], [0, 0], [6, 1], [72, -23]], [[44774, 33552], [4, -3]], [[44778, 33549], [-23, -19], [-22, -52]], [[44733, 33478], [-34, -19], [-11, -33], [22, -22], [-12, -62], [34, -59]], [[44732, 33283], [-61, -46], [-47, 3]], [[44624, 33240], [-3, 50]], [[29103, 36096], [92, 6], [61, 32]], [[29256, 36134], [1, -298]], [[38317, 34775], [7, -67], [28, -19], [-11, -36]], [[38341, 34653], [-4, -28], [-60, -16], [-43, -36], [-1, -79]], [[37955, 34498], [11, 47], [114, 26]], [[38080, 34571], [57, 6], [26, 30], [58, 8], [52, 40], [11, 87]], [[44329, 32140], [-3, -59], [17, -11]], [[44343, 32070], [-18, -21], [28, -50], [-51, -28]], [[44302, 31971], [-44, 45], [-26, 41]], [[36574, 30089], [63, 0], [6, -97], [14, -92], [36, -49], [5, -34]], [[36698, 29817], [-36, 19], [-61, 4], [-53, 26], [-16, 32], [-60, 36]], [[36472, 29934], [3, 154]], [[39911, 34237], [49, -1]], [[39960, 34236], [131, 0]], [[40091, 34236], [1, -214]], [[40092, 34022], [-91, -1]], [[40001, 34021], [1, 81], [-66, 0], [-25, 27]], [[39911, 34129], [0, 108]], [[28302, 35295], [26, 31], [0, 54], [-26, 0], [-2, 215], [102, 0]], [[28402, 35595], [0, -153], [84, 0], [28, 55]], [[28514, 35497], [47, -6], [28, 18], [28, -38], [8, -109], [47, -67], [-14, -75]], [[28658, 35220], [-34, 0], [0, -54], [-68, 0], [0, -54], [-150, -1]], [[28406, 35111], [-2, 161], [-75, 1], [-27, 22]], [[39828, 34021], [-1, 63], [12, 46], [72, -1]], [[40001, 34021], [0, -80]], [[40001, 33941], [-139, 0]], [[44894, 33606], [-31, -14]], [[44863, 33592], [-29, 68]], [[44834, 33660], [23, 72], [50, -29], [41, 57]], [[44948, 33760], [23, -15], [-5, -41]], [[44966, 33704], [-37, -35]], [[30343, 36193], [0, 55]], [[30955, 36246], [8, 0], [0, -216], [7, -195]], [[30970, 35835], [-184, 1]], [[44305, 31520], [-22, 25]], [[44283, 31545], [22, 0]], [[44305, 31545], [78, 0]], [[44383, 31545], [67, -77], [20, -42], [33, -2], [34, -61]], [[44537, 31363], [-25, -43], [-50, 63], [-24, 3]], [[44438, 31386], [-22, 49], [-87, 59], [-24, 26]], [[44216, 35247], [34, 12], [-21, 35]], [[44229, 35294], [175, 0]], [[44404, 35294], [5, -133]], [[44409, 35161], [1, -69], [-72, 14], [0, -35], [-53, 12]], [[44285, 35083], [-35, 1]], [[37793, 30020], [-47, 16], [-76, 42], [-8, -49], [-91, -1], [0, -18]], [[37571, 30010], [-121, -1]], [[37450, 30009], [8, 104], [3, 162]], [[37461, 30275], [77, -2]], [[37803, 29979], [-19, -23], [-36, 0], [-4, -119]], [[37744, 29837], [-46, 5], [-136, 0]], [[37562, 29842], [-1, 115], [10, 53]], [[38287, 35868], [-157, 0], [1, -80]], [[38131, 35788], [-234, 0]], [[37897, 35788], [-5, 47]], [[37892, 35835], [-22, 71], [4, 68]], [[38026, 35974], [208, 1], [52, 3]], [[38286, 35978], [0, -56]], [[38183, 32019], [-1, -28], [-80, -1]], [[37919, 32186], [1, 67]], [[37920, 32253], [23, 26]], [[37943, 32279], [198, -3]], [[38141, 32276], [-1, -57], [49, 1]], [[36110, 29586], [0, -256]], [[36110, 29330], [-155, -1]], [[35955, 29329], [-1, 12], [-85, 0]], [[35869, 29341], [0, 148]], [[45531, 35393], [-37, -107], [-10, -90]], [[45484, 35196], [-204, -35]], [[45280, 35161], [8, 103], [28, 57], [-4, 39]], [[45312, 35360], [161, 30]], [[36263, 28357], [-208, -203]], [[36055, 28154], [-79, -78]], [[35976, 28076], [-24, 28], [16, 39], [-9, 25], [-47, 9]], [[35923, 28430], [38, 23], [165, 32]], [[36126, 28485], [54, -15], [63, -89]], [[42366, 33432], [-41, -42]], [[42325, 33390], [1, 20], [-92, 5], [-16, 16]], [[42218, 33431], [-15, 63], [2, 100], [33, -1]], [[42238, 33593], [182, -11]], [[42420, 33582], [-22, -53], [16, -27]], [[34484, 32870], [4, 0]], [[34488, 32870], [1, -215]], [[34489, 32655], [-241, 1]], [[34248, 32656], [0, 214]], [[39861, 33807], [0, -22]], [[39861, 33785], [1, -158]], [[39862, 33627], [0, -36]], [[39862, 33591], [-137, 1]], [[39725, 33592], [-36, 1], [0, 52]], [[39689, 33645], [-1, 162]], [[33402, 32277], [1, -215]], [[33403, 32062], [-14, 0]], [[33389, 32062], [-211, 1]], [[33178, 32063], [0, 157]], [[41243, 32217], [-24, -82]], [[41219, 32135], [-23, 19], [-49, -26], [-38, -5], [-24, 19]], [[41085, 32142], [-9, 16]], [[41076, 32158], [36, 72], [44, 35]], [[41156, 32265], [6, 0]], [[37077, 39000], [-3, -345], [6, -109]], [[37080, 38546], [-302, 5], [0, -33], [-280, 0]], [[36498, 38518], [-4, 322]], [[36494, 38840], [-1, 206]], [[36493, 39046], [72, -2], [9, -28], [174, -14], [22, -70], [65, 0], [77, 18], [2, 28], [50, 22], [61, 10], [52, -10]], [[34599, 27329], [58, 15]], [[34657, 27344], [44, 4], [72, -29], [1, -26], [29, -42]], [[34803, 27251], [29, -23], [48, -71]], [[34880, 27157], [-119, -202]], [[34761, 26955], [-173, 84]], [[34588, 27039], [-1, 271]], [[31716, 33621], [-25, 12], [-96, 0]], [[31595, 33633], [-3, 37], [20, 32], [0, 63], [-17, 31], [10, 39]], [[31605, 33835], [261, 1]], [[31866, 33836], [1, -161]], [[31867, 33675], [-41, -54]], [[41267, 31313], [76, -22], [26, -33]], [[41369, 31258], [-34, -117]], [[41335, 31141], [-45, 23], [-26, -6], [-79, 74], [-7, -3]], [[41178, 31229], [2, 26]], [[41180, 31255], [30, 52], [57, 6]], [[36102, 31520], [140, 0]], [[36242, 31520], [-2, -215]], [[36240, 31305], [-47, 0], [0, -54], [-39, 0]], [[36154, 31251], [-101, 1]], [[36306, 36210], [214, 1]], [[36520, 36211], [0, -161]], [[36520, 36050], [-212, 0]], [[28058, 35878], [42, 9], [29, -54], [0, -80], [119, 0], [0, -51], [154, 0]], [[28402, 35702], [0, -107]], [[28302, 35295], [-29, 2], [-31, 37], [-42, -12]], [[28200, 35322], [0, 111], [26, 0], [-1, 217], [-131, 0]], [[28094, 35650], [-287, 0]], [[27807, 35650], [-9, 78], [-61, 4], [10, 79], [-74, 82], [9, 41], [-18, 90], [-37, -2], [-88, 34]], [[27539, 36056], [8, 50]], [[37059, 27750], [0, 13]], [[37059, 27763], [28, 9], [126, -1], [1, 32], [63, -1]], [[37277, 27802], [-1, -4]], [[37276, 27798], [15, -32], [-12, -29], [-1, -94], [16, -19], [-15, -66]], [[37279, 27558], [-49, -34]], [[37230, 27524], [-113, 1]], [[34209, 36698], [-1, -216]], [[34208, 36482], [-370, 0]], [[33838, 36482], [-50, 22], [12, 76], [-45, 40]], [[33755, 36620], [75, -6], [55, 50], [6, 34]], [[33891, 36698], [318, 0]], [[31866, 33545], [115, 5], [0, 27], [25, 2], [1, 33], [57, 0], [-9, -47], [-62, 0], [12, -33], [-41, 2], [-24, -20]], [[31940, 33514], [12, -53], [-25, -19], [-26, 27], [-35, -22], [0, -1], [0, -1], [0, -2], [0, -3]], [[35769, 30444], [0, -53]], [[35769, 30391], [0, -108], [-23, 0], [0, -54], [-114, 0]], [[35632, 30229], [-47, 1], [0, 53]], [[35585, 30283], [1, 107], [46, 0], [0, 54]], [[31898, 37247], [18, 0], [0, 216], [24, 0]], [[31940, 37463], [160, -1], [0, -50], [55, 0], [0, -52], [111, -1], [0, -54], [40, 1]], [[32306, 37306], [2, -414]], [[32308, 36892], [-8, -132]], [[32300, 36760], [-427, 1]], [[31873, 36761], [0, 217], [22, 0], [3, 269]], [[33294, 28168], [-229, 4]], [[33058, 28521], [13, 0]], [[33071, 28521], [223, 0]], [[39405, 32696], [122, 73]], [[39527, 32769], [0, -42], [24, -18], [0, -37], [40, -1], [0, -79]], [[39525, 32542], [-96, 2]], [[39300, 32582], [-2, 16]], [[32596, 34535], [-2, -242]], [[32594, 34293], [-83, 0]], [[32511, 34293], [-209, 0]], [[32302, 34293], [0, 242]], [[39179, 34739], [4, -161]], [[39183, 34578], [-149, -4]], [[39034, 34574], [-3, 108]], [[39031, 34682], [0, 54]], [[39031, 34736], [148, 3]], [[44063, 32959], [-31, 58]], [[44032, 33017], [34, 38], [17, -19]], [[44083, 33036], [40, -45], [-56, -62]], [[30418, 32852], [383, 1]], [[30801, 32853], [0, -227], [-59, 0]], [[30742, 32626], [0, 19], [-217, 0], [20, -48], [33, 0], [32, -22], [-12, -41]], [[30598, 32534], [-469, 0]], [[30129, 32534], [-8, 76], [0, 138]], [[30121, 32748], [297, 0], [0, 104]], [[36569, 36748], [-2, 188]], [[36567, 36936], [62, 28], [31, 58]], [[36660, 37022], [126, -79], [77, -2], [26, -28]], [[36889, 36913], [-60, -32], [-47, -85], [0, -49]], [[36782, 36747], [-107, 1]], [[39160, 35286], [51, 1], [0, 36], [167, -2]], [[39378, 35321], [-6, -37], [8, -71]], [[39380, 35213], [-174, 2]], [[39206, 35215], [-45, -1]], [[30969, 33283], [0, 342], [35, -1]], [[31004, 33624], [177, 4]], [[31181, 33628], [84, 0]], [[31364, 33292], [-33, -18], [-63, 7]], [[24316, 32260], [-49, 0]], [[24267, 32260], [-5, 45], [47, 18], [7, -63]], [[30644, 32301], [-56, 50], [-54, -1], [-42, -21], [-21, 46], [-244, 0], [-98, -9]], [[30129, 32366], [0, 168]], [[30598, 32534], [32, -23], [-3, -55], [45, -23], [25, -52]], [[12962, 46901], [-5, -356], [-116, 0], [-3, -72]], [[12838, 46473], [-127, 0], [2, 69]], [[12713, 46542], [-24, 40], [-45, 19], [-59, -7], [-80, 33], [-100, 22], [-40, 36], [-106, 50], [66, 33], [97, 108], [71, 14], [47, 37]], [[12540, 46927], [83, 10], [26, -36], [313, 0]], [[42249, 27298], [-48, -28], [-87, -2]], [[42114, 27268], [-1, 85], [-24, 50]], [[42089, 27403], [-13, 80], [-34, 36], [4, 57]], [[42046, 27576], [24, 8], [37, -19], [46, 2], [-2, 90], [25, 0]], [[42176, 27657], [31, -175], [14, -42], [9, -72], [19, -70]], [[38692, 29637], [69, 42], [58, 3]], [[38819, 29682], [0, -152]], [[38819, 29530], [-9, -54], [-45, -1], [0, -54], [-46, -1]], [[38719, 29420], [1, 110], [-60, 0]], [[36784, 33649], [-1, 108]], [[36783, 33837], [173, 2]], [[36956, 33839], [2, -144]], [[36958, 33695], [0, -41]], [[40148, 36030], [-3, 217]], [[40145, 36247], [97, -2]], [[40242, 36245], [112, 1]], [[40354, 36246], [1, -216]], [[40255, 35653], [4, -270]], [[40259, 35383], [-186, 0]], [[40073, 35383], [-7, 136], [-20, 80]], [[40046, 35599], [159, 1], [-1, 54], [51, -1]], [[39500, 34582], [-115, 0], [-2, 55], [-50, -1], [-1, 53], [-51, -1], [0, 27]], [[39281, 34715], [50, 19], [-3, 171], [-149, -4]], [[39179, 34901], [10, 103]], [[39189, 35004], [17, 0]], [[39206, 35004], [192, -1]], [[39398, 35003], [34, -47], [35, -154], [33, -63]], [[39281, 32316], [-9, -27], [-49, -61], [12, -51]], [[39235, 32177], [-20, 15], [-85, 1]], [[39130, 32193], [0, 190]], [[39130, 32383], [113, -1], [10, -9]], [[41903, 29947], [-17, -5]], [[41886, 29942], [-13, 16], [-54, -1], [-19, 25], [-27, -29], [-9, 57]], [[41764, 30010], [26, 27], [8, 69], [-37, 76], [38, 41]], [[41799, 30223], [34, -48], [37, -20], [60, -59]], [[41930, 30096], [33, -42]], [[36027, 32896], [193, 0]], [[36220, 32896], [-4, -27], [0, -188]], [[36216, 32681], [-193, 0]], [[36023, 32681], [0, 27]], [[35443, 38089], [281, 0]], [[35724, 38089], [9, -107], [0, -160]], [[35733, 37822], [1, -54], [-47, 0]], [[35687, 37768], [-219, 0]], [[35468, 37768], [-6, -1]], [[35462, 37767], [15, 188], [-31, 45], [8, 63], [-11, 26]], [[38703, 31093], [37, -39], [29, -5], [58, -34]], [[38827, 31015], [-4, -161]], [[38823, 30854], [-45, -21]], [[38778, 30833], [-127, 4]], [[38651, 30837], [2, 88], [-14, 21]], [[28891, 34555], [-38, -4], [4, -34], [-28, -17], [-92, 0], [-111, -161]], [[28626, 34339], [-133, -47], [-237, 0], [-304, 0]], [[27952, 34292], [1, 444], [-1, 169]], [[27952, 34905], [99, -3], [355, 6]], [[28406, 34908], [366, 0]], [[38850, 30585], [85, 0]], [[38980, 30438], [-7, -99]], [[42420, 33582], [28, 39], [10, 74]], [[42458, 33695], [93, -10]], [[42551, 33685], [0, -34]], [[42005, 32860], [-8, 32], [-51, 90]], [[41946, 32982], [55, 54], [8, 31], [-21, 28], [28, 21]], [[42016, 33116], [73, -43]], [[42089, 33073], [34, -67]], [[42123, 33006], [-19, -151], [10, -37]], [[42114, 32818], [-48, -36], [-27, 45]], [[27539, 36056], [-23, -69], [15, -30], [-33, -58], [-1, -250]], [[27497, 35649], [0, -175], [21, -2]], [[27518, 35472], [0, -89]], [[27518, 35383], [-181, 0], [5, 101], [-79, 15], [-64, -10], [-9, 20], [-74, 11], [-8, -26], [-97, 63], [-28, 39]], [[26983, 35596], [125, 0], [2, 296]], [[27110, 35892], [64, 10], [79, 57], [14, 49], [37, 22], [9, 43], [97, 31], [45, 96], [20, -66], [27, -25], [37, 4]], [[44250, 33204], [-34, -15]], [[44216, 33189], [-42, 32], [-1, 30], [-38, 22]], [[44135, 33273], [0, 77], [42, 152]], [[44177, 33502], [94, 0]], [[44271, 33502], [2, -66], [15, -43], [61, -49], [14, -46]], [[44363, 33298], [4, -87], [-40, -33], [-38, 28]], [[34709, 38561], [0, -43]], [[34709, 38518], [-336, 0]], [[34373, 38518], [-224, 1]], [[34149, 38519], [0, 107], [-16, 0], [1, 216], [154, 0]], [[34288, 38842], [127, 0]], [[37909, 33426], [34, -36], [27, -56], [44, -30]], [[38014, 33304], [63, -56], [31, -53]], [[38108, 33195], [-201, 2], [-1, -54], [-33, 0]], [[37873, 33143], [-64, 2]], [[37809, 33145], [-13, 109]], [[37796, 33254], [-10, 81], [112, 92], [11, -1]], [[41623, 32964], [33, -3]], [[41656, 32961], [-4, -40], [44, -4], [4, -56], [52, -4], [-3, -56], [32, -1]], [[41685, 32694], [-37, 6]], [[41648, 32700], [-32, 52]], [[41616, 32752], [-26, 32], [-39, 8]], [[38645, 31978], [49, -132], [28, -18]], [[38722, 31828], [-27, -9], [-64, -77]], [[38631, 31742], [-74, -6]], [[38557, 31736], [2, 42], [-44, 99], [9, 23]], [[38524, 31900], [64, 66], [57, 12]], [[41354, 32822], [-110, 52], [-40, -12], [-14, -29]], [[41190, 32833], [-26, 2]], [[41178, 33070], [26, -1], [99, 22]], [[34731, 29053], [177, -1]], [[34908, 29052], [54, -172]], [[34962, 28880], [35, -90]], [[34997, 28790], [-61, -43]], [[34936, 28747], [-89, -62]], [[34847, 28685], [-18, 39], [-33, -24], [-98, 197]], [[41174, 30465], [13, 14]], [[41187, 30479], [28, -2], [17, -44], [30, -16], [23, 14], [32, -18]], [[41317, 30413], [6, -18]], [[41323, 30395], [-11, -8], [-41, -119]], [[41271, 30268], [-34, 6], [-34, -37]], [[41203, 30237], [-22, 44]], [[41181, 30281], [14, 16], [-6, 86], [10, 40], [-25, 42]], [[41294, 29290], [21, 18]], [[41315, 29308], [97, 50], [27, -38]], [[41439, 29320], [20, -56], [21, -7], [14, -52]], [[41494, 29205], [-5, -32]], [[41489, 29173], [-117, -76]], [[41372, 29097], [-78, 193]], [[42814, 33502], [66, 0]], [[42880, 33502], [-11, -60], [-48, -87], [2, -29]], [[42823, 33326], [-19, 10]], [[42804, 33336], [-94, 98], [-84, 1], [-21, 16]], [[41545, 34290], [46, -1]], [[41591, 34289], [-1, -175]], [[41590, 34114], [-58, -4]], [[41532, 34110], [-110, -2]], [[41422, 34108], [0, 180]], [[41422, 34288], [123, 2]], [[42097, 25670], [-216, -1]], [[41881, 25669], [1, 109]], [[41882, 25778], [0, 80]], [[41882, 25858], [214, 2]], [[46058, 34652], [25, 12]], [[46083, 34664], [74, 69]], [[46157, 34733], [38, -29], [87, -21], [72, 4]], [[46354, 34687], [-1, -27]], [[46353, 34660], [-4, -111], [-27, -60]], [[46322, 34489], [-37, 11], [-82, -23], [-19, 14], [-37, -25], [-34, -1]], [[42071, 33811], [124, -4]], [[42195, 33807], [-1, -26], [49, -2]], [[42243, 33779], [-3, -135]], [[42240, 33644], [-66, 0], [-34, -35], [-50, 2], [-1, -36], [-50, 2]], [[42039, 33577], [-15, 55], [6, 136]], [[42030, 33768], [41, 43]], [[40465, 35384], [102, 1]], [[40567, 35385], [2, -216]], [[40569, 35169], [-99, -1]], [[40470, 35168], [-107, 1]], [[40363, 35169], [-1, 214]], [[40362, 35383], [103, 1]], [[36983, 31709], [-5, -196]], [[36861, 31513], [5, 198], [-16, 64]], [[43824, 32166], [65, 29], [24, -45], [-13, -51]], [[43900, 32099], [-40, 17], [-6, 35], [-30, 15]], [[42765, 31540], [-3, -176]], [[42762, 31364], [-181, 3]], [[42581, 31367], [5, 178]], [[42586, 31545], [168, -5]], [[36674, 34228], [0, 161]], [[36772, 34392], [101, -1]], [[36873, 34391], [0, -162]], [[37516, 35469], [0, 109]], [[37516, 35578], [207, -1]], [[37723, 35577], [-1, -270]], [[37722, 35307], [-206, -2]], [[37516, 35305], [0, 164]], [[24272, 32508], [-3, -56], [10, -115], [-2, -5], [-1, 1], [-4, -1], [-6, -2], [-10, -2], [-56, 53], [-20, -7], [-52, 64], [-51, 22], [-31, -18], [27, 93], [-24, 87]], [[33358, 30432], [-161, 0]], [[33197, 30432], [-74, 0]], [[33123, 30432], [0, 269]], [[33123, 30701], [237, 0]], [[36466, 28979], [-17, -75], [-22, -44], [-9, -75], [1, -66], [38, 1]], [[36457, 28720], [1, -31], [25, -49]], [[36483, 28640], [-211, 1]], [[36272, 28641], [-21, 0], [0, 180]], [[36251, 28821], [0, 144]], [[36251, 28965], [151, 0], [26, 15]], [[36771, 34608], [161, 0], [41, -13]], [[36973, 34595], [0, -204]], [[36973, 34391], [-100, 0]], [[40862, 34097], [-25, 0]], [[40837, 34097], [0, 27], [-151, 0]], [[40686, 34124], [0, 120]], [[40861, 34286], [1, -54], [25, -27]], [[42095, 25507], [2, 163]], [[40660, 29275], [0, 196]], [[40660, 29471], [4, 20], [152, -1]], [[40816, 29490], [3, -23]], [[40819, 29467], [-14, -53], [1, -79]], [[40814, 29280], [-27, -22], [-57, -1]], [[31678, 32179], [19, 21], [64, 26], [45, -38], [17, -185]], [[31823, 32003], [-1, -183]], [[31822, 31820], [-28, -1]], [[31794, 31819], [-217, 1]], [[31577, 31820], [-23, 28], [13, 38], [-2, 71], [9, 35], [-8, 51]], [[34979, 28161], [-119, 244]], [[34860, 28405], [180, 129]], [[35040, 28534], [33, 24], [37, -77]], [[36575, 34389], [-100, 0]], [[36475, 34389], [-100, 0]], [[36375, 34389], [0, 214]], [[36375, 34603], [200, 0]], [[40612, 28969], [39, 20], [39, 2], [43, 65]], [[40733, 29056], [25, 10]], [[40758, 29066], [-9, -25], [-1, -161]], [[40748, 28880], [-115, -2]], [[40633, 28878], [-4, 42], [-30, 15], [13, 34]], [[25188, 32213], [0, 1]], [[25188, 32214], [19, 56], [35, 7], [104, 47], [38, -30], [58, -3], [60, 26], [4, 20], [54, 43], [36, -20], [62, -57]], [[25658, 32303], [-120, -135], [0, -40], [-29, -48], [-48, 0], [-127, -144]], [[25334, 31936], [-40, 34], [-53, 100], [-4, 26], [-49, 117]], [[37308, 33039], [-123, 6], [-41, 52]], [[37144, 33097], [-3, 38], [40, 62]], [[37181, 33197], [26, 72], [36, -13]], [[37243, 33256], [121, -45]], [[24602, 36691], [-8, -35]], [[24594, 36656], [-21, -90]], [[24573, 36566], [-101, 1], [-46, 24], [-40, -16], [-20, 29], [-181, 18], [-48, 10], [-90, -63], [-15, 30], [-44, 7]], [[23988, 36606], [22, 40], [-38, 14], [31, 58], [28, 9], [-10, 80]], [[24021, 36807], [29, 114], [66, 0]], [[39369, 35429], [-106, 1]], [[39263, 35430], [3, 215]], [[39266, 35645], [74, 0]], [[39340, 35645], [11, -73], [-9, -45], [20, -35], [7, -63]], [[36781, 36539], [44, 34], [38, 60], [26, 7]], [[36889, 36640], [83, -8]], [[36972, 36632], [5, -99], [16, -53]], [[36993, 36480], [-106, -1]], [[36887, 36479], [-168, 0]], [[41361, 33486], [4, 73]], [[41365, 33559], [182, -11]], [[41547, 33548], [-8, -144], [49, -5]], [[41588, 33399], [-4, -53]], [[41584, 33346], [-112, 8], [5, 16], [-122, 6]], [[43798, 32171], [-87, -90]], [[43711, 32081], [-19, 35], [-38, 7], [-63, -20]], [[43591, 32103], [26, 125]], [[43617, 32228], [39, -20], [37, 27], [105, -64]], [[31867, 33675], [39, 0]], [[31906, 33675], [-23, -12], [-16, -41]], [[39600, 30862], [39, -7]], [[39639, 30855], [-5, -144], [5, -29], [-8, -95]], [[39631, 30587], [-166, 3]], [[39465, 30590], [12, 96], [1, 148]], [[39478, 30834], [55, 14], [0, 23], [67, -9]], [[40662, 36833], [4, -160]], [[40666, 36673], [-193, 1], [-18, -29]], [[40455, 36645], [-48, 30]], [[40407, 36675], [20, 43], [13, 115], [-9, 56]], [[40431, 36889], [72, -1], [-1, -54], [160, -1]], [[43017, 30354], [-80, -199]], [[42937, 30155], [-11, 4]], [[42926, 30159], [-12, 59], [-28, 22], [-9, 44], [-26, 15]], [[42851, 30299], [12, 48], [-53, 96], [-1, 26]], [[42911, 30468], [7, 0], [94, -108]], [[26956, 38251], [0, -242]], [[26956, 38009], [-56, 9], [-165, -2], [-57, 51], [-32, 7]], [[26646, 38074], [0, 82]], [[26646, 38156], [0, 66]], [[38583, 34653], [1, 195]], [[38584, 34848], [117, -8], [182, 2]], [[38883, 34842], [1, -162]], [[38884, 34680], [-99, 0], [0, -27]], [[36003, 33838], [1, -2]], [[36004, 33836], [-199, 0]], [[35805, 33836], [-25, 0]], [[35780, 33836], [0, 161]], [[44037, 30366], [-8, 70], [-18, 19]], [[44011, 30455], [39, 16]], [[44050, 30471], [54, -1], [31, 22], [54, 1], [28, 14], [5, 58]], [[44222, 30565], [21, 16], [57, 11], [30, 32], [17, -51], [51, -22], [-30, -42], [-44, -35], [-44, -105], [-55, 29], [-100, -6], [-88, -26]], [[35556, 33407], [149, 0]], [[35705, 33407], [89, 0]], [[35794, 33407], [0, -216]], [[35794, 33191], [-2, -56]], [[35792, 33135], [-19, 42], [-66, 11], [-54, -34], [-13, 10]], [[40722, 35169], [52, 1]], [[40774, 35170], [200, 1]], [[40974, 35171], [4, 0]], [[40978, 35171], [0, -218]], [[40978, 34953], [-101, 1]], [[40877, 34954], [-151, -1]], [[40726, 34953], [-4, 216]], [[34657, 27344], [101, 119]], [[34758, 27463], [51, 62]], [[34809, 27525], [116, -117], [14, -60]], [[34939, 27348], [-40, -42], [-96, -55]], [[47012, 34483], [20, -12], [65, 5], [27, 43], [26, -55], [-24, -25], [-45, 2], [-60, 29], [-9, 13]], [[42245, 29625], [119, -82], [43, -43], [23, -38]], [[42430, 29462], [-124, -92]], [[42306, 29370], [-48, 56]], [[42258, 29426], [-15, 28], [6, 145], [-4, 26]], [[35438, 26304], [-66, -94], [-17, -44]], [[35355, 26166], [-15, 48]], [[35340, 26214], [26, 19], [43, 91], [41, 29]], [[35461, 26435], [-5, -34], [-54, -58], [-40, 15], [0, 23]], [[35465, 26464], [-4, -29]], [[35280, 26314], [34, -12], [37, 30], [11, -39], [-47, -87]], [[35315, 26206], [-1, 2]], [[35314, 26208], [-54, 105]], [[41282, 28335], [27, 31], [14, 46]], [[41323, 28412], [84, -2]], [[41407, 28410], [3, -32]], [[41410, 28378], [40, -85], [0, -61]], [[41450, 28232], [4, -23], [-55, 0], [-1, -52], [-13, -23]], [[41385, 28134], [-43, 1]], [[39552, 33753], [-13, -62], [7, -46]], [[39546, 33645], [22, -38], [-12, -147], [6, -28]], [[39562, 33432], [-65, 0]], [[39497, 33432], [0, 170]], [[39497, 33602], [0, 164]], [[40664, 36243], [1, 216]], [[40665, 36459], [209, -2]], [[40874, 36457], [1, -214]], [[40875, 36243], [-105, 0]], [[42188, 31560], [197, -8]], [[42385, 31552], [-32, -67], [3, -32]], [[42356, 31453], [-26, -17], [-30, 41], [-69, -45]], [[42231, 31432], [-8, 49], [-35, 79]], [[25293, 33494], [16, 36], [1, 107], [-41, 46], [-3, 45], [-58, 18], [-102, 105], [-82, 19], [-47, -46], [0, -26], [-57, 13], [-25, 22], [0, 117], [-116, -1]], [[24779, 33949], [3, 274], [-5, 182]], [[24777, 34405], [362, 0], [218, 0]], [[25357, 34405], [2, -499], [-2, -403]], [[44009, 32991], [10, -11]], [[44019, 32980], [-18, 2], [8, 9]], [[41882, 25778], [-86, 0], [0, 110], [-170, 2]], [[41626, 25890], [-28, 60], [25, 22], [42, 76]], [[41665, 26048], [218, 0]], [[41883, 26048], [-1, -190]], [[41873, 33533], [1, 28], [-42, 3], [4, 55], [-32, 2]], [[41804, 33621], [16, 23], [5, 133]], [[41825, 33777], [205, -9]], [[42039, 33577], [-1, -53]], [[31347, 32701], [-44, 55], [-14, 77], [-22, 10], [6, 105], [39, 36], [-22, 25], [-38, -7], [-42, 54], [-17, 0]], [[31202, 33093], [169, -1]], [[31467, 32868], [40, -53], [-13, -63], [-45, -36]], [[32302, 32762], [192, 0], [47, -3]], [[32541, 32759], [1, -156]], [[32542, 32603], [-3, -57], [-48, 0], [0, -36], [-94, 0], [-97, 20]], [[31746, 32870], [40, 0], [-1, -30], [130, 1]], [[31915, 32841], [0, -80]], [[38706, 28125], [3, -62]], [[38709, 28063], [0, -162]], [[38709, 27901], [-88, 1], [0, -82], [-45, -8], [-19, -27]], [[38557, 27785], [-27, 27], [-29, 55], [-10, 45]], [[38491, 27912], [16, 85], [34, 123]], [[38541, 28120], [32, 0]], [[38882, 28386], [45, 0]], [[38927, 28386], [3, -269]], [[38930, 28117], [0, -54], [-22, 1]], [[38908, 28064], [-110, -1]], [[38798, 28063], [-4, 56], [0, 268]], [[38794, 28387], [88, -1]], [[34204, 34749], [202, 0]], [[34406, 34749], [4, 0]], [[34410, 34749], [4, -214]], [[34414, 34535], [-2, -214]], [[34412, 34321], [-95, -1]], [[34317, 34320], [-347, 1]], [[33970, 34321], [-7, 0], [1, 214], [-6, 0]], [[33958, 34535], [0, 213]], [[33958, 34748], [246, 1]], [[40629, 27876], [-25, -51], [1, -37], [-20, -27], [-8, -82], [-28, -54]], [[40549, 27625], [-119, 0]], [[40430, 27625], [3, 226]], [[40433, 27851], [92, -1], [3, 27], [101, -1]], [[40764, 33103], [51, 13]], [[40815, 33116], [14, -56], [20, -15], [-10, -99], [14, -8]], [[40853, 32938], [-50, -9]], [[40803, 32929], [-36, 6]], [[40767, 32935], [8, 48], [-11, 120]], [[37516, 35658], [0, -80]], [[37516, 35469], [-206, 0]], [[37310, 35469], [0, 189]], [[39031, 34682], [-147, -2]], [[38883, 34842], [1, 161]], [[38884, 35003], [102, 1]], [[38986, 35004], [51, 0]], [[39037, 35004], [-6, -54], [0, -214]], [[36693, 35684], [206, 0]], [[36899, 35684], [0, -214]], [[36899, 35470], [-206, -1]], [[33154, 37984], [0, -163]], [[33154, 37821], [0, -53]], [[33154, 37768], [-362, -1]], [[32792, 37767], [-132, 0]], [[32660, 37767], [0, 217], [86, 0]], [[32746, 37984], [221, 0], [0, 18], [166, 0]], [[40223, 37804], [121, -9], [46, 3], [106, 47]], [[40496, 37530], [-273, -1]], [[35387, 30014], [-258, 0]], [[35129, 30014], [0, 135]], [[35129, 30149], [0, 135]], [[35129, 30284], [91, -1]], [[35220, 30283], [0, -80], [138, -1], [3, -26], [42, 0]], [[35403, 30176], [0, -99]], [[44438, 31386], [50, -94], [-47, -11], [-41, 41]], [[44400, 31322], [-44, 43], [-34, 74]], [[44322, 31439], [-17, 81]], [[31794, 31819], [9, -49], [-13, -42], [-1, -76], [-36, 0], [-25, -26], [-2, -45], [21, -67], [-6, -147]], [[31741, 31367], [-20, -6], [-14, -75], [-48, -73]], [[31659, 31213], [-90, 54], [-53, 80], [-87, 42], [42, 34], [10, 68], [-15, 105], [-5, 110], [5, 46], [-15, 68]], [[31451, 31820], [126, 0]], [[37893, 29680], [-7, 20]], [[37886, 29700], [44, 27], [23, 33], [4, 36], [-34, 8], [43, 53], [-11, 26], [27, 41], [-34, 22], [44, 36], [40, 4], [11, 37], [-37, 21]], [[38006, 30044], [0, 1]], [[38006, 30045], [129, -1], [1, -81]], [[38136, 29963], [-1, -229], [-45, 0], [0, -54]], [[26326, 33115], [193, 43], [318, -1]], [[26837, 33157], [303, 0]], [[27140, 33157], [394, -299]], [[27534, 32858], [0, -387], [-389, 0], [0, -310], [-1, -436]], [[27166, 31183], [-233, 254], [-342, 368]], [[26591, 31805], [1, 245], [-1, 391], [-228, 291]], [[41545, 31572], [96, 0]], [[41641, 31572], [0, -46], [-31, -54]], [[41610, 31472], [-10, -13]], [[41600, 31459], [-60, -25], [-105, -79]], [[41435, 31355], [-30, 47], [-45, -18]], [[41360, 31384], [-11, 65]], [[41349, 31449], [70, 74], [47, 30], [26, -13], [53, 32]], [[32305, 37551], [458, 1]], [[32763, 37552], [0, -207]], [[32763, 37345], [-458, 0]], [[32305, 37345], [0, 206]], [[43483, 33503], [35, 64], [41, 114], [-1, 47], [32, 48]], [[43590, 33776], [24, -19], [67, -20], [26, -25]], [[43707, 33712], [-24, -37], [-36, -108], [-42, -64]], [[43605, 33503], [-106, 0]], [[37427, 27592], [15, 35], [47, 59]], [[37489, 27686], [43, 49], [24, -6]], [[37556, 27729], [17, -57], [-13, -58], [31, -20], [-18, -48]], [[37573, 27546], [-6, -22]], [[37567, 27524], [-104, 65], [-36, 3]], [[34947, 29642], [27, -21]], [[34974, 29621], [-2, -267]], [[34914, 29355], [-162, 3]], [[34752, 29358], [3, 240]], [[34755, 29598], [0, 43]], [[38580, 34384], [0, -108]], [[38580, 34276], [-151, 0]], [[38429, 34276], [0, 108]], [[38429, 34384], [51, 0], [4, 53]], [[34116, 30607], [46, -1], [0, 54], [162, -1]], [[34324, 30659], [36, -59], [-9, -22], [22, -37], [-4, -41], [26, -22]], [[34395, 30478], [-69, -6], [-8, -54], [-106, 0]], [[34212, 30418], [-23, 27], [-5, 108], [-68, 0], [0, 54]], [[33832, 31240], [235, 0]], [[34067, 31240], [0, -108]], [[34067, 31132], [0, -162]], [[34067, 30970], [-235, 0]], [[33832, 30970], [0, 270]], [[26700, 37376], [-19, 64], [17, 40], [-20, 28], [-8, 51], [-31, 33], [7, 49]], [[26646, 37641], [0, 72]], [[26646, 37713], [140, 1], [47, 54], [67, -1]], [[26900, 37767], [2, -80], [36, -20]], [[26938, 37667], [0, -77], [-52, -11], [-98, 0], [5, -203]], [[33954, 36913], [-25, 44], [19, 40], [-30, 56]], [[33918, 37053], [-63, 39], [25, 36]], [[33880, 37128], [310, -1]], [[34190, 37127], [4, 0]], [[34194, 37127], [0, -214]], [[34194, 36913], [-240, 0]], [[24213, 32852], [71, 23], [39, 69], [-9, 29]], [[24314, 32973], [47, -15], [39, -105], [25, -37], [16, -59]], [[24441, 32757], [-10, -52], [27, -70], [-62, 0], [-3, -100], [-84, 1]], [[34754, 30022], [-28, -13], [-54, 59]], [[34672, 30068], [1, 109], [-23, 44]], [[34650, 30221], [68, 9], [0, 18], [91, 0], [23, 36], [44, 0]], [[34876, 30284], [2, -135]], [[34878, 30149], [0, -91]], [[37943, 32279], [2, 287]], [[37945, 32566], [137, 0]], [[38082, 32566], [62, -79]], [[38144, 32487], [-3, -211]], [[44311, 35667], [12, -236], [41, 2], [36, -48]], [[44400, 35385], [4, -91]], [[44229, 35294], [-29, 64], [6, 61], [-8, 89], [10, 33]], [[44208, 35541], [5, 35], [-8, 163]], [[44205, 35739], [46, 46]], [[34453, 29054], [-217, 0]], [[34236, 29054], [0, 273]], [[34236, 29327], [61, 0]], [[34297, 29327], [164, 0]], [[34461, 29327], [0, -273]], [[36102, 28032], [33, 29], [23, -51]], [[36158, 28010], [27, -25], [-4, -43], [53, -33], [26, -52], [57, -28], [-7, -23]], [[36310, 27806], [-138, -92]], [[36172, 27714], [-62, 38], [-22, 61]], [[36088, 27813], [14, 219]], [[37929, 35308], [102, 0], [1, 18]], [[38032, 35326], [77, -21], [33, -82]], [[38142, 35223], [-3, -21], [77, -57]], [[38216, 35145], [-83, 0], [-1, -54], [-101, 0]], [[38031, 35091], [-101, 1]], [[37930, 35092], [-1, 216]], [[43809, 32258], [-11, -87]], [[43617, 32228], [-38, 57]], [[43579, 32285], [42, 96]], [[43621, 32381], [50, -35], [26, -54], [40, -19]], [[33176, 33139], [-2, 269]], [[33174, 33408], [277, 0]], [[33451, 33408], [11, 0]], [[33462, 33408], [-1, -267]], [[33461, 33141], [-38, -1]], [[41591, 34289], [127, -2]], [[41718, 34287], [7, -110], [34, -54], [1, -106]], [[41760, 34017], [-125, -3]], [[41635, 34014], [-2, 98], [-43, 2]], [[38025, 33794], [-1, -55]], [[38023, 33579], [0, -54], [-195, 1]], [[37828, 33526], [-30, 51], [-1, 64]], [[37797, 33641], [-26, 56], [-4, 101]], [[41231, 33816], [24, -2], [-4, -71]], [[41251, 33743], [-5, -62]], [[41246, 33681], [-226, 18]], [[41020, 33699], [5, 89]], [[41025, 33788], [4, 55]], [[46289, 35853], [-67, -127], [35, -84]], [[46257, 35642], [-12, -36]], [[46245, 35606], [-61, 2], [9, 31], [-129, -13]], [[46064, 35626], [8, 44]], [[46072, 35670], [17, 50], [-9, 32], [19, 132], [19, 13]], [[39500, 33978], [-179, -4]], [[39321, 33974], [-79, 2], [-6, 314]], [[39236, 34290], [264, 8]], [[37218, 34824], [203, 0]], [[37421, 34824], [1, -218]], [[37422, 34606], [-50, 0]], [[37372, 34606], [-150, 0]], [[37222, 34606], [-5, 57], [1, 161]], [[41850, 34287], [192, -2]], [[42042, 34285], [18, -46]], [[42060, 34239], [-1, -152]], [[42059, 34087], [-208, 0]], [[41851, 34087], [-1, 200]], [[40866, 29571], [-19, -59], [-28, 0]], [[40819, 29512], [-16, 48], [-23, 14], [-17, 53], [7, 36]], [[40770, 29663], [66, 30]], [[41535, 29627], [12, -10], [19, -97], [11, -10]], [[41577, 29510], [3, -10]], [[41580, 29500], [-46, -26], [-15, -35], [-71, -36]], [[41448, 29403], [-20, 44], [-77, 22]], [[41351, 29469], [9, 44], [47, 33], [-8, 26]], [[41399, 29572], [66, 71]], [[34537, 27587], [145, 0]], [[34682, 27587], [76, -124]], [[45194, 35014], [-38, 19], [41, 95]], [[45197, 35128], [73, 5], [10, 28]], [[45484, 35196], [-2, -122], [-25, -23], [-28, -63]], [[43607, 32632], [81, 43], [90, -12]], [[43778, 32663], [-11, -23], [-99, -127]], [[43668, 32513], [-64, 21], [-47, -13]], [[43557, 32521], [-69, 32]], [[43488, 32553], [34, 55]], [[43522, 32608], [30, -26], [55, 50]], [[36472, 29934], [-3, -187]], [[36469, 29747], [-34, -7], [-80, 47]], [[36355, 29787], [-50, 24], [-59, 73], [-23, 3], [-46, 44]], [[36177, 29931], [0, 136]], [[36177, 30067], [2, 54], [45, 0], [0, 163], [48, -1]], [[36272, 30283], [207, 1]], [[41248, 28321], [-62, 2]], [[41186, 28323], [2, 146]], [[41188, 28469], [0, 18], [65, -2]], [[41253, 28485], [34, -25], [36, -48]], [[35607, 34302], [50, -1], [13, 19]], [[35670, 34320], [49, -31], [66, 43], [77, -7]], [[35862, 34325], [28, -94]], [[35890, 34231], [-15, -23], [6, -50]], [[35159, 36479], [159, 0]], [[35318, 36479], [-1, -214]], [[35317, 36265], [-104, -1]], [[35004, 36264], [-2, 0]], [[35002, 36264], [0, 216]], [[31422, 35177], [-1, 0]], [[31421, 35177], [2, 212], [-3, 443]], [[31420, 35832], [27, 0]], [[31447, 35832], [408, 2]], [[31855, 35834], [78, 1]], [[31933, 35835], [0, -429], [3, -121]], [[31936, 35285], [-171, -2], [1, -108]], [[31766, 35175], [-21, 0], [-19, -87], [-104, 9], [0, 45], [25, 33], [-225, 2]], [[45080, 35703], [7, -64], [-27, -39], [-1, -44]], [[45059, 35556], [9, -31], [-10, -83]], [[44862, 35452], [-3, 107], [66, 108], [-41, 19], [37, 45], [-14, 175]], [[44907, 35906], [-26, 298]], [[34487, 37767], [-1, -214]], [[34486, 37553], [-366, 0]], [[34120, 37553], [-17, 0], [1, 216]], [[34104, 37769], [203, -1]], [[34307, 37768], [180, -1]], [[38862, 37438], [-44, 26], [-365, 99]], [[38453, 37563], [-83, 23], [-42, 102], [-88, 40]], [[38240, 37728], [40, 26], [130, 41], [61, 56]], [[36174, 37875], [-1, -54]], [[36173, 37821], [-237, -1], [-203, 2]], [[35724, 38089], [56, 0]], [[35780, 38089], [225, 0]], [[36005, 38089], [166, 1]], [[40118, 30094], [-44, -17], [-42, -45]], [[40032, 30032], [-65, 99]], [[39967, 30131], [-11, 26], [-45, 2]], [[39911, 30159], [14, 149]], [[39925, 30308], [21, -40], [33, -2], [50, 37], [-7, 38]], [[40022, 30341], [78, -1], [-1, -40], [40, -36]], [[41076, 31464], [20, 10], [41, -22], [15, -34], [28, 0]], [[41180, 31418], [-28, -111]], [[41152, 31307], [-83, 3], [-8, 10]], [[41061, 31320], [-28, 52]], [[43362, 33388], [-48, -55], [-36, -71], [-56, -58]], [[43222, 33204], [-68, 46], [-60, 10]], [[43094, 33260], [89, 93]], [[38183, 37739], [-1, -212], [55, 0], [0, -54], [53, 1], [1, -107]], [[38291, 37367], [-164, 0]], [[38127, 37367], [-108, 0], [1, 107]], [[38020, 37474], [-2, 266]], [[38018, 37740], [75, 37], [8, 29], [82, -67]], [[38084, 38011], [55, 18], [18, -39], [-27, -26], [-46, 47]], [[39093, 34056], [98, 0], [-5, 232]], [[39186, 34288], [50, 2]], [[39321, 33974], [2, -53]], [[39323, 33921], [-230, 0]], [[33810, 37643], [20, 65], [-10, 37], [-41, 25]], [[34032, 37769], [72, 0]], [[34120, 37553], [-1, -211]], [[34119, 37342], [-269, 2]], [[33850, 37344], [-6, 0]], [[24779, 33949], [-74, 1]], [[24705, 33950], [-40, -9], [-42, 13], [-111, -23], [-30, 7], [-131, -34], [-91, 13], [-57, -40], [-43, 23], [-69, -29], [-69, -19]], [[24022, 33852], [-1, 28], [60, 70], [103, 83], [-25, 67], [35, 52], [31, 125], [31, 24], [7, 45], [24, 5], [-18, 54]], [[24269, 34405], [458, 0]], [[24727, 34405], [50, 0]], [[37279, 27558], [39, 10], [48, -36], [21, 10], [40, 50]], [[37567, 27524], [-12, -41], [8, -85]], [[37563, 27398], [-2, -20], [-60, -38], [-37, -8], [40, -69], [-62, -46], [-32, -5], [-128, 34]], [[37282, 27246], [1, 279], [-53, -1]], [[37809, 31512], [123, 0]], [[37932, 31512], [149, 1]], [[38081, 31513], [15, -53], [-1, -80], [-24, -10]], [[38071, 31370], [-1, -72]], [[38070, 31298], [-135, 2], [-18, 32], [-43, 32]], [[37874, 31364], [-7, 72], [-32, 29], [-26, 47]], [[38403, 37104], [1, 211]], [[38404, 37315], [323, 3], [0, -26], [54, -2], [-1, 26], [57, -2]], [[38837, 37314], [0, -266]], [[38837, 37048], [-164, 1]], [[38673, 37049], [-2, 55], [-268, 0]], [[37968, 29092], [-12, -9]], [[37956, 29083], [-28, -15], [-141, 0]], [[37787, 29068], [6, 27]], [[37793, 29095], [19, 15], [1, 54], [24, 39], [4, 68], [30, 85]], [[37871, 29356], [43, 0]], [[37910, 28118], [50, 0]], [[37960, 28118], [103, 0]], [[38063, 28118], [-16, -39], [9, -59], [-4, -75]], [[38052, 27945], [-176, -8], [-19, -35]], [[37857, 27902], [-5, 3]], [[37852, 27905], [-3, 25], [33, 57], [28, 131]], [[38586, 27596], [0, -1]], [[38586, 27595], [0, -1]], [[38586, 27594], [0, 2]], [[38646, 27267], [-62, 37], [-40, 48], [-27, -1], [-38, 24], [-18, 45]], [[38461, 27420], [-18, 70], [43, 16]], [[38486, 27506], [7, -38], [27, -5], [36, -43], [41, 8], [8, 70], [38, 29], [77, -73], [19, 43], [24, -13], [-63, -78], [-29, -64], [-42, -10], [17, -65]], [[38709, 27538], [50, 22], [0, -46], [-50, 24]], [[35876, 27046], [-12, -20]], [[35864, 27026], [-40, -51], [-149, -114]], [[35675, 26861], [-145, 176]], [[35530, 27037], [127, 98], [18, 67], [58, 73]], [[35733, 27275], [37, -20]], [[20895, 43611], [62, 13], [38, -62], [-4, -62], [-55, -92]], [[19554, 44176], [22, -55], [-92, -35], [-12, -33], [13, -99], [30, -97]], [[19515, 43857], [-43, -36], [-115, 21], [-1, -48], [-44, -105], [-27, -26], [-8, -55], [-55, 2], [-45, -44], [-30, 61], [-14, 143], [41, 109], [-53, 15], [8, 41], [-33, 29], [-17, 111], [63, 54], [97, -8], [46, -72], [32, 25], [-23, 71], [-55, 42], [17, 28], [53, 14], [245, -53]], [[19352, 43217], [24, 62], [110, -28], [20, 29], [65, -15], [-9, -32], [-73, -29], [24, -31], [-69, -38], [-26, 64], [-66, 18]], [[20285, 42956], [43, 67], [-26, 60], [25, 25], [66, -44], [21, -88], [-17, -34], [-112, 14]], [[19340, 43529], [114, 126], [-48, 88], [36, 26], [182, -21], [40, -49], [28, -73], [35, -53], [39, -6], [88, -64], [72, -86], [4, -61], [45, -21], [48, -96], [-116, 51], [-23, -60], [69, 21], [39, -27], [84, -112], [57, -18], [-9, -85], [-34, -50], [48, -7], [0, -108], [11, -39], [-31, -55], [-49, -6], [-98, 37], [-51, 91], [-55, 41], [30, 82], [-84, 22], [22, -55], [-28, -30], [-73, 30], [20, 49], [-28, 53], [-80, 25], [46, -76], [54, -143], [69, 27], [44, -35], [6, -65], [-26, -60], [-83, 12], [-112, 148], [-20, 56], [-31, 38], [7, 85], [-95, -11], [-5, 67], [164, 56], [-46, 50], [3, 58], [-38, -11], [-115, 78], [-51, 21], [-25, 31], [63, 35], [59, -29], [32, 10], [-84, 107], [-78, -52], [-42, 43]], [[19554, 44176], [96, -4], [47, -39], [27, -73], [50, -18], [33, -50], [50, -28], [38, -52], [-120, -55], [-140, 24], [-28, -53], [-92, 29]], [[19455, 44646], [44, 25], [43, -25], [56, -1], [153, -36], [-7, -61], [33, -23], [70, 19]], [[19847, 44544], [43, -69], [83, -95], [48, -78], [-51, -77], [138, -28], [-29, -95]], [[20079, 44102], [-42, 0], [-38, -57], [-59, -18], [-49, -35]], [[19891, 43992], [-2, 27], [-93, 50], [-44, 54], [-20, 71], [-70, 25], [-107, 19], [-85, 41], [-12, 40], [83, 56], [-43, 14], [-31, 83], [8, 54], [-50, 0], [-24, 29], [9, 54], [145, -29], [-100, 66]], [[33386, 30163], [40, 0]], [[33614, 30163], [0, -295]], [[20045, 43326], [-27, 60], [33, 43], [43, 19], [19, 78], [-13, 54], [-46, 6], [21, -60], [-66, -21], [-74, 20], [-19, 68], [-64, -21], [-36, 70], [2, 44], [51, 14], [31, 61], [83, 2], [-24, 88], [-24, 49], [-52, 42], [-1, 4], [9, 46]], [[20079, 44102], [-2, -11], [109, -42], [-12, -32], [29, -96], [110, 9], [52, -40], [126, -61], [37, -27]], [[19684, 43693], [42, 0], [35, -72], [-67, 27], [-10, 45]], [[19665, 43772], [30, 45], [32, 17], [84, 1], [50, -42], [-28, -28], [10, -44], [-94, -21], [-84, 72]], [[40806, 32298], [39, 48]], [[40845, 32346], [43, 27]], [[40888, 32373], [29, 16], [22, -28], [61, -12]], [[41000, 32349], [-17, -22], [17, -42], [-20, -66], [16, -47]], [[40996, 32172], [-48, -27]], [[40948, 32145], [-64, 10]], [[40884, 32155], [-78, 143]], [[40963, 31085], [38, 28], [56, 15], [42, -21], [26, 29]], [[41125, 31136], [39, -109], [18, -13], [0, -75]], [[41182, 30939], [-47, -4], [-48, -27], [-31, -36]], [[41056, 30872], [-4, 2]], [[29371, 37497], [-5, -371], [-27, 0], [-27, -41], [0, -107], [-52, 0], [-3, -216]], [[29257, 36762], [-4, -207]], [[29253, 36555], [1, -116]], [[29254, 36439], [-34, 13], [-39, 76], [-69, 80]], [[29112, 36608], [2, 369], [10, 0], [0, 180], [-81, 1], [-54, 62], [-63, 34]], [[28926, 37254], [43, -2], [20, 24]], [[28989, 37276], [105, 100], [-2, 41], [32, 37], [2, 40], [124, 3]], [[42926, 30159], [-31, -6], [-148, -129]], [[42747, 30024], [-39, 46], [20, 22], [-10, 54], [-31, 34], [-35, 15]], [[42652, 30195], [0, 2]], [[42652, 30197], [105, 78], [71, -1], [23, 25]], [[39461, 28270], [29, -9], [53, 18]], [[39543, 28279], [289, 1], [-3, -40], [30, -3]], [[39859, 28237], [5, -122]], [[39864, 28115], [-42, 2]], [[39822, 28117], [-165, 1]], [[39657, 28118], [-189, -1]], [[39468, 28117], [-7, 0], [0, 153]], [[40452, 29756], [-21, 154]], [[36019, 32463], [192, 0]], [[36211, 32463], [-5, -188]], [[36206, 32275], [-190, 0]], [[36016, 32275], [3, 188]], [[39092, 33600], [228, 0]], [[39320, 33600], [-13, -54], [1, -65]], [[39088, 33459], [-1, 87]], [[43488, 32553], [-129, 58]], [[43359, 32611], [46, 33], [32, 56]], [[43437, 32700], [14, 33]], [[43451, 32733], [10, -67], [28, -45], [33, -13]], [[140603, 17290], [65, 19], [35, 101], [45, -35], [-15, -47], [-65, -81], [-1, -51], [-21, -37], [-27, 15], [-12, 54], [12, 26], [-16, 36]], [[38784, 36133], [-187, 0]], [[38597, 36133], [0, 162]], [[38597, 36295], [163, -1]], [[38760, 36294], [147, 0]], [[38907, 36294], [0, -161]], [[37466, 31287], [16, 25], [1, 54]], [[37686, 31362], [4, -156], [-13, -37]], [[25264, 31075], [-204, 1], [-289, 3]], [[24771, 31079], [-51, 56], [-18, 70], [-31, 16], [-24, 55], [-38, 50], [-42, 24], [-35, 51], [-20, 104], [7, 92], [23, -19], [20, 33], [16, 91], [-9, 28]], [[24569, 31730], [43, 40], [29, -13]], [[24641, 31757], [20, -35], [64, -70], [-7, -24], [43, -17], [22, -29], [-5, -34], [39, -31], [20, -37], [67, -75], [0, -32], [77, 12], [44, -54], [25, 2], [12, 37]], [[25062, 31370], [22, -39], [-18, -27], [9, -32], [86, -74], [38, -14], [21, -36]], [[30583, 29477], [59, 0], [12, -82], [-8, -40], [33, -31], [3, -61], [22, -47], [-4, -93], [54, -13]], [[30754, 29110], [-138, -1], [0, -54], [-133, 0], [0, -270], [6, -133]], [[30489, 28652], [-134, 0], [-6, 133], [0, 270], [-48, 0], [1, 54], [-90, -1], [-1, 108], [-84, 0]], [[30127, 29216], [0, 266]], [[37470, 32450], [-96, 3]], [[37374, 32453], [-47, 1], [-24, 27], [-31, 90], [-24, 6]], [[37248, 32577], [3, 78], [24, 0], [4, 51]], [[37279, 32706], [57, -2]], [[37336, 32704], [39, -2], [-2, -51], [94, -4]], [[37467, 32647], [-1, -27]], [[42104, 31278], [39, 51], [-9, 25]], [[42134, 31354], [48, 27], [0, 46], [49, 5]], [[42356, 31453], [43, -46], [-2, -56]], [[42397, 31351], [-4, -111]], [[42393, 31240], [-64, -7]], [[42329, 31233], [-70, -5], [-60, -25]], [[19123, 45379], [25, -61], [182, -82], [61, -75], [139, -110], [-35, -28], [51, -70], [72, -74]], [[19618, 44879], [-183, -179]], [[19435, 44700], [-16, -15], [-26, -26], [-4, -1], [-3, 2], [-60, 86], [-88, 79], [-16, 74], [-76, 5], [-161, 35], [-63, 93], [-7, 58], [-65, 74], [0, 106], [-37, -1], [-54, 39], [-11, 79]], [[18748, 45387], [102, -4], [268, -2]], [[19118, 45381], [5, -2]], [[19183, 44884], [-157, -37], [-70, -41], [-34, 41], [27, 77]], [[18949, 44924], [6, -38], [61, 21], [82, -29], [85, 6]], [[36258, 33316], [-58, 70]], [[36200, 33386], [218, -2]], [[36418, 33384], [1, -45]], [[36419, 33339], [-1, -183]], [[36418, 33156], [-76, 25]], [[36342, 33181], [-53, 60], [-9, 54], [-22, 21]], [[36298, 33564], [120, -1]], [[36418, 33563], [0, -45]], [[36418, 33518], [0, -134]], [[36200, 33386], [21, 51]], [[39637, 30587], [163, -4]], [[39800, 30583], [23, 0]], [[39823, 30583], [-3, -272]], [[39820, 30311], [-51, 17], [-86, 66]], [[39683, 30394], [-15, 24], [-53, 21]], [[39615, 30439], [20, 35], [2, 113]], [[40349, 33722], [157, 0]], [[40506, 33722], [6, -45]], [[40512, 33677], [0, -80], [-9, -53]], [[40503, 33544], [-35, -1]], [[40468, 33543], [-128, 0]], [[40340, 33543], [9, 98]], [[40349, 33641], [0, 81]], [[35113, 34497], [100, 40]], [[35213, 34537], [0, -216]], [[35213, 34321], [-199, 0]], [[35014, 34321], [-1, 78]], [[35013, 34399], [27, 38], [73, 60]], [[41290, 34674], [109, 3]], [[41399, 34677], [43, -18], [57, -50], [34, 21], [61, -4], [10, -29]], [[41604, 34597], [-112, -22]], [[41492, 34575], [-169, -1], [-33, 27]], [[41290, 34601], [0, 73]], [[35443, 38089], [3, 54]], [[35446, 38143], [-7, 161]], [[35439, 38304], [341, 0]], [[35780, 38304], [0, -215]], [[36002, 34825], [202, 0]], [[36204, 34825], [0, -162], [23, 1], [0, -61]], [[36227, 34603], [-50, 1]], [[36177, 34604], [-149, 0]], [[44135, 33273], [-124, 3]], [[44011, 33276], [26, 85], [-40, 53], [-44, 21], [36, 67]], [[43989, 33502], [95, 0]], [[44084, 33502], [93, 0]], [[37523, 35093], [102, 1]], [[37625, 35094], [0, -270]], [[37625, 34824], [-204, 0]], [[37421, 34824], [0, 269]], [[41689, 32406], [37, -55]], [[41726, 32351], [32, -43], [3, -28]], [[41761, 32280], [-53, -45], [-47, 10]], [[41661, 32245], [-34, 22]], [[41627, 32267], [-5, 70], [18, 28]], [[37107, 37015], [-1, 90], [-52, 1], [0, 106]], [[37054, 37212], [131, 0]], [[37185, 37212], [-20, -53]], [[37165, 37159], [1, -43], [48, -4], [56, -78], [-2, -27], [-42, -63]], [[37226, 36944], [-119, 0]], [[37107, 36944], [0, 71]], [[41241, 31982], [-48, 53], [-64, 3]], [[41129, 32038], [-44, 104]], [[41219, 32135], [12, -25], [1, -81]], [[44116, 34910], [160, -1]], [[44276, 34909], [180, -1]], [[44456, 34908], [13, -214]], [[44469, 34694], [-36, -2], [-10, -66]], [[44423, 34626], [-258, 30]], [[44165, 34656], [-27, 4]], [[42551, 33969], [1, -48]], [[42552, 33921], [-49, -3]], [[42503, 33918], [15, 47], [-32, 69]], [[42486, 34034], [18, 23], [47, 12]], [[37455, 32837], [8, -24], [41, -27], [43, 6]], [[37547, 32792], [0, -43], [-61, -43], [7, -29], [-26, -30]], [[37336, 32704], [43, 192]], [[40067, 34953], [-1, -192]], [[40066, 34761], [-130, 0]], [[39805, 34761], [89, 83], [59, 138], [52, 77]], [[43590, 33776], [-45, 37], [-9, 45]], [[43536, 33858], [56, 114], [-30, 47], [14, 37], [-24, 35], [46, 40]], [[43598, 34131], [75, -30], [52, 33], [62, -9]], [[43787, 34125], [-2, -33], [-38, -31], [-30, -47], [11, -31], [-42, -62], [25, -21], [45, 8]], [[43756, 33908], [22, -71]], [[43778, 33837], [-41, -60], [-30, -65]], [[32541, 35527], [219, 0]], [[32760, 35527], [91, -1]], [[32851, 35526], [8, -132], [0, -213]], [[32859, 35181], [-292, -2]], [[32567, 35179], [-15, 0], [-1, 215], [-9, 0], [-1, 133]], [[42586, 31545], [-75, 5]], [[42511, 31550], [-6, 29], [20, 35], [23, -11], [27, 40]], [[42675, 31744], [73, -20], [11, -28]], [[41084, 36673], [-211, -1]], [[40873, 36672], [3, 212]], [[40876, 36884], [52, 0]], [[40928, 36884], [159, 2]], [[41085, 36458], [-211, -1]], [[40874, 36457], [-1, 215]], [[32321, 31340], [-186, 0]], [[32135, 31340], [-187, 0], [0, 27], [-207, 0]], [[31822, 31820], [356, -1], [144, 1]], [[38343, 32847], [207, -3]], [[38550, 32844], [1, -148]], [[38551, 32696], [0, -121]], [[38551, 32575], [-85, 1]], [[38466, 32576], [-6, 54], [-54, 9], [-99, 122]], [[38307, 32761], [3, 7]], [[38310, 32768], [28, 41], [5, 38]], [[38551, 32696], [54, 40], [44, -5], [65, 24], [81, -5]], [[38795, 32750], [0, -18]], [[38795, 32732], [-2, -161]], [[38793, 32571], [-193, 4]], [[38600, 32575], [-49, 0]], [[43296, 33503], [22, 63], [-2, 144], [10, 7], [36, 107]], [[43362, 33824], [16, 52]], [[43378, 33876], [50, -24], [31, 9], [64, -37], [13, 34]], [[36482, 30421], [3, 126]], [[36485, 30547], [35, 18], [60, 3], [1, 64], [38, 17]], [[36809, 30600], [-3, -169]], [[36806, 30431], [-69, -20], [-27, -30]], [[36018, 32060], [188, -1]], [[36206, 32059], [6, -27]], [[36212, 32032], [1, -210]], [[36213, 31822], [-146, 0]], [[36067, 31822], [-50, 0]], [[36017, 31822], [1, 238]], [[42551, 34200], [0, 30]], [[42551, 34230], [0, 139]], [[42551, 34369], [114, 2], [48, -9], [22, -27]], [[42195, 33807], [1, 55], [26, 0], [2, 80]], [[42224, 33942], [143, -5]], [[42367, 33937], [33, -1], [-7, -163]], [[42393, 33773], [-150, 6]], [[42329, 31233], [10, -54], [-15, -62], [-30, -50]], [[42294, 31067], [-14, 32], [-84, -20]], [[44992, 33167], [23, 90]], [[45015, 33257], [48, -18], [92, 4]], [[45155, 33243], [-46, -55], [-26, -67], [-38, -69], [-31, -32], [-47, 0], [30, 91], [-5, 56]], [[46138, 35355], [-76, 3]], [[46062, 35358], [-37, 49], [5, 92], [25, 10], [17, 71], [-8, 46]], [[46245, 35606], [-11, -114], [25, 0], [13, -96], [20, -47]], [[35303, 38948], [0, 1]], [[35303, 38949], [337, 0]], [[35640, 38949], [342, -3]], [[35982, 38946], [4, -226]], [[35986, 38720], [-395, 1]], [[35591, 38721], [-281, -1]], [[43933, 32310], [43, 53], [29, 10]], [[44174, 32142], [-56, 32], [-52, 11], [-36, 24]], [[32172, 32327], [-45, -47], [-41, -81], [0, -22], [-87, -103], [-107, -20], [-53, -49], [-16, -2]], [[35123, 26769], [-88, -90]], [[35035, 26679], [-60, 32], [-39, -18]], [[34936, 26693], [-41, 59]], [[34895, 26752], [-40, 59]], [[34855, 26811], [201, 210]], [[39026, 30951], [21, -1], [26, -46], [40, -18], [23, -39]], [[39136, 30847], [-1, -24]], [[39135, 30823], [-91, 1], [-30, -13], [-34, -70], [-27, 0]], [[38953, 30741], [-7, 56], [-19, 55]], [[38927, 30852], [72, 38], [27, 61]], [[38161, 33545], [51, -1], [49, -22], [-1, -54], [31, -18], [0, -72]], [[38291, 33378], [-122, 1]], [[38169, 33379], [2, 24], [-30, 88], [20, 54]], [[28834, 33251], [1, -166]], [[28835, 33085], [-22, -53], [-30, 0], [-24, -58], [-16, 0], [3, -85], [-40, -32], [-60, 3], [-29, -67]], [[28617, 32793], [-201, 0], [-468, 1]], [[27948, 32794], [0, 64]], [[27948, 32858], [1, 534]], [[27949, 33392], [101, 6], [328, 0], [371, 1], [8, -17], [2, -122], [75, -9]], [[29161, 34381], [-44, -9], [-6, -26], [-55, -15], [-35, -60], [27, -8], [17, -50], [-18, -53], [-50, 8]], [[28997, 34168], [-14, 34], [-28, 4]], [[28904, 34378], [-1, 36], [49, 9], [38, -17], [27, 33], [43, -5], [23, 29], [10, 52]], [[35680, 29256], [96, -2]], [[35776, 29254], [0, -297]], [[35776, 28957], [-164, 0]], [[35612, 28957], [8, 31], [-33, 45], [-9, 40]], [[35578, 29073], [5, 165]], [[30127, 29216], [0, -217]], [[30127, 28999], [-29, 0]], [[30098, 28999], [-49, 64], [9, 65], [-17, 66], [-39, 62], [-70, 146], [0, 354]], [[29932, 29756], [23, 37], [32, 6], [9, 34], [131, 1]], [[28260, 29586], [0, 384]], [[28260, 29970], [257, 0], [204, -72], [49, 102], [191, -30], [100, 0]], [[29061, 29970], [53, -108], [-6, -46], [22, -18], [33, -60], [47, 34], [49, -131]], [[28752, 29049], [-158, -1], [-334, 0]], [[41085, 36458], [1, -214]], [[41086, 36244], [-123, 0]], [[40963, 36244], [-88, -1]], [[40239, 31459], [6, 55]], [[40384, 31454], [0, -62]], [[39181, 32963], [136, 2]], [[39333, 32965], [-2, -173]], [[39313, 32792], [-84, -1]], [[39229, 32791], [-46, 19]], [[40032, 30032], [-13, -33], [3, -65]], [[40022, 29934], [-35, -65], [-74, -43]], [[39913, 29826], [-30, 4], [-49, 42], [-55, 2], [-30, -17]], [[39749, 29857], [-4, 26]], [[39745, 29883], [17, 32], [70, 40], [33, 65], [38, 26], [35, 80], [29, 5]], [[29098, 38749], [59, 0], [2, 480]], [[29159, 39229], [230, 0]], [[29389, 39229], [-4, -52], [-2, -428]], [[34591, 25868], [-3, 434]], [[34793, 26302], [43, 0]], [[34836, 26302], [1, -491]], [[34837, 25811], [-127, 2]], [[37796, 33254], [-122, 12]], [[37674, 33266], [1, 197]], [[37675, 33463], [0, 18], [178, -1]], [[37853, 33480], [56, -54]], [[35134, 29079], [202, -4]], [[35336, 29075], [0, -175]], [[35336, 28900], [-170, -57]], [[35166, 28843], [-34, -15], [-26, 34]], [[35106, 28862], [0, 71]], [[35106, 28933], [-1, 146]], [[40544, 28589], [-6, 11]], [[40538, 28600], [80, -1]], [[40618, 28599], [7, -98], [54, 0]], [[40679, 28501], [-1, -73]], [[40678, 28428], [-91, -9], [-7, 19]], [[40580, 28438], [-5, 62], [-30, 48], [-1, 41]], [[25507, 36333], [1, 319], [-8, 106]], [[25722, 36759], [280, 0]], [[26002, 36759], [120, -24]], [[26127, 36302], [2, -134]], [[26129, 36168], [-157, 1], [-100, 4], [0, -53], [-366, -2]], [[23520, 35904], [149, -2], [0, -57], [26, 0], [-1, -52], [25, -6], [-1, -101], [26, 0], [1, -106], [-26, -2], [0, -54], [-26, 0], [4, -128]], [[23697, 35396], [-50, -9], [-30, -55], [-62, -9], [-10, 43], [0, 89], [-42, 44], [-97, -1]], [[23406, 35498], [43, 195], [41, 103], [30, 108]], [[36111, 29587], [28, -7], [51, 14]], [[36190, 29594], [0, -219]], [[36190, 29375], [-12, -13]], [[36178, 29362], [-9, -32], [-59, 0]], [[45635, 36023], [-24, -93], [-50, -62], [-9, -41], [15, -112]], [[43547, 32769], [59, -80], [1, -57]], [[43451, 32733], [50, 94]], [[35769, 30391], [92, 0], [0, -54], [91, 0]], [[35952, 30337], [0, -54], [-47, 0], [0, -216]], [[35905, 30067], [-92, 0]], [[35813, 30067], [-181, 1]], [[35632, 30068], [0, 161]], [[38424, 33742], [9, 16], [102, -3], [45, 15], [16, -20]], [[38596, 33750], [10, -90]], [[38606, 33660], [-52, -1], [-2, -36], [-29, -9], [-98, 0]], [[38425, 33614], [-1, 128]], [[40751, 30225], [-3, -206]], [[40748, 30019], [-34, 1]], [[42182, 26809], [-21, -58]], [[42056, 26481], [-131, -1]], [[41925, 26480], [1, 379]], [[41926, 26859], [129, 0], [9, 54], [-2, 142]], [[35934, 30929], [-47, -1], [-1, -54], [-23, 0], [0, -54], [-46, 0]], [[35817, 30820], [-46, 1], [0, 108], [-46, 0], [0, 53]], [[35725, 30982], [0, 135], [70, 0]], [[35795, 31117], [93, -1]], [[35888, 31116], [23, 1]], [[33774, 38198], [0, 214], [38, 0], [0, 107]], [[33812, 38519], [169, 0]], [[33981, 38519], [56, 0]], [[34037, 38519], [0, -107], [16, 0], [0, -214]], [[34053, 38198], [-35, 0]], [[40188, 34291], [-97, -2], [0, -53]], [[39960, 34236], [1, 162]], [[40130, 34399], [1, -55], [25, -26], [32, 0]], [[36415, 32895], [-195, 1]], [[36220, 32896], [0, 150]], [[36220, 33046], [64, 6]], [[36284, 33052], [16, 42], [30, -10], [86, 0]], [[36416, 33084], [-1, -121]], [[44220, 32902], [69, -22]], [[44289, 32880], [6, -114], [10, -28], [45, -59], [-36, -39]], [[44314, 32640], [-27, 45], [-33, 17], [-28, 46]], [[44226, 32748], [-1, 23]], [[44225, 32771], [-5, 131]], [[37530, 37476], [217, -1]], [[37747, 37475], [4, -107], [0, -213]], [[37751, 37155], [-213, 1]], [[37538, 37156], [-1, 212], [-7, 108]], [[24060, 38370], [-230, -1], [0, -54]], [[23830, 38315], [-235, 1], [-134, 9]], [[23461, 38325], [-33, 131], [-26, 44], [-53, 39]], [[23349, 38539], [481, 1], [0, -9], [243, 0], [9, 122]], [[24082, 38653], [22, 28], [90, -57], [-21, -19], [36, -75], [-49, -40], [-14, -60], [-50, -18], [-36, -42]], [[48369, 20350], [12, -16]], [[48381, 20334], [1, -44]], [[48382, 20290], [-23, -3]], [[48359, 20287], [-24, 38]], [[48335, 20325], [34, 25]], [[37517, 36210], [0, 53], [96, 0]], [[37613, 36263], [64, -45], [66, -59]], [[37743, 36159], [59, -25]], [[37863, 36049], [-194, 0]], [[37933, 28866], [39, 19], [22, -18], [31, 78], [-32, 8], [-18, 51], [-39, 41], [20, 38]], [[38109, 29118], [57, -45], [15, -24]], [[38181, 29049], [-22, -17], [-10, -87], [-24, 9], [-20, -79]], [[38105, 28875], [-20, -44], [-79, -43], [-32, 19]], [[36248, 33611], [-8, 92], [-14, 52]], [[36226, 33755], [190, -3]], [[36416, 33752], [1, -53]], [[36417, 33699], [1, -136]], [[37873, 33143], [-1, -90]], [[37872, 33053], [-1, -92], [-65, 1], [-2, -84]], [[37804, 32878], [-55, -20], [-41, 16]], [[37708, 32874], [-3, 0]], [[37705, 32874], [6, 220]], [[37711, 33094], [2, 54], [96, -3]], [[36241, 31822], [-28, 0]], [[36212, 32032], [199, -1]], [[36411, 32031], [0, -173]], [[43957, 31309], [22, -43], [-38, -17]], [[43941, 31249], [-33, -41]], [[43908, 31208], [-50, 20], [-6, 33], [-72, 39]], [[43780, 31300], [-83, -6], [-13, 23], [-39, 13]], [[43645, 31330], [28, 59], [14, 52], [5, 75]], [[30933, 30723], [-18, 53], [-31, 1]], [[30884, 30777], [0, 427], [-138, 1]], [[30746, 31205], [1, 136]], [[30747, 31341], [322, -2], [0, -134], [278, 1], [-1, -22]], [[31346, 31184], [-66, -3], [0, -95], [51, -9], [14, -23]], [[31345, 31054], [3, -333]], [[31348, 30721], [-415, 2]], [[41250, 31968], [-19, -42], [5, -82], [13, -59]], [[41249, 31785], [-35, 10]], [[41214, 31795], [-22, 3], [-45, 40], [-56, 18]], [[41091, 31856], [-42, 74], [11, 47]], [[41060, 31977], [69, 61]], [[43653, 34585], [170, 2]], [[43823, 34587], [31, -74], [77, -85], [13, -1], [77, -93]], [[44021, 34334], [0, -15]], [[44021, 34319], [-85, -35], [-74, -15], [-49, 79], [-52, 10], [-25, 46], [-76, -5], [-28, -12]], [[23986, 36588], [2, 18]], [[24573, 36566], [3, -56], [-23, -63], [1, -61]], [[24554, 36386], [11, -80]], [[24565, 36306], [-221, -6], [-25, -22], [-54, 4], [-111, 41], [-45, -2], [-17, -53], [-113, -1], [-7, 52]], [[38236, 35411], [257, 0]], [[38493, 35411], [0, -190]], [[38493, 35221], [-39, 0]], [[38454, 35221], [-217, 1]], [[38237, 35222], [-1, 189]], [[35891, 31467], [-82, 0]], [[35809, 31467], [0, 355]], [[35809, 31822], [16, 0]], [[35825, 31822], [77, 0]], [[35902, 31822], [-10, -35], [0, -213]], [[42880, 33502], [125, 0]], [[43005, 33502], [-4, -318]], [[43001, 33184], [0, -7]], [[43001, 33177], [-9, 14], [-79, 34], [-53, -26]], [[42860, 33199], [-37, 43]], [[42823, 33242], [0, 84]], [[140818, 17701], [18, 27], [32, 19], [-11, -51], [-39, 5]], [[38760, 36294], [0, 270]], [[38760, 36564], [270, -2], [-1, -54]], [[39029, 36508], [-57, 0], [-1, -214]], [[38971, 36294], [-64, 0]], [[34173, 27547], [-92, 5], [-20, -178], [-14, -61], [14, -44]], [[34061, 27269], [-43, 0]], [[33762, 27269], [0, 410]], [[34016, 27680], [158, 1]], [[24777, 35907], [416, -3], [209, 0]], [[25402, 35904], [0, -267], [-16, 0], [1, -162], [-5, -105], [251, 1], [3, -465]], [[25636, 34906], [-279, 0]], [[25357, 34906], [-383, -1]], [[37486, 31513], [-165, 0]], [[37321, 31513], [-106, -1]], [[37215, 31512], [3, 191]], [[37502, 31695], [-3, -182]], [[35795, 27333], [-7, 47], [-23, 4], [-13, 79], [20, 41], [-26, 41]], [[35769, 27640], [125, 13]], [[35894, 27653], [1, -96]], [[35895, 27557], [-16, -4], [-53, 49], [59, -231]], [[39770, 28583], [-100, -68], [-14, -76], [-18, -38], [-38, -35], [-57, -87]], [[39461, 28270], [-43, 34], [-22, -2]], [[39396, 28302], [25, 64], [45, 5], [16, 45], [0, 133], [22, 0], [7, 82]], [[46332, 36359], [-42, 57], [34, 34], [-23, 31], [29, 40], [-30, 22], [32, 43], [-45, 32]], [[46287, 36618], [-15, 11], [44, 56], [-24, 19], [14, 62]], [[46306, 36766], [51, 2], [122, 1]], [[46479, 36769], [2, -65], [-36, -75], [-23, -20], [34, -76], [-21, -89], [-49, -47], [-23, -2]], [[43544, 31897], [30, -41], [44, -27], [29, 8]], [[43647, 31837], [-11, -152]], [[43636, 31685], [-93, 19], [-51, 32], [-26, -4], [-32, 23]], [[43434, 31755], [21, 117]], [[43455, 31872], [89, 25]], [[35423, 38411], [16, -51], [0, -56]], [[35446, 38143], [-269, 0]], [[35177, 38143], [-10, 53], [1, 215]], [[41203, 30237], [-23, -39], [21, -45]], [[41201, 30153], [-86, -104]], [[41115, 30049], [-22, -18], [-85, 43]], [[41008, 30074], [32, 17], [27, 52], [-13, 34]], [[41054, 30177], [-10, 52]], [[41044, 30229], [59, 54]], [[41103, 30283], [78, -2]], [[41728, 28954], [-104, -26], [-3, -8]], [[41621, 28920], [-29, 7]], [[41592, 28927], [16, 93], [16, 32]], [[41624, 29052], [65, -8], [49, -36], [-10, -54]], [[40839, 28502], [-2, -45], [11, -69]], [[40848, 28388], [-90, -2]], [[40758, 28386], [-66, 2], [-14, 40]], [[40679, 28501], [118, 1]], [[38887, 37424], [0, -57], [-50, 0], [0, -53]], [[38404, 37315], [-1, 52]], [[38403, 37367], [50, 0], [0, 196]], [[36165, 38251], [-5, 283], [-36, 33], [21, 58], [-154, 1]], [[35991, 38626], [-5, 94]], [[35982, 38946], [114, 1]], [[36096, 38947], [56, -1], [1, -107], [341, 1]], [[36498, 38518], [1, -248]], [[36499, 38270], [0, -20], [-111, -1]], [[48688, 20120], [-1, 24]], [[48687, 20144], [-6, 59]], [[48681, 20203], [31, -2]], [[48712, 20201], [25, -14]], [[48737, 20187], [25, -47]], [[48489, 20109], [11, -44]], [[48500, 20065], [-29, -17], [-24, 16]], [[48447, 20064], [10, 49]], [[44543, 32856], [47, 18], [57, -42]], [[44647, 32832], [2, -46]], [[44649, 32786], [-53, -49], [-17, -80]], [[44579, 32657], [-48, 9], [-34, -38], [3, -39], [-53, 1], [-72, 142], [37, 31], [-14, 53], [109, -23]], [[44507, 32793], [36, 63]], [[44324, 34462], [18, 20], [42, 1]], [[44384, 34483], [-4, -63], [39, -98], [10, -61]], [[44429, 34261], [-34, -41], [-9, -51], [-32, -16]], [[44354, 34153], [-13, 36], [-40, -5], [-12, 35]], [[44289, 34219], [7, 40], [-46, 72], [-10, 57]], [[44240, 34388], [21, 1], [63, 73]], [[41246, 33681], [-31, -149], [-26, 2]], [[41189, 33534], [-79, 16], [0, 15], [-98, 17]], [[41012, 33582], [1, 18]], [[41013, 33600], [7, 99]], [[34018, 26389], [-43, -1]], [[33975, 26388], [-36, 54], [-21, 62], [3, 28], [-33, 75], [6, 21], [-45, 47], [-3, 49], [-17, 52], [-46, 73], [-7, 87]], [[29516, 29053], [0, -53]], [[29516, 29000], [1, -171], [-2, -259]], [[29515, 28570], [-310, -3], [0, -126], [-88, -1], [0, -58]], [[29117, 28382], [-329, 147], [-219, 96], [-309, 135]], [[30128, 30328], [0, 235]], [[30128, 30563], [251, 0], [0, 214], [320, -1], [0, 27], [46, 0], [0, -27], [139, 1]], [[30933, 30723], [57, -162]], [[30990, 30561], [-60, 1], [1, -234]], [[30931, 30328], [-228, -1]], [[44966, 33704], [110, 63]], [[45076, 33767], [11, 20], [47, -27]], [[45134, 33760], [15, -37]], [[45149, 33723], [72, -188], [-1, -110], [-11, -24]], [[45209, 33401], [-26, -3], [-80, 49], [-7, 37], [-26, 24]], [[45668, 35991], [68, 9], [-6, 43], [83, 6], [31, -12]], [[45844, 36037], [37, 8], [39, -22], [-16, -54], [52, -21], [-38, -113], [27, -19], [-15, -71], [-28, 16], [-19, -49]], [[45883, 35712], [-168, 9]], [[45715, 35721], [3, 125], [-24, 67], [-55, 5], [29, 73]], [[40758, 28386], [-2, -108]], [[40756, 28278], [-120, -1], [-2, -114]], [[40634, 28163], [-47, 2]], [[40587, 28165], [-31, 55], [-6, 62], [12, 27]], [[40562, 28309], [-2, 35], [20, 94]], [[46769, 34510], [28, 0], [36, 54], [36, 26], [25, -42], [42, -41], [-113, -4], [-40, -17], [-14, 24]], [[33606, 38896], [0, 54]], [[33947, 38949], [0, -107], [17, 0], [0, -215], [17, 0], [0, -108]], [[33812, 38519], [-168, 1]], [[35365, 34965], [-152, 0]], [[35213, 34965], [1, 161]], [[35214, 35126], [152, 0]], [[35366, 35126], [0, -54], [85, 0]], [[35451, 35072], [-1, -107]], [[34501, 37553], [-15, 0]], [[34487, 37767], [260, 1]], [[34923, 37768], [0, -215]], [[28538, 35911], [-1, -51], [-51, -3], [-1, -53], [-52, 0], [-4, -102], [-27, 0]], [[28266, 36288], [142, 0]], [[46479, 36769], [6, 41], [25, 27], [14, 49], [44, 60], [29, -31], [42, -3], [21, 38]], [[46660, 36950], [22, -376], [10, -254]], [[46692, 36320], [-14, -30], [-91, 5], [-23, -67], [-48, 47]], [[34053, 38198], [240, 0]], [[34293, 38198], [0, -214], [15, 0], [-1, -216]], [[34963, 26042], [24, -10], [21, -38], [224, 2]], [[35232, 25996], [-35, -143], [-34, -20], [-13, 39], [-54, -49]], [[35096, 25823], [-77, -6], [-12, -17], [-63, -21]], [[34944, 25779], [-31, 31]], [[34913, 25810], [-1, 232], [51, 0]], [[35257, 26005], [20, 0]], [[35277, 26005], [-32, -92], [-22, -92]], [[35223, 25821], [-14, 0]], [[35209, 25821], [7, 46], [41, 138]], [[39632, 34677], [44, 13], [82, 41]], [[38717, 28874], [0, 218]], [[38717, 29092], [2, 0]], [[38719, 29092], [176, 0]], [[38895, 29092], [0, -218]], [[43380, 30739], [34, 44]], [[43414, 30783], [20, -33], [35, -5], [46, 20]], [[43515, 30765], [26, -38], [36, -22]], [[43577, 30705], [7, -177], [-22, -100], [37, -12]], [[43599, 30416], [-62, -104]], [[43537, 30312], [-30, 70], [-74, 117]], [[40052, 30843], [-2, -49]], [[40050, 30794], [-24, -128]], [[40026, 30666], [-23, 6], [-10, 61], [-58, 74]], [[41532, 26373], [13, 0], [11, 0]], [[41556, 26373], [67, 1]], [[41623, 26374], [1, -95]], [[41624, 26279], [-33, -44], [42, -24], [18, -58], [-21, -65], [-35, -7], [-10, -49], [-1, 7], [1, 47], [-40, 71], [-9, 39], [10, 83], [-14, 94]], [[48758, 20245], [12, -37]], [[48770, 20208], [-1, -3]], [[48769, 20205], [-32, -18]], [[48712, 20201], [10, 41]], [[48722, 20242], [16, 5]], [[38986, 32517], [1, 81]], [[38987, 32598], [145, -1]], [[39132, 32597], [-2, -214]], [[39130, 32383], [-145, -1]], [[36990, 30448], [0, 54], [47, 71], [61, 62]], [[37098, 30635], [141, -3], [29, 20], [42, 6]], [[37310, 30658], [-17, -63], [21, -36]], [[37314, 30559], [-91, -26], [6, -36]], [[37229, 30497], [-145, 3], [-1, -53]], [[33453, 33676], [-2, -268]], [[33174, 33408], [0, 4]], [[33174, 33412], [0, 264]], [[30418, 32852], [0, 100], [99, 44], [43, 70], [31, 28], [52, 12], [42, -21], [56, 60], [60, 47]], [[30801, 33192], [0, -339]], [[36873, 34229], [200, 0]], [[37073, 34229], [0, -194]], [[37073, 34035], [-120, -2]], [[36953, 34033], [-80, 0]], [[32937, 29328], [168, 0]], [[33105, 29328], [3, -269]], [[33108, 29059], [-4, 0]], [[33104, 29059], [-372, -1]], [[32732, 29058], [0, 270]], [[32732, 29328], [205, 0]], [[39314, 29921], [0, 63], [-15, 19], [-96, 4]], [[39203, 30007], [1, 17]], [[39204, 30024], [14, 145]], [[39218, 30169], [234, -9]], [[39452, 30160], [0, -188]], [[39452, 29972], [0, -54]], [[41989, 31274], [-33, 48], [-14, 60]], [[41942, 31382], [82, 65]], [[42024, 31447], [110, -93]], [[42768, 32013], [50, 8], [1, -47], [-19, -20], [-37, 31]], [[33108, 29059], [224, 1]], [[33332, 29060], [-3, -270]], [[33329, 28790], [-35, 0]], [[33294, 28790], [-190, -1]], [[33104, 28789], [0, 270]], [[36661, 29521], [-11, 18], [-65, -3], [-6, -34], [-64, 9], [-39, 24], [-27, -17], [-53, 1]], [[36396, 29519], [-41, 37]], [[36355, 29556], [0, 231]], [[36469, 29747], [42, -56], [42, 21], [39, -9], [52, 6], [17, -15]], [[37828, 33526], [25, -46]], [[37675, 33463], [-57, 1]], [[37618, 33464], [3, 179]], [[37621, 33643], [176, -2]], [[44432, 35946], [-13, 77], [-30, 21], [75, 37], [-4, 22], [-81, 60], [-21, 43], [25, 61], [65, 25], [1, 25], [131, 76]], [[44761, 36278], [-44, -71], [27, -17], [-26, -66], [-26, 2], [-67, -57], [-36, 3], [-5, -57], [28, -2], [5, -61]], [[38031, 34930], [0, 161]], [[38216, 35145], [25, -37], [11, -60], [32, -19]], [[38284, 35029], [67, -48], [4, -51]], [[34989, 38411], [-44, 0]], [[34945, 38411], [-225, 0]], [[34720, 38411], [-11, 107]], [[45430, 36409], [-10, 90], [-24, 82], [-18, 177]], [[45378, 36758], [298, 10]], [[45676, 36768], [2, -57], [-17, -50], [19, -21], [-24, -115], [12, -33]], [[45668, 36492], [10, -11]], [[30831, 33283], [-426, 0], [-279, 1]], [[30126, 33284], [-1, 80]], [[30125, 33364], [0, 101]], [[30125, 33465], [68, -6], [149, 0], [0, 26], [268, 1], [0, 80], [221, 3], [0, 55], [49, -2], [1, 108], [121, 1]], [[31002, 33731], [2, -107]], [[36588, 33338], [1, 45]], [[36589, 33383], [196, -2]], [[36785, 33381], [0, -196]], [[36785, 33185], [-35, 5], [-26, -19], [-56, 4], [-33, -29]], [[36635, 33146], [-47, 39]], [[36588, 33185], [0, 153]], [[41580, 33284], [4, 62]], [[41588, 33399], [48, 6], [1, 28], [53, -4], [3, 37], [50, -5]], [[41743, 33461], [-2, -35], [51, -4], [45, -21]], [[41837, 33401], [-4, -56], [-49, 4], [-4, -55]], [[39769, 28766], [0, 109], [40, 71]], [[39809, 28946], [15, 32], [56, 3], [68, -32]], [[39948, 28949], [3, -32], [35, -30], [1, -120]], [[39987, 28767], [-18, -53]], [[41893, 29069], [49, -77], [-22, -90]], [[41920, 28902], [-25, 6]], [[41895, 28908], [-90, 25]], [[41805, 28933], [-9, 21], [28, 50], [18, 53], [29, 25], [22, -13]], [[37827, 34823], [-202, 1]], [[37625, 35094], [102, -2]], [[37727, 35092], [102, 0]], [[37829, 35092], [-2, -215]], [[24022, 33852], [33, -23], [24, -168]], [[24079, 33661], [-266, -1], [0, 16]], [[23813, 33676], [1, 455], [-7, 56], [-25, 52], [25, 22], [48, -4], [11, 71], [-18, 11], [25, 64]], [[23873, 34403], [59, -35], [12, -28], [59, -2], [32, -44], [58, 7], [-31, 60], [33, 55], [38, 1], [96, 76], [37, 5], [3, -93]], [[40733, 29096], [0, -40]], [[40612, 28969], [-13, 82]], [[38363, 30069], [89, 3]], [[38452, 30072], [2, -164]], [[38454, 29908], [0, -46], [-91, -9], [0, -54]], [[38363, 29799], [-30, 23], [10, 31], [-117, 1]], [[38226, 29854], [0, 108]], [[38226, 29962], [0, 54]], [[38226, 30016], [137, 0], [0, 53]], [[36258, 33316], [-92, 0]], [[36166, 33316], [-170, 0]], [[35996, 33316], [3, 144]], [[35999, 33460], [98, 0]], [[48485, 20320], [30, -15]], [[48515, 20305], [0, -12]], [[48515, 20293], [3, -57]], [[48518, 20236], [-4, -37]], [[48514, 20199], [-4, 0]], [[48510, 20199], [-27, 10]], [[48483, 20209], [-4, 41]], [[48479, 20250], [6, 70]], [[33104, 28789], [-33, 1]], [[33071, 28790], [-223, -1]], [[32848, 28789], [-115, 1]], [[32733, 28790], [-1, 268]], [[41013, 33600], [-46, 27], [-117, -2]], [[40850, 33625], [-3, 171]], [[40847, 33796], [75, 1], [103, -9]], [[33125, 30971], [235, 0]], [[33360, 30971], [0, -270]], [[35595, 30533], [-77, 11], [-24, -45], [-23, 27]], [[35471, 30526], [0, 316], [67, -7]], [[35538, 30835], [20, 1], [57, 35], [2, -104]], [[42093, 29895], [68, -90], [21, -2], [78, -47]], [[42260, 29756], [-81, -100]], [[42179, 29656], [-167, -180]], [[42012, 29476], [-41, 30]], [[41971, 29506], [2, 37], [-31, 16], [-7, 83], [-34, 40]], [[41901, 29682], [157, 174]], [[3791, 203], [40, 6], [-28, -37], [-12, 31]], [[23818, 32914], [-83, 92], [13, 87], [-48, 136], [-9, 56], [26, 113], [-12, 81], [-16, 25], [-9, 67], [-75, 104]], [[23605, 33675], [208, 1]], [[24079, 33661], [-11, -82], [10, -29]], [[24078, 33550], [19, -55], [4, -80]], [[24101, 33415], [-3, -31], [-75, -16], [-5, -59], [24, -53], [3, -53], [-28, -39], [-7, -62], [46, -47], [17, -59], [55, -31]], [[44305, 31545], [15, 163], [16, 32]], [[44336, 31740], [20, -50], [37, 23]], [[44393, 31713], [28, 11]], [[44421, 31724], [10, -44], [26, -7], [33, -40], [-24, -17], [0, -71]], [[44466, 31545], [-83, 0]], [[141019, 18251], [28, 53], [12, -62], [-17, -48], [-23, 57]], [[48471, 20187], [39, 12]], [[48514, 20199], [13, -23]], [[48527, 20176], [-24, -110]], [[48503, 20066], [-3, -1]], [[29689, 35076], [242, -4], [198, 0]], [[30791, 35071], [8, -108], [-2, -265], [-183, 1], [5, -161], [0, -245]], [[30126, 34292], [-414, -2]], [[29712, 34290], [-21, 0]], [[33615, 29598], [0, -263]], [[33615, 29335], [-59, -4]], [[33556, 29331], [-167, -2]], [[43222, 33204], [34, -24], [121, -50], [27, 8], [23, -26]], [[43427, 33112], [-16, -20]], [[43411, 33092], [-59, -81], [-47, -25], [-35, -75]], [[43270, 32911], [-55, 54], [-27, -55]], [[43188, 32910], [-34, 32]], [[43154, 32942], [39, 71], [-19, 68], [48, 123]], [[48518, 20236], [55, -9], [9, -39]], [[48582, 20188], [-10, -14]], [[48572, 20174], [-33, 3]], [[48539, 20177], [-12, -1]], [[39266, 35645], [0, 108], [10, 108]], [[39276, 35861], [107, 1]], [[39383, 35862], [-6, -51], [-25, -42], [-20, -88], [8, -36]], [[41641, 31572], [137, 1]], [[41778, 31573], [22, 0]], [[41800, 31573], [43, -1]], [[41843, 31572], [92, 0], [47, 12]], [[41982, 31584], [-44, -28], [-25, -37]], [[41913, 31519], [-89, -67], [-48, -2]], [[41776, 31450], [-61, 30], [-71, -14], [-34, 6]], [[41799, 30223], [-29, 46]], [[41770, 30269], [33, 32], [0, 32], [39, 122]], [[41842, 30455], [33, -50], [95, -67]], [[41970, 30338], [91, -38]], [[42061, 30300], [-60, -104], [-44, -33], [-27, -67]], [[32301, 36255], [-446, -2]], [[31855, 36253], [-2, 24], [-1, 352], [4, 132]], [[31856, 36761], [17, 0]], [[32300, 36760], [1, -264]], [[39276, 35861], [-53, 1]], [[39223, 35862], [0, 215]], [[39223, 36077], [52, 0]], [[39275, 36077], [135, 0]], [[39410, 36077], [14, -77], [-3, -54], [-38, -84]], [[46202, 34928], [-162, 2]], [[46040, 34930], [-218, 3]], [[45822, 34933], [-19, 1]], [[45803, 34934], [-9, 33], [17, 31], [15, 104]], [[35098, 27285], [-45, 26], [-46, 66], [-14, 37]], [[34993, 27414], [-9, 16], [45, 37], [35, 49]], [[35064, 27516], [27, 27]], [[35091, 27543], [145, -173]], [[35213, 33461], [0, -54]], [[35213, 33407], [0, -161]], [[35213, 33246], [-244, 0]], [[34969, 33246], [-1, 161]], [[34968, 33407], [0, 54]], [[27252, 31087], [-38, -9], [-236, 0], [-258, 1], [-332, 1]], [[26388, 31080], [-127, 1], [-36, -6]], [[26225, 31075], [11, 66], [-23, 70], [-40, 167], [11, 30], [-64, 98], [-18, 44], [-31, 115]], [[26071, 31665], [-13, 55], [13, 33], [-27, 85], [-35, 43], [-66, 29], [-27, 115], [-31, 9], [6, 74]], [[25891, 32108], [248, 0], [162, 2]], [[26301, 32110], [290, -305]], [[40160, 29409], [1, -207]], [[40161, 29202], [-160, -1]], [[40001, 29201], [-36, 37], [4, 23], [-29, 49], [-1, 56]], [[39939, 29366], [11, 51]], [[39950, 29417], [138, 1]], [[36282, 35836], [0, -152]], [[36282, 35684], [-206, 0]], [[36076, 35684], [0, 151]], [[41418, 31823], [79, 9], [31, -25]], [[41528, 31807], [-4, -51]], [[41524, 31756], [-40, -21], [-45, -2], [-24, -49], [-29, -22], [-116, -46]], [[41270, 31616], [-17, 42], [4, 100]], [[41257, 31758], [101, 45], [33, 33]], [[35591, 33084], [0, -107]], [[35591, 32977], [-170, 0]], [[35421, 32977], [-31, 58], [0, 104]], [[35390, 33139], [0, 54]], [[44567, 34093], [157, -143]], [[44724, 33950], [-73, -126]], [[44651, 33824], [-77, -65]], [[44574, 33759], [-121, 111]], [[44453, 33870], [-125, 111]], [[44328, 33981], [117, 24], [46, 27], [31, 37], [45, 24]], [[41913, 31519], [14, -21], [-40, -68], [48, -61]], [[41935, 31369], [-43, -89], [-21, -11]], [[41871, 31269], [-29, 28], [-32, 5]], [[41810, 31302], [-15, 47], [-37, 12]], [[41758, 31361], [18, 89]], [[35769, 36533], [213, 0], [4, -54]], [[35986, 36479], [0, -215]], [[35986, 36264], [-205, 1]], [[35781, 36265], [-6, 0]], [[35775, 36265], [-1, 214], [-5, 54]], [[43434, 31755], [-68, -119]], [[43366, 31636], [-10, 99], [-45, 76], [-42, 3], [-15, 22]], [[43254, 31836], [35, 113]], [[43289, 31949], [62, 27]], [[43351, 31976], [-4, -27], [31, -29], [32, -5], [45, -43]], [[41758, 31361], [-42, -60], [-40, -4], [-29, -32]], [[41647, 31265], [-23, 31], [8, 163], [-32, 0]], [[42061, 30300], [40, -35], [56, 11]], [[42157, 30276], [1, -25], [46, -133]], [[42204, 30118], [-10, -25]], [[42194, 30093], [-28, -13], [-30, -62]], [[44227, 31910], [1, -53], [36, -17], [44, -61]], [[44308, 31779], [-21, -9], [-159, -167]], [[44128, 31603], [-5, 2]], [[44123, 31605], [-6, 37]], [[44117, 31642], [47, 119], [-15, 59]], [[25189, 36492], [6, 159]], [[25195, 36651], [-36, 27], [-15, 53], [-3, 72]], [[25141, 36803], [307, 0]], [[38127, 31777], [183, -3]], [[38310, 31774], [3, -33], [40, -90], [5, -56]], [[38358, 31595], [-32, -82]], [[38326, 31513], [-155, 0]], [[38171, 31513], [-7, 112], [-15, 0], [0, 81], [-15, 0]], [[38134, 31706], [-7, 71]], [[37681, 27808], [94, 0]], [[37775, 27808], [76, -108], [74, 1]], [[37925, 27701], [53, -1]], [[37978, 27700], [-37, -160]], [[37941, 27540], [-52, -23]], [[37889, 27517], [-19, 21], [-44, 0]], [[37826, 27538], [-9, 26], [-32, 1], [-20, 85], [-23, 1], [-26, 42], [-8, 82], [-27, 33]], [[38117, 29413], [19, 0], [0, -108]], [[38136, 29305], [-45, -53], [29, -50], [-21, -16], [8, -41]], [[43807, 32693], [-44, 2], [-20, 46], [-41, 60], [2, 39], [-28, 29]], [[43591, 32974], [55, 70]], [[43646, 33044], [19, 22]], [[43665, 33066], [133, -44]], [[43798, 33022], [-26, -68], [80, -171]], [[42524, 31878], [-6, 18], [29, 9]], [[25356, 33127], [105, 1], [4, -18], [88, 0]], [[25553, 33110], [104, -1], [0, -58], [-48, -22], [7, -136], [24, -3], [10, -120]], [[25650, 32770], [-112, 110]], [[25538, 32880], [-139, 136]], [[25399, 33016], [-42, 41], [-1, 42]], [[40887, 27477], [-1, -38], [-84, 7], [-58, -50], [-68, -44], [-39, 16], [-34, -43], [-56, 1], [33, -80], [-78, 57]], [[40502, 27303], [50, 60], [39, 19], [-15, 59], [13, 43]], [[40589, 27484], [7, 26], [202, -2]], [[39624, 33163], [81, -2]], [[39705, 33161], [162, -2]], [[39867, 33159], [0, -107]], [[39867, 33052], [0, -54]], [[39867, 32998], [-97, 0]], [[39770, 32998], [-84, 0]], [[39686, 32998], [-62, 2]], [[39624, 33000], [0, 163]], [[40326, 33337], [-2, 151]], [[40324, 33488], [16, 55]], [[40468, 33543], [2, -161]], [[39266, 35645], [-155, 2]], [[39111, 35647], [0, 108], [8, 107]], [[39119, 35862], [104, 0]], [[37180, 32121], [3, 147], [-4, 107]], [[37179, 32375], [102, -2], [31, -56], [61, 36]], [[37373, 32353], [-2, -90], [72, -40], [0, -27]], [[37443, 32196], [-2, -82]], [[37441, 32114], [-189, 6]], [[42551, 34594], [172, -6], [54, 6]], [[42777, 34594], [0, -196]], [[42551, 34369], [0, 5]], [[38258, 31203], [38, 0]], [[38296, 31203], [1, -183]], [[38297, 31020], [-326, 5]], [[37971, 31025], [2, 109]], [[37973, 31134], [69, -2], [9, 53]], [[38051, 31185], [203, -2], [4, 20]], [[37144, 33097], [-49, -57], [-1, -27]], [[37094, 33013], [-194, 9]], [[36900, 33022], [8, 216]], [[36908, 33238], [63, -27], [0, 37], [48, 14], [9, 43], [42, -11]], [[37070, 33294], [14, -30], [50, -32], [23, -38], [24, 3]], [[39132, 32597], [96, 1]], [[39228, 32598], [69, 2]], [[38795, 33705], [-2, 144]], [[27140, 33157], [-1, 187], [29, 29], [12, 51], [-8, 83], [16, 77], [-17, 87], [0, 82]], [[27171, 33753], [406, -3], [373, -3]], [[27950, 33747], [0, -130]], [[27950, 33617], [-1, -225]], [[27948, 32858], [-414, 0]], [[37414, 36478], [32, -54]], [[37446, 36424], [-82, 1], [0, -54], [-53, 0], [0, -107]], [[37098, 36265], [1, 170]], [[37099, 36435], [52, 44], [55, 0], [0, 53], [26, 0], [0, 53]], [[41182, 30939], [77, 0], [18, 27], [58, 26], [25, 25]], [[41360, 31017], [31, -15], [-1, -97]], [[41390, 30905], [-23, 6], [-55, -60], [11, -59]], [[41323, 30792], [-68, -19], [-80, -13]], [[41175, 30760], [42, 81], [-96, 28], [-65, 3]], [[41882, 26562], [0, -102]], [[41882, 26460], [-22, -33], [0, -54]], [[41860, 26373], [-237, 1]], [[41556, 26373], [18, 29], [37, 132]], [[41771, 26860], [155, -1]], [[41925, 26480], [-43, -20]], [[45641, 34051], [-59, -17], [-83, 4]], [[45499, 34038], [21, 101], [-29, 29]], [[45491, 34168], [24, 44], [94, 32]], [[35177, 38143], [-111, 1]], [[34955, 38144], [-11, 53], [1, 214]], [[39532, 32403], [-46, -7], [-25, -60], [-26, -1], [-11, 42]], [[37945, 32566], [-118, 3]], [[37827, 32569], [-1, 303]], [[37826, 32872], [24, 4], [79, -67], [24, 7], [49, -38]], [[38002, 32778], [21, -8], [62, 37], [18, 27]], [[38103, 32834], [-1, -106]], [[38102, 32728], [-20, -162]], [[41990, 31182], [-40, 23], [-19, -24]], [[41931, 31181], [-17, -31]], [[41914, 31150], [-23, 19], [-20, 100]], [[41935, 31369], [7, 13]], [[42016, 33116], [-4, 53]], [[42012, 33169], [14, 21]], [[42026, 33190], [21, 36], [49, 2], [3, 38], [44, 44], [37, -42]], [[42180, 33268], [57, -45]], [[42237, 33223], [-25, -51]], [[42212, 33172], [-55, -31], [-68, -68]], [[38020, 37474], [-273, 1]], [[37747, 37475], [0, 370]], [[37747, 37845], [17, 1], [124, 66], [57, -2], [44, 35], [68, 24], [37, -36], [-20, -46], [-37, -42], [14, -35], [-26, -22], [-7, -48]], [[39270, 31512], [9, 25], [-16, 87]], [[39263, 31624], [96, -9], [-2, -19], [69, 2]], [[39426, 31598], [24, 1]], [[39450, 31599], [21, -167]], [[39471, 31432], [-54, 1], [-46, -25], [-69, 15]], [[39302, 31423], [-5, 5]], [[39297, 31428], [-29, 48], [2, 36]], [[38597, 36295], [-55, 2]], [[38542, 36297], [-1, 162], [-51, 1], [0, 107]], [[38490, 36567], [270, -3]], [[42194, 30093], [28, -62], [32, 0], [58, -55], [24, -79]], [[42336, 29897], [-15, -56], [37, -7], [3, -25], [-38, -19]], [[42323, 29790], [-63, -34]], [[44287, 33185], [46, -47], [-5, -48], [20, -26], [-55, -91], [13, -15], [-31, -44], [14, -34]], [[44220, 32902], [-12, 20], [20, 76], [-13, 49], [-61, 55], [-1, 19]], [[44153, 33121], [63, 68]], [[38908, 36079], [210, -1], [-1, 28]], [[39117, 36106], [106, -1], [0, -28]], [[39119, 35862], [0, 54], [-212, 2]], [[42620, 32579], [-33, 26]], [[42587, 32605], [-75, 56], [-30, 90], [12, 14]], [[42494, 32765], [62, 73], [22, 58]], [[42578, 32896], [28, -7]], [[42606, 32889], [49, -20]], [[42655, 32869], [42, -105], [-27, -84]], [[39408, 36562], [158, -1]], [[39566, 36561], [-48, -102], [-26, -113]], [[39492, 36346], [-97, 0]], [[39395, 36346], [2, 196]], [[39397, 36542], [11, 20]], [[32742, 30432], [225, 0]], [[32967, 30432], [0, -268]], [[32967, 30164], [-39, 0]], [[32928, 30164], [-186, 0]], [[32742, 30164], [0, 268]], [[34304, 31822], [199, 0]], [[34503, 31822], [198, 0]], [[34706, 31491], [0, -40], [-40, -3], [-44, 32], [-36, 10], [-15, 28], [-51, 0]], [[34520, 31518], [0, 57], [-27, 27], [-17, 45], [-34, 42], [-48, 1], [-20, 21]], [[41356, 32511], [8, 48]], [[41364, 32559], [11, 24], [37, 6], [70, -43], [22, 2]], [[45803, 34934], [-189, 6]], [[45609, 34940], [-5, 22], [68, 262]], [[45672, 35224], [38, 146]], [[45710, 35370], [106, -3]], [[45816, 35367], [31, -62], [-10, -53]], [[36999, 33491], [179, -2]], [[37178, 33489], [73, -1], [-1, -54]], [[37250, 33434], [-7, -178]], [[37070, 33294], [-74, 62], [-1, 81]], [[30827, 33812], [175, 2], [0, -83]], [[30125, 33465], [0, 347]], [[32507, 33998], [50, -1], [1, -53]], [[32558, 33944], [-3, -269], [-102, 0]], [[32453, 33675], [-193, 0]], [[32260, 33675], [1, 323], [246, 0]], [[26142, 34907], [1, 172], [-8, 0], [-1, 395], [-6, 0], [1, 268], [-2, 260], [2, 166]], [[26568, 36330], [43, -14], [97, -78]], [[26708, 36238], [-34, -41], [18, -40], [-21, -87]], [[26671, 36070], [-21, -32], [2, -91]], [[26652, 35947], [0, -342], [0, -464], [0, -232]], [[45302, 34040], [-25, -56]], [[45277, 33984], [15, -30]], [[45292, 33954], [-10, -29], [-63, -78], [-40, -16]], [[45179, 33831], [-63, 53], [4, 21]], [[45120, 33905], [15, 27], [55, 46], [-29, 47], [28, 19]], [[34486, 33139], [239, 0]], [[34725, 33139], [2, -162]], [[34727, 32977], [-1, -107]], [[34726, 32870], [-238, 0]], [[38786, 34483], [1, -127]], [[38787, 34356], [-85, 0], [-47, 27]], [[33572, 36605], [-8, -35], [0, -214], [-5, -108], [52, 0]], [[33611, 36248], [-7, -107]], [[33604, 36141], [-411, -1]], [[33193, 36140], [3, 319]], [[33196, 36459], [0, 1]], [[40175, 31593], [81, -4]], [[37641, 30918], [-1, -49], [-24, -12], [0, -48], [-113, 3]], [[37503, 30812], [-62, 0]], [[40166, 28767], [45, -2], [4, -49], [41, 0], [-1, -54], [58, 0]], [[40313, 28662], [-2, -60], [-16, -25], [-21, -77]], [[40274, 28500], [-18, 0]], [[40256, 28500], [-155, 0]], [[40101, 28500], [-1, 107], [-15, 25], [-4, 83]], [[40081, 28715], [85, 1], [0, 51]], [[27036, 36828], [24, -27], [-47, -124], [-4, -60], [21, -39], [-11, -74], [12, -52]], [[26969, 36418], [-47, 0], [-53, 29], [0, 76], [-42, 30], [0, 109], [-120, 1]], [[46531, 34900], [131, 68]], [[46662, 34968], [13, -82], [33, -63], [-23, -50], [46, 7], [15, -19], [19, -81]], [[46765, 34680], [-38, -12], [0, -43], [-48, -28], [-35, 2]], [[46644, 34599], [-5, 100], [-33, 19]], [[46606, 34718], [-48, 53]], [[46558, 34771], [-27, 72], [0, 57]], [[44214, 34081], [140, 72]], [[44429, 34261], [78, -30], [13, 7]], [[44520, 34238], [49, -60], [56, -50]], [[44625, 34128], [-58, -35]], [[44328, 33981], [-42, 36]], [[34373, 38518], [0, -107], [14, -53]], [[34387, 38358], [0, -160]], [[34387, 38198], [-94, 0]], [[34037, 38519], [112, 0]], [[42143, 30847], [43, -55], [16, -43], [-3, -60]], [[42199, 30689], [-17, 1]], [[42182, 30690], [-175, 9]], [[42007, 30699], [29, 109], [4, 138]], [[42040, 30946], [68, -10]], [[36938, 30180], [0, 36]], [[37206, 30281], [47, -18], [7, -37]], [[37260, 30226], [-4, -163]], [[37256, 30063], [-91, 4]], [[44011, 33276], [-1, -1]], [[44010, 33275], [-126, -82]], [[43884, 33193], [-48, 53], [-47, 11]], [[43789, 33257], [26, 90], [20, 93], [44, 62]], [[43879, 33502], [5, 0]], [[43884, 33502], [105, 0]], [[38026, 33850], [200, -5]], [[38335, 33788], [-67, -37]], [[38268, 33751], [-35, -62], [-35, -22]], [[26042, 32376], [259, -266]], [[25891, 32108], [-33, 8], [-29, 46], [-46, 22]], [[25783, 32184], [-19, 61], [-26, 31], [-63, 3]], [[25675, 32279], [30, 40], [0, 50], [-47, 38], [2, 48], [-20, 38], [-98, 44], [-28, 105]], [[25514, 32642], [8, 41], [26, 10], [7, 55], [-32, 64], [15, 68]], [[25650, 32770], [74, -74]], [[25348, 32707], [59, -47], [57, 37], [50, -55]], [[25675, 32279], [-17, 24]], [[25188, 32214], [-115, 122]], [[31290, 28737], [-105, -1], [-8, -83], [47, -51]], [[31224, 28602], [-335, 0]], [[30889, 28602], [-1, 508]], [[30888, 29110], [0, 108], [180, -1], [-1, 27], [239, 142]], [[41121, 28615], [-59, 27]], [[41062, 28642], [7, 38]], [[41069, 28680], [-17, 75]], [[41052, 28755], [153, -2]], [[41205, 28753], [-1, -107]], [[41204, 28646], [0, -31], [-83, 0]], [[36956, 29628], [109, 5]], [[37065, 29633], [-1, -45], [61, -2]], [[37125, 29586], [-4, -222]], [[37121, 29364], [-109, 0]], [[37012, 29364], [-110, 1]], [[36902, 29365], [4, 149], [17, -1], [33, 115]], [[34735, 38144], [-14, 53]], [[34721, 38197], [-1, 161]], [[34720, 38358], [0, 53]], [[24546, 32481], [-53, 0], [-61, -19], [-62, 15]], [[24370, 32477], [-15, 28], [-42, 22]], [[24441, 32757], [40, -15], [31, 27], [107, -6], [0, -129], [44, -1]], [[37723, 35577], [187, -1]], [[37910, 35576], [8, -57]], [[37918, 35519], [6, -51], [19, -14], [21, -90], [68, -38]], [[37929, 35308], [-207, -1]], [[36190, 29594], [86, -4], [52, -12]], [[36328, 29578], [-5, -235]], [[36323, 29343], [-47, 54], [-50, 0], [-36, -22]], [[43444, 33376], [53, -31]], [[43497, 33345], [3, -70], [-34, -59], [6, -55], [-45, -49]], [[43060, 30908], [-4, -30], [41, -77], [36, -24]], [[43133, 30777], [-17, -24], [55, -47]], [[42945, 30689], [-36, 54], [-31, 161]], [[34726, 32870], [3, -108]], [[34729, 32762], [0, -161]], [[34729, 32601], [-188, 0]], [[34541, 32601], [-52, 0], [0, 54]], [[32792, 37767], [2, -215]], [[32794, 37552], [-31, 0]], [[32305, 37551], [0, 161]], [[32305, 37712], [107, 0], [0, 55], [83, 0]], [[32495, 37767], [165, 0]], [[37536, 28907], [13, 64], [40, 77]], [[37589, 29048], [47, 41], [29, -7], [44, 66]], [[37709, 29148], [18, -53], [66, 0]], [[37787, 29068], [-12, -31], [4, -51]], [[37779, 28986], [-65, 0], [-58, -54], [-7, -48], [-52, -55]], [[34607, 34964], [1, -215]], [[34608, 34749], [-198, 0]], [[34406, 34749], [0, 214]], [[37556, 27729], [52, 30], [25, -14], [51, 4], [-27, 60]], [[37657, 27809], [24, -1]], [[37826, 27538], [-51, -1], [-50, -15], [-25, 46], [-47, 0], [-23, -40], [-57, 18]], [[37781, 27474], [95, 10]], [[37876, 27484], [31, -78], [39, -27], [-3, -63]], [[37943, 27316], [-125, 52], [6, 31], [-43, 75]], [[39323, 28928], [-213, -2]], [[39110, 28926], [14, 167]], [[39142, 29309], [3, 39]], [[39145, 29348], [73, 3]], [[39452, 30160], [46, -1]], [[39498, 30159], [183, -4]], [[39681, 30155], [-1, -189], [-17, 0]], [[39663, 29966], [-211, 6]], [[38661, 28387], [23, 0]], [[38684, 28387], [110, 0]], [[38798, 28063], [-89, 0]], [[40877, 35388], [89, 1]], [[40966, 35389], [8, -218]], [[40774, 35170], [-1, 214]], [[35832, 32977], [0, 141], [-40, 17]], [[35794, 33191], [194, 0]], [[35988, 33191], [-3, -94], [42, -5]], [[36027, 33092], [0, -115]], [[34954, 35834], [-2, 218]], [[34952, 36052], [51, -1]], [[36778, 38014], [0, 153], [-55, 15], [-54, 31], [-1, 35], [-39, 44], [-91, -40], [-39, 18]], [[37080, 38546], [9, -106], [-4, -201], [6, -227]], [[32685, 32818], [0, -54], [-144, -5]], [[32302, 32762], [-1, 214]], [[32301, 32976], [146, -1], [3, 432]], [[32450, 33407], [3, 0]], [[32453, 33407], [240, -1]], [[32693, 33406], [0, -270], [-3, -56]], [[44570, 35622], [63, 6], [81, -78], [4, -66], [43, 1], [3, -43], [83, 5]], [[44826, 35368], [-58, 1], [-201, -13]], [[44567, 35356], [-2, 41]], [[44565, 35397], [-10, 182], [-33, 61]], [[45661, 36026], [7, -35]], [[45715, 35721], [-9, -229]], [[45706, 35492], [-157, -2]], [[40127, 33270], [-72, -2]], [[40055, 33268], [0, 180]], [[40055, 33448], [130, 3]], [[40185, 33451], [0, -179]], [[33163, 29328], [-58, 0]], [[32937, 29328], [0, 265]], [[32937, 29593], [226, 1]], [[32597, 31044], [-2, -211], [-112, -5]], [[32164, 31069], [7, 98], [-5, 66], [-31, 82], [0, 25]], [[39950, 29417], [-5, 47], [20, 38], [44, 35], [-10, 58]], [[39999, 29595], [83, 96], [19, 81]], [[40101, 29772], [41, -2], [24, -55], [88, 0], [-1, -18]], [[40253, 29697], [-24, -36]], [[38837, 37048], [54, 0], [-1, -53], [108, 0]], [[38998, 36995], [-1, -107], [17, -54]], [[39014, 36834], [-149, 0], [1, -55]], [[38866, 36779], [-106, 0]], [[38760, 36779], [0, 55], [-88, 1]], [[38672, 36835], [1, 214]], [[34069, 29869], [-23, 0]], [[34046, 29869], [1, 243], [21, -3]], [[34068, 30109], [98, -81], [52, 4], [35, -22], [43, 13]], [[34296, 30023], [0, -155]], [[34296, 29868], [0, -62]], [[34296, 29806], [-29, 37], [-26, -4], [-41, 25], [-25, -13], [-36, 18], [-70, 0]], [[36282, 35255], [-206, 1]], [[36076, 35256], [0, 215]], [[36076, 35471], [206, 0]], [[35862, 34325], [-1, 65]], [[35861, 34390], [216, 1]], [[36077, 34391], [0, -160]], [[36077, 34231], [-187, 0]], [[34240, 27271], [-179, -2]], [[41362, 33949], [100, -7]], [[41462, 33942], [42, -11], [-3, -35], [81, -6]], [[41582, 33890], [-3, -45]], [[41579, 33845], [-5, -93]], [[41574, 33752], [-177, 11]], [[41397, 33763], [-1, 62], [-33, 0], [-1, 124]], [[42606, 31188], [-28, 49], [-17, -3]], [[42561, 31234], [-4, 39], [29, 19], [-6, 62]], [[42580, 31354], [1, 13]], [[42762, 31364], [-4, -152]], [[25355, 33159], [54, 0], [16, 22], [57, 31]], [[25482, 33212], [28, -34], [37, 0], [6, -68]], [[36575, 34603], [-17, 60], [0, 162]], [[36558, 34825], [51, 0]], [[36609, 34825], [151, 0]], [[36760, 34825], [1, -163], [10, -54]], [[33360, 30971], [0, 2]], [[33360, 30973], [234, 1]], [[33594, 30974], [0, -4]], [[33594, 30970], [0, -270]], [[40842, 28716], [5, 103]], [[40847, 28819], [1, 20]], [[40848, 28839], [107, -5], [1, 44]], [[41023, 28842], [29, -87]], [[41069, 28680], [-181, 4], [0, -26]], [[38327, 32017], [-2, -141], [49, 0], [0, -28]], [[38374, 31848], [-64, -74]], [[38127, 31777], [-44, 77]], [[41474, 30266], [60, 81], [4, 6], [2, 2]], [[41540, 30355], [23, 31], [131, 90]], [[41694, 30476], [15, -26], [-6, -69], [32, -75], [35, -37]], [[41770, 30269], [-187, -168]], [[41583, 30101], [-14, 48]], [[30791, 35177], [378, -2], [252, 2]], [[31422, 35177], [0, -427], [2, -214], [-110, 0], [0, -245]], [[31314, 34291], [-233, 2]], [[31081, 34293], [-201, 1]], [[28590, 37489], [48, -53], [28, -161], [92, -52]], [[28758, 37223], [-141, -1], [-15, -38], [-60, -37]], [[28542, 37147], [-32, 76], [-104, 37], [-38, 32]], [[28368, 37292], [70, 47], [32, 69], [32, 0], [1, 54], [42, 0], [45, 27]], [[38493, 35221], [190, -3]], [[38683, 35218], [2, -184]], [[38685, 35034], [-127, -2]], [[38558, 35032], [-101, -1]], [[38457, 35031], [-3, 190]], [[41472, 35622], [6, -161]], [[41478, 35461], [-52, -3]], [[41426, 35458], [-153, -5]], [[41273, 35453], [-3, 211]], [[41270, 35664], [48, 8], [-2, 53], [102, 3]], [[37168, 29097], [-130, 0]], [[37038, 29097], [-4, 81], [-22, 0], [0, 186]], [[37121, 29364], [115, -2]], [[38636, 30071], [1, -182]], [[38637, 29889], [-114, 0], [0, 18], [-69, 1]], [[38452, 30072], [92, -1], [0, 18]], [[48448, 20182], [-32, 19]], [[48430, 20214], [53, -5]], [[40666, 36673], [-1, -214]], [[40665, 36459], [-211, 1]], [[40454, 36460], [1, 185]], [[48369, 20350], [-4, 31], [29, 30]], [[48394, 20411], [20, -33]], [[48414, 20378], [-33, -44]], [[37277, 27802], [14, 58], [0, 194]], [[37291, 28054], [32, -1], [62, 66], [44, -22]], [[37429, 28097], [30, -72]], [[37459, 28025], [17, -50], [0, -54], [-17, -69], [-22, -18], [-69, 0], [-32, -36]], [[37336, 27798], [-60, 0]], [[38771, 30584], [7, 249]], [[38823, 30854], [104, -2]], [[38953, 30741], [-2, -156]], [[30127, 28999], [-1, -456], [0, -219]], [[30126, 28324], [-253, 1], [-361, -1]], [[29512, 28324], [0, 174], [3, 72]], [[29516, 29000], [359, -1], [223, 0]], [[30489, 28652], [3, -50]], [[30492, 28602], [0, -278], [-366, 0]], [[32810, 39004], [-506, 0]], [[32304, 39004], [0, 226]], [[32304, 39230], [483, 0]], [[27694, 30589], [2, -85], [33, -60], [36, -33], [15, -74], [42, -88], [88, -91]], [[27910, 30158], [-12, -32], [-39, -48], [-70, -41], [-9, -17]], [[27780, 30020], [-383, -1], [0, -27], [-429, -1], [-274, 1], [0, -18], [-129, -1], [-65, 18], [-80, 0], [-50, -100]], [[26370, 29891], [-48, 46]], [[26373, 30478], [15, 0], [1, 458], [-1, 144]], [[30418, 31822], [-290, 0]], [[30128, 31822], [1, 300]], [[30129, 32122], [55, 91], [290, 0], [122, 4]], [[38895, 28874], [210, 2]], [[39105, 28876], [-18, -206]], [[39087, 28670], [-65, -22], [-125, -19]], [[36973, 34595], [0, 10]], [[36973, 34605], [199, 1]], [[37172, 34606], [0, -215]], [[37172, 34391], [-99, 0]], [[37073, 34391], [-100, 0]], [[35836, 34533], [-8, -25], [14, -98]], [[35842, 34410], [-175, -1]], [[35667, 34409], [-10, 46], [-53, 80]], [[35604, 34535], [62, -1]], [[35666, 34534], [170, -1]], [[43938, 32967], [14, 9], [14, -2], [0, -15], [-20, -3], [-8, 11]], [[34212, 30418], [0, -134], [-77, -1]], [[34135, 30283], [-48, 45], [-19, -11]], [[34068, 30317], [-1, 114]], [[34067, 30431], [0, 176]], [[34067, 30607], [49, 0]], [[36648, 32217], [4, 162]], [[36652, 32379], [112, -5], [-2, -36], [80, -3]], [[36842, 32335], [8, -55], [-3, -104]], [[36847, 32176], [-200, 6]], [[41314, 29996], [44, -26]], [[41358, 29970], [8, -58], [-15, -35]], [[41351, 29877], [-61, 43], [-41, 8], [-12, 22]], [[41237, 29950], [77, 46]], [[27668, 36883], [-17, -29], [0, -166], [-35, -45]], [[27406, 36353], [-71, -59], [-27, -5], [-254, 1], [-4, -55], [-44, 2]], [[34296, 29806], [1, -206]], [[34297, 29600], [-226, -1]], [[34071, 29599], [-2, 270]], [[37162, 29853], [135, -5]], [[37297, 29848], [-1, -43], [-56, -78], [-19, -46], [23, -62], [23, 2], [37, -41]], [[37304, 29580], [-39, -6], [-140, 12]], [[37065, 29633], [5, 200]], [[40850, 33625], [-26, -1]], [[40824, 33624], [-143, -1]], [[40681, 33623], [1, 55]], [[40682, 33678], [3, 188]], [[40685, 33866], [0, 26]], [[40685, 33892], [161, 1]], [[40846, 33893], [1, -97]], [[35483, 31822], [-1, -134], [-60, -19], [-19, -40], [-57, -1], [3, -56]], [[35349, 31572], [-176, 0]], [[35173, 31572], [-1, 0]], [[35172, 31572], [0, 250]], [[35172, 31822], [137, 0]], [[33427, 37053], [491, 0]], [[33954, 36913], [-8, -54], [-21, -37], [5, -51], [-47, -16], [8, -57]], [[33755, 36620], [-49, 7], [-84, -36], [-50, 14]], [[23893, 37242], [0, -43], [-54, 0], [54, -81], [-43, -53], [-2, -36]], [[23848, 37029], [1, -134], [-140, 0], [0, -87], [26, 0]], [[23735, 36808], [0, -20]], [[23735, 36788], [-122, 1]], [[23613, 36789], [13, 62], [16, 319], [-14, 74]], [[40665, 29669], [105, -6]], [[40819, 29512], [-3, -22]], [[40660, 29471], [-34, 21]], [[40626, 29492], [-33, 124]], [[38540, 28765], [33, -21], [0, -143]], [[38573, 28601], [-44, -4]], [[38529, 28597], [-96, -8]], [[38433, 28589], [-64, -6]], [[38369, 28583], [-5, 65], [-16, 29], [-26, 90]], [[38322, 28767], [218, -2]], [[38908, 28064], [0, -109]], [[38908, 27955], [0, -36]], [[38908, 27919], [-155, 0], [-44, -18]], [[24669, 32498], [0, -65], [10, -41], [0, -65]], [[24679, 32327], [-176, -61], [-37, 49], [-41, 4], [-54, 61], [-21, -4]], [[24350, 32376], [-44, 25], [19, 44], [30, 2], [15, 30]], [[39062, 31299], [139, -4], [0, -16]], [[39201, 31279], [-2, -169], [17, 0]], [[39216, 31110], [-1, -18]], [[39215, 31092], [-170, 5], [-16, -22]], [[39029, 31075], [-44, 1]], [[38985, 31076], [7, 168]], [[38992, 31244], [16, 34], [53, -2], [1, 23]], [[43979, 32155], [28, -30]], [[44007, 32125], [-32, -67]], [[43975, 32058], [-43, -2], [-32, 43]], [[43824, 32166], [-26, 5]], [[39705, 33161], [0, 108], [49, -1], [1, 81]], [[39755, 33349], [111, -2]], [[39866, 33347], [23, 0], [1, -76]], [[39890, 33271], [-24, -6], [1, -106]], [[45398, 34490], [191, 28]], [[45589, 34518], [-3, -44], [30, -51], [-107, -69], [31, -71]], [[45540, 34283], [-44, -45], [-4, -22]], [[45492, 34216], [-66, 25]], [[45426, 34241], [10, 49]], [[45436, 34290], [2, 91], [-35, 64], [-5, 45]], [[38358, 32191], [125, 1]], [[38483, 32192], [-3, -292]], [[38480, 31900], [-40, 1], [0, -45], [-66, -8]], [[41938, 32139], [31, 22]], [[41969, 32161], [17, -26], [38, -7], [33, 18], [31, -23], [58, -7], [60, -31]], [[42206, 32085], [-22, -54]], [[42184, 32031], [-33, -39], [-53, -42], [-52, -3], [-27, 22]], [[42562, 33347], [98, -24], [31, -23]], [[42691, 33300], [-2, -71], [16, -22]], [[42705, 33207], [-26, -44], [-1, -36]], [[42678, 33127], [-31, -6]], [[42647, 33121], [-125, 40], [-4, -1]], [[42518, 33160], [29, 18], [-33, 56], [26, 40], [0, 48]], [[43410, 31219], [-59, 32], [-30, -2]], [[43301, 31540], [28, 0]], [[43329, 31540], [120, 0]], [[43449, 31540], [-23, -54], [1, -168], [5, -5]], [[46027, 34450], [-35, 10], [-33, -17], [-26, 14], [-56, -15], [-35, 5], [-63, -51]], [[45779, 34396], [-1, 37], [18, 45], [-65, 79], [-40, 24]], [[45691, 34581], [-4, 23], [71, 5], [75, 78]], [[45833, 34687], [16, -51], [85, 13]], [[35213, 34965], [-203, 0]], [[35010, 34965], [0, 214]], [[35010, 35179], [152, 1]], [[35162, 35180], [52, 0], [0, -54]], [[41372, 29097], [38, -100]], [[41410, 28997], [-15, 18], [-57, -68], [-18, -43]], [[41320, 28904], [-66, 80]], [[41254, 28984], [0, 31]], [[41254, 29015], [118, 82]], [[42007, 29297], [-39, 28], [-43, -19], [-54, -4], [-28, -64]], [[41843, 29238], [-24, -5], [-51, 19]], [[41768, 29252], [20, 63], [-9, 77], [26, 102], [-15, 24]], [[41790, 29518], [40, 18], [36, -41], [49, -2], [56, 13]], [[42012, 29476], [23, -51], [39, -13]], [[42074, 29412], [32, -31]], [[38791, 32193], [49, -2]], [[38840, 32191], [-2, -165]], [[38838, 32026], [-88, 3]], [[38750, 32029], [-104, 0]], [[38646, 32029], [28, 37], [-44, 106]], [[38630, 32172], [1, 4]], [[38631, 32176], [30, 17], [130, 0]], [[39186, 34288], [-2, 74]], [[39184, 34362], [3, 54]], [[39187, 34416], [101, 3], [-1, 53], [212, 4]], [[34500, 37341], [-310, 1]], [[34190, 37342], [-71, 0]], [[35113, 34497], [0, 39], [-46, 0]], [[35067, 34536], [0, 81], [-55, 0]], [[35012, 34617], [0, 133]], [[35012, 34750], [201, 1]], [[35213, 34751], [51, 0]], [[35264, 34751], [-1, -222]], [[35263, 34529], [-50, 8]], [[43515, 31370], [13, 24], [-21, 147]], [[43507, 31541], [121, 0]], [[43628, 31541], [64, 0]], [[48769, 20205], [11, -23]], [[48780, 20182], [-3, -30]], [[40758, 29066], [84, 17]], [[40842, 29083], [22, -91]], [[40864, 28992], [1, -73], [-17, -40], [0, -40]], [[40847, 28819], [-41, 0], [-17, 34], [-37, 27]], [[40752, 28880], [-4, 0]], [[35304, 35578], [103, 0]], [[35407, 35578], [51, 0]], [[35458, 35578], [0, -234]], [[35458, 35344], [-91, 35]], [[35367, 35379], [-63, 24]], [[35304, 35403], [0, 175]], [[44806, 32719], [-153, 5], [-4, 62]], [[44647, 32832], [-7, 120]], [[44640, 32952], [73, 4], [67, 68], [39, 0]], [[44819, 33024], [3, -20], [50, -66], [47, -22], [14, -198]], [[41174, 29678], [64, -57]], [[41238, 29621], [-5, -162]], [[41233, 29459], [-118, -24]], [[41115, 29435], [-2, 29]], [[41113, 29464], [3, 39], [-21, 78]], [[41095, 29581], [18, 42], [61, 55]], [[37250, 33434], [170, -3]], [[37420, 33431], [-4, -159]], [[37416, 33272], [-2, -63]], [[35580, 32197], [0, -80]], [[35307, 32116], [0, 270]], [[35307, 32386], [0, 108]], [[35443, 32493], [139, 0]], [[34809, 27525], [54, 196]], [[34863, 27721], [201, -205]], [[34993, 27414], [-54, -66]], [[34588, 27039], [0, -99]], [[34588, 26940], [-266, 0]], [[34322, 26940], [1, 331]], [[40148, 36030], [-171, 2]], [[39977, 36032], [-14, 94], [-23, 54], [56, 74]], [[39996, 36254], [149, -7]], [[42399, 29144], [18, 27]], [[42417, 29171], [62, -30], [18, -38], [40, -18], [33, -49]], [[42570, 29036], [20, -60], [-16, -43], [-66, -36], [-45, -62], [-68, -50]], [[42395, 28785], [-36, 33], [-21, 49], [7, 37], [31, 49], [35, 21], [9, 65], [-5, 63], [-16, 42]], [[35200, 35631], [104, 0], [0, -53]], [[35304, 35403], [-25, 28], [-87, 13], [-29, -10]], [[35163, 35434], [-66, 1]], [[35097, 35435], [-1, 196]], [[38955, 35213], [-71, 2]], [[38884, 35215], [-186, 3]], [[38698, 35218], [-1, 213]], [[38697, 35431], [155, 1]], [[38852, 35432], [103, -3]], [[41540, 30355], [-6, 63], [-18, 7], [-3, 123], [-16, 28], [18, 46]], [[41515, 30622], [58, 8]], [[41573, 30630], [61, -2], [57, -104], [3, -48]], [[26238, 37379], [-9, 0]], [[26229, 37379], [3, 128], [-55, 0], [1, 54], [-55, 0], [0, 160], [6, 24]], [[26129, 37745], [5, -3]], [[26134, 37742], [19, -20], [96, 22], [44, 20]], [[26293, 37764], [-5, -95], [55, 0], [27, -82], [27, 0], [4, -209]], [[40001, 33941], [57, -36]], [[40058, 33905], [1, -97]], [[40059, 33786], [-198, -1]], [[38747, 32898], [50, -4]], [[38797, 32894], [-2, -144]], [[38550, 32844], [49, 1], [-1, 54]], [[28000, 35381], [73, 0], [22, 53], [-1, 216]], [[28200, 35322], [-37, -7], [-42, -75], [-37, -8], [-22, 20], [-62, -12]], [[44423, 34626], [-27, -102]], [[44396, 34524], [-12, -41]], [[44324, 34462], [-63, 18], [-68, 62], [-28, 114]], [[38322, 28767], [-7, 75], [18, 49], [61, 92]], [[38394, 28983], [20, 48], [25, 8], [44, 57], [33, 2]], [[38516, 29098], [24, -144], [0, -81]], [[38540, 28873], [0, -108]], [[33655, 30164], [187, 0]], [[33842, 30164], [-1, -295]], [[33841, 29869], [-227, -1]], [[24429, 35798], [-266, -2], [0, 67], [-159, -3], [-13, 40], [0, 108], [-92, 0], [-79, 31], [-39, 56], [-37, 14], [-54, 1], [-52, -51], [-92, 1]], [[23546, 36060], [16, 148], [3, 106]], [[23565, 36314], [148, 5]], [[24565, 36306], [13, -8], [9, -83], [-39, -93], [-50, -64], [2, -97], [-15, -55]], [[34754, 29869], [-231, -1]], [[34523, 29868], [0, 234]], [[34523, 30102], [29, -28], [86, -21], [34, 15]], [[40875, 35599], [0, 7]], [[40875, 35606], [191, 2]], [[41066, 35608], [3, -217]], [[41069, 35391], [-103, -2]], [[34968, 33407], [-242, 0]], [[34726, 33407], [-8, 1]], [[34718, 33408], [0, 268]], [[34969, 33246], [0, -53]], [[34969, 33193], [-244, 0]], [[34725, 33193], [1, 214]], [[41844, 27590], [41, 0]], [[41885, 27590], [0, -262]], [[41885, 27328], [-3, -1]], [[41882, 27327], [-34, 73], [-64, 5], [-51, 27], [-9, 22]], [[41724, 27454], [46, 19], [72, 96], [2, 21]], [[38541, 28120], [-47, 0]], [[38494, 28120], [0, 45], [-37, 0], [-8, 36], [-29, -1], [-12, 27], [-3, 99]], [[38405, 28326], [0, 36], [35, -2]], [[38440, 28360], [59, -1], [0, 28], [74, -1]], [[39114, 27955], [-206, 0]], [[38930, 28117], [178, 1]], [[38142, 35223], [95, -1]], [[38457, 35031], [-173, -2]], [[40224, 33640], [125, 1]], [[40324, 33488], [-139, 0]], [[40185, 33488], [-1, 106], [7, 35]], [[44123, 31605], [-20, 10], [14, 27]], [[33071, 28521], [0, 269]], [[33294, 28790], [0, -269]], [[33769, 32603], [-182, 0]], [[33587, 32603], [-10, 0]], [[33577, 32603], [-1, 269]], [[33576, 32872], [135, 0]], [[33711, 32872], [57, 0]], [[29434, 38253], [0, -36], [-56, 0], [-2, -162], [55, 0], [4, -160], [-7, -8]], [[28820, 38314], [55, -7], [0, 66], [111, 0], [0, 53], [113, 1]], [[43255, 32696], [1, 27], [19, 10], [12, -32], [-32, -5]], [[38985, 32355], [0, -163]], [[38985, 32192], [-145, -1]], [[38791, 32193], [1, 162]], [[28343, 38363], [-141, 3]], [[28202, 38366], [-73, 0]], [[28129, 38366], [16, 51], [-18, 23], [-14, 109], [-33, 35], [-37, 14], [-23, 47], [-63, 0], [-21, -18], [17, -37], [-197, 0], [6, -107], [-55, 0]], [[27707, 38483], [0, 53], [-168, -1], [-9, 89]], [[27530, 38624], [-4, 129], [75, 0], [-1, 214], [-17, 53], [86, 13], [19, 61], [-37, 18], [19, 34], [-17, 85]], [[27653, 39231], [287, -1]], [[27940, 39230], [23, -46], [-6, -28], [32, -38], [60, 19], [50, -80], [-20, -65], [123, -41], [-6, -54], [55, -22], [3, -70]], [[28399, 38694], [57, -90], [-44, -19]], [[48572, 20174], [8, -24], [-10, -70]], [[48570, 20080], [-27, 12]], [[48543, 20092], [-4, 85]], [[33403, 32062], [190, 0]], [[33593, 32062], [9, 0]], [[33602, 32062], [1, -241]], [[33603, 31821], [-213, -1]], [[33390, 31820], [-1, 242]], [[40910, 32481], [-15, -41], [-7, -67]], [[40845, 32346], [-19, 57], [-78, 39]], [[40748, 32442], [15, 70]], [[39879, 32343], [-10, -31], [17, -81]], [[39886, 32231], [-80, 47]], [[39806, 32278], [2, 33], [-40, 68], [-30, 18]], [[39738, 32397], [26, 4], [45, 38]], [[34947, 37339], [0, -215]], [[34947, 37124], [-1, -215]], [[34946, 36909], [-320, 3]], [[34626, 36912], [-2, 0]], [[34624, 36912], [-2, 214]], [[34622, 37126], [1, 215]], [[42860, 33199], [-7, -70]], [[42853, 33129], [-30, -88], [-83, -16]], [[42740, 33025], [18, 38], [-37, 17], [-43, 47]], [[42705, 33207], [62, 3], [56, 32]], [[39465, 30590], [-165, 2]], [[39300, 30592], [1, 178], [-19, 60]], [[39282, 30830], [8, 19]], [[39290, 30849], [15, 23], [111, 14]], [[39416, 30886], [31, -6], [31, -46]], [[32586, 34911], [-19, 54], [0, 214]], [[32859, 35181], [11, 0], [3, -215], [19, -54]], [[32892, 34912], [-71, -2], [-219, 1]], [[44106, 34062], [4, 7]], [[44171, 34219], [-36, 55], [10, 63], [-16, 41]], [[44129, 34378], [71, 20]], [[44200, 34398], [-1, -49], [-25, -90], [57, 13], [58, -53]], [[35304, 26608], [-10, 36], [10, 102], [-20, 48], [-44, 6]], [[35384, 26948], [16, -25]], [[35400, 26923], [44, -23], [20, -66], [23, -16], [9, -47], [33, -65]], [[43047, 32281], [22, 1], [-13, -26], [-9, 25]], [[41687, 35631], [8, -41], [30, -60], [-29, -122], [7, -29], [-25, -95], [-35, -36], [-47, 30], [38, 43], [-36, 10]], [[41598, 35331], [-9, 14], [-5, 118], [-106, -2]], [[35451, 35072], [42, 9]], [[35654, 35080], [0, -38]], [[35654, 35042], [4, -31], [35, -34], [-3, -39]], [[35690, 34938], [-16, -20], [-106, 1]], [[46010, 36626], [70, -36], [-29, -55], [47, -31]], [[46098, 36504], [-26, -48]], [[46072, 36456], [-25, -51], [-46, 35], [-25, -50], [-65, 33]], [[45911, 36423], [-11, 62], [-41, 50]], [[42721, 31898], [52, 31], [21, -22], [50, 55]], [[42844, 31962], [73, -44], [37, -69]], [[42954, 31849], [-20, -115]], [[34667, 30928], [-4, 161]], [[34663, 31089], [-2, 218]], [[34661, 31307], [185, 0]], [[34846, 31307], [2, -271]], [[24872, 38364], [51, -48], [32, -53], [61, -21], [52, -34], [65, -15], [55, -36], [128, 1]], [[25316, 38158], [38, -26]], [[25354, 38132], [2, -58], [-18, -33], [34, -80], [0, -52], [17, -26], [-20, -50]], [[25369, 37833], [-234, 1], [1, 54], [-55, 0], [0, 53], [-171, 0], [-28, 49], [-72, 56], [-54, 4]], [[24756, 38050], [28, 28], [-11, 91], [-40, 8], [-13, 47], [36, 52], [91, 84], [25, 4]], [[40506, 33722], [-2, 142]], [[40504, 33864], [181, 2]], [[40682, 33678], [-170, -1]], [[28449, 32131], [0, 27], [94, 0]], [[28543, 32158], [141, -4], [226, -1], [521, 4]], [[29431, 32157], [-42, -122], [-31, -12], [-38, -92], [-40, -40], [-81, -5], [-30, -50], [-16, 10], [-56, -23]], [[29097, 31823], [-256, 0], [-234, 0]], [[28607, 31823], [-157, 0]], [[28450, 31823], [-1, 308]], [[43001, 33177], [8, -9], [75, 12], [-23, -65], [19, -29], [-23, -51]], [[43057, 33035], [-66, 7], [-120, 38], [-18, 49]], [[48634, 20187], [5, -109]], [[48639, 20078], [-69, 2]], [[48582, 20188], [9, 4]], [[38131, 35788], [1, -156]], [[38132, 35632], [-33, -29], [-141, -81], [-40, -3]], [[37910, 35576], [0, 34], [51, 73], [-31, 45], [-31, 14], [-2, 46]], [[40022, 30341], [-14, 20], [8, 75], [-5, 74], [26, 44], [-8, 28]], [[40029, 30582], [194, -1]], [[40336, 30578], [10, -76]], [[37372, 34606], [1, -214]], [[37373, 34392], [-101, -1]], [[37272, 34391], [-100, 0]], [[37172, 34606], [50, 0]], [[36027, 33092], [28, 8], [41, -23], [67, 7]], [[36163, 33084], [1, -49], [56, 11]], [[39612, 32365], [45, -23], [16, -34], [25, 9], [16, 65], [24, 15]], [[39806, 32278], [2, -40], [-57, -26], [-39, -43]], [[39712, 32169], [-97, 37], [-64, 38]], [[39551, 32244], [6, 25], [46, 23], [-15, 36], [9, 49]], [[41156, 32265], [-24, 25], [-56, 1], [-42, 49]], [[41034, 32340], [16, 57]], [[41050, 32397], [53, -17], [33, 9]], [[41136, 32389], [60, -57]], [[36644, 32038], [13, -36]], [[36411, 32031], [0, 16]], [[26002, 36759], [-12, 52], [0, 72], [-48, 0], [-17, 37], [-1, 54], [118, 6], [-1, 46], [101, -1], [35, 27], [0, 134], [22, 0], [9, 79], [32, 27]], [[40955, 29752], [15, -37], [46, -37]], [[41016, 29678], [43, -27], [9, -24]], [[41068, 29627], [-65, -87], [-12, -3]], [[40991, 29537], [-21, 23], [-89, 11]], [[33197, 37344], [-1, 0]], [[33196, 37344], [-410, 0]], [[32786, 37344], [-23, 1]], [[32794, 37552], [186, 1], [0, -47], [217, -1]], [[33197, 37505], [0, -94]], [[44255, 30796], [46, -9], [15, -38], [-58, -119], [-88, -64], [-68, 51]], [[44102, 30617], [8, 44], [-21, 23], [40, 61]], [[38939, 31682], [0, 108]], [[38939, 31790], [143, -3]], [[39082, 31787], [0, -119]], [[39082, 31668], [-2, -153]], [[39080, 31515], [-12, 0]], [[39068, 31515], [-130, 0]], [[38938, 31515], [1, 167]], [[43496, 34122], [-59, -114], [-24, -21], [-10, -84], [-25, -27]], [[43362, 33824], [-102, 5], [-16, 21], [-56, 0]], [[43188, 33850], [36, 69]], [[40819, 30764], [-9, -12], [-65, 1], [-16, -16]], [[40729, 30737], [-35, 44], [-33, 23]], [[40661, 30804], [23, 61], [81, 121]], [[40765, 30986], [16, 0]], [[41069, 35391], [103, 2]], [[41172, 35393], [9, -218]], [[41181, 35175], [-203, -4]], [[31906, 33675], [354, 0]], [[32453, 33675], [0, -161]], [[32453, 33514], [-298, -1], [-215, 1]], [[44735, 34435], [-42, -44]], [[44693, 34391], [-21, 19], [-17, 91], [-63, 38], [-1, 17]], [[44591, 34556], [14, 59], [36, 73]], [[44641, 34688], [112, 0]], [[35585, 30283], [-136, 0]], [[35449, 30283], [0, 54], [-46, 0], [0, 27]], [[35403, 30364], [0, 134]], [[35403, 30498], [1, 68]], [[35404, 30566], [20, -24], [27, 13], [20, -29]], [[35539, 31169], [0, 135]], [[35539, 31304], [140, 1]], [[35679, 31305], [1, -53], [116, 0], [-1, -135]], [[35725, 30982], [-186, 0]], [[36481, 28139], [49, 4], [40, -13], [21, -63], [10, -73], [21, -21], [3, -49], [33, -29], [-18, -33], [9, -36]], [[36649, 27826], [-206, 1]], [[36443, 27827], [-49, 299], [41, 29]], [[40482, 31078], [-1, -4], [8, -13], [0, -1]], [[40489, 31060], [-5, -27], [-69, -95]], [[40415, 30938], [-58, -21]], [[35537, 30874], [1, -39]], [[35404, 30566], [-37, -35], [-55, 13]], [[35312, 30544], [0, 277]], [[35312, 30821], [0, 53]], [[46217, 34927], [1, -43], [-51, -1], [-1, -76], [24, 0], [3, -50], [-36, -24]], [[46083, 34664], [-17, 43], [-12, 87], [-18, 27], [4, 109]], [[30931, 30328], [139, 0], [50, -29], [153, -57]], [[31273, 30242], [0, -111], [213, 0]], [[31486, 30131], [1, -268], [-56, 0], [0, -108], [-140, 6], [1, -112]], [[31292, 29649], [-44, -2], [-283, 1], [-257, 0]], [[41410, 28378], [129, -10], [11, -24], [82, -1]], [[41632, 28343], [0, -55], [-30, 2], [12, -58]], [[41614, 28232], [-131, 0]], [[41483, 28232], [-33, 0]], [[42046, 27576], [0, 43], [-161, -2]], [[41885, 27617], [0, 53]], [[41885, 27670], [95, 120], [40, 41], [50, 32], [35, -38], [19, 24], [25, -33]], [[42149, 27816], [14, -17], [13, -142]], [[35460, 28441], [89, -186]], [[35549, 28255], [-101, -71]], [[35448, 28184], [-105, -74]], [[36995, 30784], [53, -51], [31, -66], [37, 25], [45, 1]], [[37161, 30693], [-63, -58]], [[36944, 30429], [-138, 2]], [[34267, 31822], [-1, 236]], [[34266, 32058], [232, 2]], [[34498, 32060], [5, -238]], [[40806, 32298], [-26, -12], [-57, 40]], [[40723, 32326], [3, 29]], [[40726, 32355], [22, 87]], [[40174, 31651], [74, 61], [30, 13]], [[40278, 31725], [62, -15]], [[40340, 31710], [23, -27], [47, -96]], [[34668, 30498], [-90, 1], [0, -162]], [[34578, 30337], [-76, 0], [0, 27], [-44, 0]], [[34458, 30364], [-31, 73], [8, 57], [-40, -16]], [[34324, 30659], [22, 1]], [[34346, 30660], [265, 0], [57, -12]], [[35317, 36265], [105, 0]], [[42981, 31359], [8, 180]], [[42989, 31539], [19, 0]], [[43008, 31539], [55, 1]], [[43063, 31540], [55, 0]], [[43118, 31540], [35, 0]], [[43146, 31355], [-46, 0]], [[31898, 27890], [209, -60], [261, -74], [44, 0]], [[32412, 27756], [1, -255], [2, -455]], [[32415, 27046], [-79, 21], [-75, 55], [-50, 79], [-32, 4], [-75, 74], [-26, 82], [-49, 94], [-12, 78], [10, 21], [-9, 92], [-67, 96], [-6, 71], [-24, 62], [-23, 15]], [[41179, 33397], [-134, 12]], [[41045, 33409], [-59, 5]], [[40986, 33414], [9, 161], [17, 7]], [[41189, 33534], [-3, -34]], [[34957, 25410], [41, -9], [184, 1]], [[35182, 25402], [15, -62], [24, -54]], [[35221, 25286], [-17, 0], [-25, -53], [-35, -16], [-146, 30]], [[35237, 25403], [11, 0]], [[35248, 25403], [28, -117], [-9, 0], [-30, 117]], [[48785, 20289], [4, 45]], [[48789, 20334], [12, 26]], [[48801, 20360], [16, -4]], [[48817, 20356], [-5, -90]], [[48812, 20266], [-21, -13]], [[48791, 20253], [-6, 11]], [[31346, 31184], [1, -22]], [[31347, 31162], [-1, -46], [0, -10], [30, -19], [-31, -33]], [[12838, 46473], [39, 0], [-3, -196], [43, 0], [1, -178], [-10, -116], [-36, -11]], [[12872, 45972], [-39, 23], [-44, -21], [-67, 16], [-67, 44], [-45, -92], [-62, -13], [42, 74], [-22, 91], [-33, -12], [6, -73], [-16, -38], [-39, -5], [-50, -42], [-34, 11], [8, -104], [-50, 5], [-39, -19], [-108, -84], [-75, -73], [-38, -7], [-33, 36], [-97, -23], [-13, -32], [-62, -38], [-13, -49], [-159, -14], [-57, 27], [-67, -57], [-69, -2], [-100, 59], [-5, 37], [38, 29], [7, 37], [213, 75], [53, 32], [128, 117], [-57, -4], [-94, -57], [-76, -31], [-61, 8], [-81, 45], [-16, 36], [47, 86], [24, 71], [123, 111], [17, 90], [36, 17], [15, 97], [-26, 19], [-37, 91], [86, 37], [65, 4], [156, 93], [143, 62], [79, -85], [85, -23], [54, 60], [46, 4], [185, -44], [102, -11], [34, -21]], [[10873, 45314], [-166, 0], [0, -71], [-77, 0], [0, -54], [-213, 0]], [[10417, 45189], [-147, 0], [-23, 54], [0, 214], [-23, 0], [0, 107], [146, 0], [0, 107], [126, 0], [0, 53], [74, 0], [0, 107], [74, 0], [0, 54], [55, 0], [0, 214], [56, 0], [0, 214], [57, 0], [0, 214], [-19, 53]], [[10793, 46580], [0, 161], [-19, 0], [0, 160], [211, 0]], [[10985, 46901], [466, 0], [261, 0], [0, -107], [156, 0], [0, -38]], [[11868, 46756], [-22, -8], [-62, -81], [-85, -23], [-52, 1], [-61, -33], [-78, -64], [42, -75], [-63, 1], [-76, -37], [-34, -49], [-91, -55], [-9, -39], [42, -30], [-58, -25], [-11, -32], [-72, -48], [-82, 6], [5, -36], [72, -64], [-60, -96], [-45, -23], [-84, 5], [4, -59], [-25, -62], [-71, -35], [-56, -8], [-58, 13], [-48, -56], [-76, -5], [15, -67], [-138, -29], [-26, -28], [-12, -82], [-37, -36], [66, -49], [93, -12], [67, 13], [35, -41], [95, -25], [61, -69]], [[10742, 45645], [64, 15], [20, -48], [-65, -10], [-19, 43]], [[11385, 46234], [45, 43], [12, 59], [49, -15], [-44, -34], [-7, -39], [-55, -14]], [[39305, 28219], [11, 19]], [[39316, 28238], [32, 5], [20, 46], [28, 13]], [[39468, 28117], [-12, -93], [54, -78], [42, -28], [5, -30], [-22, -60], [4, -30], [29, -30], [-31, -25], [-34, -69]], [[39503, 27674], [-60, -19], [-43, 26], [-39, 53], [-27, 20], [-12, 48], [14, 39], [-15, 66], [-31, 17]], [[37073, 34229], [200, 0]], [[37273, 34229], [0, -190]], [[37273, 34039], [-33, -1]], [[37240, 34038], [-167, -3]], [[49351, 19896], [15, 57], [54, 6], [10, -15], [64, -7], [-81, -40], [-62, -1]], [[44125, 32056], [-83, 38], [-35, 31]], [[40911, 29197], [-23, -16], [-18, -55], [-28, -43]], [[44907, 35906], [-185, -120], [-97, 31]], [[42305, 32818], [23, 34]], [[42328, 32852], [46, -55], [19, -44]], [[42393, 32753], [28, -18], [-41, -39], [-139, -93]], [[42241, 32603], [-23, 128], [39, 35]], [[42257, 32766], [48, 52]], [[40302, 32943], [32, 6], [32, 36], [40, 18]], [[40511, 33004], [1, -137]], [[40512, 32867], [-19, 24], [-38, 3]], [[40455, 32894], [-52, -16], [10, -76]], [[40413, 32802], [-61, 12]], [[43132, 32110], [-27, -11], [-5, -57]], [[43100, 32042], [-80, -185]], [[43020, 31857], [-23, -21], [-43, 13]], [[42844, 31962], [0, 51]], [[42844, 32013], [25, 25], [14, 47], [29, 32], [42, -17], [42, 51]], [[42996, 32151], [25, 19], [1, 33]], [[31576, 31126], [1, 66]], [[31577, 31192], [63, -4], [19, 25]], [[34809, 34749], [0, 108]], [[34809, 34857], [202, 0]], [[35011, 34857], [1, -107]], [[35012, 34617], [-92, -10], [-25, -18], [-84, 0]], [[37694, 31514], [-1, 178], [7, 62]], [[37700, 31754], [190, -3]], [[37890, 31751], [-1, -36], [47, -1]], [[37936, 31714], [-4, -202]], [[37809, 31512], [-18, 0]], [[39471, 31432], [34, -20]], [[39505, 31412], [-4, -52], [-19, -45]], [[39482, 31315], [-101, 41], [-66, -1]], [[39315, 31355], [-13, 68]], [[44469, 34694], [172, -6]], [[44591, 34556], [-74, -27], [-121, -5]], [[43733, 30816], [47, 5], [25, -15], [72, 45]], [[43877, 30851], [36, -54]], [[43913, 30797], [-18, -55], [-18, -13]], [[43877, 30729], [-55, -97], [-57, -39]], [[43765, 30593], [-16, 85], [-29, 20]], [[43720, 30698], [5, 102], [8, 16]], [[39497, 33352], [0, 80]], [[39562, 33432], [80, 0]], [[39642, 33432], [-17, -53], [-1, -162]], [[39624, 33217], [-158, 0]], [[40138, 34588], [-1, 173]], [[40137, 34761], [118, -1]], [[40312, 34760], [3, -145]], [[40315, 34615], [0, -54]], [[40315, 34561], [-177, 0]], [[42188, 31560], [-141, 8]], [[42047, 31568], [13, 15]], [[42060, 31583], [18, 16]], [[42078, 31599], [35, 43], [115, 34]], [[42228, 31676], [75, 3], [20, 24]], [[42323, 31703], [48, -83]], [[42371, 31620], [8, -13]], [[42379, 31607], [33, -57]], [[42412, 31550], [-27, 2]], [[33163, 29594], [-4, 268]], [[36461, 36695], [-111, -1]], [[36348, 36962], [165, 1], [0, -27], [54, 0]], [[41718, 34287], [-2, 45], [44, 0]], [[41760, 34332], [72, -1]], [[41832, 34331], [18, -44]], [[41851, 34087], [-41, 0], [0, -62]], [[41810, 34025], [-50, -8]], [[35213, 34965], [0, -214]], [[35011, 34857], [-1, 108]], [[42482, 25776], [171, 1], [0, 35], [37, 0]], [[42690, 25812], [53, -181]], [[31152, 32338], [-8, -105], [1, -161]], [[31145, 32072], [-182, -7], [0, 19]], [[30963, 32084], [2, 155], [-10, 1], [3, 162], [60, 11]], [[40885, 30318], [39, 3], [26, 31]], [[40950, 30352], [3, -9]], [[40953, 30343], [-1, -40], [39, -46], [53, -28]], [[41054, 30177], [-131, 0]], [[40923, 30177], [0, 29]], [[41494, 29205], [63, 31], [15, -25], [107, 33]], [[41679, 29244], [38, -38]], [[41717, 29206], [-28, -46], [13, -22], [-55, -45], [-23, -41]], [[41624, 29052], [-9, 62], [-55, 29], [-29, 35], [-42, -5]], [[37822, 30318], [-30, 29], [0, 36], [32, -1], [2, 152]], [[37826, 30534], [32, 0], [1, 45], [62, 10]], [[37921, 30589], [-1, -56], [23, -27]], [[37943, 30506], [-1, -82], [23, 0], [-1, -55]], [[37964, 30369], [-1, -108], [24, -1], [-1, -82], [-24, 0]], [[37084, 32079], [-48, 1]], [[37036, 32080], [4, 193], [-6, 45]], [[37034, 32318], [2, 63], [48, -1]], [[37084, 32380], [95, -5]], [[43020, 31857], [48, 43], [38, -1], [17, -29], [50, -10]], [[43173, 31860], [-55, -320]], [[43063, 31540], [6, 37], [-30, 26], [-31, -64]], [[42989, 31539], [-88, 1]], [[13143, 48702], [125, -53], [331, 0]], [[13599, 48649], [-1, -480]], [[13598, 48169], [-446, -1], [0, -89], [-654, 0], [-520, -167], [-511, -164], [0, -44], [-481, 1]], [[34541, 32601], [0, -161], [-48, 0]], [[34493, 32440], [-143, 0], [0, 54], [-95, 0]], [[34255, 32494], [-7, 108]], [[34248, 32602], [0, 54]], [[36418, 33156], [-2, -29]], [[36416, 33127], [0, -43]], [[36284, 33052], [4, 130], [54, -1]], [[41498, 27249], [-20, -74], [-37, -79], [-43, -34]], [[41398, 27062], [-22, 82], [-80, 59], [-5, 93]], [[41291, 27296], [20, -1], [21, 97]], [[41332, 27392], [173, 1]], [[41270, 35664], [-102, -1]], [[41168, 35663], [-2, 159]], [[41166, 35822], [0, 76]], [[41166, 35898], [23, 1], [44, 64], [32, 15]], [[41265, 35978], [3, -39], [151, 4]], [[16210, 49626], [0, -624], [1, -603], [0, -578], [0, -625]], [[16211, 47196], [-362, 0], [0, 132], [-63, 29], [0, 214], [-65, 0], [0, 53], [-82, 0], [0, 54], [-136, 3], [-45, 12], [-52, -67], [-111, 9], [-11, 29], [31, 67], [-46, 40], [57, 60], [-39, 67], [-4, 47], [-631, 0], [0, 9], [-250, 0], [0, 53], [-417, 0], [-12, -21], [-82, 4], [-72, -13]], [[13819, 47977], [2, 194], [-223, -2]], [[13599, 48649], [150, 0], [135, 12], [49, 21], [32, 44], [67, -1], [115, 49], [106, -23], [54, 38], [126, 14], [43, 38], [69, -1], [119, 21], [41, -11], [64, 37], [104, 7], [2, 18]], [[34240, 33407], [-1, -268]], [[34003, 33139], [-7, 0]], [[33996, 33139], [1, 268]], [[33997, 33407], [232, 0]], [[37489, 27686], [-14, 31], [-1, 54], [-29, 27], [-109, 0]], [[37459, 28025], [173, 0]], [[37632, 28025], [35, -91], [-10, -125]], [[39639, 30855], [37, 14], [70, -24]], [[39746, 30845], [25, -62], [33, -32]], [[39804, 30751], [-4, -168]], [[39637, 30587], [-6, 0]], [[41087, 34736], [51, 2]], [[41138, 34738], [135, 6]], [[41273, 34744], [55, -19], [71, -48]], [[41290, 34674], [-67, -1], [-48, -44], [-30, -49], [-59, -32]], [[38462, 30920], [-35, 14], [-27, -28], [14, -31], [-10, -42]], [[38404, 30833], [-5, -5]], [[38399, 30828], [-6, 48], [-32, -19]], [[38361, 30857], [-64, 2]], [[38297, 30859], [0, 161]], [[38296, 31203], [144, 2]], [[38440, 31205], [98, 1]], [[38538, 31206], [39, -60]], [[48359, 20287], [-18, -10]], [[48341, 20277], [-6, 48]], [[40150, 32698], [17, 0]], [[40167, 32698], [81, -8], [20, -34], [-13, -39]], [[40255, 32617], [-47, -66]], [[40208, 32551], [-25, 4], [1, 46], [-34, 43], [0, 54]], [[33390, 31820], [-206, -2]], [[33184, 31818], [-6, 0]], [[33178, 31818], [0, 245]], [[40782, 32732], [-84, 90], [-5, 63]], [[40748, 32920], [19, 15]], [[40803, 32929], [25, -154]], [[40346, 32113], [51, -3]], [[40397, 32110], [54, 2], [41, -30], [34, 27], [42, -31]], [[40568, 32078], [-25, -18], [-15, -46]], [[41175, 30760], [-10, -19]], [[41165, 30741], [-56, 5], [-56, -24], [-30, 46]], [[42077, 32309], [-68, -22], [27, -31], [-44, -26]], [[41992, 32230], [-55, 14], [-41, -9], [-25, 20], [-8, 53], [-20, 32], [-20, 84]], [[41823, 32424], [64, 25], [49, 6]], [[42180, 33268], [70, 32], [39, 40]], [[42289, 33340], [42, 3], [7, -69]], [[42338, 33274], [-48, -22], [-45, -5], [-8, -24]], [[42513, 31974], [-85, -41], [-23, -19]], [[42405, 31914], [-70, 79], [15, 10]], [[42350, 32003], [57, 34], [-4, 51]], [[42403, 32088], [0, -1]], [[42403, 32087], [39, -35], [113, 68], [16, -36]], [[42176, 32421], [21, 122], [44, 60]], [[42241, 32603], [68, -42], [40, 16], [44, -73]], [[42393, 32504], [49, -73], [-18, -23], [2, -49]], [[42426, 32359], [-60, -31]], [[42366, 32328], [-49, 10], [-7, 25], [-97, 8], [-3, 28], [-34, 22]], [[24321, 38797], [388, -1], [212, 0]], [[24921, 38796], [41, -82], [-47, -55], [-60, -21], [15, -27], [-27, -60], [27, -74]], [[24870, 38477], [-380, -3], [-177, 2]], [[24313, 38476], [25, 42], [14, 64], [36, 16], [-3, 33], [-58, 60], [-13, 63]], [[24314, 38754], [-5, 15]], [[24309, 38769], [12, 28]], [[31954, 29057], [4, 0], [1, 274], [447, 1]], [[32406, 29332], [0, -274], [40, 0], [0, -322]], [[32446, 28736], [-112, 0]], [[32334, 28736], [-20, 0]], [[32314, 28736], [-358, 0]], [[33454, 34536], [1, 215]], [[33455, 34751], [245, -2]], [[33757, 34748], [0, -213]], [[33757, 34535], [-243, 1]], [[33745, 33676], [-8, 0]], [[33737, 33890], [244, 1]], [[33981, 33891], [2, -216]], [[34401, 34963], [-187, -1]], [[39417, 31106], [-69, -16], [-39, 17]], [[39309, 31107], [17, 55], [-38, 10], [5, 51], [35, 62], [-13, 70]], [[39482, 31315], [14, -114]], [[38455, 33944], [90, -1], [1, -71], [49, 0]], [[38595, 33872], [1, -122]], [[38424, 33742], [-60, -29], [-67, 1], [-29, 37]], [[42228, 31676], [-29, 85], [-22, 32]], [[42177, 31793], [67, 59], [48, -16], [88, 32]], [[42380, 31868], [8, -29], [67, -91]], [[42455, 31748], [-132, -45]], [[41439, 29320], [9, 83]], [[41580, 29500], [4, -39], [34, -30]], [[41618, 29431], [28, -58], [22, -14], [16, -57], [-5, -58]], [[24723, 37862], [-18, 49], [40, 84], [11, 55]], [[25369, 37833], [11, -37], [32, -30]], [[25412, 37766], [0, -255], [4, -107]], [[25416, 37404], [-408, 0], [-314, 2]], [[24694, 37406], [0, 212]], [[36440, 31268], [70, -1], [24, 26], [1, 45], [138, -4], [56, 16]], [[36729, 31350], [-24, -89], [-9, -203]], [[36696, 31058], [-70, -7], [-161, 6]], [[35776, 28957], [273, -2]], [[36049, 28955], [-17, -74], [12, -61]], [[36044, 28820], [14, -32]], [[36058, 28788], [-272, -48]], [[35786, 28740], [-1, 4]], [[35785, 28744], [-5, 45], [-22, 5], [-51, 96], [-65, 49]], [[35642, 28939], [-30, 18]], [[37703, 36672], [318, 1]], [[38021, 36673], [0, -161]], [[37915, 36512], [-159, 0]], [[37756, 36512], [-52, 0]], [[37704, 36512], [-1, 54]], [[40415, 30938], [9, -46], [77, -85]], [[36055, 28154], [1, -74], [22, -52], [24, 4]], [[36088, 27813], [-104, 2], [-101, 75]], [[35883, 27890], [-14, 145]], [[35869, 28035], [107, 41]], [[29385, 30133], [-42, 3], [-104, 78], [-23, -5], [-47, 40], [-47, -16], [-60, -1], [-27, 30]], [[29035, 30262], [1, 204], [-98, 1], [0, 109], [-14, -3], [-229, -2], [0, 108], [-46, 1], [-14, 55], [-45, 3], [-51, 42], [-109, 26], [-14, 24], [-86, 71], [-70, 13]], [[28260, 30914], [0, 170], [10, 37], [-2, 60], [-17, 49], [18, 37], [39, -6], [12, 39], [26, 8], [57, 45], [45, 9], [96, 54], [23, 31], [-12, 100], [16, 26], [-8, 49], [8, 66], [40, 105], [-4, 30]], [[29097, 31823], [288, 1]], [[35172, 31822], [-148, 0]], [[35024, 31822], [-2, 239]], [[35022, 32061], [0, 54]], [[35022, 32115], [285, 1]], [[40147, 35815], [-184, 3]], [[39963, 35818], [-33, 90], [4, 37], [29, 42], [14, 45]], [[37092, 37476], [0, -109], [-39, 0], [1, -155]], [[37054, 37212], [-162, 2]], [[42341, 34820], [44, 8], [166, 67]], [[42551, 34895], [0, -79]], [[42551, 34816], [0, -216]], [[42340, 34601], [0, 132]], [[25326, 32755], [0, 119]], [[25326, 32874], [46, 45], [38, 57], [-11, 40]], [[36150, 27227], [29, -34], [35, 34], [23, -1]], [[36237, 27226], [0, -4], [2, -6], [34, -23], [1, 0], [0, 0], [10, -2], [8, -39], [-1, -78], [-26, -11], [-46, -54]], [[36219, 27009], [-76, 162], [7, 56]], [[36458, 27219], [61, 8]], [[36519, 27227], [-131, -77], [-26, -38], [-16, 15], [41, 51], [34, 10], [37, 31]], [[36193, 26932], [6, 28]], [[36199, 26960], [44, 38], [79, 98], [8, -40], [-97, -81], [-40, -43]], [[40166, 28767], [-1, 124], [34, 14]], [[40199, 28905], [28, -26], [184, 2]], [[40411, 28881], [10, -55]], [[40421, 28826], [-8, -81], [-69, -11], [-31, -72]], [[38889, 34140], [-1, 107]], [[38888, 34247], [0, 110], [150, 2]], [[39038, 34359], [146, 3]], [[40681, 33506], [0, 117]], [[40824, 33624], [3, -202]], [[41564, 33161], [10, 25]], [[41717, 33079], [-9, -118], [-52, 0]], [[35895, 27557], [88, 26], [22, 24], [26, -38], [29, 4], [57, -55], [13, 3], [73, 84]], [[36203, 27605], [28, -108], [14, -1], [8, -66]], [[36253, 27430], [31, -37], [-14, -62], [5, -31]], [[36275, 27300], [-25, -1], [-8, -8], [0, -1], [-1, -1], [-2, -6], [0, -1], [-1, -3], [1, -6], [1, -2], [4, -5], [1, 0], [0, 0], [0, -1], [6, -8], [1, -2], [0, 0], [0, 0], [-14, -26], [0, 0], [-1, 0], [0, -3]], [[36150, 27227], [-19, 23], [-71, -8]], [[46614, 35084], [-18, 23], [-43, -5], [12, -40], [-76, -56]], [[46305, 35348], [263, -9], [18, 25]], [[46586, 35364], [-1, -49], [53, -36], [44, -8], [-18, -34], [22, -53]], [[48722, 20394], [-12, -88]], [[48710, 20306], [-29, 16]], [[48681, 20322], [2, 71]], [[48683, 20393], [39, 1]], [[33331, 29330], [1, -270]], [[43870, 35265], [2, 58], [-49, 1], [8, 168]], [[43831, 35492], [43, -1], [-2, 57], [50, 0]], [[43922, 35548], [103, 3], [1, -17], [73, 1]], [[44099, 35535], [-3, -154]], [[44096, 35381], [-149, -2], [-23, -58], [0, -56]], [[12962, 46901], [546, 0], [0, 28], [115, 0], [0, 214], [-8, 214], [-8, 53], [242, 0], [-5, 161], [0, 214], [-25, 62], [0, 130]], [[16211, 47196], [0, -586], [0, -347]], [[16211, 46263], [-92, 0], [0, 27], [-252, 0], [0, 53], [-611, 0], [-305, -307], [0, -23]], [[14951, 46013], [-61, 20], [-70, -14], [-100, -63], [-6, 28], [143, 98], [-76, 25], [-28, -30], [-81, 61], [-163, 19], [74, 27], [-99, 28], [58, 83], [-90, -23], [-32, -65], [-61, 6], [-110, 51], [-38, 36], [-62, 14], [-51, -18], [-27, 29], [-95, -38], [-6, -39], [-107, -25], [-94, -53], [-37, 27], [-12, 69], [36, 43], [80, -1], [72, 31], [58, 7], [89, 31], [66, 11], [-94, 45], [-57, -22], [-54, 10], [45, 48], [-145, -28], [-73, 8], [-16, 30], [65, 42], [-28, 36], [-60, 6], [5, 49], [60, 79], [151, 3], [-12, 20], [-141, -2], [-75, -47], [-34, -42], [-48, -25], [-20, 85], [-51, -57], [-105, -63], [-75, 18], [-16, -20], [-76, 24], [14, -59], [-80, 4], [-53, -26], [-50, 28], [36, 68], [50, 56], [-99, -18], [-45, -51], [-30, -70], [31, -31], [75, -8], [9, -90], [47, -47], [16, -46], [-36, -102], [-45, -26], [95, -65], [41, -46], [-24, -41], [-73, -32], [-79, 23], [-41, 36], [-57, -57], [-97, -13]], [[13459, 46564], [89, 20], [-11, -36], [-78, 16]], [[13381, 46424], [5, 46], [40, 10], [38, -48], [-17, -24], [-66, 16]], [[13185, 46171], [68, 144], [78, 55], [-2, -121], [-37, -52], [-25, -80], [-82, 54]], [[13194, 45887], [18, 49], [84, 83], [46, 18], [82, 56], [35, 62], [41, 23], [11, 59], [43, 18], [17, -48], [47, -26], [-98, -62], [-75, -69], [-13, -43], [-52, -31], [48, -31], [-31, -22], [-70, 4], [-26, -30], [-84, -22], [-23, 12]], [[39809, 28946], [-40, 121], [-4, 79]], [[39765, 29146], [89, -2], [-1, 28], [131, 1]], [[39984, 29173], [1, -184]], [[39985, 28989], [-37, -40]], [[36413, 32735], [0, -55]], [[36413, 32680], [-197, 1]], [[41410, 28997], [65, -170], [46, 30]], [[41521, 28857], [-19, -38]], [[41502, 28819], [-121, -145]], [[41381, 28674], [-24, 32], [-33, 95]], [[41324, 28801], [20, 45], [-24, 58]], [[44400, 35385], [165, 12]], [[44567, 35356], [12, -190]], [[44579, 35166], [-116, -4]], [[44463, 35162], [-54, -1]], [[42008, 28223], [35, -29], [53, -19], [53, -46]], [[42149, 28129], [17, -36], [-19, -91], [1, -63]], [[42148, 27939], [-119, 22], [-81, 52]], [[41236, 34962], [-102, -2]], [[41134, 34960], [-156, -7]], [[41181, 35175], [49, 3]], [[40515, 34617], [-200, -2]], [[40473, 34761], [41, 0]], [[33027, 28172], [42, -31], [39, -3], [53, -28], [42, 1], [48, -47], [17, -95], [29, -65]], [[33297, 27904], [-161, 2], [0, -36], [-89, 1], [0, -194], [-98, -1], [0, -142]], [[32949, 27534], [-184, 185], [-196, 193]], [[32569, 27912], [-63, 62]], [[32506, 27974], [250, 374]], [[32756, 28348], [34, -13], [47, -52], [25, 17]], [[41027, 29049], [5, 9]], [[41165, 29163], [-8, -99], [-55, -39]], [[41131, 30460], [43, 5]], [[41103, 30283], [-9, 27], [4, 106]], [[41752, 29546], [38, -28]], [[41768, 29252], [-40, -13], [-11, -33]], [[41618, 29431], [100, 92]], [[41718, 29523], [21, 23]], [[38998, 36995], [109, -1]], [[39107, 36994], [53, -2], [-1, -106], [53, -3], [-1, -53], [30, -1], [-1, -53], [78, -2], [-1, -17], [80, -17]], [[39397, 36740], [-61, -86], [-38, -92]], [[39298, 36562], [-110, 1]], [[39188, 36563], [-3, 107], [-105, 2]], [[39080, 36672], [3, 161], [-69, 1]], [[36303, 28444], [-25, 32], [-18, 71], [12, 94]], [[36483, 28640], [12, -27], [11, -91]], [[36506, 28522], [39, -40], [4, -47], [-13, -93], [2, -85]], [[46353, 34660], [133, 4], [33, 31]], [[46519, 34695], [-4, -111], [-29, -63], [-61, -6], [-42, -19], [-61, -7]], [[25051, 38941], [-37, 58], [16, 20]], [[25030, 39019], [32, 24], [-25, 56], [-15, 103], [-36, 29]], [[24986, 39231], [355, -1], [523, 0]], [[25864, 39230], [0, -213], [-15, 0], [12, -107], [-1, -320], [-3, -3]], [[25857, 38587], [-53, -9]], [[25804, 38578], [-4, 12]], [[25800, 38590], [-32, 108], [-41, 5], [-84, -59], [-40, 16], [-36, -8], [-59, -39], [-13, 57], [-70, -9], [-22, -17], [10, -55]], [[25413, 38589], [-77, 0], [-42, 64], [-35, 12], [-59, 45], [6, 26], [-70, 69], [-26, 40], [-36, 14], [-3, 67], [-20, 15]], [[26646, 38156], [-341, 0]], [[26305, 38156], [1, 349]], [[26306, 38505], [54, 19], [70, -38], [0, 157], [43, -1]], [[26473, 38642], [172, -1]], [[26645, 38641], [0, -42]], [[38996, 37387], [3, -180], [109, 0]], [[39108, 37207], [-1, -213]], [[38127, 37367], [0, -212]], [[38127, 37155], [-376, 0]], [[45331, 34091], [8, 39], [-13, 30]], [[45326, 34160], [71, 7]], [[45397, 34167], [-21, -69]], [[45376, 34098], [-18, -21]], [[45358, 34077], [-38, -5]], [[42304, 34284], [0, -53]], [[42304, 34231], [0, -107]], [[42304, 34124], [-66, -3], [-1, -45], [-34, 1]], [[42203, 34077], [-73, 0], [-71, -10]], [[42059, 34067], [0, 20]], [[42060, 34239], [99, -5], [12, 51]], [[35008, 27117], [-123, 1], [-5, 39]], [[24314, 38754], [-62, -28], [3, 41], [54, 2]], [[24151, 38753], [42, 79], [24, -37], [-22, -33], [27, -20], [21, -55], [9, -64], [39, 24], [31, -13], [11, -50], [-35, -24], [-76, 72], [-1, 75], [-31, 2], [-39, 44]], [[43724, 33362], [32, -43], [14, -63]], [[43770, 33256], [-47, -117]], [[43723, 33139], [-89, 81]], [[43634, 33220], [39, 72], [42, 41], [9, 29]], [[43798, 33022], [52, -59]], [[43850, 32963], [42, -30], [11, -25], [70, -48], [14, -26]], [[43987, 32834], [-23, -54], [0, -1], [-1, -6], [0, 0], [0, 0], [-1, -3], [0, -1], [-1, -4], [-1, -1], [-1, -3], [-1, -1], [-1, -1], [0, -1], [0, 0], [-2, -3], [-1, -1], [-2, -3]], [[43884, 32917], [14, -12], [3, 5], [-24, 12]], [[43877, 32922], [-11, -27], [21, 1], [-3, 21]], [[44460, 33502], [15, 2], [50, 104], [-3, 37], [25, 53], [-3, 44], [30, 17]], [[44651, 33824], [44, -3], [10, -26], [93, -80]], [[44798, 33715], [-33, -50], [-38, -25], [-33, -43], [2, -23]], [[42206, 32085], [39, 53]], [[42245, 32138], [10, 39], [46, 9]], [[42301, 32186], [102, -98]], [[42350, 32003], [-54, -7], [-52, -28]], [[42244, 31968], [-60, 63]], [[40886, 31235], [31, -85]], [[40917, 31150], [4, -8]], [[40765, 30986], [-1, 41], [-44, 26]], [[40720, 31053], [-25, 44]], [[40695, 31097], [44, 52]], [[23349, 38539], [-27, 52], [-14, 136], [23, 127], [38, -14], [80, -51], [62, -14], [112, -60], [89, -6], [33, 7], [48, -20], [86, -12], [63, 0], [37, 31], [103, -62]], [[26306, 38505], [-112, -15], [-58, 89], [-56, -31]], [[26080, 38548], [-4, 48], [-22, 35], [72, 21], [-6, 44], [47, 82], [-15, 32], [-14, 93], [25, 31], [19, 82], [-12, 65], [-35, 80], [7, 69]], [[26142, 39230], [334, 1]], [[26476, 39231], [0, -48], [-30, 0], [1, -53], [-29, 0], [0, -58], [-29, -1], [1, -53], [56, 0], [-1, -322], [28, 0], [0, -54]], [[37674, 34231], [0, -54]], [[37674, 34177], [1, -133]], [[37675, 34044], [-6, 9], [-93, -5]], [[37576, 34048], [-103, -3]], [[37473, 34045], [0, 185]], [[34223, 33891], [-197, 0]], [[34026, 33891], [0, 54], [49, 0], [0, 162]], [[34075, 34107], [122, 0], [25, -10]], [[38980, 30017], [77, 9]], [[39057, 30026], [147, -2]], [[39203, 30007], [-18, -194]], [[39069, 29755], [8, 18], [-97, 0], [0, 81]], [[39657, 28118], [-51, -46], [-11, -37], [-2, -80], [18, -14], [4, -56], [22, -41], [37, -34], [-5, -51], [-41, -22], [23, -29], [51, 18], [62, 4]], [[39764, 27730], [-103, -26], [-61, -3], [-97, -27]], [[35137, 29350], [63, -2]], [[35200, 29348], [160, -1]], [[35360, 29347], [-3, -272]], [[35357, 29075], [-21, 0]], [[44083, 33036], [49, 102]], [[44132, 33138], [21, -17]], [[44225, 32771], [-28, 14], [-3, 36], [-51, 25], [-44, 2], [-37, -25], [-16, 53]], [[44046, 32876], [20, 49]], [[41762, 31643], [16, -70]], [[41545, 31572], [-68, 0]], [[41477, 31572], [17, 50], [54, 36], [22, 41]], [[41570, 31699], [32, 10], [35, 40], [92, -3]], [[35400, 26923], [122, 124]], [[35522, 27047], [8, -10]], [[35675, 26861], [-7, -177]], [[35398, 29939], [-45, -81], [-20, -8], [-1, -47], [-26, -3], [-44, 86], [-36, -2], [-15, -25], [-39, 15], [-9, 44]], [[35163, 29918], [-34, -9]], [[35129, 29909], [0, 105]], [[41254, 29015], [-15, 40], [-13, 88], [-16, 3]], [[41210, 29146], [9, 46], [33, 38], [-5, 27]], [[41247, 29257], [47, 33]], [[42551, 34230], [-247, 1]], [[40411, 28989], [0, -108]], [[40199, 28905], [-30, 38], [-15, 52]], [[40154, 28995], [56, 17], [4, 28]], [[40214, 29040], [39, 1], [-1, 54], [45, 9]], [[39229, 32791], [-1, -193]], [[38987, 32598], [2, 135]], [[38989, 32733], [0, 81]], [[33197, 30164], [0, 268]], [[37547, 32792], [61, 58], [60, 26], [37, -2]], [[37708, 32874], [-2, -256]], [[39037, 35004], [152, 0]], [[39179, 34901], [0, -162]], [[25326, 32874], [-30, -40], [-32, -6], [-26, -43], [-103, -29], [-52, -6], [-57, 32], [-27, 3], [-89, -31]], [[42652, 30195], [-58, -44], [-4, -40], [-22, -36]], [[42568, 30075], [-59, -43]], [[42509, 30032], [-45, -19], [-65, 70], [19, 53]], [[42418, 30136], [24, 67], [-48, 50]], [[42394, 30253], [60, 51], [37, -38], [47, 9], [0, 41], [61, 34]], [[42599, 30350], [36, -72], [17, -81]], [[44322, 31439], [-46, -17]], [[44276, 31422], [-60, -34]], [[44216, 31388], [-36, 41], [-67, 24], [7, 88]], [[44120, 31541], [0, 5]], [[44120, 31546], [163, -1]], [[32542, 32603], [44, 1]], [[32586, 32604], [-1, -384]], [[32585, 32220], [-285, 0], [-1, 56]], [[23951, 35343], [-60, 18], [-34, -18], [-60, 23], [-58, 0], [0, 27]], [[23739, 35393], [-42, 3]], [[23520, 35904], [26, 156]], [[44969, 34350], [-67, -78]], [[44902, 34272], [-42, -25], [-36, -42], [-76, -28]], [[44748, 34177], [-43, 85], [34, 22], [-67, 83]], [[44672, 34367], [21, 24]], [[44798, 34439], [100, 8], [-11, -62], [34, -6], [37, -30]], [[36985, 31280], [155, -4]], [[37137, 31035], [-93, 3]], [[36890, 31059], [-2, 73], [31, 53], [3, 70], [-15, 27]], [[34516, 38949], [0, 107], [-13, 0], [0, 174]], [[34503, 39230], [4, 0], [453, 1]], [[34960, 39231], [0, -175], [10, -108]], [[35349, 31572], [63, 3], [6, -28], [-49, -29]], [[35369, 31518], [-9, -107], [46, 0], [0, -54]], [[35406, 31357], [-94, 0], [0, -54], [-93, 0]], [[35219, 31303], [-46, 4]], [[35173, 31307], [0, 265]], [[33711, 32872], [3, 267]], [[33714, 33139], [39, 0]], [[33753, 33139], [243, 0]], [[34000, 32870], [-40, 1]], [[37632, 28025], [4, 77], [24, 28]], [[37660, 28130], [40, -15]], [[37700, 28115], [-2, -15]], [[37698, 28100], [1, -70], [16, -10], [47, 13], [-16, -81], [75, 18], [22, -62]], [[37843, 27908], [-37, -91], [-31, -9]], [[35607, 33997], [0, -161]], [[35607, 33836], [0, -161]], [[35607, 33675], [-149, 0]], [[35458, 33675], [-48, 0]], [[40022, 29934], [16, 27], [32, 2], [66, -90]], [[40136, 29873], [9, -48], [-41, -30], [-3, -23]], [[39999, 29595], [1, 68], [-46, 0], [-15, 27]], [[39939, 29690], [-15, 9], [12, 99], [-23, 28]], [[38717, 28874], [-177, -1]], [[38516, 29098], [24, 29]], [[38540, 29127], [0, -35], [177, 0]], [[40906, 28503], [110, 1], [11, 16]], [[41027, 28520], [10, -15], [-1, -112]], [[41036, 28393], [-62, -3]], [[40974, 28390], [-126, -2]], [[40208, 32551], [-2, -56], [-19, -52]], [[40187, 32443], [-22, -3]], [[40165, 32440], [-79, 7], [-38, 28], [-3, 52], [-24, 25]], [[40021, 32552], [23, 28], [9, 121]], [[40053, 32701], [97, -3]], [[26645, 38641], [4, 495]], [[26649, 39136], [108, 0], [0, -214], [321, 1]], [[27078, 38923], [0, -177]], [[27078, 38746], [0, -147]], [[27078, 38599], [-80, 57], [-42, -32], [0, -79]], [[40609, 30580], [-36, -104], [-31, 1], [-5, -33]], [[40537, 30444], [-25, 5], [0, 49], [-28, 0], [0, 81]], [[37549, 28691], [-1, -371]], [[37548, 28320], [-35, 6]], [[37513, 28326], [-47, 88]], [[37393, 28610], [22, 81]], [[47362, 36571], [90, 18]], [[47452, 36589], [26, 5], [10, -53], [151, 36], [9, -11]], [[47648, 36566], [-14, -36], [20, -62]], [[47654, 36468], [-34, -60], [-51, -2], [21, -43], [-35, -65]], [[47555, 36298], [-40, 4], [-64, 67], [-34, -35], [-28, 12]], [[47389, 36346], [-42, 9]], [[47347, 36355], [27, 75], [23, 109], [-35, 32]], [[44132, 33138], [-26, -1], [-51, 75], [-28, 11], [-17, 52]], [[28997, 34168], [16, -82], [23, -35]], [[29036, 34051], [-18, -20]], [[29018, 34031], [-65, -34], [-89, -60], [-37, 23], [-61, 3]], [[28766, 33963], [-1, 84], [-14, 69], [-23, 33]], [[45833, 34687], [-14, 98], [27, 34], [29, 74], [-62, -5], [9, 45]], [[46349, 34914], [4, -175]], [[46353, 34739], [1, -52]], [[42660, 24632], [8, -6], [-47, -117], [-48, -38], [3, 44], [-14, 23]], [[42613, 24604], [17, -10], [30, 38]], [[42529, 24540], [-2, -1], [-1, 0], [-3, 0]], [[42404, 24524], [-19, -23], [-78, -13], [-40, 64], [9, 63], [15, 19], [-76, 205], [-26, 2], [-14, 53], [-37, 17]], [[42138, 24911], [259, 1]], [[41988, 24148], [29, 57], [132, 94], [60, -35], [21, -57], [-63, -25], [-51, -1], [-73, -39], [-55, 6]], [[42287, 24234], [82, 48], [10, -16], [-71, -43], [-21, 11]], [[42071, 33811], [2, 91], [-41, 1], [1, 46]], [[42033, 33949], [17, -1], [9, 119]], [[42203, 34077], [-1, -53], [24, -1], [-2, -81]], [[45358, 34077], [9, -30], [-26, -34], [-64, -29]], [[41308, 33290], [-3, -79], [12, -32]], [[41094, 33210], [35, 9], [84, 72]], [[36096, 38947], [-1, 106], [111, 0], [-1, 127], [-63, -23], [-38, 33], [1, 40]], [[36105, 39230], [2, 0], [71, 0], [0, 238], [41, -20], [44, 11], [58, -47], [32, -120], [29, -133], [-4, -63], [44, -39], [71, -11]], [[29020, 35539], [-206, 1]], [[28814, 35540], [-259, 0], [-41, -43]], [[48395, 20159], [-4, -31]], [[48391, 20128], [0, -68]], [[48391, 20060], [-44, 4], [0, 51], [13, 82]], [[48988, 20201], [-25, -64]], [[48906, 20182], [-10, 53]], [[48896, 20235], [14, 25]], [[41573, 30630], [54, 39], [29, 9]], [[41656, 30678], [96, 28]], [[41752, 30706], [60, 3]], [[41812, 30709], [-4, -212], [34, -42]], [[34373, 35835], [-103, 0]], [[34270, 35835], [-39, 0], [0, 150], [-93, -33], [-106, 1], [-65, 14]], [[33967, 35967], [-47, 2]], [[33920, 35969], [-12, 80], [-1, 199]], [[33907, 36248], [0, 16], [187, 0]], [[34094, 36264], [23, -40], [51, 4], [50, -21], [19, 29], [-23, 42]], [[34214, 36278], [38, -15]], [[34252, 36263], [6, -57], [91, -65], [-1, -38]], [[37743, 36159], [11, 44], [-34, 45], [36, 48], [0, 216]], [[24314, 32973], [24, 37]], [[24338, 33010], [220, 1]], [[24558, 33011], [9, -30], [36, -11], [4, -34], [52, -42]], [[33515, 28520], [2, 270]], [[33517, 28790], [35, 0]], [[33552, 28790], [157, -1]], [[33709, 28789], [-1, -241]], [[33708, 28548], [-16, 6], [-2, -88], [-175, -4]], [[32848, 28789], [0, -268]], [[32848, 28521], [-230, 0]], [[32618, 28521], [0, 215]], [[32618, 28736], [115, 0], [0, 54]], [[33604, 36141], [0, -95]], [[33604, 36046], [-27, 2], [-45, -31], [0, -250]], [[33532, 35767], [-384, 0]], [[33148, 35767], [-12, 54], [0, 138]], [[33136, 35959], [52, 5], [5, 176]], [[28835, 33085], [70, -7], [241, -1]], [[29146, 33077], [-2, -322]], [[29144, 32755], [-197, 0], [-4, -5]], [[28943, 32750], [-129, 0], [-28, 6], [-171, -1]], [[28615, 32755], [2, 38]], [[44138, 31984], [-29, -17]], [[44096, 31976], [-17, 35], [-25, -22], [-25, 21], [-63, 11]], [[43966, 32021], [9, 37]], [[39261, 28730], [-46, -109], [40, -71]], [[39255, 28550], [-164, -1]], [[39091, 28549], [-4, 121]], [[39105, 28876], [5, 50]], [[39445, 32791], [24, 60], [33, 19], [11, 55], [-16, 41]], [[39501, 32997], [123, 3]], [[39686, 32998], [-65, -60], [-14, -71], [16, -45], [0, -46]], [[39623, 32776], [-25, -21], [-22, 20], [-49, -6]], [[34075, 34107], [-105, 0]], [[33970, 34107], [0, 214]], [[34317, 34320], [0, -214], [4, -17]], [[33968, 32387], [286, -1]], [[34254, 32386], [5, -110]], [[34259, 32276], [1, -165]], [[34260, 32111], [-240, 5]], [[34020, 32116], [-47, 0]], [[33973, 32116], [1, 217], [-6, 54]], [[32810, 38950], [0, -107], [26, 0], [-1, -154]], [[32835, 38689], [-121, 14], [-41, -7], [-33, -47], [-91, -32], [-53, 66], [-29, 6], [-48, -39], [-7, -41], [-52, -23], [-54, 25]], [[32306, 38611], [-1, 242]], [[32305, 38853], [-1, 151]], [[35462, 37767], [-210, 0]], [[35252, 37767], [-175, 0]], [[39114, 32193], [16, 0]], [[39235, 32177], [32, -43]], [[39137, 32072], [-25, 12]], [[33203, 34535], [-1, 215]], [[33202, 34750], [244, 0]], [[33446, 34750], [9, 1]], [[34588, 26940], [1, -274]], [[34589, 26666], [-259, -4]], [[37827, 34661], [-1, -108]], [[37826, 34553], [-50, 0]], [[37776, 34553], [-17, 54], [-133, 1]], [[37626, 34608], [-1, 216]], [[36206, 32275], [0, -36]], [[36206, 32239], [0, -180]], [[36018, 32060], [-2, 0]], [[36016, 32060], [0, 215]], [[41616, 32752], [-45, -45], [-21, -36]], [[41550, 32671], [-65, 12], [-37, 44], [-50, 24]], [[41398, 32751], [41, 53], [21, 57], [-3, 27]], [[36413, 32680], [0, -203]], [[36413, 32477], [0, -14]], [[36413, 32463], [-202, 0]], [[36211, 32463], [5, 218]], [[28543, 32158], [-2, 162], [48, -1], [0, 48], [48, 5], [-4, 159]], [[28633, 32531], [15, 1]], [[28648, 32532], [261, 1]], [[28909, 32533], [187, -1], [317, 1], [330, 1]], [[29743, 32534], [-35, -26], [-36, -71], [-19, 6], [-29, -36], [-5, -33], [-65, -1], [-32, -52], [-5, -44], [-23, -53], [-44, -30], [-19, -37]], [[26837, 33157], [4, 132], [1, 430], [-3, 540], [5, 33]], [[26844, 34292], [186, 0], [0, -206], [69, -333], [72, 0]], [[33482, 33891], [-1, 214]], [[33481, 34105], [43, 0]], [[33524, 34105], [204, 2]], [[33728, 34107], [1, -217]], [[33174, 34137], [0, -32]], [[33174, 34105], [0, -159]], [[33174, 33946], [-267, -1]], [[32907, 33945], [0, 165], [6, 27]], [[37297, 29848], [109, -4]], [[37406, 29844], [1, -54]], [[37407, 29790], [9, -128], [-31, -95], [14, -29]], [[37399, 29538], [-40, -16], [-55, 58]], [[39551, 32244], [-38, -22]], [[39513, 32222], [-104, -5]], [[39409, 32217], [-17, 79], [-18, -3], [-49, 86]], [[38531, 29486], [-12, -15], [-20, -78], [-34, -84], [-28, -30]], [[38437, 29279], [-162, 80], [-11, 1]], [[38264, 29360], [-29, 31], [0, 29], [43, 18], [0, 102]], [[38278, 29540], [16, 37], [52, -18]], [[39002, 29530], [-63, 0]], [[38939, 29530], [-120, 0]], [[38819, 29682], [31, 18]], [[38850, 29700], [151, 2], [0, -36]], [[49038, 20272], [11, -47], [-28, -4]], [[48976, 20266], [3, 7]], [[48979, 20273], [3, 4]], [[48722, 20242], [-12, 33]], [[48710, 20275], [5, 24]], [[48715, 20299], [21, 21]], [[48736, 20320], [17, -23]], [[30143, 37842], [-165, 0], [0, -35]], [[29978, 37807], [-155, 0]], [[29823, 37807], [-23, 107], [19, 18], [-1, 178], [-50, 0], [0, 27], [-56, 0], [0, 27], [-55, 0], [-1, 53], [-37, 0], [0, 36]], [[29913, 38452], [55, -9], [59, 42], [63, -7], [29, 12], [54, -5], [22, -36]], [[30195, 38449], [96, -71], [156, -22]], [[30447, 38356], [-1, -166], [-120, -5], [-56, -22], [-8, -107], [56, 0], [-1, -161], [-9, -54]], [[43094, 33260], [-93, -76]], [[43005, 33502], [37, 1]], [[43042, 33503], [202, 0]], [[37038, 29097], [14, -80], [-39, -1], [0, -27], [-60, 0]], [[36953, 28989], [-29, 0], [-2, 217], [-4, 61], [-33, 66], [4, 32]], [[36889, 29365], [13, 0]], [[40676, 34761], [-1, 193]], [[40675, 34954], [51, -1]], [[40877, 34954], [1, -226]], [[40861, 34728], [-177, -6]], [[39754, 31865], [42, -8], [75, -35]], [[39871, 31822], [27, -72]], [[39898, 31750], [-35, -24], [-26, -72], [-5, -48]], [[39832, 31606], [-130, -4]], [[39702, 31602], [4, 258]], [[32301, 35821], [0, 16]], [[32301, 35837], [0, 216]], [[32301, 36053], [242, 2], [354, 0], [-9, -41], [-44, -63]], [[32844, 35951], [-41, -8], [-13, -35], [-30, -8], [0, -79]], [[32760, 35821], [-459, 0]], [[46380, 35874], [50, -77], [27, 9], [137, -104]], [[46594, 35702], [-5, -6]], [[46589, 35696], [-63, -145], [0, -19]], [[46526, 35532], [-55, 37], [-53, -9], [-12, 61], [-82, -23], [-25, 56], [-42, -12]], [[44205, 33749], [25, -36], [57, -7], [26, -64], [36, -21], [6, -29], [60, -90]], [[44415, 33502], [-144, 0]], [[44084, 33502], [0, 68], [19, 16], [-6, 51], [-21, 46], [-52, 35]], [[44024, 33718], [47, 48], [44, 8], [30, 40]], [[42007, 30699], [-46, 2]], [[41961, 30701], [-41, 2]], [[41920, 30703], [0, 44], [-80, 92], [-48, -8]], [[41792, 30831], [-1, 46]], [[41791, 30877], [42, 37]], [[41833, 30914], [87, -1], [55, 10], [8, 20]], [[41983, 30943], [29, 21], [28, -18]], [[35002, 36264], [-208, 1]], [[34633, 36265], [-2, 270]], [[34631, 36535], [317, -1]], [[39745, 29883], [-54, 38], [-28, 45]], [[39681, 30155], [0, 9]], [[39681, 30164], [230, -5]], [[40720, 29851], [44, -1], [19, -38]], [[40783, 29812], [-34, -52], [-40, -17], [-26, -35]], [[35780, 33836], [-173, 0]], [[44150, 31032], [38, 90]], [[44188, 31122], [30, 49]], [[44218, 31171], [71, 0], [57, 25], [14, -25]], [[44360, 31171], [5, -51], [-22, -47], [-1, -54]], [[44342, 31019], [-100, 4]], [[33611, 36248], [296, 0]], [[33920, 35969], [-94, 13], [-17, 19], [-38, -35], [-46, 11], [-10, 23], [-78, 51], [-33, -5]], [[42809, 30469], [-171, 4]], [[42638, 30473], [19, 236]], [[42657, 30709], [45, -30], [42, -3]], [[18748, 45387], [-14, 64], [-73, 7], [-8, -72], [110, -219], [-21, -25], [44, -95], [17, -70], [-23, -10], [6, -57], [-112, 43], [-44, 80]], [[18630, 45033], [-13, 47], [22, 24], [1, 72], [-55, 42], [-89, 29], [82, 134], [-56, 37], [-7, 48], [-82, 48], [-31, 0], [-226, 50]], [[18176, 45564], [10, 15], [-4, 111], [76, 0], [28, 58], [-50, 26], [70, 25], [104, 13], [102, 42]], [[18512, 45854], [149, -234], [150, -3]], [[18811, 45617], [30, -40], [113, -20], [9, -36], [50, -38], [37, 0], [68, -102]], [[32495, 37767], [0, 216], [-25, 0], [0, 216]], [[32470, 38199], [247, 0]], [[32717, 38199], [29, 0], [0, -215]], [[34807, 35179], [203, 0]], [[34809, 34857], [-2, 107]], [[37804, 32878], [22, -6]], [[37827, 32569], [-73, 1], [0, -36]], [[37754, 32534], [-42, 1]], [[39990, 31927], [-41, 13], [-54, -4], [-24, -114]], [[39773, 31954], [30, 42], [30, 14], [65, 56]], [[39898, 32066], [54, -20], [8, -25]], [[49398, 20302], [45, 15], [-4, -39], [-41, 24]], [[31447, 35832], [0, 417], [3, 243]], [[31450, 36492], [-7, 265]], [[31443, 36757], [49, 4], [364, 0]], [[31855, 36253], [0, -419]], [[41250, 29858], [44, -74]], [[41294, 29784], [26, -60], [30, -45], [-1, -27]], [[41349, 29652], [-111, -31]], [[41174, 29678], [0, 44]], [[38203, 30861], [0, -184]], [[38203, 30677], [-235, 2]], [[37968, 30679], [1, 128]], [[37969, 30807], [1, 55]], [[37970, 30862], [186, 3], [47, -4]], [[37964, 30369], [204, -3]], [[38174, 30295], [-5, -71], [-41, -24], [-35, -3], [7, -37], [-41, -26], [-6, -36], [-47, -53]], [[38006, 30044], [-71, 0]], [[38143, 27604], [-11, -115], [4, -56]], [[38136, 27433], [-14, 10], [-85, 0]], [[38037, 27443], [-33, 45], [-1, 54]], [[38003, 27542], [20, 29], [120, 33]], [[24912, 33299], [-44, -8], [-63, -66], [-5, -146]], [[24741, 33055], [-56, -15], [-29, 53], [10, 20], [-18, 71], [2, 56]], [[24650, 33240], [94, 27], [15, 15], [30, 96], [67, 4], [32, 44]], [[24888, 33426], [29, 26]], [[39939, 29366], [-40, 30], [-119, 2], [0, -14]], [[39780, 29384], [-38, 30], [-24, 42], [-1, 49]], [[39717, 29505], [25, 13], [61, 58], [22, 4], [46, 61], [30, 1], [38, 48]], [[30742, 32626], [19, -31], [10, -64]], [[30771, 32531], [23, -48], [-23, -65]], [[32742, 30164], [0, -7]], [[32742, 30157], [-304, 1], [1, 186]], [[32439, 30344], [14, 54], [92, -1], [0, 54], [46, 0], [0, 54], [46, 0], [0, 55], [105, 0]], [[32742, 30560], [0, -128]], [[34346, 30660], [-2, 215]], [[34344, 30875], [323, -1]], [[39759, 34398], [202, 0]], [[39911, 34237], [-152, 1]], [[40245, 36622], [-1, -162]], [[40244, 36460], [-181, 4]], [[40063, 36464], [-9, 80], [9, 36], [62, 21], [7, 23]], [[43204, 35568], [33, 0], [46, -30], [16, 29], [74, 16], [73, -2]], [[43446, 35581], [0, -136]], [[43446, 35445], [0, -205]], [[43446, 35240], [-138, -50], [-50, -9], [-42, 55], [-30, 5]], [[43186, 35241], [-33, 20]], [[43153, 35261], [38, 74], [57, 29], [29, 29], [-3, 35], [-32, 71], [-34, 18], [-4, 51]], [[44032, 33017], [-55, 29], [0, 25], [-36, 22]], [[43941, 33093], [-58, 10], [-29, 45], [30, 45]], [[43884, 32917], [-7, 5]], [[44036, 32961], [-17, 19]], [[44009, 32991], [23, 26]], [[42511, 31550], [-99, 0]], [[42379, 31607], [16, 26], [-17, 1], [-7, -14]], [[42455, 31748], [46, 32]], [[38302, 33010], [71, -46], [-2, -27]], [[38371, 32937], [-34, 10], [-45, 41], [-36, -41], [-26, 4], [-44, -88], [-51, 2], [-32, -31]], [[38002, 32778], [3, 199]], [[38005, 32977], [59, 4], [19, 28], [50, 8]], [[38133, 33017], [18, -30], [33, -8], [42, 58]], [[24641, 31757], [27, 3]], [[24668, 31760], [41, 52], [30, -14], [89, 1]], [[24828, 31799], [32, -77], [97, -60]], [[24957, 31662], [137, -155], [3, -99], [-35, -38]], [[44626, 33209], [3, -63]], [[44629, 33146], [-38, -22], [-41, -73], [-9, -44]], [[44541, 33007], [-64, 16], [-3, -39], [-42, -19]], [[44432, 32965], [-1, 48], [17, 44], [2, 58]], [[44450, 33115], [18, 8], [21, 53], [26, 29], [63, 13], [48, -9]], [[35999, 33460], [-98, 0]], [[35901, 33460], [0, 215]], [[35901, 33675], [196, -1]], [[42103, 29038], [8, -61], [29, -41], [12, -51]], [[42152, 28885], [-150, -55]], [[42002, 28830], [-16, 53], [-33, 23], [-33, -4]], [[41893, 29069], [13, 42]], [[41906, 29111], [70, 26]], [[41503, 32123], [15, 20], [-8, 80], [-13, 42]], [[41497, 32265], [17, -8], [60, 32], [53, -22]], [[41661, 32245], [-15, -26], [-12, -84], [16, -37], [-53, -99]], [[28989, 37276], [0, 133], [-54, 0], [-2, 321]], [[41621, 28920], [18, -92], [7, -83], [23, -34]], [[41669, 28711], [-44, -25]], [[41625, 28686], [-36, 54], [-69, 45], [-18, 34]], [[41521, 28857], [11, -1], [60, 71]], [[44102, 30617], [-8, -26], [36, -29], [57, -23], [35, 26]], [[44050, 30471], [-14, 12], [0, 146], [-34, 9], [-125, 91]], [[43913, 30797], [43, 25], [24, -11], [21, 35]], [[36110, 33674], [-48, 32], [10, 45], [-35, 37], [-1, 37], [-32, 11]], [[36166, 33836], [47, 0], [13, -81]], [[33829, 31513], [237, 1]], [[34066, 31514], [1, -274]], [[33832, 31240], [-3, 0]], [[23958, 37485], [42, 8], [92, -63], [40, -76], [12, -68]], [[24144, 37286], [10, -75]], [[24081, 37206], [-44, 36], [-144, 0]], [[42831, 29900], [-30, 0], [-13, 38]], [[42788, 29938], [36, 25], [-47, 37]], [[42777, 30000], [-30, 24]], [[42937, 30155], [37, -42]], [[42974, 30113], [-10, -29], [25, -48], [10, -98], [39, -34], [34, -57]], [[33252, 38519], [-224, -1], [0, -54]], [[33028, 38464], [-77, 13], [-35, 27]], [[32916, 38504], [-1, 51], [35, 39], [-19, 48], [-96, 47]], [[28450, 31823], [-193, 0], [-309, 0]], [[27948, 31823], [-1, 373]], [[27947, 32196], [203, 0], [49, 8], [0, -55], [96, 0], [0, -29], [94, -5], [60, 16]], [[31332, 36872], [7, -115]], [[31339, 36757], [-357, 2], [-360, 2]], [[30475, 36761], [-1, 20], [56, 114], [-252, 0], [8, 133], [16, 20]], [[30302, 37048], [143, -3], [54, 36], [54, 0], [0, 164], [10, 71], [72, 0], [36, 54], [54, 0], [0, 35], [71, 0]], [[30796, 37405], [38, 0], [0, -53], [108, 0], [0, -27], [54, 0], [0, -27], [49, 0]], [[43232, 34677], [206, 4], [28, -17]], [[32302, 34910], [0, 377]], [[32302, 35287], [0, 240]], [[32302, 35527], [239, 0]], [[38602, 28386], [-7, 65], [-66, 44], [0, 102]], [[38573, 28601], [110, 10]], [[38683, 28611], [1, -224]], [[48414, 20378], [13, -42]], [[48427, 20336], [-11, -53]], [[48416, 20283], [-34, 7]], [[40129, 33088], [-103, -1]], [[40026, 33087], [-23, 0], [-5, 180]], [[39998, 33267], [57, 1]], [[40413, 32802], [-2, -38]], [[40411, 32764], [-28, -35], [-38, -11], [-23, -43]], [[40322, 32675], [-8, -35], [-38, -35], [-21, 12]], [[40167, 32698], [0, 43], [47, 10], [16, 35]], [[40711, 32263], [38, -49]], [[40749, 32214], [-29, -26], [-54, -27]], [[40666, 32161], [-22, -10], [-62, 8]], [[40582, 32159], [5, 53]], [[40587, 32212], [2, 30]], [[40589, 32242], [122, 21]], [[41076, 32158], [-26, 23], [-54, -9]], [[41000, 32349], [34, -9]], [[34067, 30431], [-181, 1]], [[33886, 30432], [-54, 0]], [[33832, 30432], [0, 269]], [[33832, 30701], [235, 0]], [[34067, 30701], [0, -94]], [[35561, 27478], [15, -34], [53, -51], [36, -6], [32, -91], [36, -21]], [[35522, 27047], [43, 44], [-101, 149], [-36, 35]], [[39183, 34578], [4, -162]], [[39038, 34359], [-4, 215]], [[35613, 36533], [156, 0]], [[35775, 36265], [-163, 0]], [[35612, 36265], [0, 214]], [[42002, 28830], [27, -39]], [[42029, 28791], [-19, -26]], [[42010, 28765], [-55, 2], [-40, 19], [-20, 122]], [[34974, 29621], [188, 0]], [[35162, 29621], [45, -2]], [[35207, 29619], [-7, -271]], [[10986, 47436], [-1, -535]], [[10793, 46580], [-511, 0], [-603, 0]], [[9679, 46580], [-508, 0], [0, 54], [-155, 0], [0, -54], [-77, 0], [0, -53], [-78, 0], [0, 53], [-463, 0], [-32, -53], [0, -54], [-77, 0], [0, -53], [-76, 0], [0, -107], [-30, -54], [-75, 0], [0, -107], [-76, 0], [-28, -53], [0, -107], [-75, 0], [0, -107], [-100, 0], [0, -107], [-74, 0], [0, -107], [-25, -54], [-73, 0], [0, -53], [-74, 0], [0, -107], [-23, -54], [-72, 0], [-1, -99]], [[7487, 45304], [-17, -8]], [[7470, 45296], [-128, 0], [11, -53]], [[7353, 45243], [-14, -46], [-110, -39], [-25, -23], [-112, 56], [74, 74], [-6, 120], [-86, 112], [-33, 74], [46, 68], [70, 54], [38, 14], [-74, 97], [-16, 57], [-79, 86], [-13, 52], [-109, 125], [-52, -15], [-5, -89], [-89, -5], [-44, -35], [-121, -45], [-115, -25], [-91, -12], [-162, 2], [-80, 20], [-41, 69], [7, 47], [-84, 32], [-58, 76], [-78, 60], [-66, 4], [-49, 23], [-73, 58], [73, 46], [-42, 22], [-58, -29], [-75, 6], [-8, 44], [49, 1], [90, 67], [13, 44], [0, 89], [-41, 11]], [[5704, 46590], [55, 26], [89, 11], [78, -2], [38, -23], [126, 28], [38, 22], [-25, 37], [84, 68], [42, 11], [-38, 70], [10, 30], [87, -3], [57, -20], [57, 12], [-3, 29], [45, 38], [112, -9], [47, 19], [94, 12], [56, 24], [93, 12], [13, -33], [64, 9], [137, -25], [56, 3], [82, 29], [108, 24], [140, 19], [75, 53], [78, 33], [78, 13], [107, 37], [-52, 31], [-28, 47]], [[4696, 46150], [54, 14], [89, 0], [118, -13], [3, 36], [53, 36], [97, 38], [52, -21], [73, 22], [54, -42], [86, 13], [88, -32], [-18, -34], [26, -85], [-20, -20], [55, -98], [-112, -11], [-81, -18], [-72, -68], [-36, 37], [-59, 25], [-90, -2], [-162, 81], [-50, 5], [-62, 44], [-86, 93]], [[2248, 46331], [10, 37], [39, 27], [29, -61], [52, -37], [75, -33], [73, -1], [43, -40], [-122, -5], [-51, 24], [-91, 73], [-57, 16]], [[40774, 28687], [-24, 0]], [[40750, 28687], [5, 67], [-3, 126]], [[41247, 29257], [-37, 27], [-26, 0], [-23, 40]], [[41161, 29324], [-16, 68], [-30, 43]], [[41233, 29459], [51, 9]], [[41284, 29468], [31, -160]], [[40915, 29944], [22, 29], [56, 29]], [[40993, 30002], [15, 72]], [[41043, 29838], [-18, -20]], [[37165, 37159], [156, -2], [0, 54], [163, -2], [0, -53]], [[37484, 37156], [-1, -266]], [[37483, 36890], [-262, 0]], [[37221, 36890], [5, 54]], [[38493, 35411], [0, 27]], [[38493, 35438], [204, 0], [0, -7]], [[38698, 35218], [-15, 0]], [[48676, 20253], [34, 22]], [[48681, 20203], [-34, -16]], [[48647, 20187], [-11, 1]], [[45595, 34617], [-6, -99]], [[45398, 34490], [0, 2]], [[45398, 34492], [15, 43], [-15, 28]], [[44262, 31955], [11, 4], [57, -78]], [[44330, 31881], [-6, -36], [26, -29]], [[44350, 31816], [-100, 80], [3, 30]], [[32871, 32220], [-143, 0]], [[32728, 32220], [-143, 0]], [[32586, 32604], [287, 1]], [[34458, 30364], [-41, -59], [-18, -72], [14, -54]], [[34413, 30179], [-24, 41], [-60, -17], [-33, 12]], [[34296, 30215], [-41, 14], [-14, -27], [-41, 2], [-65, 79]], [[27707, 38483], [9, -116], [102, 0], [-10, -64], [20, -19], [-12, -48], [66, -21], [7, -134]], [[27889, 38081], [-29, -11], [-74, 55], [-115, 40], [-48, -3]], [[27623, 38162], [-75, 27], [-6, 52], [-131, 55], [-98, 5], [-53, -9]], [[27260, 38292], [-53, 38], [26, 32], [-13, 63], [-44, 35], [-98, 139]], [[27078, 38746], [17, -34], [91, 39], [44, 9], [1, -37], [26, -64], [43, -58], [6, -44], [148, 6], [13, 61], [63, 0]], [[33329, 28790], [188, 0]], [[36668, 30720], [-24, 1], [4, 142]], [[36648, 30863], [20, 38], [-21, 42], [1, 54], [39, -1], [9, 44], [23, 17]], [[36719, 31057], [94, 5]], [[34893, 31491], [0, -184]], [[34893, 31307], [-47, 0]], [[34661, 31307], [-139, -2]], [[34522, 31305], [-2, 213]], [[39450, 31599], [132, 2]], [[39582, 31601], [97, 1]], [[39679, 31602], [-3, -116]], [[39676, 31486], [-69, -62], [-3, -20]], [[39604, 31404], [-99, 8]], [[26476, 39231], [41, -1], [133, 0]], [[26650, 39230], [-1, -94]], [[33107, 38350], [-26, 31], [2, 97], [-33, 12], [-22, -26]], [[33647, 38092], [-6, 58], [-36, 27], [-85, -18]], [[24520, 37162], [24, 27], [57, 0], [93, 20]], [[24694, 37209], [35, -17]], [[24729, 37192], [1, -110], [-18, 0], [0, -162], [-94, 0]], [[36693, 35307], [0, 162]], [[36899, 35470], [-1, -217]], [[36898, 35253], [-205, 1]], [[36687, 28470], [-46, 32], [-135, 20]], [[36457, 28720], [216, 3]], [[36673, 28723], [20, -36], [29, -17], [11, -30]], [[36733, 28640], [37, -88], [-18, -72]], [[37920, 32253], [-69, 2], [1, 53], [-96, 2]], [[37756, 32310], [-2, 224]], [[42866, 32604], [39, -28], [85, -25]], [[42990, 32551], [29, -20], [-16, -38]], [[43003, 32493], [-72, -131]], [[42753, 32410], [42, 69]], [[36181, 37444], [-272, 1]], [[35909, 37445], [-215, 0]], [[35694, 37445], [-7, 108], [0, 215]], [[36173, 37821], [4, -215]], [[38646, 27267], [-42, 20], [-43, -73], [67, -49], [18, -38], [76, -3], [38, -46], [10, 21], [38, -59], [10, -38], [38, -7], [-27, -55], [-35, -24], [2, -37], [-88, 38], [-3, 47], [-26, -1], [-32, 54], [-53, 23], [-15, 23], [-88, 18], [-27, -15]], [[38464, 27066], [-32, 95], [-1, 81], [-16, 58], [-22, 40], [-1, 56], [27, 41]], [[38419, 27437], [42, -17]], [[38797, 30016], [-46, 0], [0, 54]], [[38934, 30196], [0, -179]], [[37521, 29358], [265, -1]], [[37786, 29357], [11, 0]], [[37797, 29357], [-33, -78], [-24, -15], [-31, -116]], [[37589, 29048], [-5, 70], [-22, 57], [-39, 7]], [[40413, 32513], [-18, -14], [-8, -65]], [[40387, 32434], [-67, -97], [-42, -13]], [[40278, 32324], [-34, 29], [-17, 53], [-36, 33]], [[40191, 32439], [28, 27], [70, 28], [68, -9], [56, 28]], [[39721, 29186], [0, -41], [44, 1]], [[34847, 28685], [23, -47], [-134, -97]], [[34647, 28551], [-111, 233]], [[27078, 38923], [0, 308]], [[27078, 39231], [366, -1], [209, 1]], [[48870, 20140], [-18, 21]], [[48852, 20161], [-1, 2]], [[48851, 20163], [24, 58]], [[48875, 20221], [21, 14]], [[48736, 20320], [6, 11]], [[48764, 20337], [25, -3]], [[36362, 37606], [-21, 16], [-4, 253]], [[36778, 37874], [-247, 2], [5, -108], [2, -211], [-7, -7]], [[36531, 37550], [-44, 33], [-40, -18], [-51, 29]], [[30809, 32083], [154, 1]], [[31145, 32072], [14, 0]], [[31159, 32072], [0, -108], [35, -21], [4, -34], [49, -90]], [[31247, 31819], [-172, -1], [-3, 5], [-237, 0]], [[30835, 31823], [-26, 0]], [[38136, 29305], [90, 1], [1, 53], [37, 1]], [[38437, 29279], [-23, -36], [-13, -53], [-65, -44], [-49, -15], [-41, -40], [-20, -1]], [[38226, 29090], [-45, -41]], [[39029, 36508], [157, -3]], [[39186, 36505], [24, 1], [-1, -213]], [[39209, 36293], [-92, 1]], [[39117, 36294], [-146, 0]], [[36630, 33006], [5, 140]], [[36785, 33185], [47, 25], [40, -18], [31, 6], [5, 40]], [[36900, 33022], [-1, -9]], [[43723, 31123], [34, -24], [14, -61], [23, -33]], [[43794, 31005], [-15, -14]], [[43779, 30991], [-53, -42]], [[43726, 30949], [-106, 0]], [[43620, 30949], [-26, 11], [-16, 67], [-13, 12]], [[43565, 31039], [158, 84]], [[41635, 34014], [-10, -127], [-43, 3]], [[41462, 33942], [27, 35], [0, 96], [43, 1], [0, 36]], [[28045, 37786], [70, -1], [0, 36], [50, 0], [32, 17], [0, 36], [27, 18], [50, 0]], [[28274, 37892], [26, -11], [55, -62], [34, 13], [1, -289]], [[28390, 37543], [0, -27], [-108, 0], [3, -110], [-105, -65]], [[28180, 37341], [-57, 16], [-17, 43], [-50, 1], [22, 47], [-30, 62], [20, 9], [-3, 81], [-40, 92], [27, 50], [-7, 44]], [[34387, 38358], [333, 0]], [[34721, 38197], [-334, 1]], [[36696, 31058], [23, -1]], [[36648, 30863], [-67, -57], [-89, 25]], [[35013, 28061], [-59, -75], [-38, -99]], [[34916, 27887], [-32, -85], [0, -38]], [[34884, 27764], [-99, 37]], [[34785, 27801], [0, 45], [-29, 54], [-2, 65], [13, 57], [-23, 48]], [[34744, 28070], [3, 67]], [[34747, 28137], [230, 3]], [[38241, 32466], [71, 53]], [[38312, 32519], [21, -26]], [[38333, 32493], [32, -15], [62, -62], [22, -54]], [[38449, 32362], [-27, -32], [-48, -93]], [[38374, 32237], [-39, -1], [-113, 129], [60, 64], [-41, 37]], [[33594, 30970], [238, 0]], [[33832, 30970], [0, -269]], [[33832, 30701], [-238, -1]], [[38028, 34069], [50, -2]], [[38078, 34067], [150, -5]], [[36077, 34391], [100, -1]], [[36177, 34390], [99, 0]], [[36276, 34390], [0, -160]], [[36276, 34230], [-199, 1]], [[37900, 31137], [73, -3]], [[37971, 31025], [-1, -163]], [[37969, 30807], [-92, 2], [0, 54], [-42, -4]], [[37835, 30859], [-103, 2], [1, 54]], [[31925, 28736], [4, -465], [1, -254], [-4, -106]], [[31926, 27911], [-28, -21]], [[31898, 27890], [-12, 35], [-38, 19], [-52, 55], [-79, 30], [-1, 21], [-69, 63], [-12, 41], [-28, 36], [-54, 32], [-42, 75], [-27, 15], [-29, 46]], [[31455, 28358], [17, 22], [-15, 34], [-2, 323]], [[37513, 28326], [-17, -18], [-46, 9], [-1, -117], [11, -103], [-31, 0]], [[37291, 28054], [-99, -3]], [[37192, 28051], [-2, 223], [-22, 41], [-44, 18]], [[37124, 28333], [30, 13], [84, 92]], [[33757, 34535], [201, 0]], [[33970, 34107], [-242, 0]], [[33524, 34105], [-1, 189]], [[36661, 29365], [0, -85]], [[36661, 29280], [-266, -1]], [[36395, 29279], [1, 240]], [[39297, 31428], [-42, -1], [2, -61], [-56, -87]], [[39062, 31299], [6, 216]], [[39080, 31515], [190, -3]], [[43561, 33168], [22, -3], [-9, -19], [-13, 22]], [[43577, 30705], [52, 2], [70, -19], [21, 10]], [[43765, 30593], [25, -21]], [[43790, 30572], [10, -31], [-12, -126]], [[43788, 30415], [-136, -2], [-53, 3]], [[41521, 31007], [52, -69], [-14, -60], [23, -29]], [[41582, 30849], [-38, -65], [-39, -16]], [[41505, 30768], [-33, 50], [-82, 87]], [[41360, 31017], [0, 12]], [[41360, 31029], [79, 47], [48, 0]], [[37099, 36435], [-106, 0], [0, 45]], [[36972, 36632], [34, 13], [32, 47]], [[37038, 36692], [22, 19], [47, -17]], [[37107, 36694], [6, -74], [35, 6], [54, -22]], [[25651, 34905], [-15, 1]], [[25402, 35904], [0, 53]], [[48939, 20101], [-27, -20]], [[48912, 20081], [-33, 49]], [[38597, 36133], [0, -210]], [[38597, 35923], [-81, -1]], [[38516, 35922], [-35, 88], [-42, 50], [0, 71], [-19, 18], [-9, 51], [54, 98]], [[38465, 36298], [77, -1]], [[37770, 33828], [-197, 5]], [[37573, 33860], [3, 188]], [[37675, 34044], [101, -133], [28, -3]], [[40653, 33076], [25, 46]], [[40678, 33122], [30, 26], [56, -45]], [[40689, 32969], [-33, 27]], [[40587, 32212], [-99, 0], [-51, 27], [-12, 35]], [[40425, 32274], [48, 62], [60, 41]], [[40533, 32377], [53, -4]], [[40586, 32373], [14, -23], [-11, -108]], [[37548, 28320], [7, -54], [36, 36], [32, -19]], [[37623, 28283], [11, -18], [58, -30], [-18, -33], [-3, -56]], [[37671, 28146], [-11, -16]], [[38544, 30313], [-208, 0]], [[38335, 30418], [13, 21], [62, -31], [52, 40], [81, -1]], [[38543, 30447], [0, -53], [23, 0], [1, -81]], [[36587, 33912], [-167, 1]], [[36420, 33913], [-15, 53], [0, 61]], [[36405, 34027], [70, 0]], [[34614, 34535], [-2, -214]], [[34612, 34321], [-200, 0]], [[34414, 34535], [197, 0]], [[33880, 37128], [10, 34], [43, 36], [-34, 100], [-49, 46]], [[34190, 37342], [0, -215]], [[32306, 37306], [-1, 39]], [[32786, 37344], [-4, -132], [-3, -320]], [[32779, 36892], [-471, 0]], [[40671, 35600], [-4, 214]], [[40667, 35814], [104, 0]], [[40771, 35814], [103, 0]], [[40874, 35814], [1, -208]], [[36475, 34230], [0, 159]], [[39080, 31865], [-33, 4]], [[39047, 31869], [-22, 25], [-52, 18], [-29, 26], [-55, 24]], [[38889, 31962], [0, 47]], [[38889, 32009], [11, 21], [84, 1]], [[33952, 34749], [6, -1]], [[35013, 34399], [-25, -36], [-54, -26], [-60, -55], [-59, -71]], [[34815, 34211], [-2, 109]], [[34813, 34320], [0, 215]], [[34813, 34535], [5, -80], [76, 0], [21, 18], [67, 9], [84, 1], [1, 53]], [[32851, 35526], [309, 0]], [[33160, 35526], [7, -132], [0, -211], [13, 0], [-1, -214], [14, 0]], [[33193, 34969], [-1, -54], [-25, 0]], [[33167, 34915], [-266, -3]], [[32901, 34912], [-9, 0]], [[38939, 31682], [-111, 0], [-24, 8]], [[38804, 31690], [-6, 38], [16, 60]], [[38814, 31788], [48, -15], [76, 21]], [[38938, 31794], [1, -4]], [[30970, 35835], [225, -5], [225, 2]], [[41186, 28323], [-151, 2]], [[41035, 28325], [1, 68]], [[41027, 28520], [-3, 37], [38, 85]], [[41121, 28615], [3, -112], [34, 0], [30, -34]], [[39998, 33267], [-108, 4]], [[39866, 33347], [12, 81]], [[39878, 33428], [83, 0], [61, 19]], [[40022, 33447], [33, 1]], [[35642, 28939], [-223, -157]], [[35419, 28782], [-19, -14], [-64, 132]], [[35357, 29075], [221, -2]], [[41782, 28257], [-43, 41], [-14, 78]], [[41725, 28376], [31, 8], [52, 62]], [[41808, 28446], [40, -36]], [[41848, 28410], [34, -10], [6, -51]], [[3275, 135], [-17, 26]], [[3258, 161], [31, 37], [19, -31], [-33, -32]], [[40405, 34024], [1, -115]], [[40406, 33909], [-58, 0]], [[40348, 33909], [-124, -1]], [[40224, 33908], [0, 18]], [[40224, 33926], [0, 98]], [[40224, 34024], [-1, 53]], [[42153, 27130], [-19, -1], [-19, 64], [-1, 75]], [[42249, 27298], [48, -150]], [[38315, 28562], [54, 21]], [[38433, 28589], [0, -148], [7, -81]], [[38405, 28326], [-89, 9]], [[37127, 28556], [14, 90], [26, 53], [-1, 44], [-24, 84]], [[37142, 28827], [54, 0]], [[38429, 34384], [-197, 1]], [[38341, 34653], [141, -1]], [[23565, 36314], [13, 86], [12, 150], [-4, 107], [15, 43], [12, 89]], [[23735, 36788], [0, -188], [53, -11]], [[46713, 35860], [-11, 155]], [[46702, 36015], [89, 14]], [[46791, 36029], [54, -15], [0, -49], [48, 3], [40, -45], [-15, -22], [60, -44]], [[46978, 35857], [-3, -60], [-24, -48], [-52, -15], [-25, -54], [-13, -71], [-35, -46]], [[46826, 35563], [-51, 39]], [[46775, 35602], [1, 71], [-70, 75], [7, 112]], [[35424, 36640], [-264, 0]], [[35158, 36855], [117, 0]], [[35275, 36855], [149, -1], [1, -107]], [[40819, 29467], [20, 15], [34, -12], [54, 0]], [[40750, 28687], [-110, 2]], [[40640, 28689], [-70, 42]], [[40570, 28731], [5, 44]], [[40575, 28775], [-2, 43], [38, 52], [22, 8]], [[45134, 33760], [45, 71]], [[45292, 33954], [1, 0], [0, 0], [37, 3], [61, -29], [9, -69], [-24, -122]], [[45376, 33737], [-33, 22], [-18, -23], [-35, 6], [-14, 36], [-63, 3], [-64, -58]], [[38081, 31513], [90, 0]], [[38326, 31513], [30, 0], [11, -54], [28, -17], [-27, -94], [-29, -19]], [[38339, 31329], [-57, 0], [1, 36], [-212, 5]], [[37498, 30595], [-46, 2], [-1, -54], [-80, 0], [-57, 16]], [[37310, 30658], [23, 35], [-12, 36], [19, 32], [2, 54]], [[37503, 30812], [-4, -183]], [[36333, 31305], [-93, 0]], [[36242, 31520], [3, 99]], [[36411, 31513], [24, -208]], [[37473, 34392], [-100, 0]], [[37422, 34606], [153, 1]], [[37575, 34607], [0, -214]], [[38159, 33130], [6, 50], [-10, 121]], [[38155, 33301], [14, 78]], [[38291, 33378], [64, 0]], [[38355, 33378], [3, -159]], [[37642, 38737], [33, -1], [2, -52], [62, -13], [61, -28], [78, 22], [95, 64]], [[37973, 38729], [5, -185], [-1, -261]], [[37977, 38283], [-64, -61], [-82, -99], [-52, -50], [-42, -22], [-96, -93]], [[37641, 37958], [3, 375], [-5, 115], [0, 290]], [[37639, 38738], [3, -1]], [[40499, 29420], [-2, 13]], [[40497, 29433], [129, 59]], [[23605, 33675], [-25, 18], [-13, 46], [-34, 16], [-76, 81], [7, 33], [-27, 76], [35, 110], [74, 160], [20, 94], [-18, 16], [20, 109], [19, 145]], [[23587, 34579], [128, -1], [0, -51], [48, 1]], [[23763, 34528], [81, -10], [29, -115]], [[39604, 31404], [57, -9], [-14, -57], [10, -37], [-8, -65]], [[39649, 31236], [-9, -56]], [[37107, 36944], [0, -106]], [[37107, 36838], [-90, 0], [0, -55]], [[37017, 36783], [-37, 67], [-87, 63]], [[36893, 36913], [1, 104]], [[36894, 37017], [213, -2]], [[35097, 35435], [-105, 4], [-31, -54], [-29, -5], [-60, 47]], [[34872, 35427], [26, 83], [-8, 70], [15, 50]], [[41515, 31171], [-117, 146]], [[41398, 31317], [37, 38]], [[41647, 31265], [-3, -35]], [[44104, 31788], [-208, -146]], [[43896, 31642], [-26, 8], [14, 88], [-22, -11], [-48, 20]], [[43814, 31747], [96, 71]], [[43910, 31818], [106, 74]], [[39961, 34559], [-25, 0]], [[40066, 34761], [71, 0]], [[34960, 39231], [314, 0]], [[35274, 39231], [-2, -33], [26, -59], [30, -100], [-25, -90]], [[33532, 35767], [0, -242]], [[33532, 35525], [-176, -1], [-196, 2]], [[33160, 35526], [-11, 80], [-1, 161]], [[37192, 28051], [-67, -8]], [[37125, 28043], [-193, 3], [-25, -14], [-35, 6]], [[36872, 28038], [12, 34], [-15, 41], [18, 30], [-12, 90]], [[36875, 28233], [8, 56], [40, 0], [23, 54], [67, 1]], [[37013, 28344], [89, -1], [22, -10]], [[47979, 36917], [-108, -19], [15, -75], [-56, -11], [10, -53], [-55, -10], [24, -134], [-107, -26], [-23, -37], [-31, 14]], [[47452, 36589], [-39, 217]], [[47413, 36806], [217, 43], [-10, 51], [45, 9], [-35, 178], [-47, -10], [3, 93], [57, 14], [3, 439]], [[47646, 37623], [55, -8], [112, -1], [0, -209], [5, -106], [-3, -181], [8, -3], [159, 41]], [[44507, 32793], [-25, 32], [-50, 29], [-24, 40], [-34, 23], [30, 46], [28, 2]], [[44541, 33007], [23, -64], [-51, -53], [30, -34]], [[41297, 30255], [-26, 13]], [[41323, 30395], [103, -93]], [[26442, 29665], [-1, 18], [43, 77], [-53, 32], [-61, 99]], [[27780, 30020], [-1, -35], [-42, -61], [17, -141], [-12, -6], [0, -82], [-45, -74]], [[27697, 29621], [-89, -2], [-339, -2], [-207, -1]], [[37372, 31244], [1, 44], [-49, 83], [-3, 142]], [[38719, 29420], [0, -109]], [[38719, 29311], [-179, -1], [0, -28]], [[38540, 29282], [-103, -3]], [[36812, 35038], [102, 0]], [[36914, 35038], [101, 0]], [[37015, 35038], [0, -214]], [[37015, 34824], [-51, 1]], [[36964, 34825], [-152, 0]], [[36812, 34825], [0, 213]], [[36413, 32463], [-2, -225]], [[36411, 32238], [-205, 1]], [[43544, 32249], [35, 36]], [[43591, 32103], [-45, -53]], [[43546, 32050], [-38, -37], [-32, -2], [-30, 21]], [[42568, 30075], [0, -35], [33, -19], [36, -1], [34, -55], [28, -24], [78, 59]], [[42788, 29938], [-122, -89], [-62, -22], [3, -32], [-38, -1], [-24, -43]], [[42545, 29751], [-38, 61]], [[42507, 29812], [10, 21], [-15, 45], [7, 25], [-11, 67], [18, 25], [-7, 37]], [[10417, 45189], [1, -119], [-56, -25], [-15, -36], [-115, -35], [-121, -8], [-22, -34], [-71, 0], [-48, -26], [1, -196], [-91, -47], [-68, -1], [-32, -81], [-132, -51], [-60, -38], [-70, -1], [-61, -54], [3, -44], [-50, -17], [-58, -62], [0, -45], [172, -2]], [[9524, 44267], [-37, -46], [-41, -23], [-9, -39], [-50, 7], [-94, -26], [-52, -30], [-59, -70], [-26, -15], [-78, 59], [-40, -18], [-40, -80], [42, -50], [-90, -8], [-27, 41], [-80, -20], [-28, -27], [63, -24], [-14, -54], [-105, 29], [-7, -37], [-87, 14], [-74, -64], [4, -23], [123, -30], [-25, -52], [-70, -87], [7, -33], [-83, 21], [-24, -56], [-41, 32], [-46, -4], [-24, -43], [-203, -39], [-16, -51], [-36, -14], [-27, -79]], [[8130, 43328], [-2, 154], [-134, 0], [27, 53], [0, 215], [-41, 0], [0, 107], [136, 0], [0, 53], [136, 0], [0, 54], [98, 0], [0, 53], [69, 0], [0, 32]], [[8419, 44049], [48, -15], [47, 10], [-2, 118], [61, 84], [64, 69], [71, 52], [63, 22], [67, 74], [99, 54], [0, 97], [27, 91], [25, 158], [22, 22], [59, 8], [-65, 65], [5, 70], [37, 70], [40, 18], [44, 51]], [[9131, 45167], [411, 0], [0, 166], [-295, 0]], [[9247, 45333], [-79, -21]], [[9168, 45312], [-10, -3]], [[9158, 45309], [0, 148], [-34, 0], [0, 107], [73, 0], [0, 53], [147, 0], [0, 54], [41, 0], [0, 53], [74, 0], [0, 54], [148, 0], [0, 53], [72, 0], [0, 397], [0, 352]], [[42118, 32311], [37, -26], [47, -93], [7, -32], [36, -22]], [[41969, 32161], [23, 69]], [[25587, 30527], [0, 108], [-39, 7], [3, 57], [-49, -3], [0, 54], [-62, 1], [0, 53], [-31, 1], [0, 54], [-51, 18], [-39, 36], [1, 54], [-47, 0], [0, 108]], [[25558, 31075], [396, 0], [271, 0]], [[35398, 29610], [-191, 9]], [[35162, 29621], [1, 297]], [[42433, 29465], [-3, -3]], [[42245, 29625], [-66, 31]], [[42323, 29790], [34, -51], [69, -13], [49, -51], [15, -31], [47, 58], [24, -4]], [[42561, 29698], [26, -50], [36, -29], [57, 8]], [[38019, 36941], [0, 54], [108, -1]], [[38127, 36994], [277, 3]], [[38404, 36997], [-1, -162]], [[38403, 36835], [-67, 1], [0, -54], [-51, 0]], [[38285, 36782], [-265, -2]], [[38020, 36780], [-1, 161]], [[37310, 35835], [-205, 0]], [[37094, 36050], [2, 0]], [[35781, 36051], [0, 214]], [[35986, 36264], [57, 1]], [[46480, 34920], [51, -20]], [[46558, 34771], [-16, -18]], [[46542, 34753], [-13, 6]], [[46529, 34759], [-31, -15], [-145, -5]], [[37756, 32310], [-120, 1], [-2, -119]], [[37634, 32192], [-96, 2]], [[37538, 32194], [4, 252]], [[39134, 30437], [15, -9], [1, -171]], [[39150, 30257], [-93, 1]], [[39057, 30258], [0, 27], [-85, 0]], [[40936, 31571], [-35, 52], [-18, 64], [23, 102]], [[40906, 31789], [89, 6]], [[40995, 31795], [12, -63], [35, -32], [11, -46], [36, -25]], [[41089, 31629], [-35, -25], [11, -36]], [[41065, 31568], [-24, 1]], [[35236, 27966], [19, -11], [51, -171]], [[35306, 27784], [-78, -34]], [[35228, 27750], [-15, 10]], [[35213, 27760], [-33, 26], [-66, 25], [-40, -25], [-54, -9], [-63, 112], [-41, -2]], [[48912, 20081], [-46, -1]], [[48866, 20080], [-27, 34]], [[48839, 20114], [12, 46]], [[48851, 20160], [1, 1]], [[37310, 35658], [-205, 0]], [[37105, 35658], [0, 26]], [[41843, 29238], [27, -93], [36, -34]], [[37599, 28718], [48, -55], [21, 0], [37, 49], [22, 5], [9, -54]], [[37749, 28583], [-65, -10], [-5, -58], [-30, 4], [-22, -35], [20, -38], [-33, -21], [5, -74], [-8, -46], [12, -22]], [[44520, 34238], [116, 59], [-17, 43], [53, 27]], [[44748, 34177], [-58, -16]], [[44690, 34161], [-65, -33]], [[35805, 33836], [0, -161]], [[35805, 33675], [-100, 0]], [[35705, 33675], [-98, 0]], [[41810, 31302], [-59, -26], [-26, -26]], [[41725, 31250], [-39, -59]], [[41812, 30709], [108, -6]], [[41961, 30701], [35, -91], [17, -65], [19, -11]], [[42032, 30534], [-31, -47], [-31, -149]], [[38490, 36567], [-206, 0]], [[38284, 36567], [1, 215]], [[38403, 36835], [269, 0]], [[38760, 36779], [0, -215]], [[26656, 34909], [423, -2], [439, 0]], [[27518, 34907], [97, 3], [232, -4]], [[27847, 34906], [105, -1]], [[27952, 34292], [-2, -545]], [[26844, 34292], [-188, 0]], [[42494, 32765], [-59, 19], [-42, -31]], [[42328, 32852], [20, 31]], [[42348, 32883], [124, 99], [41, 16]], [[42513, 32998], [10, -28], [48, -18], [7, -56]], [[40242, 36245], [2, 215]], [[40244, 36460], [210, 0]], [[40454, 36460], [0, -214]], [[40454, 36246], [-100, 0]], [[32736, 29593], [2, 112]], [[32738, 29705], [2, 157]], [[32740, 29862], [188, 1]], [[32928, 29863], [9, -270]], [[32937, 29593], [-201, 0]], [[43492, 34127], [106, 4]], [[37034, 32318], [-168, 7], [0, 9]], [[36866, 32334], [2, 53], [25, -1], [3, 99]], [[36896, 32485], [191, -7]], [[37087, 32478], [-3, -98]], [[36738, 31513], [-91, 0]], [[37038, 36692], [-21, 91]], [[37107, 36838], [15, -1], [1, -143], [-16, 0]], [[36698, 29817], [1, 0]], [[36699, 29817], [-4, -50], [61, -37]], [[25482, 33212], [102, 53], [85, 176]], [[25669, 33441], [41, 18]], [[42096, 25349], [1, -56], [-42, -1], [0, -64], [-70, -1], [-12, 9]], [[41973, 25236], [-28, 60], [-45, 39], [-40, -4], [-14, 95], [5, 38], [28, 44]], [[41879, 25508], [216, -1]], [[23950, 34912], [-125, -2]], [[23825, 34910], [-132, -4]], [[23693, 34906], [0, 57], [-16, 30], [28, 55], [-43, 79], [-58, 4], [12, 87], [47, 0], [26, 81], [50, 94]], [[48642, 20310], [-4, 34]], [[48638, 20344], [4, 47]], [[48642, 20391], [41, 2]], [[48681, 20322], [-8, 1]], [[38184, 28118], [-1, 216]], [[38309, 28335], [0, -216]], [[38309, 28119], [-38, 0]], [[40074, 31022], [28, -26], [39, -11], [30, 10]], [[40202, 30766], [-54, 34], [-53, 12], [-45, -18]], [[27724, 37105], [55, -12], [41, -48], [33, 15], [111, 107], [33, 24]], [[27997, 37191], [8, -24], [49, -35], [-11, -50], [26, -3], [0, -67], [35, -88], [44, -49], [6, -33], [55, -44], [3, -62], [-22, -7], [17, -51], [43, -28], [48, 2], [63, -58], [42, -125], [2, -48], [82, -45]], [[39685, 32079], [-1, 40], [28, 50]], [[39886, 32231], [20, -60]], [[39906, 32171], [-30, -14], [22, -91]], [[35670, 34320], [-3, 89]], [[35842, 34410], [19, -20]], [[41220, 28167], [1, -27], [-71, 2]], [[41150, 28142], [-116, 2], [0, 22]], [[41034, 28166], [1, 159]], [[35694, 37445], [-1, -53]], [[35693, 37392], [-135, 0]], [[35558, 37392], [10, 38], [-19, 90], [-1, 62], [-29, 29], [-51, 157]], [[38600, 32575], [-1, -163]], [[38599, 32412], [-35, -94]], [[38564, 32318], [-54, 37], [-20, 27], [-41, -20]], [[38333, 32493], [74, 31], [-1, 54], [60, -2]], [[47076, 36445], [39, 62], [48, 14]], [[47163, 36521], [33, 6], [108, -27], [12, 31], [-24, 45], [65, 12], [5, -17]], [[47347, 36355], [-18, -50], [-44, 11], [-3, -97], [-44, 11]], [[42002, 31797], [42, -16], [47, 35], [61, 13]], [[42152, 31829], [25, -36]], [[42078, 31599], [-41, 93], [-60, 87]], [[32347, 30344], [92, 0]], [[32742, 30157], [-2, -295]], [[32738, 29705], [-199, 0]], [[32539, 29705], [0, 54], [-91, -1], [0, 101], [-54, 0], [0, 162], [-45, 0]], [[43042, 33503], [12, 61], [-23, 20], [54, 115]], [[43085, 33699], [74, 95], [29, 56]], [[42060, 31583], [-78, 1]], [[41843, 31572], [10, 33], [-53, -32]], [[42762, 31364], [219, -10]], [[26976, 36025], [134, -133]], [[26983, 35596], [-52, 50], [-20, 63], [-35, -3]], [[26876, 35706], [0, 104], [17, 0], [0, 108], [-17, 0], [0, 107]], [[34344, 30875], [0, 27]], [[34344, 30902], [-6, 26], [1, 161]], [[34339, 31089], [324, 0]], [[41362, 33949], [1, 38], [-74, -1]], [[41289, 33986], [-1, 112]], [[41288, 34098], [50, 10], [84, 0]], [[38173, 33575], [-12, -30]], [[38155, 33301], [-141, 3]], [[38740, 34041], [-25, 13], [-1, 82], [-98, 0]], [[38616, 34136], [1, 39], [35, 68]], [[38652, 34243], [185, 3]], [[38837, 34246], [51, 1]], [[41894, 29690], [7, -8]], [[39145, 29348], [16, 183]], [[39174, 29683], [143, -6]], [[34239, 31571], [0, -214], [4, -51], [93, 1]], [[34336, 31307], [1, -94]], [[34337, 31213], [-50, -21], [-28, -70], [-25, -14], [-44, 11], [-40, 42], [0, 44], [-36, -9], [-14, -44], [-33, -20]], [[34066, 31514], [0, 57]], [[38780, 32409], [-181, 3]], [[38793, 32571], [8, -54]], [[37319, 35092], [-102, 0], [0, -53]], [[37217, 35039], [-102, -1]], [[37115, 35038], [-1, 162], [-10, 53]], [[37104, 35253], [206, -1]], [[31081, 34293], [-6, -28], [62, -53], [31, -11], [9, -39], [-30, -107], [23, -106]], [[31170, 33949], [9, -64], [-2, -209], [4, -48]], [[45120, 33905], [-44, 1], [-12, 30]], [[45064, 33936], [-12, 49], [28, 50], [-6, 84]], [[45074, 34119], [74, 24], [42, -53]], [[24338, 33010], [-30, 24], [-33, 64], [-13, 88], [-26, -3], [-51, 27], [-36, 40], [15, 44]], [[24164, 33294], [263, 1], [55, 17], [52, -18]], [[24534, 33294], [-8, -49]], [[24526, 33245], [-16, -77], [22, -63], [20, -4], [13, -51], [-7, -39]], [[38889, 32009], [-51, 17]], [[30771, 32531], [247, 0]], [[28406, 35111], [0, -203]], [[27847, 34906], [-1, 261], [94, 0], [1, 60], [29, 7]], [[36894, 37017], [-1, 89]], [[42551, 34895], [83, 36], [61, 36], [23, 35], [33, -3], [130, 77]], [[42881, 35076], [0, -168], [66, 0]], [[42947, 34908], [-1, -91]], [[42946, 34817], [-395, -1]], [[38101, 28550], [1, 54]], [[38102, 28604], [8, 36], [-1, 126]], [[38109, 28766], [213, 1]], [[35776, 29254], [62, -1]], [[35838, 29253], [38, -42], [23, 4], [69, -34]], [[35968, 29181], [18, -21]], [[35986, 29160], [0, -128], [63, -77]], [[42745, 32083], [99, -70]], [[42990, 32551], [34, 31], [53, 112]], [[43077, 32694], [38, 41]], [[43115, 32735], [207, -168]], [[43322, 32567], [-13, -76], [-26, -22]], [[43283, 32469], [-28, -59], [-44, -43], [-38, 18], [-29, -12]], [[43144, 32373], [-141, 120]], [[43179, 32518], [25, 11], [-6, 34], [-26, -8], [7, -37]], [[9131, 45167], [78, 56], [37, 80], [1, 30]], [[9168, 45312], [-11, -4]], [[9157, 45308], [1, 1]], [[28943, 32750], [-36, -48], [2, -169]], [[28648, 32532], [21, 35], [26, 78], [-47, 45], [-33, 65]], [[41190, 32833], [1, -69]], [[41191, 32764], [-94, -42], [-31, 22]], [[41039, 32806], [38, 108]], [[36785, 37107], [-170, -1]], [[36615, 37106], [-23, 38], [-3, 50], [-27, 46]], [[36562, 37240], [-36, 28], [257, 1]], [[33832, 30432], [-176, 0]], [[40167, 27742], [48, 13], [13, 18], [159, -2], [1, 81], [22, 0]], [[40410, 27852], [23, -1]], [[40430, 27625], [0, -170]], [[40430, 27455], [-66, 44], [-20, 37], [-48, 25], [-79, 73], [-51, 33]], [[39251, 30521], [-24, 17], [-21, 47]], [[39206, 30585], [94, 7]], [[39615, 30439], [-36, 23], [-36, 2]], [[39689, 33645], [-143, 0]], [[38943, 33191], [-146, 1]], [[38797, 33273], [50, -2], [0, 190]], [[38940, 33460], [1, -45], [40, 0], [0, -36], [33, 0], [25, -46], [49, 0]], [[38990, 32950], [-192, -1], [-1, -55]], [[41886, 33397], [-49, 4]], [[41743, 33461], [-13, 56], [4, 54], [-33, 3], [4, 57]], [[41705, 33631], [99, -10]], [[41316, 30109], [-21, -17]], [[41295, 30092], [-33, 40], [-36, -5], [-25, 26]], [[41848, 28410], [0, 186], [37, 33]], [[41885, 28629], [35, -23]], [[42053, 28451], [17, -53]], [[42070, 28398], [-30, -32], [-17, -44]], [[35080, 31036], [232, -1]], [[35312, 30821], [-231, 0]], [[35403, 30176], [23, 0], [0, 107], [23, 0]], [[35632, 30068], [-20, -27], [-58, 0]], [[41505, 30768], [-27, -99], [-31, -48], [20, -16]], [[41467, 30605], [-44, -17]], [[41423, 30588], [-50, 116], [-23, 25], [-27, 63]], [[29712, 34290], [0, -113]], [[29319, 34093], [-32, -52], [-63, -2], [-11, -25], [-100, 51], [-6, 28], [-71, -42]], [[36842, 32335], [24, -1]], [[37036, 32080], [-191, 6]], [[36845, 32086], [2, 90]], [[26428, 33675], [105, 324]], [[37669, 35836], [52, -1]], [[37721, 35835], [2, -258]], [[40946, 32799], [-11, 152]], [[40935, 32951], [7, -14], [70, -21]], [[39242, 37330], [21, -29], [-27, -31], [32, -27]], [[39268, 37243], [-1, -42], [-159, 6]], [[42123, 33006], [24, 15], [45, -28], [29, 12]], [[42221, 33005], [25, -44], [0, -37], [21, -27], [10, -61], [28, -18]], [[42257, 32766], [-118, 13], [-25, 39]], [[43938, 32016], [22, 0]], [[43960, 32016], [5, -22], [-23, -10], [-4, 32]], [[38884, 35215], [0, -212]], [[38884, 35003], [-102, -1], [0, 33], [-97, -1]], [[29061, 29970], [13, 45], [-5, 49], [-103, 0], [22, 103], [1, 42], [36, 21], [10, 32]], [[29712, 29709], [0, -68], [-74, 0], [-22, -19], [-52, -5], [-49, -41], [2, -103]], [[44688, 32612], [-38, -9], [-30, 13], [-42, -29]], [[44578, 32587], [-23, 15], [24, 55]], [[41364, 32559], [-27, 20], [-15, 58]], [[41322, 32637], [47, 12], [-2, 48], [31, 54]], [[41550, 32671], [16, -18], [-6, -63]], [[42359, 30926], [7, 36], [-22, 59], [-31, 8], [-19, 38]], [[42393, 31240], [82, -3]], [[42475, 31237], [-6, -123]], [[42436, 30900], [-54, 6], [-17, -17]], [[43173, 31860], [81, -24]], [[43366, 31636], [-22, -12], [-15, -84]], [[44012, 31542], [108, -1]], [[44216, 31388], [2, -12]], [[44218, 31376], [-12, -20]], [[44206, 31356], [-110, -4], [-103, 5]], [[45350, 35499], [4, -36], [-78, -62]], [[45276, 35401], [-84, -15], [-84, 35]], [[45059, 35556], [95, -39], [194, -1]], [[35991, 38626], [0, -54]], [[35991, 38572], [-55, 1]], [[35936, 38573], [0, 18], [-337, 0]], [[35599, 38591], [-8, 130]], [[25030, 39019], [-69, -10], [-153, 0], [-535, 2]], [[24273, 39011], [-20, 81], [-49, -1], [-60, 68], [17, 29], [-5, 44], [435, -3], [395, 2]], [[25141, 36803], [-3, 10]], [[25138, 36813], [19, 22], [-30, 52], [-2, 103], [19, 61], [54, 17], [-20, 61], [-106, 87]], [[25072, 37216], [28, 6], [37, -29], [44, 0], [84, 16], [18, 22], [74, 32]], [[45376, 33737], [-14, -75], [-14, -134], [-62, -128], [-32, -34]], [[45254, 33366], [-30, -1], [-15, 36]], [[36988, 31513], [191, 0]], [[37179, 31513], [-13, -5], [-3, -232]], [[34898, 30498], [1, -107]], [[34899, 30391], [-23, 0], [0, -107]], [[34650, 30221], [0, 63], [-72, 0], [0, 53]], [[34072, 29329], [164, -2]], [[34236, 29054], [-8, 0]], [[34228, 29054], [-225, 5]], [[34003, 29059], [1, 270]], [[35736, 28009], [133, 26]], [[35883, 27890], [11, -180], [0, -57]], [[41273, 35453], [-102, -6], [1, -54]], [[41066, 35608], [-1, 54], [103, 1]], [[37941, 27540], [62, 2]], [[38037, 27443], [-53, -118]], [[37984, 27325], [-33, -54]], [[37951, 27271], [-8, 45]], [[37876, 27484], [13, 33]], [[38774, 29809], [0, -10], [-137, 0]], [[38637, 29799], [0, 90]], [[38927, 28386], [171, 2]], [[39098, 28388], [7, -199]], [[31416, 37909], [111, 1], [0, -18], [93, 0], [0, -54], [19, -53], [36, 0], [19, -54], [92, -1], [-1, -18], [111, 0], [55, 18], [0, 27], [55, 0]], [[32006, 37757], [0, -81], [-75, 0], [8, -104], [1, -109]], [[31898, 37247], [-527, 1]], [[35274, 37338], [290, 0]], [[35564, 37338], [-9, -71], [-39, -54], [-72, -52], [1, -38]], [[35445, 37123], [68, -109], [26, -1], [65, -50]], [[35604, 36963], [-227, 0], [-7, -19], [-95, 1]], [[35275, 36945], [0, 161]], [[35275, 37106], [-1, 232]], [[38584, 34848], [-25, 18]], [[38559, 34866], [-1, 166]], [[35252, 37553], [0, 214]], [[35558, 37392], [6, -54]], [[37484, 37156], [54, 0]], [[37751, 37155], [0, -214]], [[37751, 36941], [0, -52], [-54, 0]], [[38403, 37367], [-112, 0]], [[38183, 37739], [57, -11]], [[37446, 36424], [69, -29]], [[37515, 36395], [67, -44], [31, -88]], [[23587, 34579], [-34, 151], [-49, 45], [15, 39], [4, 94]], [[23523, 34908], [170, -2]], [[23825, 34910], [-21, -61], [-60, -45], [16, -85], [-23, -60], [29, -34], [18, -56], [-21, -41]], [[36177, 30067], [-272, 0]], [[35952, 30337], [69, 0], [0, 54]], [[36021, 30391], [198, 0]], [[36219, 30391], [53, 0], [0, -108]], [[24872, 38364], [-4, 54], [24, 14], [-22, 45]], [[24921, 38796], [-17, 32], [-10, 69], [90, 54], [30, -25], [37, 15]], [[25413, 38589], [-53, -110], [-93, -20], [3, -42], [-15, -52], [-25, -37], [-11, -50], [13, -40], [69, -16], [20, -20], [-5, -44]], [[40928, 36884], [-3, 264], [21, 0]], [[40946, 37148], [42, -75], [87, -12], [44, -41], [37, -4], [54, -37], [44, 3], [33, -41], [15, -52]], [[35312, 30544], [-87, 22], [-6, 69], [-23, 38], [-64, 53], [-1, 40], [-50, 30]], [[44891, 34817], [159, 102]], [[45230, 34657], [-51, -54], [-116, -6], [-1, -43]], [[45062, 34554], [-59, 8], [-40, 26], [-39, 75]], [[41752, 30706], [4, 58], [36, 67]], [[43250, 30948], [90, -39]], [[43340, 30909], [21, -15], [54, -93], [-1, -18]], [[43133, 30777], [93, 133]], [[40058, 33905], [0, 18], [166, 3]], [[40224, 33908], [0, -98]], [[35390, 33139], [-178, 0]], [[35212, 33139], [1, 107]], [[35213, 33407], [179, 0]], [[35888, 31116], [25, 28], [0, 162]], [[36154, 31251], [-7, -40], [-24, -28], [-2, -35], [23, -35], [-15, -23]], [[31787, 38484], [18, 48], [0, 122]], [[31805, 38654], [69, -2], [93, 34], [61, -9], [74, 4], [204, -70]], [[32306, 38611], [-1, -370]], [[32305, 38241], [-37, -27], [-126, 1]], [[32142, 38215], [-40, 0], [0, 108], [-36, -1], [1, 54], [-168, 0], [0, 54], [-112, 0], [0, 54]], [[37521, 29358], [-18, 16], [-12, 80]], [[37491, 29454], [1, 20], [41, 50], [28, 16], [-6, 59]], [[37555, 29599], [233, -6]], [[37788, 29593], [-2, -236]], [[37886, 29700], [-6, -28], [-35, 1], [-11, 28], [-45, 0]], [[37789, 29701], [2, 134], [-47, 2]], [[49059, 20165], [77, 28], [21, -23], [-44, -23], [-39, -3], [-15, 21]], [[39442, 30964], [-26, -78]], [[39290, 30849], [14, 61], [-26, 62], [0, 59], [28, 60]], [[39306, 31091], [3, 16]], [[37221, 36890], [6, -62], [-25, -27], [17, -26], [-3, -99]], [[44336, 31740], [6, 19]], [[44342, 31759], [33, -5]], [[44375, 31754], [18, -41]], [[42778, 33664], [37, 23], [32, 45], [-16, 21]], [[42831, 33753], [57, 1], [46, -28], [59, 35], [92, -62]], [[43154, 32942], [-94, 89]], [[43060, 33031], [-3, 4]], [[43411, 33092], [40, -18], [19, 39], [30, 8], [11, -59]], [[43511, 33062], [6, -40], [-41, -74]], [[43476, 32948], [-50, -60], [-17, 8], [-40, -83]], [[43369, 32813], [-99, 98]], [[33648, 28170], [-136, -2]], [[33515, 28445], [250, -3], [2, -270]], [[36785, 33435], [0, -54]], [[36589, 33383], [2, 135]], [[36591, 33518], [0, 26]], [[36591, 33544], [194, -2]], [[42045, 27084], [-26, 29], [-15, 72], [-29, 21], [-80, -17], [-13, -14]], [[41882, 27175], [0, 152]], [[41885, 27328], [48, 17], [13, 29], [42, 26], [101, 3]], [[40030, 32701], [23, 0]], [[40021, 32552], [-1, -32], [-57, -5]], [[37621, 33643], [-49, 0]], [[33202, 34750], [-35, 0], [0, 165]], [[33193, 34969], [253, -3]], [[33446, 34966], [0, -216]], [[48909, 20342], [-32, 34]], [[48877, 20376], [72, -21]], [[48949, 20355], [-17, -28]], [[28658, 35220], [56, -66], [44, -28], [28, -41]], [[39583, 31920], [-81, -32], [-70, 27]], [[39432, 31915], [-41, 30], [-17, 94]], [[39374, 32039], [96, 69], [41, 15], [54, 51]], [[39565, 32174], [10, -89], [25, -21]], [[27025, 37608], [-12, 25], [-48, 0], [-27, 34]], [[26900, 37767], [56, -1], [0, 189]], [[26956, 37955], [302, 0], [294, -1]], [[27552, 37954], [16, -64], [69, -44], [39, -13]], [[27676, 37833], [35, -64]], [[41249, 31785], [8, -27]], [[41270, 31616], [-31, 0], [-62, -40]], [[41177, 31576], [-7, -11], [-105, 3]], [[41089, 31629], [42, 72], [87, 63], [-4, 31]], [[36763, 37475], [-246, 0], [-9, 34], [23, 41]], [[3275, 135], [-24, -26], [-17, 24], [24, 28]], [[48357, 20258], [-16, 19]], [[48416, 20283], [6, -11]], [[48422, 20272], [-19, -21]], [[29759, 29704], [40, -49], [105, 85], [28, 16]], [[37921, 30589], [46, 0], [1, 90]], [[38203, 30677], [45, 2], [-4, -150]], [[38244, 30529], [-236, 1], [-64, 3], [-1, -27]], [[41411, 27886], [5, 111], [16, 28], [30, 1]], [[41462, 28026], [21, 12]], [[41483, 28038], [55, -21], [7, -33], [28, -31], [70, -11], [11, -13], [-2, -63]], [[41652, 27866], [-46, 4]], [[41606, 27870], [-195, 16]], [[9157, 45308], [-8, -2], [-11, -3], [-8, -1], [-40, -11], [-34, -16], [-47, -15], [-5, -8], [-13, -3], [-36, -9], [-40, -14], [-9, -5], [-159, -55], [-84, 31], [-8, 38], [-93, 47], [19, 33], [-43, 34], [-64, -29], [-2, -61], [-39, -43], [14, -43], [54, -89], [-39, -46], [-44, -11], [-73, 20], [-143, 210], [-48, 38], [-62, 13], [25, 34], [-64, 19], [-32, -77], [-44, -16], [-64, 66], [-42, -13], [-59, 49], [13, 30], [-26, 47], [-70, -27], [-120, -72], [-122, -44]], [[7470, 45296], [-117, -53]], [[7465, 45150], [12, 70], [93, 30], [69, 40], [-86, -145], [-85, -19], [-3, 24]], [[34725, 33139], [0, 54]], [[34969, 33193], [0, -162]], [[34969, 33031], [0, -53]], [[34969, 32978], [-242, -1]], [[34718, 33408], [-235, 0]], [[34483, 33408], [-9, 0]], [[34473, 33676], [149, 0]], [[41002, 27670], [1, 99], [14, 54], [28, 1], [-13, 92]], [[41032, 27916], [115, -8]], [[41147, 27908], [57, -5]], [[41204, 27903], [4, -42], [-58, -46], [6, -46], [-42, -80]], [[41114, 27689], [-42, -37], [-33, -99]], [[41039, 27553], [-37, 7]], [[48770, 20208], [31, 24]], [[48801, 20232], [22, -9]], [[48823, 20223], [10, -25]], [[48833, 20198], [-8, -18], [-45, 2]], [[38175, 28118], [-112, 0]], [[37960, 28118], [1, 175], [-16, 24]], [[37945, 28317], [49, 17], [152, 0]], [[36907, 30181], [-199, 6]], [[40569, 35169], [153, 0]], [[40675, 34954], [-203, -1]], [[40472, 34953], [-2, 215]], [[40253, 29697], [69, 57], [0, 77], [23, 17], [-7, 54], [31, 32]], [[40467, 29651], [-11, 5], [-136, 3]], [[31866, 33836], [-1, 54], [48, 0], [1, 401]], [[31914, 34291], [388, 2]], [[32511, 34293], [-4, -295]], [[34067, 30701], [0, 148]], [[34067, 30849], [185, -1], [0, 54], [92, 0]], [[25357, 34906], [0, -501]], [[24727, 34405], [0, 503]], [[36760, 34825], [52, 0]], [[36964, 34825], [0, -162], [9, -58]], [[41983, 28745], [27, 20]], [[42029, 28791], [43, -36], [12, -36], [39, -6], [43, -27], [12, -44], [28, -36], [49, -39]], [[42255, 28567], [27, -32], [2, -32], [-27, -34]], [[42257, 28469], [-29, 51], [-76, -5], [-24, 35]], [[35785, 28744], [-192, -134]], [[35593, 28610], [-97, 12]], [[35496, 28622], [-77, 160]], [[34837, 25811], [76, -1]], [[34944, 25779], [1, -265]], [[34799, 25515], [-45, 1]], [[39865, 31026], [-41, -2]], [[39824, 31024], [-189, 89]], [[39649, 31236], [56, -3]], [[39705, 31233], [11, -34], [44, 39], [60, -10], [75, -42]], [[31914, 34291], [-145, 0]], [[31769, 34291], [-1, 406]], [[31768, 34697], [273, -2]], [[32041, 34695], [0, -54], [261, -1]], [[26455, 37377], [0, 77], [26, 0], [0, 161], [28, 18], [55, -1], [0, 32]], [[26564, 37664], [13, -26], [69, 3]], [[35693, 37392], [6, -162]], [[35699, 37230], [0, -107]], [[35699, 37123], [-254, 0]], [[38425, 33614], [0, -18]], [[38425, 33596], [-257, 2]], [[41072, 29813], [-7, -57], [-49, -78]], [[43791, 33853], [-13, -16]], [[43756, 33908], [111, 126], [0, 17], [91, 52]], [[43558, 34909], [2, -236]], [[43232, 34677], [3, 127], [14, 7], [-1, 97]], [[43248, 34908], [266, 1]], [[35129, 30284], [0, 107], [-46, 0]], [[35083, 30391], [0, 107]], [[35083, 30498], [320, 0]], [[35403, 30364], [-91, 0], [-15, -26], [14, -55], [-91, 0]], [[35690, 34938], [63, -50], [-4, -61]], [[35756, 34713], [-141, 1]], [[35615, 34714], [1, 36], [-49, 0]], [[30835, 31823], [-13, -60], [-45, -29], [-28, -32], [-3, -227], [1, -134]], [[30746, 31205], [-235, 2], [-383, 0]], [[30128, 31207], [0, 268], [0, 347]], [[43650, 35752], [-1, -143]], [[43649, 35609], [-203, -3]], [[43446, 35606], [0, 150]], [[43446, 35756], [157, 2], [47, -6]], [[36673, 28723], [-11, 12], [0, 122]], [[36662, 28857], [40, 0], [38, 35], [7, 24], [36, 33], [42, -17], [23, -49]], [[36848, 28883], [40, -38], [-8, -44], [43, -72], [38, -35]], [[36961, 28694], [-37, -12], [0, -42]], [[36924, 28640], [-191, 0]], [[24957, 31662], [164, 188]], [[25121, 31850], [40, -82], [-3, -30], [38, -48], [79, -6], [47, 31], [116, 15], [54, 100], [55, 32], [2, 49], [75, 4], [25, 35], [-2, 64], [10, 26], [126, 144]], [[26071, 31665], [-85, -4], [-186, 2], [-1, -52], [-139, 2], [0, -54], [-70, 1], [-47, -53]], [[41625, 29961], [-58, -8]], [[41567, 29953], [-37, 7], [-49, 37]], [[41481, 29997], [-40, 69], [-4, 43]], [[41583, 30101], [64, -122]], [[41647, 29979], [13, -36]], [[40544, 28589], [-34, -12], [-4, -25], [-87, 3], [-1, -54]], [[40418, 28501], [-144, -1]], [[40421, 28826], [66, 1], [32, -53], [56, 1]], [[40570, 28731], [-32, -83], [0, -48]], [[43537, 30312], [9, -37], [25, -17], [-34, -41]], [[43537, 30217], [-34, -20], [-49, 7], [-96, 56], [-69, -4], [-19, 14]], [[32760, 31514], [365, 0]], [[33125, 31514], [0, -275]], [[33125, 31239], [-382, 0]], [[38552, 33380], [-98, -1]], [[38454, 33379], [-25, 121], [-4, 96]], [[38606, 33660], [41, 0], [34, -36], [82, -1]], [[38763, 33559], [-84, -43], [-6, -37], [-48, -26], [0, -72]], [[36057, 31574], [0, 213], [10, 35]], [[40556, 31291], [84, 11]], [[40695, 31097], [-59, -39]], [[40636, 31058], [-54, 6], [-93, -4]], [[40662, 36833], [53, -1], [0, 54]], [[40715, 36886], [161, -2]], [[40873, 36672], [-207, 1]], [[36205, 35039], [-101, 0]], [[36104, 35039], [0, 163], [-28, 0], [0, 54]], [[29146, 33077], [0, 269], [23, 0], [0, 146]], [[29169, 33492], [70, -113], [4, -32], [459, 0]], [[29702, 33347], [0, -73], [-24, -47], [-13, -100], [-21, -50], [9, -61], [-12, -43], [35, -66], [-2, -49], [22, -15], [19, -78], [-14, -17]], [[29701, 32748], [-219, 0], [-339, 0], [1, 7]], [[25864, 39230], [278, 0]], [[26080, 38548], [-7, -33], [-76, 21], [-17, 35], [-70, -20], [-53, 36]], [[32305, 38241], [0, -42]], [[32305, 38199], [0, -425]], [[32305, 37774], [-134, 0], [-28, 27], [-82, 0]], [[32061, 37801], [1, 109]], [[32062, 37910], [47, 0], [37, 26], [46, 86], [0, 58], [-16, 67], [-38, 45], [4, 23]], [[31936, 30025], [1, -426], [-6, -160], [-179, -4]], [[31304, 29594], [-12, 55]], [[31486, 30131], [267, 0], [0, 54]], [[31753, 30185], [184, 0]], [[35924, 36722], [104, -93], [6, -21]], [[36034, 36608], [54, -33]], [[36088, 36575], [0, -97], [-102, 1]], [[35869, 29341], [-36, 0], [-18, -66], [23, -22]], [[35680, 29342], [1, 228]], [[33777, 28789], [-68, 0]], [[33552, 28790], [4, 269]], [[33556, 29059], [0, 3]], [[33556, 29062], [223, -2]], [[36178, 29362], [0, -69]], [[36178, 29293], [0, -205]], [[36178, 29088], [-16, -15], [-62, 36], [-78, 10], [-36, 41]], [[35968, 29181], [-13, 148]], [[35580, 31822], [229, 0]], [[35809, 31467], [0, -162], [-117, 0]], [[35692, 31305], [-25, 40], [-47, 37], [-35, 7], [-53, 79], [-32, 7], [-12, 70], [-36, -7], [-24, -42], [-28, -10], [-31, 32]], [[41165, 30741], [-16, -57]], [[41149, 30684], [-44, -7], [-72, -97]], [[40979, 30580], [-84, 1]], [[40895, 30581], [13, 134]], [[40355, 36030], [206, -1]], [[40561, 36029], [2, -215]], [[40563, 35814], [-208, 1]], [[41761, 32280], [22, -40], [44, -30], [28, -42], [65, -13]], [[41769, 32005], [-15, -17], [-89, -40]], [[41665, 31948], [-5, -4]], [[41660, 31944], [-28, 31], [-45, 15]], [[41332, 27392], [-23, 40], [2, 230]], [[41311, 27662], [52, 0]], [[41363, 27662], [9, -90], [28, -3], [42, -27], [45, -45], [36, -66]], [[42109, 30939], [74, 123]], [[41362, 32236], [70, -23], [40, -64], [21, -16]], [[34068, 30317], [0, -154]], [[34068, 30163], [-183, 1]], [[33885, 30164], [1, 268]], [[37936, 31714], [198, -8]], [[38743, 33875], [-148, -3]], [[38478, 33991], [26, 18], [67, 16], [45, 111]], [[31926, 27911], [355, 273]], [[32281, 28184], [225, -210]], [[32569, 27912], [-157, -156]], [[43032, 32309], [-18, -14], [-2, 13], [20, 1]], [[37874, 31364], [-40, -16], [-3, -210]], [[31605, 33835], [-50, 62], [-38, 78]], [[31517, 33975], [-86, 201], [-58, 75], [-2, 39]], [[31371, 34290], [398, 1]], [[44360, 31171], [82, 30], [50, 0], [21, -45], [-21, -41], [8, -117]], [[44500, 30998], [-57, 16], [-17, -57], [-36, 7], [12, 50], [-60, 5]], [[37096, 36265], [-157, 0]], [[36887, 36265], [0, 214]], [[37872, 33053], [33, -1], [-1, -37], [35, 0], [-1, -36], [67, -2]], [[39988, 31684], [2, 20], [-80, 14], [-12, 32]], [[40115, 31860], [-23, -78]], [[36761, 29365], [14, -145], [-16, -30], [36, -96], [-9, -27], [62, -116], [38, -22], [24, -47]], [[36910, 28882], [-62, 1]], [[36662, 28857], [0, 121]], [[36661, 29164], [0, 116]], [[33532, 35767], [442, 0]], [[33974, 35767], [0, -161], [7, -80]], [[33981, 35526], [-449, -1]], [[37015, 35038], [100, 0]], [[37217, 35039], [1, -215]], [[37218, 34824], [-203, 0]], [[34523, 30102], [-45, -8], [-58, 9], [-7, 76]], [[41423, 30588], [-163, -4]], [[41260, 30584], [-72, 98], [-39, 2]], [[42403, 32087], [87, 177], [-2, 10]], [[42488, 32274], [69, -25], [91, 1]], [[40590, 32910], [-78, -43]], [[38938, 31515], [-5, 0]], [[38933, 31515], [-3, 0]], [[38930, 31515], [-30, 46], [-54, 10], [-64, 36]], [[38782, 31607], [-12, 42], [34, 41]], [[40083, 28115], [-3, 122]], [[40080, 28237], [175, 3]], [[40255, 28240], [35, -1]], [[40290, 28239], [98, 3], [-1, -125]], [[40387, 28117], [-4, 0]], [[40383, 28117], [-234, -3]], [[38837, 34246], [0, 110], [-50, 0]], [[37930, 35092], [-101, 0]], [[37727, 35092], [-5, 215]], [[35655, 32762], [-203, 0]], [[35404, 32816], [1, 125], [16, 36]], [[35591, 32977], [0, -27], [48, 0], [17, -54]], [[37273, 34229], [200, 1]], [[37473, 34045], [-75, -2]], [[37398, 34043], [-125, -4]], [[38286, 36240], [0, -262]], [[44400, 31322], [20, -36], [-42, -28], [-38, -6]], [[44340, 31252], [-70, 22], [-8, 79], [14, 69]], [[41606, 27870], [-16, -23], [12, -53], [23, -42], [-31, -52], [-34, 9]], [[41560, 27709], [-70, 48], [-54, 15], [-40, -33]], [[41396, 27739], [-21, 23], [-23, 127], [-16, 4]], [[41336, 27893], [75, -7]], [[12540, 46927], [-80, 16], [-114, -68], [-19, -74], [-29, -16], [-95, 13], [-115, -9], [-77, 32], [-29, -28], [-114, -37]], [[40349, 33722], [-1, 187]], [[40406, 33909], [98, -1]], [[40504, 33908], [0, -44]], [[41620, 27233], [43, -17], [1, -36], [65, 3]], [[41729, 27183], [2, -166], [-58, -1], [0, -104]], [[41576, 26880], [-1, 37], [-29, 65], [-74, 12], [-15, -27], [-24, 51], [-1, 30], [-34, 14]], [[48899, 20275], [11, -15]], [[48875, 20221], [-10, 61]], [[48515, 20305], [5, 26], [-10, 64]], [[48510, 20395], [31, -3]], [[48541, 20392], [-2, -98]], [[48539, 20294], [-24, -1]], [[38709, 27901], [0, -170]], [[38709, 27731], [5, -43], [-39, -30], [-12, -42], [-34, -3]], [[38629, 27613], [-20, 0], [-26, 47], [0, 50], [-23, 42], [-3, 33]], [[41205, 28753], [1, 56]], [[41206, 28809], [118, -8]], [[41381, 28674], [12, -32]], [[41393, 28642], [-131, 0]], [[41262, 28642], [-58, 4]], [[36910, 28882], [19, 0]], [[36929, 28882], [94, 0], [11, -54]], [[37034, 28828], [22, -57], [-9, -29], [-35, -23], [-19, -53], [-32, 28]], [[40917, 31150], [35, 52], [18, -5], [40, 31], [-16, 20], [67, 72]], [[41152, 31307], [28, -52]], [[41178, 31229], [8, -41], [-61, -52]], [[46923, 36164], [-28, -17], [-26, 22], [7, 51], [-16, 29], [-86, -58], [47, -71], [-36, -61], [6, -30]], [[46702, 36015], [-10, 305]], [[46660, 36950], [4, 1], [54, 17], [29, -62], [22, 25]], [[46769, 36931], [24, -159], [-19, -2], [21, -108], [2, -66], [67, 39], [46, -104], [100, -36], [18, -68]], [[36416, 33127], [36, 22], [27, -18], [44, 28], [31, 45], [34, -19]], [[41063, 30580], [169, 3]], [[41232, 30583], [1, -28], [-48, -42], [2, -34]], [[38720, 28614], [-37, -3]], [[26789, 36025], [-61, -9], [-57, 54]], [[26708, 36238], [194, -1]], [[27260, 38292], [-51, -23], [87, -59], [8, -30], [82, -22], [17, -43], [45, -35], [66, -103], [38, -23]], [[26956, 37955], [0, 54]], [[44500, 30998], [13, 3]], [[44513, 31001], [49, 0], [14, -53]], [[44576, 30948], [-55, -67], [-7, -32], [-57, -58], [-149, 26], [-24, 24], [-20, 61], [48, 2], [4, 27]], [[37310, 35469], [-205, 0]], [[37105, 35469], [0, 189]], [[38938, 31794], [-51, 167]], [[38887, 31961], [2, 1]], [[39047, 31869], [36, -33]], [[39083, 31836], [-1, -49]], [[39409, 32217], [-87, -98]], [[35406, 35835], [1, -257]], [[41360, 31029], [-4, 64], [-21, 48]], [[41369, 31258], [26, 26], [3, 33]], [[41349, 31449], [-47, 11]], [[41302, 31460], [8, 29], [-13, 46], [-32, 39]], [[41265, 31574], [212, -2]], [[39128, 30585], [7, 238]], [[39136, 30847], [52, 2]], [[39188, 30849], [23, -24], [71, 5]], [[39206, 30585], [-71, 0]], [[42974, 30113], [29, 35], [44, 8], [33, -19], [77, -10]], [[43157, 30127], [-53, -100], [1, -21], [-37, -39], [9, -47], [21, -16], [1, -48], [31, -67]], [[43130, 29789], [-37, 2], [-18, 44]], [[48802, 20124], [30, 35], [19, 1]], [[48839, 20114], [5, -41]], [[48844, 20073], [-65, -32]], [[38309, 28119], [185, 1]], [[38491, 27912], [-66, 0], [-114, 29]], [[38557, 31736], [-5, -143], [-112, 1]], [[38440, 31594], [-82, 1]], [[38480, 31900], [44, 0]], [[41101, 28916], [102, -2]], [[41203, 28914], [3, -105]], [[36400, 37239], [162, 1]], [[36615, 37106], [4, -41], [41, -43]], [[36184, 37230], [0, 9]], [[35414, 34320], [1, 252]], [[35415, 34572], [69, -3], [23, -14], [54, 4], [43, -24]], [[36893, 36913], [-4, 0]], [[34799, 35834], [-2, 218]], [[34797, 36052], [155, 0]], [[41177, 31576], [88, -2]], [[41302, 31460], [-34, -27], [-56, -1], [-32, -14]], [[34948, 29903], [44, -25], [31, 16], [18, 36], [45, 35], [43, -56]], [[34506, 28417], [-43, -14]], [[34463, 28403], [-49, 4]], [[34417, 28785], [34, 0]], [[39160, 35429], [103, 1]], [[39369, 35429], [26, -35], [-17, -73]], [[38866, 36779], [0, -53], [107, 0], [0, -54], [107, 0]], [[39188, 36563], [-2, -58]], [[36356, 34824], [0, -160], [19, -61]], [[36375, 34603], [-148, 0]], [[34297, 29600], [0, -273]], [[35080, 31036], [-1, 271]], [[35079, 31307], [94, 0]], [[35219, 31303], [14, -91], [52, -41], [27, -2]], [[35816, 30681], [33, -5], [17, 27], [67, 2], [44, 37], [18, -3], [53, 32]], [[36048, 30771], [-1, -84], [46, 0], [0, -63]], [[36093, 30624], [0, -18], [-69, 0], [-3, -215]], [[42518, 33160], [-58, -44]], [[42460, 33116], [-37, 9]], [[42423, 33125], [-44, 101], [11, 13]], [[42390, 33239], [68, 62], [50, 34]], [[42212, 33172], [-11, -27], [27, -24], [5, -42], [38, -3]], [[42271, 33076], [-50, -71]], [[46713, 35860], [-65, -21], [-22, 20]], [[46626, 35859], [-42, 20], [-119, 117]], [[42390, 33239], [3, 39], [-24, 18], [-31, -22]], [[42289, 33340], [36, 50]], [[141075, 20136], [21, 28], [1, 31], [22, -18], [-28, -45], [-16, 4]], [[36781, 36265], [0, 27], [-106, 0]], [[36675, 36292], [33, 61], [-11, 28], [14, 45]], [[25800, 38590], [-53, -1], [-47, -45], [0, -54], [-37, -45], [-19, -71], [-28, 0], [-55, -53], [-1, -53], [-149, -2], [-19, -45], [-37, -28], [-1, -61]], [[43248, 34908], [-62, 1]], [[43186, 34909], [0, 332]], [[43446, 35240], [68, -9]], [[39111, 35647], [-51, 0]], [[39060, 35647], [-206, 1]], [[38854, 35648], [0, 54]], [[38854, 35702], [1, 215]], [[34736, 32113], [0, -53], [50, 0]], [[34786, 32060], [1, -239]], [[34498, 32060], [-1, 53]], [[37538, 32194], [-95, 2]], [[37373, 32353], [1, 100]], [[40418, 28501], [0, -188]], [[40418, 28313], [-30, -42], [-78, 13], [-20, -45]], [[40255, 28240], [1, 260]], [[33461, 33141], [253, -2]], [[33576, 32872], [-155, 0]], [[25121, 31850], [28, 32], [109, 41], [76, 13]], [[36586, 33759], [-1, -63]], [[36585, 33696], [-168, 3]], [[36416, 33752], [4, 161]], [[33951, 34962], [43, 0]], [[34204, 34962], [0, -213]], [[30126, 34084], [-49, 13], [-1, 63], [-17, 44], [-83, 0], [0, -41], [-39, -31], [-20, 53], [-148, -39], [-47, 28]], [[31936, 35285], [104, 0]], [[32040, 35285], [1, -590]], [[31768, 34697], [3, 204], [-4, 63], [-1, 211]], [[42361, 30835], [-26, -81], [-8, -74]], [[42327, 30680], [-128, 9]], [[31753, 30185], [0, 160], [10, 0], [0, 269]], [[32271, 30676], [-2, -224]], [[30244, 37460], [-64, 0]], [[30180, 37460], [-214, 0], [0, -54]], [[29863, 37514], [109, 0], [0, 167], [6, 126]], [[43340, 30909], [94, 103], [103, 81]], [[43537, 31093], [28, -54]], [[43620, 30949], [-39, -103], [-2, -44], [-57, -20], [-7, -17]], [[24668, 31760], [-50, 46], [-26, 47], [-40, 31], [-77, 41], [-55, 74]], [[24420, 31999], [-18, 20], [1, 70], [36, 21]], [[24439, 32110], [27, -4]], [[24466, 32106], [53, -3], [26, 19], [171, -2]], [[24716, 32120], [0, -36], [26, -21], [2, -47], [-20, -18], [21, -79], [73, 1], [5, -14]], [[24823, 31906], [7, -41], [-16, -27], [14, -39]], [[43018, 29485], [68, -64]], [[43086, 29421], [-17, -12], [-13, -52], [-54, -3], [-17, 21], [-41, -51], [18, -29], [-52, -34], [-14, -28], [-53, -31], [-16, -44], [-50, -48], [-33, -2], [-75, -45]], [[42669, 29063], [-38, -22], [-35, 32], [6, 65], [-22, 55], [22, 73]], [[25414, 37277], [2, 127]], [[25412, 37766], [94, 8], [62, 54], [27, -30]], [[25595, 37798], [22, -41], [58, -57], [1, -146], [28, -30], [71, -27]], [[25775, 37497], [29, -32], [14, -70], [-20, -17]], [[25798, 37378], [-60, -41], [-57, 4], [-77, -13]], [[37401, 33697], [-219, 0]], [[37182, 33697], [-4, 0]], [[37178, 33697], [1, 189]], [[37179, 33886], [74, 0]], [[37253, 33886], [146, 2]], [[37399, 33888], [1, -27]], [[41604, 34597], [34, -41], [59, -29], [58, 29]], [[41755, 34556], [2, -89]], [[41757, 34467], [-217, 4]], [[41540, 34471], [-3, 86], [-45, 18]], [[39497, 33602], [-177, -2]], [[39320, 33600], [-2, 214], [5, 107]], [[38307, 32761], [-11, -54], [-22, -27]], [[38274, 32680], [-7, 42], [-24, 27], [-78, 1], [-38, -30], [-25, 8]], [[38371, 32937], [-21, -20]], [[38350, 32917], [-37, -33], [-30, -77], [27, -39]], [[38985, 35214], [1, -210]], [[24705, 33950], [12, -59], [38, -6], [15, -47], [-39, -70]], [[24731, 33768], [-32, -31], [-33, 0], [-26, -73], [-24, 1], [-21, -48], [-24, -14], [-104, 0], [-1, -53]], [[24466, 33550], [-388, 0]], [[38544, 35707], [156, 1], [154, -6]], [[38854, 35648], [-2, -216]], [[38493, 35438], [0, 216]], [[33779, 29060], [3, 271]], [[33782, 29331], [59, -1]], [[36924, 28640], [-1, -80], [45, 0], [1, -109], [44, 0], [0, -107]], [[36875, 28233], [-21, -6]], [[38454, 33379], [-99, -1]], [[41203, 28914], [40, 70], [11, 0]], [[44206, 31356], [-14, -60], [31, -96], [-5, -29]], [[44188, 31122], [-59, 0], [-19, 22], [-29, -26], [-16, 52], [-67, -4], [0, 35], [-57, 48]], [[42698, 30899], [32, -27], [25, -54], [-20, -73], [19, -46], [-10, -23]], [[42657, 30709], [-36, -19], [-64, 12]], [[40541, 30871], [12, 70], [26, 29], [57, 88]], [[40720, 31053], [0, -39], [-25, -10], [0, -49], [-58, -95], [-44, -19]], [[43733, 30816], [-9, 34], [2, 99]], [[43779, 30991], [39, -53], [47, -31], [12, -56]], [[44683, 32436], [-20, -27]], [[44663, 32409], [-50, 14], [-33, -34], [-6, 58], [27, 29], [-11, 34], [-46, 45], [34, 32]], [[38652, 34243], [11, 32], [-83, 1]], [[39252, 31933], [23, -3], [29, -66], [43, -66]], [[39347, 31798], [-122, -57]], [[39225, 31741], [-36, 70]], [[39189, 31811], [4, 62], [16, 40]], [[34017, 28173], [2, 304]], [[34019, 28477], [169, -2]], [[34241, 28422], [-1, -250]], [[33965, 28787], [0, -241]], [[33965, 28546], [-257, 2]], [[40476, 31533], [58, -44], [13, -32]], [[40547, 31457], [0, -64], [17, -67], [-16, -31]], [[41265, 35978], [-10, 25], [64, 60], [38, 64], [93, 26], [57, 34], [77, -50], [46, -97], [12, -87]], [[41332, 36460], [-6, -106], [-41, -42], [-36, 1], [-24, -68]], [[41225, 36245], [-139, -1]], [[41407, 28410], [15, 4], [23, 82], [26, 38]], [[41471, 28534], [2, 67]], [[41473, 28601], [53, 0], [16, 21]], [[41542, 28622], [0, -89], [91, 1]], [[41633, 28534], [0, -71], [13, -55]], [[41646, 28408], [-14, -65]], [[41813, 27852], [-89, 8]], [[41724, 27860], [-5, 20], [-3, 128], [-24, 7], [1, 81], [-45, 34], [-34, 102]], [[41646, 28408], [45, 0], [34, -32]], [[33197, 37505], [-21, 49], [-2, 214], [-20, 0]], [[33154, 37821], [165, 1], [0, -54], [182, 0], [0, -160], [110, 0], [9, -54]], [[38464, 27066], [-81, -81]], [[38383, 26985], [26, 65], [4, 98], [-51, 31], [-21, 53], [15, 15], [-8, 59], [-25, 5]], [[38323, 27311], [26, 78], [-31, 27], [-18, 68], [9, 118]], [[38309, 27602], [45, 16]], [[38354, 27618], [21, -15]], [[38375, 27603], [-13, -152], [57, -14]], [[38629, 27613], [-43, -18]], [[38586, 27596], [-27, 14], [-49, -9], [-46, 23], [-59, -27], [-30, 6]], [[38354, 27618], [-2, 28]], [[36914, 35038], [0, 162], [-16, 53]], [[36898, 35253], [206, 0]], [[37282, 27246], [-54, 22], [-89, 54], [-100, 38], [-130, -1], [-116, -20], [-42, -29]], [[41038, 33214], [-6, 1]], [[41032, 33215], [13, 194]], [[37077, 39000], [45, -2], [112, -52], [41, 2], [-9, -65], [64, 7], [17, -60], [43, -80], [39, 14], [-4, 61], [56, 12], [70, -26], [-3, -34], [91, -39]], [[37641, 37958], [-131, -93], [35, -51]], [[37545, 37814], [-33, 27], [-53, -61], [-35, 8]], [[37424, 37788], [-4, 62], [-331, 2]], [[41760, 34332], [-3, 135]], [[41755, 34556], [40, 4], [106, 50], [19, -6]], [[41920, 34604], [-1, -95], [41, -1], [-1, -46]], [[41959, 34462], [-41, -1], [0, -46], [-43, 0], [-1, -39], [-42, 0], [0, -45]], [[48715, 20299], [-5, 7]], [[48722, 20394], [15, -8]], [[36710, 35039], [102, -1]], [[36609, 34825], [-1, 214]], [[36443, 27827], [3, -23], [-85, 0]], [[36361, 27804], [-51, 2]], [[36158, 28010], [113, 135], [42, 64]], [[35366, 35126], [1, 253]], [[35458, 35344], [52, -32], [-10, -27], [34, -52]], [[44486, 33392], [-18, -29], [7, -37], [-76, -70], [-36, 42]], [[44415, 33502], [3, 0]], [[41856, 29722], [9, 23], [-31, 34], [-3, 47], [21, 47], [-14, 54], [48, 15]], [[44849, 32457], [-48, -94], [-37, -4], [-54, -82], [-23, -78], [6, -26], [-33, -64]], [[44660, 32109], [-48, 0], [-21, 56], [-45, -3]], [[44546, 32162], [13, 45], [46, 86], [49, 62], [9, 54]], [[39117, 36106], [0, 188]], [[39209, 36293], [65, 0]], [[39274, 36293], [1, -216]], [[40995, 31795], [26, 21], [32, -8], [38, 48]], [[40671, 35385], [-104, 0]], [[40465, 35384], [-1, 216]], [[40464, 35600], [207, 0]], [[43635, 30175], [19, 25], [71, 11], [36, -58], [13, 1]], [[43774, 30154], [-51, -83], [-47, -144]], [[43676, 29927], [0, 119], [-9, 69], [-32, 60]], [[38707, 31516], [223, -1]], [[38933, 31515], [5, -49], [-31, -18], [-28, 10], [-4, -115]], [[38875, 31343], [0, -13], [-85, 2]], [[38790, 31332], [-143, 4]], [[39082, 31668], [163, -2]], [[39245, 31666], [18, -42]], [[43368, 32275], [-21, 39], [-64, 155]], [[43322, 32567], [37, 44]], [[43557, 32521], [-42, -77]], [[43515, 32444], [-81, -130]], [[39836, 31456], [-31, -34], [-38, 19]], [[39767, 31441], [-33, -8], [-58, 53]], [[39679, 31602], [23, 0]], [[39832, 31606], [75, 2], [12, -12]], [[43646, 33044], [-23, 25], [-41, 11]], [[43582, 33080], [52, 140]], [[43723, 33139], [-15, -32], [-43, -41]], [[26293, 37764], [48, 43], [62, -13], [58, 16], [36, -52], [56, -43], [11, -51]], [[41060, 31977], [-49, 12], [-36, 31]], [[40975, 32020], [4, 23], [-32, 80], [1, 22]], [[37973, 38729], [0, 0], [64, 36], [54, -91], [168, -5], [105, 13], [48, -17], [24, -43], [42, -18], [53, 23], [58, -7], [-77, -74], [-79, -38], [-245, -78], [-86, -49], [-125, -98]], [[41317, 30413], [13, 44], [85, 100], [8, 31]], [[41467, 30605], [48, 17]], [[38052, 27945], [-26, -43]], [[38026, 27902], [-29, -34], [0, -107], [37, -47]], [[38034, 27714], [-56, -14]], [[37925, 27701], [-43, 21], [18, 38], [1, 54], [-52, 54], [8, 34]], [[38105, 28875], [4, -109]], [[38102, 28604], [-51, -1], [5, 26], [-75, 22], [-102, 5]], [[44314, 32640], [31, -40], [35, -75], [-18, -48], [-34, 49], [-18, -15], [-48, 61], [-90, 14], [-22, 73]], [[44150, 32659], [-10, 22], [42, 73], [44, -6]], [[40355, 35708], [109, 0], [0, -108]], [[40362, 35383], [-103, 0]], [[40255, 35653], [1, 54]], [[43794, 31005], [120, 97], [17, -8]], [[43931, 31094], [77, -54]], [[30313, 36761], [-202, 0], [-8, 4], [-303, -2]], [[29800, 36763], [0, 101]], [[29800, 36864], [48, 0], [0, 58], [35, 0], [20, 63], [36, 36], [53, 27], [72, 0], [54, 73], [41, 21], [57, -4]], [[30216, 37138], [36, -54], [27, 0], [23, -36]], [[35365, 34750], [-101, 1]], [[41808, 28682], [51, -18], [26, -35]], [[41808, 28446], [-54, 56], [-75, 55]], [[41679, 28557], [1, 79], [38, 0], [0, 79]], [[39091, 28549], [7, -161]], [[38882, 28386], [0, 242]], [[34046, 29869], [-205, 0]], [[33842, 30164], [43, 0]], [[34068, 30163], [0, -54]], [[43750, 31542], [48, 104], [-1, 111]], [[43797, 31757], [17, -10]], [[43896, 31642], [31, -88], [27, -12]], [[42096, 26049], [-213, -1]], [[41883, 26048], [-1, 325], [-22, 0]], [[42056, 26481], [0, -54], [43, 0], [14, -72], [30, 0], [0, -36], [48, 0], [-15, -63], [31, -38], [5, -38], [36, -19], [27, -68], [5, -47]], [[34752, 29358], [0, -34], [-64, 1]], [[34688, 29325], [-164, 2]], [[34524, 29327], [-1, 272]], [[34523, 29599], [232, -1]], [[40315, 29419], [26, 0]], [[40214, 29040], [-1, 96], [-10, 18], [14, 48], [-56, 0]], [[46589, 35696], [96, -84], [-20, -35], [86, -1], [24, 26]], [[46826, 35563], [-50, -116]], [[46776, 35447], [-49, 8], [-44, -16], [-14, -32], [-30, 9], [-49, -49]], [[46590, 35367], [-46, 19], [-33, 32], [-10, 66], [32, 5], [-7, 43]], [[31437, 32070], [-278, 2]], [[35575, 35470], [295, 0]], [[35870, 35470], [0, -215]], [[35870, 35255], [-278, 0]], [[35592, 35255], [-7, 42], [-53, 69], [43, 104]], [[44096, 35381], [33, -67], [0, -71]], [[24756, 38050], [-93, 21], [-30, 23], [-58, 9], [-58, -16], [-72, 29], [-22, 39], [-83, 0], [-36, 39]], [[24304, 38194], [41, 17], [-1, 26], [-36, 110], [29, 14], [-38, 41], [25, 44], [-11, 30]], [[24257, 38217], [6, 56], [48, -42], [-54, -14]], [[24554, 36386], [321, -1]], [[36177, 34604], [0, -214]], [[35836, 34533], [1, 46], [-26, 26]], [[37441, 32114], [1, -255]], [[28761, 38908], [-4, 321]], [[28757, 39229], [402, 0]], [[44463, 35162], [21, -111], [-15, -27], [4, -116]], [[44473, 34908], [-17, 0]], [[44276, 34909], [7, 32], [2, 142]], [[35363, 27533], [-25, 128], [-51, 49], [-59, 40]], [[35306, 27784], [84, 61]], [[35390, 27845], [19, -11], [11, -49], [54, -59], [7, -21], [49, -21]], [[40783, 29812], [47, 51], [11, 53], [27, 32], [-15, 68]], [[40853, 30016], [39, 69], [31, 0]], [[40923, 30085], [-1, -47], [71, -36]], [[36126, 28485], [-7, 56], [-34, 26], [-15, 54], [-20, 21], [11, 48], [-14, 21], [11, 77]], [[36044, 28820], [207, 1]], [[37416, 33272], [258, -6]], [[37711, 33094], [-208, 3]], [[42669, 29063], [-37, -32], [-62, 5]], [[42417, 29171], [-32, 79], [-37, 42], [-42, 78]], [[39060, 35647], [-3, -217]], [[38339, 31329], [-44, -53], [-37, -73]], [[38051, 31185], [19, 113]], [[37185, 37212], [25, 21], [31, 79], [32, 26], [72, 24], [14, 26], [40, 0], [24, 36], [0, 51]], [[37423, 37475], [107, 1]], [[31273, 30242], [0, 51], [-23, -1], [2, 216], [23, 0]], [[31275, 30508], [114, 0], [0, 51], [-41, 0], [0, 54]], [[31348, 30613], [231, 1]], [[23734, 37557], [-79, -27], [-33, 39], [-22, -7], [-2, -8], [-11, 26], [33, 73], [41, 57], [-29, 61], [37, 58], [-64, -13], [-32, 23], [-1, 30]], [[23572, 37869], [317, -2]], [[43788, 30415], [45, -149], [25, -24]], [[43858, 30242], [-84, -88]], [[43635, 30175], [-57, 16]], [[43578, 30191], [-41, 26]], [[35106, 28933], [-73, -2], [-71, -51]], [[34908, 29052], [1, 29]], [[33838, 36482], [-22, -35], [83, -32], [9, -52], [122, -29], [84, -41], [-20, -29]], [[25658, 34267], [-2, -273], [-11, 0], [0, -320], [50, 0]], [[25669, 33441], [-38, -22], [-70, -12], [-38, -33], [-33, 4], [8, -147], [-16, -19]], [[25354, 33253], [1, 79]], [[38814, 31788], [-14, 23]], [[38800, 31811], [-17, 54]], [[38783, 31865], [62, 88], [42, 8]], [[34523, 29599], [0, 269]], [[34296, 29868], [227, 0]], [[34523, 29599], [-226, 1]], [[36663, 28201], [-39, -21]], [[40864, 28992], [13, -11], [47, -15]], [[45600, 34703], [34, -108], [57, -14]], [[45779, 34396], [-31, -1], [-36, -31], [-30, -4], [-25, -32], [-46, -6], [-71, -39]], [[24910, 32625], [14, -46]], [[24954, 32488], [1, -204], [-57, 1], [-44, -18], [-37, -35], [-101, -112]], [[24716, 32120], [-37, 38], [0, 169]], [[38895, 29308], [-176, 3]], [[38939, 29530], [0, -222]], [[40526, 32801], [41, 7]], [[40567, 32808], [29, -22], [-9, -31], [65, -58], [4, -37]], [[40656, 32660], [-55, -13]], [[40601, 32647], [-125, 14]], [[40476, 32661], [-27, 63], [14, 20]], [[40463, 32744], [63, 57]], [[40723, 32326], [6, -56], [-18, -7]], [[40586, 32373], [43, 39], [59, 9]], [[40688, 32421], [-10, -26], [48, -40]], [[34611, 34749], [-3, 0]], [[41322, 32637], [-33, 47], [-15, -8]], [[41274, 32676], [-56, 29], [-27, 59]], [[35909, 37445], [5, -215]], [[35914, 37230], [-215, 0]], [[38110, 29520], [70, 0], [0, 36], [45, 1]], [[38225, 29557], [0, -39], [31, -14], [22, 36]], [[39316, 28238], [-1, 65], [27, 40], [-15, 45], [7, 36], [-72, 62], [-7, 64]], [[39245, 31666], [-20, 75]], [[39347, 31798], [62, 26]], [[39409, 31824], [32, -22], [-6, -130], [-9, -74]], [[40587, 28165], [12, -46]], [[40599, 28119], [-212, -2]], [[40418, 28313], [144, -4]], [[34631, 35835], [-39, 0]], [[34794, 36105], [3, -53]], [[8130, 43328], [-53, 11], [15, 108], [-73, 16], [-16, -33], [-71, -4], [-21, -46], [-55, -39], [-90, -35], [-31, -59], [-32, -20], [-19, 56], [-38, -13], [0, -52], [-49, -5], [-37, 47], [-34, -12], [-31, -48], [-94, -45], [-58, 16], [-63, -13], [17, 83], [49, 68], [-26, 16], [-74, -8], [-49, -62], [5, -69], [-82, -97], [-74, -15], [37, -74], [-40, -20], [-54, 50], [-20, -33], [1, -45], [-109, 14], [4, 46], [-21, 77], [-66, 27], [-25, -46], [60, -51], [-17, -25], [22, -50], [-88, -51], [-62, 11], [-38, 80], [-34, 19], [-48, -13], [-16, -29], [83, -62], [-78, -59], [-69, -29], [26, -29], [56, 13], [55, -70], [-72, 10], [-51, 44], [-107, -84], [-70, 14], [-147, -9], [-64, -22], [-43, -34], [-10, -40], [-45, -28], [-80, -18], [-89, 17], [-46, 97], [14, 19], [91, 34], [64, 117], [5, 24], [54, 27], [36, -24], [78, 37], [59, 10], [59, 42], [52, 11], [105, -5], [59, -90], [49, 40], [-13, 98], [92, 36], [64, -8], [51, 33], [-21, 28], [68, 23], [31, 36], [38, -11], [32, 26], [3, 75], [100, 109], [87, 61], [72, 29], [36, 34], [297, 78], [118, -13], [16, -52], [-45, -9], [0, -50], [54, -47], [21, 29], [-5, 61], [57, -16], [62, 4], [12, -46], [36, 4], [63, 33], [-128, 55], [-24, 27], [44, 58], [57, 125], [92, 75], [91, 45], [48, 43], [127, 51], [225, 117], [55, -6]], [[7108, 43006], [33, 38], [77, -29], [-38, -47], [-44, 39], [-28, -1]], [[7564, 43131], [26, 39], [38, 13], [59, -9], [116, -53], [-36, -10], [-83, 10], [41, -67], [-17, -40], [-57, 19], [-15, 31], [-66, -4], [-6, 71]], [[8084, 43052], [56, -4], [0, -62], [-50, -21], [-6, 87]], [[7786, 43197], [35, 23], [56, -8], [-2, -39], [-78, 4], [-11, 20]], [[6876, 42891], [48, 34], [39, -14], [1, -44], [-50, -34], [-38, 58]], [[7828, 42891], [51, 52], [-24, 64], [55, 51], [68, -22], [16, -43], [-108, -68], [-29, -43], [-29, 9]], [[5663, 42380], [35, 18], [51, -6], [-9, -34], [-77, 22]], [[5461, 42471], [43, 21], [48, -62], [-32, -44], [-35, 13], [-24, 72]], [[5280, 42406], [51, 47], [48, -2], [16, -35], [39, 1], [33, -41], [-163, -32], [-24, 62]], [[6702, 42595], [3, 27], [176, -49], [-18, -45], [-111, 36], [-50, 31]], [[34425, 33676], [0, 215]], [[44624, 33240], [2, -31]], [[44450, 33115], [-32, -1], [-20, 33], [47, 115], [26, 25], [47, 3]], [[36411, 32238], [0, -12]], [[35793, 36855], [344, 0]], [[36136, 36694], [-102, 0], [0, -86]], [[32564, 36231], [463, -1], [0, 41], [20, 88], [25, 57], [75, -3], [49, 46]], [[33136, 35959], [-16, -8], [-276, 0]], [[32301, 36053], [0, 178]], [[42165, 29196], [29, 14], [34, 44], [-7, 33], [25, 37], [60, 46]], [[42399, 29144], [-34, 16], [-31, 39], [-115, -120]], [[42219, 29079], [-47, 24]], [[29008, 36484], [51, -6], [-11, 39], [22, 64]], [[29070, 36581], [42, 27]], [[29254, 36439], [2, -305]], [[42152, 28885], [19, -90]], [[42171, 28795], [38, -60], [17, -54], [23, 5], [32, -41], [-16, -23], [9, -55]], [[42274, 28567], [-19, 0]], [[43797, 31757], [-47, 50], [-54, 9]], [[43696, 31816], [-4, 95], [45, 30]], [[43737, 31941], [46, 18], [17, 27]], [[43800, 31986], [40, -24], [49, -2]], [[43889, 31960], [21, -32]], [[43910, 31928], [0, -110]], [[42481, 25994], [156, -1]], [[42637, 25993], [53, -181]], [[43831, 35492], [-63, 9], [-3, 18], [-77, 0]], [[43688, 35519], [-18, 32], [19, 58], [-40, 0]], [[43650, 35752], [104, -17], [78, -58], [88, 21]], [[43920, 35698], [2, -150]], [[35548, 35835], [3, -41], [31, -29], [-14, -78]], [[35568, 35687], [34, -24], [9, -85]], [[35611, 35578], [-153, 0]], [[37751, 36941], [268, 0]], [[38020, 36780], [1, -107]], [[35827, 32465], [192, -2]], [[36016, 32275], [-190, 1]], [[39083, 31836], [49, 26], [27, -10], [30, -41]], [[41724, 27860], [-18, 2]], [[41706, 27862], [-54, 4]], [[41483, 28038], [0, 194]], [[41385, 28134], [8, -46], [59, -2], [10, -60]], [[41336, 27893], [-14, 1], [-7, 1]], [[41315, 27895], [-36, 31], [-18, 43], [19, 35], [34, 14], [-5, 29], [-45, 91]], [[9279, 22049], [-42, 11]], [[9237, 22060], [23, 16], [19, -27]], [[8029, 22581], [25, 68], [65, 52], [41, 3], [60, -9], [25, -43], [-17, -58], [1, -56], [-50, -56], [-69, 14], [-29, 38], [-42, 20], [-10, 27]], [[7830, 22469], [6, 24], [75, 67], [-9, -61], [-35, -20], [-19, -46], [-18, 36]], [[41434, 35185], [-8, 273]], [[41598, 35331], [-39, -18], [-34, -81], [2, -44]], [[41262, 28642], [11, -56]], [[41273, 28586], [-16, -38], [-4, -63]], [[35448, 28184], [16, -25], [16, -85], [50, -68], [9, -54]], [[35539, 27952], [-149, -107]], [[40096, 32030], [36, 7], [12, 63]], [[40144, 32100], [67, -6]], [[40211, 32094], [102, -11]], [[40301, 31935], [-25, -8]], [[40276, 31927], [-71, -13], [-65, 12]], [[40749, 32214], [4, -15], [88, -77]], [[40841, 32122], [-25, -97]], [[40816, 32025], [-23, 17], [-72, -72]], [[40721, 31970], [-1, 75], [-55, 41], [1, 75]], [[29915, 38696], [7, 161], [23, 35], [-17, 72], [-1, 213], [7, 54]], [[29934, 39231], [322, -1], [224, 0]], [[30480, 39230], [-10, -53], [0, -106], [-26, 0], [0, -107], [-12, -90], [-28, 14], [0, -139], [-10, 0], [0, -150], [-75, 8], [-8, -43], [-115, 1], [-1, -116]], [[44375, 31754], [15, 49], [52, -24]], [[44442, 31779], [-21, -55]], [[32334, 28736], [29, -60], [43, -31], [8, -51], [42, -13], [39, -60]], [[32495, 28521], [44, -17], [2, -73], [17, -46], [57, -12], [67, -26], [74, 1]], [[32281, 28184], [33, 552]], [[42380, 31868], [-8, 26], [33, 20]], [[42638, 30473], [-105, 2]], [[42533, 30475], [-103, 2], [7, 71], [-26, 41]], [[42411, 30589], [31, 20], [96, 108]], [[32916, 38504], [0, -92], [-199, 0], [0, -213]], [[32470, 38199], [-165, 0]], [[39991, 27735], [-102, 11], [-73, -6]], [[39816, 27740], [6, 377]], [[39864, 28115], [131, 0]], [[24343, 32306], [-1, 2], [8, 68]], [[24466, 32106], [-28, 30], [-23, 99], [-72, 71]], [[38133, 33017], [-21, 75], [13, 21], [-17, 82]], [[40315, 34561], [1, -87]], [[40316, 34474], [-15, -72], [1, -81]], [[37826, 30534], [2, 86], [-44, 23]], [[37784, 30643], [3, 41], [34, 37], [-14, 30], [-8, 66], [36, 42]], [[45008, 33433], [-47, -58]], [[44961, 33375], [-33, 33]], [[44928, 33408], [-60, 61], [-73, 31], [-17, 49]], [[44774, 33552], [37, 29], [52, 11]], [[46590, 35367], [-4, -3]], [[29823, 37807], [-32, -1], [-65, 36], [-133, -25]], [[41914, 31150], [-29, -35], [-37, -19]], [[41848, 31096], [-4, 55], [-21, 48], [-42, 24], [-25, 29], [-31, -2]], [[28706, 37638], [-61, -44], [-36, -11], [-11, -41]], [[28598, 37542], [-208, 1]], [[28274, 37892], [0, 215], [-72, -1], [0, 260]], [[23735, 36808], [286, -1]], [[24729, 37192], [46, 4], [53, -21], [14, -40], [43, 26], [73, -4]], [[24958, 37157], [3, -51], [31, -26], [-13, -71], [-38, -56], [-26, -2], [-4, -54], [59, -11], [72, -44], [-3, -29], [99, 0]], [[25195, 36651], [-312, 1], [-277, 1], [-12, 3]], [[33196, 36785], [-417, 0]], [[32779, 36785], [0, 107]], [[33196, 37344], [0, -291]], [[36405, 34027], [-123, 2]], [[36282, 34029], [-6, 201]], [[36276, 34230], [199, 0]], [[40685, 34459], [0, 96]], [[40685, 34555], [201, 1]], [[40936, 34394], [-50, 0]], [[42488, 32274], [-2, 20], [-60, 65]], [[42393, 32504], [74, -15], [120, 116]], [[38989, 32733], [-194, -1]], [[41763, 31805], [-13, -9], [-47, 40], [-35, 64], [-3, 48]], [[43711, 32081], [-9, -32], [51, -61], [47, -2]], [[43737, 31941], [-189, 64]], [[43548, 32005], [-2, 45]], [[40618, 28599], [21, -1], [1, 91]], [[30754, 29110], [134, 0]], [[30889, 28602], [-397, 0]], [[35355, 26166], [-43, -74], [-35, -87]], [[35257, 26005], [64, 137], [-4, 26], [23, 46]], [[35315, 26206], [-1, -2]], [[35314, 26204], [0, 4]], [[34963, 26042], [4, 154], [59, 68]], [[35026, 26264], [-4, -35], [51, -13], [7, -22], [74, -23]], [[35154, 26171], [49, -19], [10, -45], [50, -28], [-31, -83]], [[35275, 26162], [-6, 18]], [[35269, 26180], [6, -17], [0, -1], [0, 0]], [[32301, 35837], [-368, -2]], [[48818, 20381], [-17, -21]], [[48788, 20382], [30, 3]], [[38231, 34331], [-2, -215]], [[38078, 34067], [2, 267]], [[39925, 30308], [-42, 1], [-19, 24], [-44, -22]], [[39823, 30583], [202, -1]], [[40025, 30582], [4, 0]], [[39940, 31267], [-35, 90]], [[40158, 31181], [-60, -4]], [[36323, 29343], [44, -49]], [[36367, 29294], [-189, -1]], [[34878, 30149], [251, 0]], [[42423, 33125], [-46, -41], [-50, -21]], [[42327, 33063], [-56, 13]], [[36082, 34033], [-5, 198]], [[36282, 34029], [-125, 3]], [[36166, 33316], [-3, -232]], [[35988, 33191], [8, 125]], [[37781, 27474], [-66, -7], [-38, -61], [-64, -68]], [[37613, 27338], [12, 58], [-62, 2]], [[37546, 27253], [1, 1], [36, 20], [34, -3], [59, -44], [-24, -40], [-34, -7], [-80, 57], [8, 16]], [[5704, 46590], [-27, 38], [32, 20], [-25, 81], [-66, 14], [-19, -53], [-81, 5], [-32, 46], [2, 69], [-112, 35], [-17, 52], [66, 23], [6, 26], [-69, 36], [-103, -27], [-15, 46], [19, 28], [144, 25], [-86, 35], [-37, 43], [59, 20], [86, -4], [52, 13], [-45, 71], [-2, 69], [33, 41], [157, 147], [18, 30], [76, 59], [36, 73], [76, 28], [-17, 61], [41, 100], [29, 37], [58, 32], [-22, 24], [91, 71], [124, 29], [177, -29], [51, -44], [131, -64], [120, 15], [85, 57], [10, 32], [69, 15], [30, 26]], [[6807, 48041], [92, 0], [0, -54], [83, 0], [0, -53], [83, 0], [0, -54], [498, 0]], [[44037, 30366], [-58, -33], [-36, -32], [-85, -59]], [[43790, 30572], [75, -3], [59, -38], [43, 11], [44, -87]], [[36572, 35835], [1, 215]], [[36573, 36050], [208, 0]], [[36833, 35835], [-140, 0]], [[41360, 31384], [-44, -4], [-49, -67]], [[35706, 28374], [-113, 236]], [[35786, 28740], [21, -51], [9, -83], [47, -21], [2, -39], [33, -11], [4, -35]], [[43787, 34125], [138, 72]], [[43925, 34197], [3, -24]], [[39987, 28767], [45, 1], [1, -54], [48, 1]], [[40101, 28500], [1, -49], [-23, -5], [1, -56]], [[40080, 28390], [-36, 10], [-2, 45], [-51, -48], [-1, 47], [-43, -1]], [[34001, 28787], [191, 0]], [[34019, 28477], [-54, 4], [0, 65]], [[33297, 27904], [43, -9], [10, -54], [-18, -51], [-23, -29], [36, -39], [-44, -43]], [[33301, 27679], [-1, -312]], [[33300, 27367], [-96, 14], [-29, -12], [-42, 11], [-16, 26], [-61, 21]], [[33056, 27427], [-107, 107]], [[33745, 33408], [-283, 0]], [[33754, 33408], [-1, -269]], [[41679, 28557], [0, -23], [-46, 0]], [[41542, 28622], [83, 64]], [[41669, 28711], [27, 6]], [[36076, 35256], [-154, 0]], [[35922, 35256], [-52, -1]], [[35870, 35470], [206, 1]], [[37784, 30643], [-52, 1], [0, -41], [-55, 24], [-40, -20]], [[38225, 29557], [1, 297]], [[38363, 29799], [4, -28]], [[37334, 33009], [-52, -149], [-97, 2]], [[37185, 32862], [-95, 6]], [[37090, 32868], [4, 145]], [[39360, 37207], [-14, 20], [-78, 16]], [[39179, 34739], [101, 3], [1, -27]], [[33123, 30432], [-156, 0]], [[32742, 30560], [0, 141]], [[35318, 36479], [106, 0]], [[36419, 33339], [169, -1]], [[38248, 30232], [0, -100], [-22, 1], [0, -117]], [[38226, 29962], [-90, 1]], [[40060, 33629], [-38, -1]], [[40022, 33628], [-160, -1]], [[38009, 34335], [-6, -90], [-59, -70], [-6, -71]], [[37938, 34104], [-41, 15], [-89, 57]], [[37808, 34176], [17, 0], [0, 162]], [[37825, 34338], [184, -1]], [[38080, 34571], [1, 89], [-51, 0]], [[35212, 33139], [0, -108]], [[35212, 33031], [-243, 0]], [[41558, 27459], [2, 34], [0, 216]], [[41706, 27862], [1, -276]], [[41707, 27586], [-27, -38], [-22, -62], [18, -21]], [[41676, 27465], [-28, -49], [-29, -20]], [[40383, 28117], [-34, -61], [-11, -42]], [[40338, 28014], [-8, -54], [-51, 2], [-37, 27], [-10, -54]], [[38908, 27919], [1, -159], [30, -27]], [[38939, 27733], [-47, 11], [-71, -15], [-82, -39], [-30, 41]], [[48539, 20294], [71, 2]], [[40623, 30765], [38, 39]], [[40729, 30737], [1, -44], [-33, -113]], [[40697, 30580], [-15, 0]], [[40682, 30580], [-72, 0]], [[37424, 37788], [0, -152]], [[37424, 37636], [-332, 1]], [[36374, 29226], [-1, 53]], [[36373, 29279], [22, 0]], [[45276, 35401], [-4, -51], [40, 10]], [[45197, 35128], [-76, 43], [-41, 58]], [[35539, 31304], [-86, -1], [0, 54], [-47, 0]], [[35692, 31305], [-13, 0]], [[44744, 34909], [-271, -1]], [[44579, 35166], [8, -97], [90, -6], [0, -33], [96, 0]], [[44773, 35030], [-2, -95], [27, -26]], [[36488, 27433], [-235, -3]], [[36203, 27605], [-31, 109]], [[36361, 27804], [59, -234], [66, 1]], [[41974, 33335], [-4, -81], [15, -29], [42, -1], [-1, -34]], [[42012, 33169], [-223, 14]], [[42503, 33918], [13, -47], [-36, -82]], [[42480, 33789], [-9, -17]], [[42471, 33772], [-78, 1]], [[42367, 33937], [9, 81], [26, 26]], [[42402, 34044], [84, -10]], [[42655, 32869], [19, 30], [48, 1], [18, 125]], [[43060, 33031], [-46, -17], [-36, -55], [13, -37], [-51, -72]], [[42804, 33336], [-38, -31], [-75, -5]], [[44992, 33167], [-49, 22], [-62, -7], [-4, 25], [-48, 29], [-52, 57]], [[44777, 33293], [17, 46], [57, 63], [67, -63], [10, 69]], [[44961, 33375], [57, -56], [-3, -62]], [[37423, 37475], [1, 161]], [[37545, 37814], [31, -16], [54, 6], [117, 41]], [[40671, 31821], [-30, 31], [2, 42]], [[40643, 31894], [78, 76]], [[40816, 32025], [93, -109]], [[40909, 31916], [-15, -51], [6, -27], [-21, -41]], [[40879, 31797], [-25, -7], [-71, -50]], [[43908, 31208], [27, -61], [-4, -53]], [[43723, 31123], [57, 177]], [[36629, 27650], [15, 65], [-15, 53], [20, 58]], [[36719, 28216], [20, -130], [-5, -173], [-11, -262]], [[28633, 32531], [-433, 1], [-252, 0]], [[27948, 32532], [0, 262]], [[40637, 30362], [-5, 51], [47, 99], [-11, 25], [14, 43]], [[40697, 30580], [68, 1]], [[40765, 30581], [1, -82]], [[40766, 30499], [16, -19], [-33, -59], [1, -90]], [[40570, 34025], [116, 3]], [[40686, 34028], [-1, -136]], [[40504, 33908], [8, 117]], [[40563, 35814], [104, 0]], [[45706, 35492], [-7, -88], [11, -34]], [[45672, 35224], [-188, -28]], [[42138, 24911], [-68, 58], [-29, -28], [-48, 145], [-20, 150]], [[30128, 30563], [-1, 268], [1, 376]], [[41393, 28642], [66, -43], [14, 2]], [[41471, 28534], [-77, 3], [-39, -15], [-26, 17], [0, 47], [-56, 0]], [[38244, 30529], [1, -44]], [[41885, 27725], [0, -55]], [[41885, 27617], [0, -27]], [[41844, 27590], [-137, -4]], [[34972, 32547], [-240, -1]], [[34732, 32546], [-3, 55]], [[34729, 32762], [242, 1]], [[40136, 29873], [30, 14], [12, 31], [38, 22], [61, -9], [1, 20]], [[39121, 27729], [1, -10], [0, -2], [-49, -17], [-69, 25], [-36, -9], [-29, 17]], [[40815, 33116], [81, -46]], [[40896, 33070], [38, -90]], [[40934, 32980], [-81, -42]], [[40340, 31710], [53, 47], [10, 27]], [[40499, 31776], [7, -43]], [[38363, 30069], [1, 65], [-26, 23], [-2, 129]], [[33594, 31241], [0, -2]], [[33594, 31239], [-234, 0]], [[33360, 31239], [0, 275]], [[33360, 31514], [235, -1]], [[36526, 27231], [-7, -4]], [[36458, 27219], [-5, 2], [-4, 8], [-4, 5], [-13, 3], [0, 0], [-18, -9], [-3, -2], [-2, 0], [0, 0], [-26, -9], [-3, -1], [-29, -8], [-1, 0], [0, 0], [-4, 0], [-1, 1], [0, 0], [0, 0], [-2, 1], [0, 0], [-2, 1], [0, 0], [0, 1], [-2, 2], [0, 1], [-1, 3], [0, 0], [-2, 3], [24, 24], [18, 68], [-1, 39], [-26, 14], [-26, -15], [-25, -53], [-25, 2]], [[41540, 34471], [0, -22]], [[41540, 34449], [-252, 0]], [[41288, 34449], [2, 152]], [[47413, 36806], [-63, -12], [-53, -26], [-36, 162], [-33, 166], [34, 53], [-36, 40], [23, 39], [12, 55], [25, 11], [-16, 74], [-19, -4], [-2, 258], [5, 111]], [[47254, 37733], [392, -1], [0, -109]], [[38783, 31865], [-44, 36], [11, 128]], [[35817, 30820], [0, -53]], [[40874, 35814], [87, 10], [1, 54]], [[40962, 35878], [51, -1], [0, -27], [102, -1], [0, -27], [51, 0]], [[31577, 31192], [0, 15], [-154, -1], [7, -44], [-83, 0]], [[31247, 31819], [204, 1]], [[46101, 36270], [63, 136], [-92, 50]], [[46098, 36504], [49, -25], [64, 128], [45, -32], [31, 43]], [[42919, 32294], [-4, -63], [81, -80]], [[38343, 32847], [-14, 32], [21, 38]], [[38359, 33057], [195, 0]], [[35584, 29342], [-142, 4]], [[35442, 29346], [4, 258]], [[41764, 30010], [-89, 5], [-28, -36]], [[35615, 34714], [1, -99], [50, -81]], [[35415, 34572], [0, 2]], [[35415, 34574], [0, 176]], [[41881, 25669], [-86, 1], [0, -54], [-52, 0]], [[41743, 25616], [-85, 218], [-32, 56]], [[38751, 35923], [-154, 0]], [[27948, 31726], [0, 97]], [[28260, 30914], [0, -481], [0, -266]], [[28260, 30167], [-16, -16], [-73, 9], [-29, -48], [-43, -12], [-12, 19], [-130, 12], [-47, 27]], [[28260, 29970], [0, 197]], [[43157, 30127], [25, 28]], [[43182, 30155], [183, -219]], [[43365, 29936], [48, -57]], [[43413, 29879], [-76, -32], [-43, -35], [-82, -105]], [[43212, 29707], [-43, 0], [-23, 64], [-16, 18]], [[44834, 33660], [-36, 55]], [[44724, 33950], [20, -17]], [[44744, 33933], [204, -173]], [[48541, 20392], [78, 1]], [[48619, 20393], [-1, -59]], [[48618, 20334], [-1, -32]], [[41618, 31774], [12, 19], [19, -10], [-31, -9]], [[45171, 34345], [35, -36], [53, -18], [13, -63]], [[45272, 34228], [-42, -64], [-2, -33]], [[45074, 34119], [-44, 15], [-27, 27]], [[45003, 34161], [17, 10], [35, 66]], [[36956, 33839], [0, 72]], [[36956, 33911], [223, 2], [0, -27]], [[37178, 33697], [-220, -2]], [[34248, 32602], [-280, 0]], [[33968, 32602], [-7, 0]], [[36219, 27009], [-43, -8], [23, -41]], [[36193, 26932], [-115, -131], [-54, -25]], [[36024, 26776], [-27, 3], [-32, 46], [-6, 29], [-47, 10], [-9, 46], [-25, 35], [-1, 65], [-13, 16]], [[33174, 33890], [0, 56]], [[33174, 34105], [307, 0]], [[40986, 33414], [-110, 7]], [[34524, 29327], [-63, 0]], [[41473, 29781], [-54, 4], [-70, 38]], [[41349, 29823], [2, 54]], [[41358, 29970], [58, 29], [33, -19], [32, 17]], [[41567, 29953], [-29, -19], [-42, -57], [-20, -42], [17, -29]], [[37161, 30693], [18, 2], [2, 179]], [[40962, 35878], [0, 158]], [[40962, 36036], [1, 106]], [[40963, 36142], [52, 0], [1, -53], [59, -1]], [[41075, 36088], [-9, -82], [9, -64], [91, -44]], [[38404, 30833], [105, -4], [73, -9]], [[38582, 30820], [-5, -235]], [[38577, 30585], [-35, 0]], [[38542, 30585], [-254, 0]], [[38288, 30585], [7, 29], [36, -10], [16, 57], [46, 11], [-37, 74], [34, 79]], [[38390, 30825], [9, 3]], [[24650, 33240], [-124, 5]], [[24534, 33294], [15, 95], [-60, -2], [8, 87], [15, 14], [-46, 62]], [[24731, 33768], [27, -26], [-19, -58], [3, -89], [22, -10], [98, -140], [26, -19]], [[35091, 27543], [68, 88], [54, 129]], [[25072, 37216], [-114, -59]], [[24694, 37209], [-38, 35], [-1, 162], [39, 0]], [[23962, 38981], [67, 15], [57, 57], [76, -31], [-29, -27], [17, -35], [-45, -89], [-23, 27], [-48, -1], [-35, 20], [-37, 64]], [[39395, 36346], [-53, 0], [0, -54], [-68, 1]], [[39298, 36562], [-23, -68], [49, -19], [27, 44], [46, 23]], [[36016, 32060], [-190, 1]], [[35826, 32061], [0, 134]], [[37034, 28828], [108, -1]], [[37984, 27325], [55, 1], [32, 36], [17, -49], [65, -60], [101, -142], [-6, -66]], [[38248, 27045], [-55, 27], [-86, -104], [-32, -25], [-27, 0], [-44, 53], [-58, 4], [-16, 17], [-65, 20], [-9, 38], [4, 1], [0, 1], [5, 8], [1, 3], [0, 1], [1, 8], [1, 1], [6, 10], [1, 1], [37, -60], [17, 46], [-38, 37], [2, 7], [0, 2], [1, 3], [-1, 4], [-1, 3], [-5, 2], [-4, 1]], [[37883, 27154], [-15, 26], [5, 40], [36, 40], [42, 11]], [[5591, 50981], [-256, 65], [-30, 37], [-84, 45], [-127, 33], [-117, 17], [182, 42], [63, 88], [20, 132], [-12, 62], [239, -15], [148, 2], [468, 45], [121, 33], [191, 97], [117, 92], [54, 100], [-3, 99], [61, 123], [132, 98], [159, 135], [201, 86], [151, -18], [107, -2], [207, 50], [145, 55], [115, 57], [247, 145], [208, 50], [9, -25], [87, -23], [127, -7], [127, 21], [146, 8], [115, 27], [116, 45], [110, 64], [191, 144], [105, 41], [17, -35], [76, -21], [123, -12], [50, -35], [161, -8], [18, -69], [-123, -59], [-72, -11], [55, -73], [98, -3], [61, 22], [-4, 50], [74, 39], [72, 14], [-34, 33], [98, 41], [181, -74], [19, -124], [95, 5], [75, -41], [81, 33], [46, 40], [176, 0], [108, 22], [145, -23], [131, -2], [166, -35], [-67, -68], [-41, -16], [22, -49], [139, -13], [124, -26], [38, -31], [-64, -40], [140, 3], [177, -36], [86, 51], [188, 14], [69, -45], [125, 18], [90, 44], [299, -15], [170, -51], [78, 12], [87, -74], [145, 15], [113, -31], [60, -48], [144, -7], [156, -25], [46, 24], [267, -6], [77, -19], [133, 2], [73, -40], [186, -55], [252, -16], [71, 41], [363, 61], [85, -6], [63, 16], [233, -67], [108, -42], [41, -36], [57, -5], [137, -52], [107, -21], [123, -58], [96, -7], [90, -24], [0, -296], [0, -412]], [[41225, 36245], [-9, -66], [-41, -13], [-6, -29], [-59, 0], [-35, -49]], [[40963, 36142], [0, 102]], [[37674, 34177], [134, -1]], [[37938, 34104], [-32, -36]], [[34482, 33139], [1, 269]], [[40716, 37247], [0, -307]], [[40716, 36940], [-101, 1], [-20, -8], [-37, 55]], [[40558, 36988], [78, 16], [-54, 27], [-21, 24], [-13, 57], [91, 112], [48, -2], [29, 25]], [[47389, 36346], [-17, -40], [19, -32], [30, -1], [24, -89], [-41, -64]], [[47404, 36120], [-22, -30], [-118, -54]], [[44099, 35535], [109, 6]], [[40906, 31789], [-27, 8]], [[40909, 31916], [32, 80], [34, 24]], [[37215, 31512], [-36, 1]], [[44202, 32011], [21, -24]], [[33615, 29335], [167, -4]], [[33556, 29062], [0, 269]], [[31716, 33518], [-61, 15], [-66, 50]], [[31589, 33583], [6, 50]], [[35083, 30498], [-2, 297]], [[43188, 32910], [-32, -67], [-41, -108]], [[43077, 32694], [-72, 28], [-26, 58], [-49, 25]], [[43437, 32700], [-60, 27], [-30, 28], [22, 58]], [[43476, 32948], [48, -39]], [[36491, 30826], [-6, -279]], [[36219, 30391], [0, 107], [27, 0], [0, 54], [30, 0], [0, 72]], [[36276, 30624], [0, 89], [50, 0], [0, 74]], [[42301, 32186], [11, 31], [35, 29], [36, 8], [5, 42], [-22, 32]], [[42411, 30589], [-28, 46]], [[42383, 30635], [-13, 19], [-46, -39], [3, 65]], [[45272, 34228], [62, -47]], [[45334, 34181], [-8, -21]], [[37182, 33697], [-4, -208]], [[41399, 29572], [-50, 80]], [[41294, 29784], [55, 39]], [[34252, 36263], [120, 1]], [[34372, 36264], [163, 1]], [[33967, 35967], [0, -146], [7, -54]], [[32862, 28521], [-14, 0]], [[35403, 28556], [93, 66]], [[35670, 28339], [-121, -84]], [[23572, 37869], [-10, 53], [60, 25], [-18, 67], [-42, 7], [-24, 32], [-26, 120], [-36, 42], [-15, 110]], [[23830, 38315], [1, -160], [7, -108], [125, 1]], [[23963, 38048], [19, -55], [-1, -125]], [[43634, 33220], [-85, 79]], [[43549, 33299], [39, 125], [51, 16]], [[43639, 33440], [58, -14], [27, -64]], [[48687, 20144], [-43, 15], [3, 28]], [[29684, 36867], [116, -3]], [[29800, 36763], [-395, -7], [-148, 6]], [[35442, 29346], [-82, 1]], [[42182, 30690], [-15, -18], [-3, -56], [-34, -7], [-3, -53], [16, -67]], [[42143, 30489], [-11, 16], [-63, 5], [-37, 24]], [[41848, 31096], [-33, -60], [-29, -13]], [[41786, 31023], [-26, 28], [-6, 38], [-26, 4]], [[36109, 29895], [41, 52], [27, -16]], [[36355, 29556], [-27, 22]], [[36024, 26776], [-133, -99], [-178, -107], [-69, -62]], [[35919, 37016], [-161, -1]], [[35758, 37015], [-54, 1], [-5, 107]], [[41718, 29523], [-56, 32], [-85, -45]], [[41610, 29723], [13, 6]], [[34296, 30215], [0, -192]], [[38312, 32519], [-46, 58], [-5, 69], [13, 34]], [[39906, 32171], [39, 36], [28, -26], [71, 8]], [[40044, 32189], [71, -16], [29, -73]], [[34687, 29054], [1, 271]], [[40497, 29433], [-25, 185]], [[39683, 30394], [-2, -230]], [[39498, 30159], [0, 162]], [[48839, 20277], [-27, -11]], [[48817, 20356], [10, 8]], [[38543, 30447], [-1, 138]], [[38577, 30585], [127, -1]], [[34066, 31824], [-38, 0]], [[34028, 31824], [-1, 237], [-7, 55]], [[34260, 32111], [6, -53]], [[33593, 32062], [0, 215]], [[33593, 32277], [190, 0]], [[33783, 32277], [0, -161]], [[33783, 32116], [0, -54]], [[33783, 32062], [-181, 0]], [[36929, 28882], [1, 45], [23, 62]], [[40537, 30444], [-11, -29], [52, 0], [0, -60]], [[40553, 30333], [-183, 1]], [[40367, 30356], [37, 83], [0, 45], [37, 94]], [[37626, 34608], [-51, -1]], [[34612, 34321], [12, 0]], [[34624, 34321], [0, -215]], [[33652, 31514], [0, 215], [3, 93]], [[33655, 31822], [136, 1]], [[33791, 31823], [237, 1]], [[37104, 35253], [1, 216]], [[37310, 35469], [0, -163]], [[31805, 38654], [-15, 14], [-159, -4], [-55, -31], [-54, -14]], [[31522, 38619], [0, 129], [17, 0], [0, 213]], [[31539, 38961], [362, 0]], [[31901, 38961], [94, 0], [0, -54], [57, 0], [0, -54], [253, 0]], [[48638, 20344], [-20, -10]], [[48619, 20393], [23, -2]], [[24381, 37616], [-2, -204]], [[24379, 37412], [-21, -3], [-17, -52], [-63, 14], [-60, -32], [-46, -3], [-28, -50]], [[34792, 26645], [103, 107]], [[34936, 26693], [-37, -17], [122, -296], [-3, -4]], [[35018, 26376], [-38, -39], [9, -35]], [[34989, 26302], [-153, 0]], [[37279, 32706], [-94, 102], [0, 54]], [[44057, 32540], [7, 61], [21, 10]], [[44085, 32611], [3, -2]], [[44088, 32609], [13, -12], [0, -1], [0, 0], [1, -5], [9, -26], [5, -1], [5, -1], [1, -1], [1, -1], [1, -1], [0, 0], [1, -1], [0, 0], [5, -5], [3, -2], [5, -6], [16, -5], [0, 0], [0, 0], [1, 0], [0, 0], [5, 0], [0, 0], [2, 0], [0, 0], [0, 0], [10, 3], [3, 0], [2, 0], [6, -1], [22, -18], [41, 9], [3, -1], [11, -27], [0, -1], [6, -6], [1, 0], [19, -17], [2, -6], [5, -15]], [[44243, 32419], [-50, 18], [-56, 80], [-26, -30]], [[42397, 31351], [105, 30], [78, -27]], [[42561, 31234], [-86, 3]], [[24823, 31906], [110, 125], [-4, 38], [259, 144]], [[34339, 31089], [-2, 124]], [[34336, 31307], [186, -2]], [[41983, 30943], [-20, 89], [-51, 54], [35, 47], [-16, 48]], [[42990, 34677], [-44, 0]], [[42946, 34677], [0, 140]], [[42947, 34908], [239, 1]], [[36708, 30187], [5, -101], [45, -2], [-1, -108]], [[36757, 29976], [-3, -161], [-55, 2]], [[41833, 30914], [-36, 20], [-19, 76], [8, 13]], [[36956, 29628], [-51, 19]], [[36905, 29647], [5, 216], [7, 81]], [[36917, 29944], [36, 0]], [[33174, 33412], [-328, -4]], [[32846, 33408], [5, 268], [0, 215], [5, 54]], [[32856, 33945], [51, 0]], [[33125, 31514], [57, 0]], [[33182, 31514], [178, 0]], [[33360, 31239], [-235, 0]], [[41087, 34072], [1, -65]], [[41034, 33973], [-146, -2], [0, -62], [-42, -16]], [[40846, 33893], [-9, 3], [0, 201]], [[36765, 29365], [124, 0]], [[36308, 35836], [179, -1]], [[34971, 32816], [-2, 162]], [[35212, 33031], [0, -215]], [[41469, 32353], [23, -40], [5, -48]], [[32928, 30164], [0, -301]], [[31371, 34290], [-57, 1]], [[29689, 36149], [0, 77], [-29, 0], [-13, 97], [-33, 32], [-31, 55], [9, 52], [-43, 42], [-128, 0], [0, 51], [-168, 0]], [[44200, 34398], [40, -10]], [[45499, 34038], [-80, -14]], [[45419, 34024], [44, 38], [-56, 67]], [[45407, 34129], [21, 37]], [[45428, 34166], [55, 3]], [[45483, 34169], [8, -1]], [[41363, 27662], [33, 77]], [[40715, 36886], [1, 54]], [[40716, 37247], [7, -13], [111, -70], [58, 7], [54, -23]], [[40962, 36036], [-86, -7], [-105, 1]], [[41045, 32558], [42, -34], [53, -85]], [[41140, 32439], [-4, -50]], [[41050, 32397], [-50, 114]], [[42386, 30477], [13, 81], [-18, 40], [2, 37]], [[42533, 30475], [66, -125]], [[42394, 30253], [1, 53]], [[40211, 32094], [7, 64], [32, 48], [29, 21], [24, 48]], [[40303, 32275], [39, -24], [-11, -95], [42, 9]], [[40373, 32165], [24, -55]], [[35615, 35212], [-23, 43]], [[35922, 35256], [0, -54], [31, 0], [0, -162]], [[35953, 35040], [-299, 2]], [[41291, 27296], [-54, 34], [-44, 101], [-21, 23], [-107, 71], [-26, 28]], [[41114, 27689], [153, 0], [-1, -27], [45, 0]], [[38645, 31978], [1, 51]], [[38800, 31811], [-55, 51], [-23, -34]], [[38241, 32466], [-73, -24], [-24, 45]], [[42171, 28795], [86, 88], [22, -7]], [[42279, 28876], [12, -67], [49, -10], [51, -40]], [[42391, 28759], [20, -16], [-87, -116], [-12, -34], [-38, -26]], [[41724, 27454], [-48, 11]], [[43446, 35581], [0, 25]], [[43688, 35519], [-20, -77]], [[43668, 35442], [-52, 4], [-170, -1]], [[36076, 35471], [0, 213]], [[32006, 37757], [0, 27], [55, 17]], [[32305, 37774], [0, -62]], [[34194, 36913], [59, 0]], [[34253, 36913], [0, -215]], [[34253, 36698], [-44, 0]], [[47181, 36006], [-49, -41], [-31, 2], [-58, -49], [4, -43], [-69, -18]], [[34761, 26955], [94, -144]], [[34736, 32275], [286, 1]], [[35022, 32276], [0, -161]], [[35022, 32061], [-236, -1]], [[41232, 30583], [28, 1]], [[42606, 32889], [-7, 25], [10, 66], [29, 53], [9, 88]], [[37634, 32192], [24, 0], [0, -108], [47, -1]], [[37705, 32083], [-4, -230]], [[37701, 31853], [-188, 4]], [[37461, 30275], [-17, 0]], [[37444, 30275], [1, 54], [-46, 1], [1, 27], [-43, 1], [1, 27], [-47, 11], [1, 45], [-46, 2], [2, 53], [-39, 1]], [[35952, 34825], [1, 215]], [[35953, 35040], [151, -1]], [[28814, 35540], [-28, -48], [3, -70], [-11, -25], [17, -56], [58, 10], [24, -61], [1, -57], [17, -67]], [[42171, 34507], [0, 136]], [[48833, 20198], [18, -35]], [[48866, 20080], [-22, -7]], [[48446, 20126], [-55, 2]], [[43920, 35698], [115, 6], [70, -10], [100, 45]], [[43144, 32373], [-6, -55]], [[34288, 38842], [0, 107]], [[34288, 38949], [0, 107], [-14, 0], [0, 174]], [[34274, 39230], [229, 0]], [[43204, 35568], [-16, 115], [97, 39], [87, 25], [74, 9]], [[45883, 35712], [21, -28]], [[45904, 35684], [-21, -88], [-56, 4], [-5, -117], [38, -2], [-4, -116]], [[45856, 35365], [-40, 2]], [[40881, 33238], [41, -14]], [[40922, 33224], [-25, -27], [8, -33], [-9, -94]], [[40678, 33122], [0, 124]], [[45426, 34241], [-7, -22]], [[45419, 34219], [-22, -52]], [[45334, 34181], [-5, 90], [-57, 32], [26, 71]], [[45298, 34374], [138, -84]], [[27948, 32532], [-1, -336]], [[6807, 48041], [75, 84], [66, 49], [8, 33], [92, -32], [7, -26], [152, 11], [40, -11], [119, 15], [76, 20], [15, 27], [86, 68], [60, 71], [0, 38], [-81, 158], [-10, 90], [-125, 100], [-105, 15], [15, 52], [35, 16], [67, -20], [92, 0], [97, 68], [8, 66], [-67, 65], [-121, 37], [-71, -68], [-61, -12], [-65, 22], [-92, -49], [-126, -18], [-29, -38], [-133, -54], [-33, -37], [-7, -53], [-78, -20], [-21, 91], [-88, 54], [-68, 27], [-41, -27], [124, -68], [-65, -48], [-34, 43], [-150, 58], [-101, 7], [-63, -15], [-75, 9], [-120, -12], [-168, -59], [-91, -10], [-173, 40], [-358, 52], [-68, 34], [-40, 59], [30, 85], [-50, 41], [-70, 29], [-2, 32], [-72, 34], [97, 14], [76, 39], [-5, 29], [56, 32], [-61, 34], [-135, 4], [-100, 27], [-195, 19], [-103, 53], [-159, 48], [-12, 68], [54, 26], [191, 57], [98, 40], [212, 102], [446, 175], [173, 53], [303, 76], [137, 23]], [[6769, 48233], [61, 32], [73, -5], [13, -47], [-118, -6], [-29, 26]], [[2780, 48211], [43, 73], [0, 72], [33, 2], [25, -66], [99, -30], [207, -36], [91, 46], [91, 31], [90, -7], [81, -45], [21, -76], [83, -29], [93, -9], [42, -34], [122, -18], [117, -2], [136, -29], [-42, -68], [-33, -22], [-80, 18], [-145, -16], [-70, -47], [-14, -60], [-73, -1], [-41, 63], [-128, 65], [-61, -3], [-44, 66], [-85, 43], [-133, 37], [-103, 5], [-73, -23], [-28, -31], [-57, -18], [-120, 37], [-37, 44], [-7, 68]], [[31272, 38587], [10, 66], [72, -24], [97, 5], [71, -15]], [[31787, 38484], [-56, 0], [0, -161], [-18, 0], [0, -215]], [[31713, 38108], [-186, -1], [0, -54], [-55, 0], [0, 54], [-56, 0]], [[32302, 35527], [-1, 294]], [[32760, 35821], [0, -294]], [[35274, 39231], [359, -1]], [[35633, 39230], [0, -174], [7, -107]], [[35015, 33891], [-1, 215]], [[35014, 34106], [199, 0]], [[35213, 33891], [-197, 0]], [[41204, 27903], [111, -8]], [[48858, 20371], [19, 5]], [[39624, 33217], [0, -54]], [[27745, 29370], [-67, 7], [-16, 36], [12, 41], [1, 66], [-18, 85], [40, 16]], [[41147, 27908], [3, 234]], [[866, 40975], [8, 30], [60, -10], [-7, -41], [-61, 21]], [[226, 40902], [66, 8], [119, 39], [30, 17], [5, 70], [44, 7], [24, -23], [-40, -52], [6, -53], [-61, -30], [-56, 33], [-43, -18], [-94, 2]], [[537, 40853], [53, 64], [-15, 49], [50, 3], [12, 32], [-21, 36], [16, 24], [69, -39], [17, -37], [124, 18], [1, -80], [-95, -8], [-54, -44], [-53, -14], [-48, 31], [-30, -57], [-26, 22]], [[0, 41009], [43, 24], [76, -3], [67, -75], [-26, -70], [-68, -32], [-40, 45], [62, 11], [-114, 100]], [[882, 41131], [22, 24], [40, -5], [36, -42], [-31, -21], [3, -48], [-57, 11], [-13, 81]], [[1262, 41099], [128, 30], [164, 20], [45, 44], [64, 3], [47, 19], [18, 37], [-49, 3], [19, 61], [61, 24], [51, -17], [35, -58], [-31, -44], [-52, 6], [16, -67], [-59, -22], [-25, 15], [-35, -53], [-41, 12], [-99, -25], [-20, 15], [-81, 3], [-20, -18], [-86, -1], [-50, 13]], [[1819, 41164], [55, 0], [52, -16], [77, 28], [117, -34], [101, 8], [-13, -31], [-69, 0], [-35, -19], [-67, 0], [-28, 14], [-126, -1], [-64, 51]], [[4517, 41894], [69, 45], [31, -2], [72, 36], [44, -11], [73, 61], [12, 51], [43, 8], [16, 85], [-50, 43], [0, 25], [48, 48], [66, 27], [102, 16], [-1, -56], [38, -28], [51, 19], [3, 29], [68, 16], [30, -30], [-47, -40], [-44, -66], [131, 57], [3, -48], [-74, -57], [-118, -38], [-12, -57], [-73, -55], [-168, -9], [-134, -65], [-20, -32], [-44, 12], [-24, -24], [-91, 40]], [[3994, 41615], [41, 14], [0, 32], [43, 19], [33, 47], [-7, 39], [16, 46], [72, 57], [26, -14], [85, 6], [-29, 92], [30, 40], [62, 36], [85, 20], [45, -28], [51, -12], [-32, -39], [7, -32], [-86, -51], [-101, -37], [-32, -55], [-67, -74], [-39, -5], [-44, -37], [-154, -79], [-5, 15]], [[152725, 41655], [73, 45], [52, 6], [157, -11], [82, -40], [55, -51], [-52, -13], [-32, 20], [-27, -38], [-74, 1], [-41, -22], [-61, 39], [-4, 33], [-50, 30], [-55, -13], [-23, 14]], [[3580, 41605], [63, 7], [37, 22], [47, -18], [-16, -44], [-59, 15], [-54, -17], [-18, 35]], [[3501, 41529], [7, 38], [47, -7], [-7, -33], [-47, 2]], [[155410, 40858], [121, -13], [75, -72], [50, -22], [31, -65], [-88, 60], [-47, 54], [-47, 22], [-60, 9], [-35, 27]], [[154790, 41018], [62, 41], [67, 19], [28, 80], [49, -19], [-60, -70], [10, -38], [-66, 9], [-50, -53], [-40, 31]], [[153115, 41333], [39, 30], [37, -3], [41, 35], [36, -18], [8, -75], [-60, 28], [-53, -10], [-48, 13]], [[155332, 41069], [63, -20], [-39, -29], [-24, 49]], [[3397, 44273], [15, 23], [99, 15], [-4, -30], [-58, -16], [-52, 8]], [[2441, 41267], [22, 31], [53, 26], [53, -15], [11, -23], [-50, -33], [-84, -15], [-5, 29]], [[155783, 41072], [79, 24], [48, -32], [-13, -36], [-56, -25], [-41, 16], [-17, 53]], [[3219, 41453], [46, 49], [72, -3], [-18, -45], [-31, 1], [-50, -39], [-19, 37]], [[3673, 43933], [123, -4], [-32, -46], [-91, 50]], [[10873, 45314], [-38, -5], [-25, -64], [-65, -35], [-55, -46], [-95, -4], [-17, -69], [-53, -3], [-6, -30], [31, -39], [-77, -34], [32, -26], [-18, -43], [-85, -74], [-105, -44], [-59, 22], [-21, -31], [-55, 14], [-43, -9], [-56, -36], [9, -55], [-100, -21], [9, -66], [-31, -8], [-83, 48], [-21, -12], [-6, -70], [-41, -14], [-4, -52], [-102, -3], [-24, -65], [-50, 20], [-88, -33], [-62, -49], [63, -2], [-8, -109]], [[10803, 44826], [45, 47], [40, 13], [78, 89], [89, 41], [81, 83], [-5, 36], [43, 35], [28, -17], [72, -3], [-76, -100], [8, -45], [56, 6], [37, 32], [34, -37], [94, -3], [0, -85], [-41, -37], [-50, 13], [-31, -24], [-94, -4], [-50, 31], [-26, -73], [-50, -9], [-21, -32], [-71, -6], [-134, 40], [-56, 9]], [[10210, 44395], [32, 9], [34, 80], [124, 74], [52, 19], [106, -8], [0, -59], [46, -6], [27, 28], [-21, 73], [-31, -2], [-1, 68], [93, 48], [66, -36], [52, 4], [-37, 56], [36, 21], [78, -45], [17, 65], [46, -31], [46, 7], [64, -15], [-7, -56], [77, 8], [35, 39], [38, -11], [34, 38], [46, -48], [24, -58], [-58, -9], [-11, -58], [17, -25], [121, -14], [-61, -63], [-21, -58], [-62, 28], [-79, -3], [-35, 26], [-62, 3], [124, -79], [-13, -37], [-52, -8], [-29, -27], [-55, -4], [14, -82], [-132, -31], [-46, -24], [-37, 27], [53, 57], [-29, 12], [-59, -66], [-42, -23], [17, -33], [-65, -43], [2, -37], [-58, -15], [-66, -60], [-67, 24], [23, 36], [60, 46], [-61, 34], [-66, -58], [-69, 51], [-61, 20], [-6, 126], [-32, 44], [-34, 10], [-39, 51]], [[10392, 43886], [32, 33], [84, 14], [62, -68], [-121, -10], [-57, 31]], [[10199, 43820], [43, 53], [75, 49], [62, -28], [-105, -51], [-45, -42], [-30, 19]], [[9788, 43444], [81, 37], [-12, -77], [-56, 7], [-13, 33]], [[34497, 32332], [-4, 108]], [[34732, 32546], [1, -215]], [[41390, 34927], [-37, -56], [-24, -8], [-51, -84], [-5, -35]], [[41138, 34738], [-4, 222]], [[40466, 34455], [-100, 1], [-50, 18]], [[40515, 34617], [1, -162]], [[40756, 28278], [45, -1], [-2, -110]], [[40799, 28167], [-82, -6]], [[40717, 28161], [-83, 2]], [[40026, 30666], [-1, -84]], [[39804, 30751], [35, -7], [21, 26], [42, 20], [1, 23]], [[40601, 32647], [-12, -128]], [[40589, 32519], [-34, -56]], [[40555, 32463], [-140, 68]], [[40415, 32531], [8, 72], [-27, 13]], [[40396, 32616], [62, 15], [18, 30]], [[35213, 34321], [0, -215]], [[35014, 34106], [0, 215]], [[43884, 33502], [-5, 138]], [[43879, 33640], [29, 31], [95, 22], [21, 25]], [[42074, 29412], [32, 39], [77, -31], [75, 6]], [[39705, 31233], [25, 52], [10, 74], [27, 82]], [[30125, 33364], [-24, -22], [-369, 0], [-30, 5]], [[29702, 33347], [6, 109], [11, 11], [3, 88]], [[29339, 33559], [-170, 0]], [[29169, 33559], [-172, 0]], [[28997, 33559], [-49, 0], [7, 32], [-39, 51], [-35, -33], [-54, -70], [-17, 21], [4, 56], [-21, 42], [-30, 24]], [[28763, 33682], [14, 102], [-22, 84], [10, 14], [-16, 76], [17, 5]], [[29018, 34031], [7, -59], [-19, -17], [29, -57], [32, 0], [23, -46], [47, 0], [41, -74], [-10, -69], [72, -70], [1, -26], [83, 0]], [[39642, 33432], [81, -2]], [[39723, 33430], [-1, -80], [33, -1]], [[45419, 34024], [-47, 36], [9, 35]], [[45381, 34095], [26, 34]], [[37248, 32577], [-30, -20], [-112, 5], [-24, 40]], [[37082, 32602], [4, 165]], [[37086, 32767], [4, 101]], [[42033, 33949], [-207, 7]], [[41826, 33956], [-16, 69]], [[36076, 35684], [-207, 1]], [[35869, 35685], [1, 150]], [[40253, 32938], [-1, 161]], [[27518, 34907], [0, 476]], [[27518, 35472], [34, 2], [25, -35], [-13, -56], [33, -8], [16, -52], [89, -13]], [[40267, 35169], [96, 0]], [[30858, 36489], [409, -2], [183, 5]], [[39697, 32758], [-74, 18]], [[39770, 32998], [-8, -54], [0, -192]], [[40321, 36622], [49, -16], [37, 69]], [[37059, 27763], [0, 107], [66, 1], [0, 172]], [[34208, 36482], [6, -204]], [[34253, 36698], [114, 0]], [[34367, 36698], [5, -216], [0, -218]], [[42561, 29698], [-16, 53]], [[30180, 37460], [10, -107], [-1, -170], [27, -45]], [[39582, 31601], [34, 266]], [[38992, 31244], [-28, 27], [-35, 9], [-54, 63]], [[36843, 31997], [2, 89]], [[44690, 34161], [55, -82], [43, -20], [-9, -26], [31, -27]], [[44810, 34006], [-66, -73]], [[35213, 34321], [199, -1]], [[43668, 35442], [-1, -121], [-35, -90]], [[44902, 34272], [29, -58], [-23, -51], [-28, -8], [-14, -54], [3, -51]], [[44869, 34050], [-59, -44]], [[39950, 32468], [109, -104], [39, -48]], [[40098, 32316], [-54, -127]], [[38637, 29799], [0, -27]], [[45726, 36590], [-2, -45], [-26, -44], [-30, -9]], [[45676, 36768], [66, 1]], [[42402, 34044], [-25, 28], [1, 51], [-74, 1]], [[43289, 32164], [-19, -7]], [[42401, 26481], [-2, -324]], [[42399, 26157], [-2, -111]], [[37450, 30009], [-45, -2]], [[37405, 30007], [-41, 41], [-28, 12], [-80, 3]], [[37260, 30226], [35, 26], [80, -2], [0, 27], [69, -2]], [[45419, 34219], [9, -53]], [[45381, 34095], [-5, 3]], [[36761, 31394], [-24, 1], [-8, -45]], [[48473, 20336], [-46, 0]], [[48394, 20411], [63, -16]], [[41729, 27183], [84, 0], [2, -35], [67, 9], [0, 18]], [[43544, 31897], [4, 108]], [[43696, 31816], [-49, 21]], [[45003, 34161], [-35, -48], [-96, -73]], [[44872, 34040], [-3, 10]], [[35913, 29892], [-39, 5], [-38, 42], [0, 109], [-23, 19]], [[34683, 25191], [-36, -13], [-14, 31], [-46, 51], [-37, -7], [-17, 22], [-66, 2], [-5, 50], [-33, 58]], [[34429, 25385], [69, 64], [25, 68]], [[42219, 29079], [35, -54], [-2, -27], [34, -53], [-7, -69]], [[34067, 30849], [0, 121]], [[38338, 35628], [-43, 26], [-60, -4]], [[38235, 35650], [-50, 7], [-53, -25]], [[32618, 28736], [-172, 0]], [[32406, 29332], [21, 0], [0, 265], [19, 0], [1, 108], [92, 0]], [[32736, 29593], [-4, -265]], [[39746, 30845], [2, 22], [46, 45], [17, 106], [13, 6]], [[43389, 32068], [-3, -29], [-35, -63]], [[43289, 31949], [-44, 45], [-42, 93]], [[31339, 36757], [104, 0]], [[43879, 33640], [-63, 157]], [[43879, 33502], [-274, 1]], [[43515, 32444], [106, -63]], [[39380, 35213], [-2, -66], [-13, -52], [33, -92]], [[39206, 35004], [0, 211]], [[41314, 29996], [-2, 76], [-17, 20]], [[37405, 30007], [-59, -1], [6, -52], [52, -87], [2, -23]], [[31517, 33975], [-22, -54], [-100, -39], [-41, -7], [-93, 13], [-74, 21], [-17, 40]], [[32693, 33406], [153, 2]], [[26652, 35947], [25, -9], [25, -39], [29, -6], [28, -40], [0, -31], [69, -67], [19, -40], [29, -9]], [[38285, 36406], [-1, 161]], [[38465, 36298], [-179, -1]], [[42881, 35076], [51, 28], [94, 70], [33, 37], [94, 50]], [[40748, 30019], [105, -3]], [[42047, 31568], [-8, -71], [-15, -50]], [[42238, 33593], [2, 51]], [[42471, 33772], [-13, -77]], [[41570, 31699], [-46, 57]], [[41528, 31807], [55, 42], [12, 49], [65, 46]], [[37890, 31751], [2, 125], [87, 6]], [[34817, 34106], [197, 0]], [[43958, 32656], [3, -5]], [[43961, 32651], [-2, 4]], [[44150, 32659], [-7, -53], [-49, 48], [-17, 61], [-84, -53], [-18, 14], [-11, 61], [16, 44], [47, 51]], [[44027, 32832], [19, 44]], [[44085, 32611], [-2, 3]], [[44083, 32614], [5, -5]], [[37105, 35469], [-206, 1]], [[36558, 34825], [-152, -1]], [[41282, 32461], [-28, 10]], [[41254, 32471], [-4, 23], [-56, 62]], [[41194, 32556], [56, 52], [3, 47], [21, 21]], [[29701, 32748], [10, -51], [-13, -20], [53, -70], [9, -42], [-17, -31]], [[38483, 32192], [110, -1], [37, -19]], [[26229, 37379], [-431, -1]], [[25775, 37497], [29, 29], [49, 8], [37, 24], [13, 42], [49, 34], [8, 56], [61, 56], [37, -9], [35, 16], [36, -8]], [[38782, 31607], [-23, -50], [-44, 39]], [[38715, 31596], [-20, 43], [-64, 103]], [[37562, 29842], [0, -54]], [[37562, 29788], [-155, 2]], [[48447, 20064], [-35, 13], [-21, -17]], [[40685, 34619], [0, -64]], [[38309, 27602], [-29, -8], [-54, -72], [-38, -10], [4, -82]], [[38192, 27430], [-56, 3]], [[38143, 27604], [4, 34]], [[38147, 27638], [34, -16], [30, 50]], [[38175, 27903], [-149, -1]], [[37398, 34043], [1, -155]], [[37253, 33886], [-13, 152]], [[39218, 30169], [7, 88]], [[39225, 30257], [7, 73]], [[40628, 32849], [-61, -41]], [[40526, 32801], [-71, 93]], [[31487, 33489], [44, 53], [38, 12], [20, 29]], [[34292, 27940], [0, -130], [78, 0]], [[34370, 27810], [1, -132]], [[40985, 37365], [-93, -14], [-21, -15], [-122, 75], [-15, -16], [-24, -118], [-37, 22], [-75, 83], [-84, 24], [-61, 30], [-80, -1], [-62, -77], [-88, 1]], [[40752, 37294], [27, -23], [101, -33], [-27, -31], [-36, 9], [-65, 78]], [[34463, 28403], [-1, -321]], [[34462, 28082], [-170, 0]], [[39225, 30257], [-75, 0]], [[33649, 27679], [-348, 0]], [[35253, 28579], [-22, 26], [0, 33], [-48, 57], [25, 24], [-46, 28], [4, 96]], [[32856, 33945], [-298, -1]], [[32594, 34293], [318, 0]], [[33968, 32602], [0, -162]], [[33968, 32440], [-190, 1], [5, -164]], [[33593, 32277], [-7, 57], [1, 269]], [[36017, 31822], [-115, 0]], [[35825, 31822], [0, 185]], [[35825, 32007], [1, 54]], [[42418, 30136], [-60, -10], [-58, -23], [-57, -5], [-39, 20]], [[42157, 30276], [1, 48]], [[32600, 34562], [319, 1]], [[32919, 34563], [12, -27], [-1, -107]], [[32930, 34429], [-4, -136]], [[36520, 36050], [53, 0]], [[40895, 30581], [-130, 0]], [[33615, 29598], [227, 1]], [[33172, 34429], [-242, 0]], [[32919, 34563], [0, 188], [-19, 61], [1, 100]], [[38356, 34865], [203, 1]], [[31455, 28358], [-36, 7], [-54, 41], [-33, 60], [-44, 105], [-64, 31]], [[32618, 28521], [-123, 0]], [[36093, 30624], [183, 0]], [[42086, 33419], [50, -2], [82, 14]], [[37701, 31853], [-1, -99]], [[34497, 32275], [-238, 1]], [[34254, 32386], [1, 108]], [[40322, 32675], [74, -59]], [[40415, 32531], [-2, -18]], [[40191, 32439], [-4, 4]], [[38623, 31513], [-14, 36], [40, 8], [-3, -45]], [[38676, 31513], [22, 78], [17, 5]], [[35307, 32386], [-239, -1]], [[35068, 32385], [0, 162]], [[32062, 37910], [-184, 0], [-19, 36], [-55, 0], [0, 36], [-56, 0], [0, 126], [-35, 0]], [[40771, 35814], [0, 216]], [[40278, 32324], [25, -49]], [[40098, 32316], [63, 12], [14, 35], [-10, 77]], [[38404, 36997], [-1, 107]], [[45074, 36758], [170, -2], [134, 2]], [[43889, 32616], [-36, 15]], [[42143, 32432], [33, -11]], [[31348, 30613], [0, 108]], [[26404, 29592], [-82, 96], [-62, 39], [-82, 85]], [[29512, 28324], [-268, 0], [-127, 58]], [[44466, 31545], [111, 0]], [[44577, 31545], [21, -119], [20, -78]], [[44618, 31348], [-9, -2]], [[44609, 31346], [-25, 116], [-21, 41], [-39, 7], [-14, -22], [43, -56], [53, -157], [-69, 88]], [[40092, 34022], [132, 2]], [[39409, 31824], [23, 91]], [[37273, 34229], [-1, 162]], [[27657, 29180], [-256, -25], [-348, -37]], [[37910, 28118], [-201, 0]], [[37709, 28118], [32, 25], [-27, 47], [16, 47]], [[37730, 28237], [48, 29], [24, 47], [53, 28], [63, -8]], [[37918, 28333], [27, -16]], [[16211, 46263], [0, -53], [209, -53], [27, 53], [208, -77], [126, 95], [264, 10], [2, -17], [-52, -144], [64, -59], [151, -55], [35, -85], [444, -324], [47, -159], [-11, -48]], [[17725, 45347], [-182, -61]], [[17543, 45286], [4, 36], [-58, 55], [-97, 60], [-151, 47], [-124, 73], [-217, 81], [-190, 97], [56, 63], [61, 2], [2, 82], [-52, 96], [-34, -64], [-167, -53], [-62, -30], [-150, 12], [-105, 19], [-232, 83], [54, 37], [18, 38], [-48, 16], [-99, -39], [-61, 0], [-77, 30], [-272, 46], [-162, 4], [-69, -14], [-275, -25], [-85, -25]], [[33989, 33407], [8, 0]], [[38540, 29127], [0, 155]], [[38719, 29311], [0, -219]], [[48823, 20223], [23, 58]], [[48482, 20393], [28, 2]], [[48485, 20320], [-2, -1]], [[38850, 29700], [-7, 110]], [[37918, 28333], [2, 162]], [[37920, 28495], [181, 1]], [[34194, 37127], [428, -1]], [[34624, 36912], [-371, 1]], [[48949, 20355], [34, -24]], [[48983, 20331], [-4, -58]], [[39859, 28442], [0, -205]], [[40213, 32893], [-89, 30], [-80, -12]], [[40044, 32911], [-2, 141], [-16, 0]], [[40026, 33052], [0, 35]], [[39057, 30258], [0, -232]], [[37852, 27905], [-9, 3]], [[37698, 28100], [11, 18]], [[37671, 28146], [29, -31]], [[38203, 30861], [94, -2]], [[38361, 30857], [29, -32]], [[38288, 30585], [27, -32], [-25, -51]], [[40410, 27852], [1, 134], [-21, 27], [-52, 1]], [[40599, 28119], [26, -69], [13, -85], [21, -24]], [[40659, 27941], [-30, -65]], [[33841, 29869], [1, -270]], [[44365, 32148], [44, -49], [3, -38], [-16, -41], [-53, 50]], [[33187, 39230], [228, 0]], [[34588, 26302], [-255, -17], [-2, 108]], [[37675, 34392], [100, 0]], [[37775, 34392], [50, -1], [0, -53]], [[34230, 33676], [-1, 0]], [[34229, 33676], [-1, 215]], [[48678, 20083], [-39, -5]], [[37704, 36512], [-154, 0], [-11, -6], [-24, -111]], [[29712, 31821], [416, 1]], [[37426, 33645], [-5, -214]], [[37421, 33431], [-1, 0]], [[33159, 29862], [-231, 1]], [[32967, 30164], [190, 0]], [[36591, 33544], [-6, 152]], [[40717, 28161], [-10, -17], [-1, -96], [-47, -108]], [[40659, 27940], [0, 1]], [[39996, 36254], [51, 103], [16, 107]], [[35869, 35685], [-301, 2]], [[33360, 30973], [0, 266]], [[33594, 31239], [0, -265]], [[33182, 31514], [2, 304]], [[33603, 31821], [52, 1]], [[36276, 34390], [99, -1]], [[43823, 34627], [0, -40]], [[33721, 27033], [-40, 41], [-54, 38], [-22, 55], [-39, 11], [-10, 24], [-38, 13], [-17, 64], [-27, 11], [-17, 63], [-79, 7], [-54, -5], [-24, 12]], [[35024, 31822], [-135, -1]], [[27950, 33617], [347, -1], [395, -1], [71, 67]], [[28997, 33559], [25, -45], [-58, -28], [2, -145], [-15, -48], [-76, 0], [-41, -42]], [[34899, 30391], [184, 0]], [[44774, 35103], [-1, -73]], [[38428, 34114], [1, 162]], [[38236, 35411], [-1, 239]], [[42911, 34088], [-32, -74], [28, -15], [-1, -61], [-29, -32], [-5, -91], [-38, -19]], [[42834, 33796], [-19, 34], [-118, 50], [-77, 89]], [[37618, 33464], [-147, 2], [-1, -36], [-49, 1]], [[41251, 33743], [130, -2]], [[41381, 33741], [-21, -36], [5, -146]], [[35458, 33675], [0, -268]], [[32453, 33407], [0, 107]], [[41246, 34180], [9, -72], [33, -10]], [[41289, 33986], [-45, 0]], [[40562, 36245], [-108, 1]], [[37705, 32083], [189, -4]], [[36178, 29088], [8, -14], [64, -6]], [[36250, 29068], [1, -103]], [[36095, 30769], [-18, 20], [-29, -18]], [[35562, 27931], [-23, 21]], [[34370, 27810], [148, -1]], [[34518, 27809], [163, 1]], [[34681, 27810], [1, -223]], [[32302, 35287], [-262, -2]], [[43961, 32651], [2, -2], [2, -2], [2, 0], [15, -1], [15, 4], [6, 1], [3, 0], [0, 0], [6, 2], [7, 7], [5, 7], [0, 0], [0, 0], [12, 1], [7, -1], [3, 0], [2, 1], [4, 4], [4, 6], [1, 3], [5, 5], [1, 1], [11, -9], [0, -1], [0, 0], [0, 0], [0, 0], [1, -1], [4, -5], [-2, -12], [0, -2], [0, -1], [0, -4], [0, 0], [-7, -20], [0, 0], [1, -3], [1, -1], [11, -14]], [[44033, 32532], [-91, 59]], [[25804, 38578], [-3, -421]], [[25801, 38157], [-1, -216], [-168, 1], [0, -108]], [[25632, 37834], [0, -37], [-37, 1]], [[36408, 36425], [-68, 1]], [[36340, 36426], [-37, 25]], [[36303, 36451], [-64, 28], [-99, 75], [-52, 21]], [[33446, 34966], [253, -2]], [[29169, 33492], [0, 67]], [[44872, 34040], [53, -31], [3, -74], [41, -14], [11, -36]], [[44980, 33885], [43, -56], [31, -22], [22, -40]], [[34367, 36698], [259, -1]], [[34626, 36697], [5, -162]], [[44129, 34378], [-36, -32], [-72, -12]], [[26646, 37713], [0, 361]], [[41351, 29469], [-24, -12], [-43, 11]], [[32743, 31044], [0, -72]], [[36801, 29651], [104, -4]], [[40935, 32951], [-1, 29]], [[40922, 33224], [110, -9]], [[23848, 37029], [144, 0], [45, -18], [27, -36], [44, -18]], [[37775, 34392], [1, 161]], [[37826, 34553], [0, -54], [129, -1]], [[35825, 32007], [-244, 2]], [[35106, 28862], [-7, 2], [-102, -74]], [[44453, 33870], [-68, -38], [-55, -10], [-57, -26]], [[27940, 39230], [163, -1], [408, 0], [246, 0]], [[35780, 38304], [223, 0]], [[36003, 38304], [2, -215]], [[45230, 34417], [58, -37]], [[45288, 34380], [10, -6]], [[28129, 38366], [-126, 0], [-8, -74], [31, -54], [0, -64], [22, -12], [0, -54], [-49, 0], [0, -27], [-110, 0]], [[35096, 25823], [4, -24], [37, -8], [53, 17], [-20, -338], [12, -68]], [[35223, 25821], [-11, -77], [-2, -112], [12, -109], [26, -120]], [[35237, 25403], [-33, 123], [-5, 56], [1, 138], [9, 101]], [[33556, 29059], [-224, 1]], [[38358, 32219], [16, 18]], [[38564, 32318], [3, -26], [68, -46], [-4, -70]], [[34693, 28261], [34, -101], [20, -23]], [[34744, 28070], [-226, 0]], [[34518, 28070], [-56, 12]], [[34893, 31307], [186, 0]], [[36889, 36640], [0, 54], [-107, 0], [0, 53]], [[44021, 34319], [-59, -83], [-37, -39]], [[35138, 26368], [-12, -21], [-108, 29]], [[35035, 26679], [20, -24], [15, -54], [52, -12], [10, -41], [78, -41]], [[39026, 30951], [3, 124]], [[39215, 31092], [-5, -128], [-23, -50], [1, -65]], [[33783, 32062], [8, 0], [0, -239]], [[37073, 34229], [0, 162]], [[35901, 33675], [-96, 0]], [[42148, 27939], [1, -123]], [[40974, 28390], [-25, -51], [-62, -32], [-28, -66], [-34, -26], [-11, -48]], [[40814, 28167], [-15, 0]], [[41032, 27916], [-33, 2]], [[40999, 27918], [3, 148], [-19, 42], [1, 59]], [[40984, 28167], [50, -1]], [[40533, 32377], [-6, 45]], [[40527, 32422], [28, 41]], [[40589, 32519], [51, -21], [19, 14]], [[40659, 32512], [29, -91]], [[40411, 32764], [52, -20]], [[40923, 30177], [0, -92]], [[33660, 37985], [-361, -1]], [[25801, 38157], [444, 0]], [[26245, 38157], [1, -214], [-23, -76], [-86, -33]], [[26137, 37834], [-245, -2], [-260, 2]], [[37883, 27154], [-40, -7], [-12, 54], [-45, -27], [-25, 37], [-15, 64], [-32, -4], [2, 67], [-50, 9], [-53, -9]], [[45911, 36423], [-47, -105], [-17, -75]], [[45847, 36243], [-10, 82], [-148, -18]], [[48791, 20253], [10, -21]], [[9279, 22049], [64, 8], [26, -23], [-39, -47], [-33, -11], [-95, 33], [-69, -9], [-25, 8], [47, 73], [82, -21]], [[9373, 21657], [55, 46], [9, -40], [-49, -23], [-15, 17]], [[9374, 21896], [15, 54], [32, 16], [20, -17], [31, -69], [66, 35], [41, -12], [50, -64], [48, -20], [7, -45], [-28, -42], [-39, -19], [-30, 3], [-40, -26], [-33, -5], [-28, 22], [-9, 104], [-32, -2], [-41, 26], [-30, 61]], [[9216, 21886], [32, 18], [40, -11], [38, -65], [-12, -28], [-57, -18], [-18, 74], [-23, 30]], [[38192, 27430], [23, -45], [45, -32], [11, -41], [52, -1]], [[38383, 26985], [-58, -49], [-35, 112], [-42, -3]], [[39816, 27740], [-52, -10]], [[39867, 32998], [0, -134]], [[40841, 32122], [31, -8], [12, 41]], [[35705, 33407], [0, 268]], [[35901, 33460], [0, -54], [-107, 1]], [[33990, 33675], [239, 1]], [[33981, 33891], [45, 0]], [[40814, 28167], [57, 0]], [[40871, 28167], [-2, -240]], [[40869, 27927], [-210, 13]], [[40585, 33498], [-66, 1], [-16, 45]], [[40276, 31927], [-6, -37], [8, -165]], [[34811, 34535], [2, 0]], [[34813, 34320], [-189, 1]], [[40547, 31457], [34, 93], [44, 14], [92, -35]], [[40717, 31529], [31, -80], [-18, -15]], [[36023, 32681], [-4, -218]], [[43100, 32042], [36, -8], [40, 32]], [[41946, 32982], [4, 37], [-46, 56], [-41, -44]], [[41863, 33031], [2, 28], [-99, 15]], [[35172, 31572], [-279, 0]], [[34626, 36697], [0, 215]], [[34946, 36909], [0, -53]], [[46072, 35670], [-109, -6], [-59, 20]], [[45844, 36037], [2, 29], [71, 54]], [[31275, 30508], [-8, 20], [-112, 2], [-15, -22], [-132, 0], [-18, 53]], [[40984, 28167], [-113, 0]], [[9654, 21169], [32, 64], [19, 4], [36, 72], [13, 41], [-31, 68], [-1, 56], [39, 15], [100, -85], [10, 5], [67, -32], [59, -40], [55, -58], [26, -44], [-4, -69], [38, 1], [9, -60], [35, -44], [39, -25], [-3, -30], [-69, -82], [-67, -45], [-71, -6], [-28, -35], [-63, -44], [-23, -35], [-16, -62], [-33, -39], [-24, 32], [-67, 41], [-18, 53], [15, 133], [-15, 87], [-14, 7], [-7, 60], [-38, 96]], [[40921, 31571], [-225, 7]], [[40527, 32422], [-101, -19], [-39, 31]], [[29389, 39229], [545, 2]], [[43789, 33257], [-19, -1]], [[43639, 33440], [-24, 29], [-41, 18], [-42, -48], [-29, 11]], [[44777, 33293], [-59, 71], [7, 1], [0, 0], [0, 1], [-1, 1], [0, 2], [0, 0], [0, 3], [0, 0], [0, 0], [0, 1], [1, 5], [0, 2], [0, 1], [0, 3], [0, 1], [0, 2], [0, 1], [0, 0], [-1, 0], [2, 8], [1, 1], [0, 0], [1, 3], [1, 0], [0, 1], [2, 3], [0, 1], [0, 0], [1, 2], [0, 0], [0, 1], [0, 1], [0, 3], [-1, 2], [0, 1], [0, 0], [-1, 1], [0, 0], [-4, 2], [-2, 2], [-1, 1], [-1, 0], [0, 1], [-1, 1], [-1, 1], [-2, 1], [-4, 4], [0, 0], [11, 33], [1, 0], [6, 15], [1, 1]], [[41811, 32805], [20, 21], [-21, 100], [33, 34], [20, 71]], [[42348, 32883], [-29, 45], [22, 34], [-1, 71], [-13, 30]], [[42460, 33116], [5, -54], [48, -64]], [[37920, 28495], [-62, 37], [-10, 49]], [[33988, 39230], [286, 0]], [[34288, 38949], [-284, 1]], [[30796, 37405], [19, 54], [-27, 74], [-36, 36], [0, 26], [-37, 36], [-18, 45]], [[40045, 35168], [28, 168], [0, 47]], [[39306, 31091], [-27, 18], [-63, 1]], [[36197, 36264], [1, 54], [105, 0], [0, 133]], [[36340, 36426], [54, -37], [72, -28], [52, -54]], [[36518, 36307], [2, -96]], [[40693, 31578], [24, -49]], [[43668, 32513], [50, -8], [66, -60]], [[40185, 33451], [0, 37]], [[41381, 33741], [16, 22]], [[41574, 33752], [-9, -115]], [[41565, 33637], [-18, -89]], [[39194, 38119], [-31, 0], [0, 53], [-93, 0]], [[39070, 38172], [41, 53], [103, 53], [88, 14], [78, -4], [37, -21], [-43, -34], [-62, 2], [8, -28], [-51, -27], [-47, -51], [-28, -10]], [[38747, 38537], [33, 36], [149, 75], [126, 73], [42, -7], [-96, -94], [-99, -36], [-46, -27], [-23, -35], [-58, -13], [-28, 28]], [[33395, 32602], [182, 1]], [[33593, 32277], [-191, 0]], [[42458, 26755], [69, -127], [22, -78], [-28, -30], [-7, -94], [17, -100], [52, -145]], [[42583, 26181], [-27, -24], [-157, 0]], [[40026, 33052], [-159, 0]], [[40659, 32512], [0, 15], [60, 33]], [[42395, 28785], [-4, -26]], [[33056, 27427], [-35, -70], [-49, 11], [-57, -31], [-53, -86], [-48, -148], [-12, -60], [12, -27], [-44, -17], [-27, -54], [-26, -24], [-6, -44], [-18, -10], [-90, 29], [-85, 84], [-73, 22], [-30, 44]], [[42143, 30489], [-10, -11]], [[36675, 36292], [-20, -53], [-137, 68]], [[39472, 36820], [-18, -73], [-57, -7]], [[24379, 37412], [-1, -312]], [[38127, 36994], [0, 161]], [[37797, 29357], [74, -1]], [[40589, 27484], [-48, 44], [-6, 41], [14, 56]], [[40629, 27876], [22, -46], [44, -9], [0, -36], [59, -44]], [[40754, 27741], [-29, -54]], [[33968, 32387], [0, 53]], [[33783, 32116], [190, 0]], [[39565, 32174], [-39, 15], [-13, 33]], [[37730, 28237], [-23, 46], [54, 6], [-13, 43], [33, 32], [-18, 29], [-1, 53], [31, 7], [19, 49], [9, 69]], [[48422, 20272], [57, -22]], [[40656, 32660], [57, -3]], [[48022, 36400], [-40, -52], [-40, 28], [-36, -53], [11, -33], [-52, -7], [-36, 16], [-25, 57], [12, 59], [-45, -26], [-15, -49], [17, -59], [-30, -29], [-10, -39], [-16, 5], [-33, 62], [24, 27], [-65, 29], [2, 60], [19, 50], [-10, 22]], [[47555, 36298], [-31, -90], [23, -56], [-13, -25], [-42, 3], [-20, -39], [-68, 29]], [[47592, 36213], [52, 46], [24, -72], [-45, -28], [-31, 54]], [[41095, 29581], [-27, 46]], [[38887, 38016], [19, 42], [101, 77], [63, 37]], [[39194, 38119], [-30, -62], [-67, -99]], [[27623, 38162], [9, -27], [92, -98], [36, -27], [-36, -37], [7, -133], [-55, -7]], [[38147, 27638], [-38, -19], [-75, 95]], [[46776, 35447], [21, -103], [66, -47], [-16, -28], [-94, -23], [6, -34], [-45, -29]], [[32779, 36785], [-3, -268], [-263, 0]], [[31868, 33407], [169, -1]], [[32037, 33406], [-1, -269]], [[32036, 33137], [-161, 0]], [[31875, 33137], [-129, 0]], [[42507, 29812], [-81, 19], [-78, 46], [-12, 20]], [[42552, 33921], [-1, -148]], [[42551, 33773], [-71, 16]], [[42152, 31829], [72, 51], [-27, 35], [30, 14], [17, 39]], [[41943, 32641], [42, -6], [-6, -66]], [[41823, 32424], [-50, -19]], [[41773, 32405], [45, 57], [-36, 67], [9, 52]], [[24101, 33415], [65, 1], [-2, -122]], [[40999, 27918], [-87, 6]], [[40912, 27924], [-43, 3]], [[29701, 32748], [420, 0]], [[30129, 32366], [0, -244]], [[39862, 33591], [3, -145], [13, -18]], [[39723, 33430], [2, 162]], [[27497, 35649], [214, 0]], [[27711, 35649], [0, -215]], [[38651, 30837], [-69, -17]], [[36956, 33911], [-3, 122]], [[29690, 35813], [-3, -53], [-125, 0], [0, -54], [-102, 0], [0, -34]], [[44340, 31252], [-21, -32], [-51, -11], [-43, 23], [-20, 64], [13, 80]], [[41791, 30877], [-29, 20], [-61, -34], [-66, -6], [-22, 15], [-31, -23]], [[43889, 31960], [13, 6]], [[43902, 31966], [6, 3]], [[43908, 31969], [9, 1], [3, 4]], [[43920, 31974], [-10, -46]], [[45938, 36162], [-76, 26], [-15, 55]], [[40022, 33447], [0, 181]], [[37788, 29593], [1, 108]], [[41082, 29260], [79, 64]], [[41210, 29146], [-45, 17]], [[48543, 20092], [-40, -26]], [[44128, 31603], [-8, -57]], [[36250, 29068], [73, 33], [27, 42], [25, -4]], [[45288, 34380], [110, 112]], [[44308, 31779], [34, -20]], [[31915, 32841], [1, 91], [-58, 1], [19, 43], [-2, 161]], [[32036, 33137], [267, -1], [-2, -160]], [[23523, 34908], [-63, 72], [-2, 41], [-22, 43], [-10, 117], [19, 83], [-11, 54], [-43, 46], [-17, 64], [32, 70]], [[36418, 33518], [173, 0]], [[29256, 35226], [-51, -23], [-31, 2], [-19, 45], [-39, 24], [-101, 0], [-15, -13], [23, -76], [-7, -19]], [[37562, 29788], [0, -108], [-7, -81]], [[37491, 29454], [-62, 65], [-30, 19]], [[34936, 28747], [104, -213]], [[34860, 28405], [-40, -29]], [[44629, 33146], [11, -194]], [[28926, 37254], [-53, 35], [-71, -4], [-20, -48], [-24, -14]], [[28590, 37489], [8, 53]], [[44027, 32832], [-20, -7], [-2, -1], [-2, 0], [-2, -1], [-1, -1], [-5, -1], [-8, 13]], [[43850, 32963], [91, 130]], [[28368, 37292], [-41, 15], [-41, -41], [-53, -31], [-52, 106]], [[28181, 37341], [-1, 0]], [[40843, 31306], [30, 33]], [[41545, 34290], [-5, 159]], [[44732, 33283], [32, -32], [20, -68], [-2, -90], [22, -21], [15, -48]], [[41288, 34449], [-1, -54]], [[46769, 36931], [1, 2], [22, 94], [30, -25], [37, 20], [-42, 53], [34, 60], [41, 38]], [[46892, 37173], [14, -96], [44, -227], [48, 12], [6, -33], [59, 11], [21, -111], [-8, -60], [42, 8], [16, -115], [29, -41]], [[41140, 32439], [44, 18], [37, -3], [33, 17]], [[30801, 33192], [46, 23]], [[40431, 36889], [7, 39], [70, 53], [50, 7]], [[40325, 37130], [28, 100], [28, -3], [7, -82], [-21, -27], [-42, 12]], [[35764, 36870], [-6, 145]], [[41422, 34288], [-134, -1]], [[27825, 37786], [220, 0]], [[28181, 37341], [-7, -38], [-40, -23], [-39, -1], [-40, -47], [-48, -11], [-10, -30]], [[26305, 38156], [-60, 1]], [[24316, 32260], [13, -72], [43, -12], [67, -66]], [[24420, 31999], [0, -43], [-72, -18], [10, -49]], [[24358, 31889], [-19, 6], [-29, 48], [2, 101], [-23, 75], [-28, 25], [6, 116]], [[32723, 31823], [5, 397]], [[33178, 31818], [-286, 2], [-132, 3]], [[26650, 39230], [428, 1]], [[42171, 34507], [-90, 2], [15, -46], [-53, 0]], [[42043, 34463], [-84, -1]], [[41920, 34604], [47, -14], [50, 3], [112, 89]], [[37772, 28861], [-22, 35], [40, 67], [-11, 23]], [[30838, 38423], [4, 110], [0, 215], [16, 53], [47, 0], [0, 55], [-18, 54], [42, 54], [0, 212], [11, 54]], [[30940, 39230], [465, 0]], [[31405, 39230], [0, -55], [-17, -53], [57, 0], [1, -161], [93, 0]], [[34872, 35427], [-69, 27]], [[34721, 35526], [-11, 25], [-73, 23], [-36, 43], [-41, 9], [-12, 53], [-37, 7], [-38, 38], [-37, 66], [-45, 6], [-18, 39]], [[35162, 35180], [1, 254]], [[24248, 38245], [-111, 0]], [[24137, 38245], [0, 72], [-94, 0]], [[24043, 38317], [22, 40], [48, 40], [45, 13], [31, 80], [67, 65], [17, -100], [-13, -57], [11, -87], [-23, -66]], [[30447, 38356], [108, 9], [58, -18], [10, -73]], [[26134, 37742], [3, 92]], [[38708, 31132], [28, 3], [39, 70]], [[38775, 31205], [24, -20], [11, -65], [62, -18], [22, -22]], [[38894, 31080], [-45, -78], [-22, 13]], [[40991, 29537], [-10, -59]], [[45064, 33936], [-47, -48], [-37, -3]], [[36413, 32477], [162, -6], [46, 5], [34, -14]], [[36655, 32462], [-3, -83]], [[41113, 29464], [-24, 14], [-72, 0]], [[32037, 33406], [102, -1], [311, 2]], [[46606, 34718], [-27, -30], [-11, 2], [2, 36], [-28, 27]], [[46644, 34599], [-97, -1], [31, 79], [28, 41]], [[41565, 33637], [140, -6]], [[35936, 38573], [0, -53], [-56, -1], [0, -54], [-224, 0], [0, 54], [-57, 0], [0, 72]], [[35611, 35578], [-26, -23], [7, -54], [-17, -31]], [[40154, 28995], [-40, -2], [-53, 48], [-76, -52]], [[39984, 29173], [17, 28]], [[40953, 30343], [13, 28]], [[41826, 33956], [-5, -134]], [[41821, 33822], [-123, 4], [1, 12], [-120, 7]], [[41656, 30678], [-15, 88], [-59, 83]], [[42583, 26181], [27, -75], [27, -113]], [[33174, 34294], [0, -1]], [[35870, 35470], [-1, 215]], [[34228, 28786], [0, 268]], [[36892, 32756], [97, -4], [0, 18], [97, -3]], [[37082, 32602], [8, -48], [-3, -76]], [[36896, 32485], [-8, 83]], [[36917, 29944], [-70, 2], [-58, 29], [-32, 1]], [[30121, 32748], [5, 536]], [[45062, 34554], [26, -42]], [[36373, 29279], [-6, 15]], [[42834, 33796], [-3, -43]], [[42551, 33685], [0, 88]], [[40046, 35599], [-54, 123], [-29, 96]], [[38226, 29090], [2, -53], [88, 0], [0, -54], [78, 0]], [[36655, 32462], [3, 110]], [[30480, 39230], [55, 0], [405, 0]], [[24060, 38370], [-17, -53]], [[24137, 38245], [-1, -31]], [[24136, 38214], [-26, -51], [2, -64]], [[24112, 38099], [-62, -10], [-32, -41], [-55, 0]], [[44347, 31889], [-17, -8]], [[44302, 31971], [46, -9], [-2, -38]], [[43814, 32667], [-36, -4]], [[43549, 33299], [-52, 46]], [[34947, 37124], [264, 0], [64, -18]], [[35275, 36945], [0, -90]], [[38586, 27594], [-9, -10], [-3, -5], [-3, -5], [-4, -4], [0, 0], [-1, 0], [-1, -1], [-1, 0], [0, 0], [-1, 0], [0, 0], [-1, -1], [0, 0], [0, -1], [0, 0], [0, -3], [0, 0], [0, 0], [0, -1], [-1, -1], [0, 0], [0, -2], [0, -2], [0, 0], [0, 0], [0, -1], [0, 0], [0, 0], [0, 0], [0, -1], [0, 0], [-1, -1], [0, -3], [0, 0], [-6, -7], [0, 0], [-1, 0], [0, 0], [0, 0], [-5, -1], [-1, 0], [0, 0], [-1, -1], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [0, 0], [-3, -2], [-1, 0], [-1, -1], [0, -1], [-1, -1], [0, 0], [0, 0], [0, 0], [-1, -1], [0, -2], [0, -2], [0, 0], [0, -1], [0, 0], [7, -13], [0, 0], [0, -1], [0, 0], [0, 0], [-4, -3], [0, 0], [-4, 0], [-2, 3], [0, 0], [-1, 1], [-2, 2], [0, 0], [0, 0], [-5, 4], [-12, 4], [-13, -1], [-7, -6], [0, -1], [-1, -1], [0, 0], [0, 0], [-1, -1], [0, 0], [-2, -3], [-1, -1], [0, 0], [-5, -9]], [[39612, 29670], [25, 16], [14, 46], [37, 9], [23, 35], [8, 54], [30, 27]], [[39717, 29505], [-17, 1]], [[40912, 27924], [-38, -64], [-22, -72], [-43, -8], [-55, -39]], [[43511, 33062], [71, 18]], [[38894, 31080], [91, -4]], [[141065, 18323], [10, 68], [13, -6], [39, 24], [-35, -72], [-27, -14]], [[41821, 33822], [4, -45]], [[40373, 32165], [31, 81], [21, 28]], [[40582, 32159], [-14, -81]], [[24321, 38797], [-56, 41], [-68, 70], [21, 27], [34, -34], [24, 16], [2, 41], [23, 25], [-28, 28]], [[43676, 29927], [-36, -25], [-69, 16], [-90, -8], [-68, -31]], [[43365, 29936], [4, 41], [38, 35], [3, 44], [22, 18], [30, -17], [23, 40], [52, 7], [41, 87]], [[36003, 38304], [-10, 108], [-2, 160]], [[44660, 32109], [8, -8], [-47, -90], [-22, -69], [-35, -47], [-32, 7], [-24, 79], [5, 46], [33, 135]], [[34815, 34211], [0, -105]], [[31901, 38961], [0, 53], [-28, 0], [0, 161], [-8, 55]], [[31865, 39230], [439, 0]], [[48983, 20331], [35, -13]], [[39780, 29384], [3, -132], [-63, 1]], [[35612, 36927], [-8, 36]], [[43923, 32592], [-119, -158]], [[46594, 35702], [33, 44], [-13, 98], [12, 15]], [[39964, 37229], [-55, -33], [-27, -55], [-29, 42], [69, 80], [-98, 29], [3, -30], [-28, -55], [-64, -10], [-1, 64], [-30, 2], [-6, -58], [-44, -35], [-40, -69]], [[24569, 31730], [-23, 50], [-29, 29], [-19, -15], [-58, 1], [-44, 36], [-38, 58]], [[42257, 28469], [8, -31], [-45, -93], [4, -45]], [[42224, 28300], [-72, 12], [-62, 53], [-20, 33]], [[38440, 31594], [-1, -149]], [[38439, 31445], [1, -240]], [[35314, 26204], [-20, -40], [-2, -5], [0, 0], [-1, -1], [-1, -1], [-1, 0], [-6, 0], [-1, 0], [-4, 1], [-1, 0], [0, 1], [-1, 0], [-1, 1], [0, 0], [0, 2]], [[35269, 26180], [-1, 3], [-6, 8], [-1, 1], [-6, 1], [-2, 0], [-4, -1], [-7, -2], [-7, -3], [-6, 2], [-1, 1], [0, 1], [-3, 3], [-2, 0], [-8, -3], [-1, 0], [-2, -1], [-2, 0], [-1, -1], [-1, 0], [-10, 0], [-22, 0], [-3, 1], [-17, 2], [-4, -3], [0, 0], [0, 0], [-1, -1], [-1, -2], [0, 0], [-1, -8], [0, -3], [0, 0], [5, -4]], [[35026, 26264], [-37, 38]], [[33125, 30975], [0, 264]], [[41194, 32556], [-62, 60], [-31, 7]], [[41101, 32623], [-57, 88]], [[40686, 34124], [0, -96]], [[43966, 32021], [-6, -5]], [[43938, 32016], [-18, -42]], [[43908, 31969], [9, 3], [2, 16], [-5, 12], [-11, -16], [-1, -18]], [[42946, 34677], [-94, -1], [-9, -22], [-66, -60]], [[34270, 35835], [0, -310]], [[42042, 34285], [1, 178]], [[42224, 28300], [-19, -53], [-56, -118]], [[34522, 25816], [-165, 2], [-16, 28], [-36, -33]], [[34305, 25813], [-22, 46], [11, 86], [-21, 12], [7, 41], [-40, 48], [-52, 15], [-21, 40], [-31, 21], [-27, 68], [5, 14], [-43, 59], [-12, 45], [-28, 48], [-56, 32]], [[47254, 37733], [-132, -1]], [[47122, 37732], [12, 76], [336, 471], [82, -31], [-8, -58], [9, -46], [56, -37], [142, 66], [85, 9], [9, 33], [34, 3], [65, -40], [80, -62], [30, -56], [41, -23], [0, -287], [4, -406], [-10, -37], [-1, -126]], [[40030, 32865], [14, 46]], [[34681, 27810], [78, 1], [26, -10]], [[34884, 27764], [-21, -43]], [[43628, 31541], [8, 144]], [[38538, 31206], [24, 50], [37, 29], [-15, 35]], [[38790, 31332], [-3, -111], [-12, -16]], [[24398, 37849], [-29, 3], [-22, 38], [-75, 24], [-39, 68], [-39, 23], [-10, 55]], [[24184, 38060], [45, 46], [27, 70], [48, 18]], [[24248, 38245], [0, -73], [-72, -97], [-57, 80], [17, 59]], [[27711, 35649], [96, 1]], [[43449, 31540], [58, 1]], [[39380, 32057], [-6, -18]], [[35068, 32385], [1, -109], [-47, 0]], [[39600, 30862], [2, 64], [-27, 23], [6, 46]], [[46700, 35102], [17, -17]], [[46717, 35085], [17, -37], [-4, -42], [-68, -38]], [[43212, 29707], [-36, -55], [-27, -65], [-18, -127], [-45, -39]], [[44394, 31895], [-13, -64], [-31, -15]], [[3107, 2160], [7, 2], [-1, -10], [-6, 8]], [[40502, 27303], [-41, 2], [8, 71], [-39, 79]], [[36872, 28038], [3, -21], [-34, -97], [-23, -23], [-24, -62], [18, -63], [-19, -22]], [[40080, 28237], [0, 153]], [[31405, 39230], [64, 0], [396, 0]], [[40643, 31894], [-23, -8], [-39, 51]], [[46892, 37173], [73, 42], [-14, 37], [68, 59], [9, 30], [-34, 49], [35, 79], [-23, 24], [36, 90], [66, 53], [14, 96]], [[38439, 31445], [91, -1], [62, 15], [28, -46]], [[41045, 32558], [56, 65]], [[40950, 30352], [-25, 29], [0, 33], [-27, 55], [-50, 29], [-82, 1]], [[24112, 38099], [72, -39]], [[37721, 35835], [171, 0]], [[35221, 25286], [31, -87], [-14, -25], [9, -77], [60, -27], [3, -56], [-57, -12], [-39, -22], [-3, -47], [-91, 61], [-27, 42], [-84, 28], [-11, 11]], [[34518, 27809], [0, 261]], [[41726, 32351], [47, 54]], [[46852, 34735], [-33, 11], [-25, -52], [-29, -14]], [[46717, 35085], [31, 15], [25, -27], [19, -8], [62, -101], [-10, -79], [48, -19], [6, -74]], [[45492, 34216], [-9, -47]], [[44513, 31001], [12, 61], [4, 80], [34, 49], [51, -26], [24, -76], [6, -73], [-7, -42], [-47, -34], [-14, 8]], [[44628, 30702], [-1, 9], [94, 45], [5, -24], [-37, -4], [-61, -26]], [[44618, 31348], [50, -130], [-28, -11], [-16, 92], [-15, 47]], [[43017, 34002], [-49, 21], [-33, 62], [-24, 3]], [[45254, 33366], [4, -18], [-47, -68], [-56, -37]], [[39492, 36346], [15, -60], [-5, -31], [-55, -47], [-37, -131]], [[39408, 36562], [7, 29], [48, 70], [57, 16], [32, 25], [20, 51], [41, 58], [12, 53], [90, 34], [-7, -82], [-62, -74], [-6, -58], [-44, -44], [-30, -79]], [[39748, 36978], [6, 39], [51, -5], [-32, -52], [-25, 18]], [[25074, 30572], [6, 92], [-27, 30], [-38, 4], [-48, 43], [12, 96], [-17, 28], [-42, 7], [-43, 55], [-28, 53], [-52, 24], [-26, 75]], [[34429, 25385], [-17, 94], [-14, 13], [-12, 61], [-80, 135], [11, 69], [-12, 56]], [[41648, 32700], [-5, -107]], [[35415, 34574], [-48, -27], [-70, -22], [-34, 4]], [[44442, 31779], [36, -13], [43, 8], [20, -99], [36, -130]], [[29070, 36581], [-134, 0], [0, 45], [-124, 1], [-44, 27], [-10, 107], [-62, 0], [0, 55], [-54, 0], [0, 161], [-21, 58], [-41, -8], [-38, 29], [0, 91]], [[44380, 32243], [-19, -44], [-47, 35], [-28, -2], [-21, 65], [-25, 15]], [[44240, 32312], [58, 28]], [[44240, 32312], [-35, 27], [-57, 84], [-23, 16]], [[18512, 45854], [104, 42], [98, -61], [98, -84], [-1, -134]], [[18227, 44683], [-38, 13], [-50, 45], [8, 93], [83, 44], [-15, 76], [50, -1], [20, -61], [43, 33], [71, -14], [84, 52], [21, -29], [64, -16], [60, -49], [76, -23], [73, -5], [57, -24], [28, -44], [-40, -58], [22, -43], [-67, -29]], [[19455, 44646], [-20, 54]], [[19618, 44879], [44, -93], [90, -97], [95, -145]], [[19183, 44884], [-5, -46], [39, -40], [84, -131], [4, -75], [-43, 21], [-15, 61], [-51, -36], [92, -90], [-4, -27], [38, -66], [-30, -4], [24, -61], [-40, -33], [-31, 14], [-53, -74], [-149, -109], [-45, 2], [-20, 119], [57, 54], [-27, 53], [50, -5], [-63, 75], [-54, 129], [12, 66], [-40, 142], [5, 23], [-56, 73], [-24, 94], [6, 26], [101, -87], [4, -28]], [[18630, 45033], [-80, 18], [-43, -20], [-78, -10], [-2, 147], [-77, 122], [-27, -36], [-42, -3], [-107, 53], [-15, 55], [-45, -23], [137, -135], [43, 0], [10, -56], [41, -41], [26, -83], [-31, -23], [-121, -28], [-67, 12], [-21, -61], [-47, 1], [-107, 107], [-72, 0], [-168, 102], [-80, 39], [-3, 27], [-93, 62], [-18, 27]], [[17725, 45347], [34, 1], [79, 57], [191, 96], [107, 4], [40, 59]], [[41665, 26048], [33, 62], [19, 11], [18, 45], [-9, 40], [-33, 11], [-69, 62]], [[41879, 25508], [-6, 116], [-43, -26], [12, -78], [-18, -12], [-36, 11], [-45, 97]], [[4382, 8], [6, 3], [4, -11], [-9, 0], [-1, 8]], [[46529, 34759], [9, -24], [-19, -40]], [[46062, 35358], [-206, 7]], [[46020, 36766], [106, -3], [180, 3]], [[35633, 39230], [472, 0]]], "transform": {"scale": [0.0022961871592585468, 0.001619908012596881], "translate": [-178.224618, -14.549541]}, "objects": {"counties": {"type": "GeometryCollection", "geometries": [{"arcs": [[0, 1, 2, 3, 4, 5]], "type": "Polygon", "properties": {"name": "31039"}, "id": "31039"}, {"arcs": [[6, 7, 8, 9, 10, 11]], "type": "Polygon", "properties": {"name": "53069"}, "id": "53069"}, {"arcs": [[12, 13, 14, 15, 16]], "type": "Polygon", "properties": {"name": "35011"}, "id": "35011"}, {"arcs": [[17, 18, 19, 20, 21, 22, 23]], "type": "Polygon", "properties": {"name": "31109"}, "id": "31109"}, {"arcs": [[24, 25, 26, 27, 28, 29]], "type": "Polygon", "properties": {"name": "31129"}, "id": "31129"}, {"arcs": [[30, 31, 32, 33, 34, 35, 36]], "type": "Polygon", "properties": {"name": "72085"}, "id": "72085"}, {"arcs": [[37, 38, 39, 40, 41, 42, 43]], "type": "Polygon", "properties": {"name": "46099"}, "id": "46099"}, {"arcs": [[44, 45, 46, 47, 48]], "type": "Polygon", "properties": {"name": "48327"}, "id": "48327"}, {"arcs": [[49, 50, 51, 52, 53]], "type": "Polygon", "properties": {"name": "06091"}, "id": "06091"}, {"arcs": [[54, 55, 56, 57, 58]], "type": "Polygon", "properties": {"name": "21053"}, "id": "21053"}, {"arcs": [[59, 60, 61, 62, 63, 64]], "type": "Polygon", "properties": {"name": "39063"}, "id": "39063"}, {"arcs": [[65, 66, 67, 68, 69]], "type": "Polygon", "properties": {"name": "48189"}, "id": "48189"}, {"arcs": [[70, 71, 72, 73, 74]], "type": "Polygon", "properties": {"name": "01027"}, "id": "01027"}, {"arcs": [[75, 76, 77, 78, 79]], "type": "Polygon", "properties": {"name": "48011"}, "id": "48011"}, {"arcs": [[-64, 80, 81, 82, 83]], "type": "Polygon", "properties": {"name": "39003"}, "id": "39003"}, {"arcs": [[84, 85, 86, 87, 88, 89]], "type": "Polygon", "properties": {"name": "13189"}, "id": "13189"}, {"arcs": [[90, 91, 92, 93, 94, 95]], "type": "Polygon", "properties": {"name": "55111"}, "id": "55111"}, {"arcs": [[96, 97, 98, 99, 100, 101]], "type": "Polygon", "properties": {"name": "05137"}, "id": "05137"}, {"arcs": [[102, 103, 104, 105, 106, 107, 108, 109, 110]], "type": "Polygon", "properties": {"name": "41063"}, "id": "41063"}, {"arcs": [[111, 112, 113, 114, 115, 116]], "type": "Polygon", "properties": {"name": "42007"}, "id": "42007"}, {"arcs": [[117, 118, 119, 120, 121]], "type": "Polygon", "properties": {"name": "28061"}, "id": "28061"}, {"arcs": [[122, 123, 124, 125, 126, 127]], "type": "Polygon", "properties": {"name": "29083"}, "id": "29083"}, {"arcs": [[128, 129, 130, 131, 132, 133, 134, 135, 136]], "type": "Polygon", "properties": {"name": "08109"}, "id": "08109"}, {"arcs": [[137, 138, 139, 140, 141, 142, 143, 144]], "type": "Polygon", "properties": {"name": "37037"}, "id": "37037"}, {"arcs": [[145, 146, 147, 148, 149, 150, 151]], "type": "Polygon", "properties": {"name": "49033"}, "id": "49033"}, {"arcs": [[152, 153, 154, 155, 156, 157]], "type": "Polygon", "properties": {"name": "40001"}, "id": "40001"}, {"arcs": [[158, 159, 160, 161]], "type": "Polygon", "properties": {"name": "39085"}, "id": "39085"}, {"arcs": [[162, 163]], "type": "Polygon", "properties": {"name": "51775"}, "id": "51775"}, {"arcs": [[164, 165, 166, 167, 168, 169, 170]], "type": "Polygon", "properties": {"name": "51121"}, "id": "51121"}, {"arcs": [[171, 172, 173, 174, 175, 176, 177, 178, 179, 180]], "type": "Polygon", "properties": {"name": "47065"}, "id": "47065"}, {"arcs": [[181, 182, 183, 184, 185, 186, 187, 188]], "type": "Polygon", "properties": {"name": "35035"}, "id": "35035"}, {"arcs": [[189, 190, 191, 192, 193, 194]], "type": "Polygon", "properties": {"name": "35003"}, "id": "35003"}, {"arcs": [[195, 196, 197, 198, 199, 200, 201, 202]], "type": "Polygon", "properties": {"name": "01091"}, "id": "01091"}, {"arcs": [[-147, 203, 204, 205, 206, 207, 208, 209]], "type": "Polygon", "properties": {"name": "56023"}, "id": "56023"}, {"arcs": [[210, 211, 212, 213, 214]], "type": "Polygon", "properties": {"name": "29011"}, "id": "29011"}, {"arcs": [[215, 216, 217, 218, 219, 220, 221]], "type": "Polygon", "properties": {"name": "48057"}, "id": "48057"}, {"arcs": [[222, 223, 224]], "type": "Polygon", "properties": {"name": "51735"}, "id": "51735"}, {"arcs": [[225, 226, 227, 228, 229, 230]], "type": "Polygon", "properties": {"name": "54075"}, "id": "54075"}, {"arcs": [[231, 232, 233, 234, 235, 236]], "type": "Polygon", "properties": {"name": "48077"}, "id": "48077"}, {"arcs": [[237, 238, 239, 240, 241, 242, 243, 244, 245]], "type": "Polygon", "properties": {"name": "51095"}, "id": "51095"}, {"arcs": [[246, 247, 248, 249, 250, 251]], "type": "Polygon", "properties": {"name": "31101"}, "id": "31101"}, {"arcs": [[252, 253, 254, 255, 256, 257]], "type": "Polygon", "properties": {"name": "31137"}, "id": "31137"}, {"arcs": [[258, 259, 260, 261, 262]], "type": "Polygon", "properties": {"name": "22019"}, "id": "22019"}, {"arcs": [[263, 264, 265, 266, 267]], "type": "Polygon", "properties": {"name": "22111"}, "id": "22111"}, {"arcs": [[-157, 268, 269, 270, 271, 272, 273]], "type": "Polygon", "properties": {"name": "40135"}, "id": "40135"}, {"arcs": [[274, 275, 276, 277, 278, 279, 280]], "type": "Polygon", "properties": {"name": "01049"}, "id": "01049"}, {"arcs": [[281, 282, 283, 284, 285, 286, 287, 288]], "type": "Polygon", "properties": {"name": "36101"}, "id": "36101"}, {"arcs": [[289, 290, 291, 292, 293]], "type": "Polygon", "properties": {"name": "42053"}, "id": "42053"}, {"arcs": [[294, 295, 296, 297, 298, 299, 300]], "type": "Polygon", "properties": {"name": "22105"}, "id": "22105"}, {"arcs": [[301, 302, 303, 304, 305, 306, 307, 308, 309, 310]], "type": "Polygon", "properties": {"name": "51179"}, "id": "51179"}, {"arcs": [[311, 312, 313, 314, 315]], "type": "Polygon", "properties": {"name": "26109"}, "id": "26109"}, {"arcs": [[316, 317, 318, 319, 320, 321, 322]], "type": "Polygon", "properties": {"name": "18073"}, "id": "18073"}, {"arcs": [[323, 324, 325, 326, 327, 328]], "type": "Polygon", "properties": {"name": "13025"}, "id": "13025"}, {"arcs": [[329, 330, 331, 332, 333]], "type": "Polygon", "properties": {"name": "13171"}, "id": "13171"}, {"arcs": [[334, 335, 336, 337, 338]], "type": "Polygon", "properties": {"name": "18151"}, "id": "18151"}, {"arcs": [[-259, 339, 340, 341, 342, 343]], "type": "Polygon", "properties": {"name": "48361"}, "id": "48361"}, {"arcs": [[344, 345, 346, 347, 348, 349]], "type": "Polygon", "properties": {"name": "39047"}, "id": "39047"}, {"arcs": [[350, 351, 352, 353]], "type": "Polygon", "properties": {"name": "25015"}, "id": "25015"}, {"arcs": [[354, 355, 356, 357, 358, 359]], "type": "Polygon", "properties": {"name": "21003"}, "id": "21003"}, {"arcs": [[-138, 360, 361, 362, 363, 364]], "type": "Polygon", "properties": {"name": "37001"}, "id": "37001"}, {"arcs": [[365, 366, 367, 368, 369, 370, 371]], "type": "Polygon", "properties": {"name": "20073"}, "id": "20073"}, {"arcs": [[372, 373, 374, 375]], "type": "Polygon", "properties": {"name": "25025"}, "id": "25025"}, {"arcs": [[376, 377, 378, 379, 380, 381]], "type": "Polygon", "properties": {"name": "16051"}, "id": "16051"}, {"arcs": [[382, 383, 384, 385, 386, 387, 388]], "type": "Polygon", "properties": {"name": "48177"}, "id": "48177"}, {"arcs": [[-180, 389, 390, 391, 392, 393]], "type": "Polygon", "properties": {"name": "47115"}, "id": "47115"}, {"arcs": [[394, 395, 396, 397, 398]], "type": "Polygon", "properties": {"name": "26007"}, "id": "26007"}, {"arcs": [[-56, 399, 400, 401, 402, 403]], "type": "Polygon", "properties": {"name": "21231"}, "id": "21231"}, {"arcs": [[404, 405, 406, 407, 408]], "type": "Polygon", "properties": {"name": "47185"}, "id": "47185"}, {"arcs": [[409, 410, 411, 412, 413, 414]], "type": "Polygon", "properties": {"name": "48147"}, "id": "48147"}, {"arcs": [[415, 416, 417, 418, 419, 420]], "type": "Polygon", "properties": {"name": "20043"}, "id": "20043"}, {"arcs": [[421, 422, 423, 424, 425, 426]], "type": "Polygon", "properties": {"name": "48265"}, "id": "48265"}, {"arcs": [[427, 428, 429, 430]], "type": "Polygon", "properties": {"name": "12053"}, "id": "12053"}, {"arcs": [[431, 432, 433, 434, 435]], "type": "Polygon", "properties": {"name": "12129"}, "id": "12129"}, {"arcs": [[436, 437, 438, 439, 440, 441, 442]], "type": "Polygon", "properties": {"name": "12131"}, "id": "12131"}, {"arcs": [[443, 444, 445, 446, 447, 448]], "type": "Polygon", "properties": {"name": "28017"}, "id": "28017"}, {"arcs": [[[449, 450, 451, 452]], [[453]], [[454]]], "type": "MultiPolygon", "properties": {"name": "02130"}, "id": "02130"}, {"arcs": [[455, 456, 457, 458, 459]], "type": "Polygon", "properties": {"name": "26035"}, "id": "26035"}, {"arcs": [[-28, 460, 461, 462, 463]], "type": "Polygon", "properties": {"name": "20157"}, "id": "20157"}, {"arcs": [[464, 465, 466, 467, 468, 469, 470]], "type": "Polygon", "properties": {"name": "12127"}, "id": "12127"}, {"arcs": [[471, 472, 473, 474, 475, 476, 477]], "type": "Polygon", "properties": {"name": "40017"}, "id": "40017"}, {"arcs": [[478, 479, 480, 481]], "type": "Polygon", "properties": {"name": "72115"}, "id": "72115"}, {"arcs": [[482]], "type": "Polygon", "properties": {"name": "78030"}, "id": "78030"}, {"arcs": [[483, 484, 485, 486, 487, 488]], "type": "Polygon", "properties": {"name": "13115"}, "id": "13115"}, {"arcs": [[489, 490, 491, 492, 493, 494]], "type": "Polygon", "properties": {"name": "32001"}, "id": "32001"}, {"arcs": [[-30, 495, 496, 497, 498, 499, 500]], "type": "Polygon", "properties": {"name": "31181"}, "id": "31181"}, {"arcs": [[501, 502, 503, 504, 505, 506, 507]], "type": "Polygon", "properties": {"name": "17067"}, "id": "17067"}, {"arcs": [[508, 509, 510, 511, 512, 513, 514, 515]], "type": "Polygon", "properties": {"name": "46067"}, "id": "46067"}, {"arcs": [[516, 517, 518, 519, 520]], "type": "Polygon", "properties": {"name": "41013"}, "id": "41013"}, {"arcs": [[521, 522, 523, 524, 525]], "type": "Polygon", "properties": {"name": "50011"}, "id": "50011"}, {"arcs": [[-316, 526, 527, 528, 529, 530, 531]], "type": "Polygon", "properties": {"name": "26103"}, "id": "26103"}, {"arcs": [[532, 533, 534, 535]], "type": "Polygon", "properties": {"name": "09007"}, "id": "09007"}, {"arcs": [[536, 537, 538, 539, 540, 541]], "type": "Polygon", "properties": {"name": "37057"}, "id": "37057"}, {"arcs": [[542, 543, 544, 545, 546, 547]], "type": "Polygon", "properties": {"name": "17025"}, "id": "17025"}, {"arcs": [[548, 549, 550, 551, 552, 553]], "type": "Polygon", "properties": {"name": "29103"}, "id": "29103"}, {"arcs": [[554, 555, 556, 557, 558, 559]], "type": "Polygon", "properties": {"name": "29117"}, "id": "29117"}, {"arcs": [[-285, 560, 561, 562, 563]], "type": "Polygon", "properties": {"name": "42117"}, "id": "42117"}, {"arcs": [[564, 565, 566, 567]], "type": "Polygon", "properties": {"name": "31043"}, "id": "31043"}, {"arcs": [[568, 569, 570]], "type": "Polygon", "properties": {"name": "26089"}, "id": "26089"}, {"arcs": [[571, 572, 573, 574, 575, 576]], "type": "Polygon", "properties": {"name": "51181"}, "id": "51181"}, {"arcs": [[-221, 577, 578, 579, 580, 581, 582, 583, 584]], "type": "Polygon", "properties": {"name": "48391"}, "id": "48391"}, {"arcs": [[585, 586, 587, 588, 589, 590]], "type": "Polygon", "properties": {"name": "39017"}, "id": "39017"}, {"arcs": [[591, 592, 593, 594, 595, 596]], "type": "Polygon", "properties": {"name": "13273"}, "id": "13273"}, {"arcs": [[597, 598, 599, 600, 601]], "type": "Polygon", "properties": {"name": "13063"}, "id": "13063"}, {"arcs": [[602, 603, 604, 605, 606, 607, 608, 609]], "type": "Polygon", "properties": {"name": "56013"}, "id": "56013"}, {"arcs": [[610, 611, 612, 613]], "type": "Polygon", "properties": {"name": "18115"}, "id": "18115"}, {"arcs": [[-87, 614, 615, 616, 617]], "type": "Polygon", "properties": {"name": "13073"}, "id": "13073"}, {"arcs": [[618, 619, 620, 621, 622]], "type": "Polygon", "properties": {"name": "08115"}, "id": "08115"}, {"arcs": [[623, 624, 625, 626, 627]], "type": "Polygon", "properties": {"name": "30065"}, "id": "30065"}, {"arcs": [[628, 629, 630, 631, 632, 633, 634]], "type": "Polygon", "properties": {"name": "42043"}, "id": "42043"}, {"arcs": [[-39, 635, 636, 637]], "type": "Polygon", "properties": {"name": "46101"}, "id": "46101"}, {"arcs": [[638, 639, 640, 641, 642]], "type": "Polygon", "properties": {"name": "54079"}, "id": "54079"}, {"arcs": [[643, 644, 645, 646, 647, 648]], "type": "Polygon", "properties": {"name": "34037"}, "id": "34037"}, {"arcs": [[649, 650, 651, 652, 653, 654]], "type": "Polygon", "properties": {"name": "20039"}, "id": "20039"}, {"arcs": [[655, 656, 657, 658, 659, 660]], "type": "Polygon", "properties": {"name": "18123"}, "id": "18123"}, {"arcs": [[661, 662, 663, 664, 665, 666, 667]], "type": "Polygon", "properties": {"name": "28145"}, "id": "28145"}, {"arcs": [[668, 669, 670, 671, 672]], "type": "Polygon", "properties": {"name": "31015"}, "id": "31015"}, {"arcs": [[673, 674, 675, 676, 677, 678, 679]], "type": "Polygon", "properties": {"name": "27095"}, "id": "27095"}, {"arcs": [[680, 681, 682, 683, 684, 685]], "type": "Polygon", "properties": {"name": "38099"}, "id": "38099"}, {"arcs": [[686, 687, 688, 689, 690]], "type": "Polygon", "properties": {"name": "39115"}, "id": "39115"}, {"arcs": [[691, 692, 693, 694, 695]], "type": "Polygon", "properties": {"name": "39133"}, "id": "39133"}, {"arcs": [[-148, -210, 696, 697]], "type": "Polygon", "properties": {"name": "56041"}, "id": "56041"}, {"arcs": [[698, 699, 700, 701, 702, 703, 704]], "type": "Polygon", "properties": {"name": "32013"}, "id": "32013"}, {"arcs": [[705, 706, 707, 708, 709]], "type": "Polygon", "properties": {"name": "48247"}, "id": "48247"}, {"arcs": [[710, 711, 712, 713, 714]], "type": "Polygon", "properties": {"name": "08017"}, "id": "08017"}, {"arcs": [[715, 716, 717, 718, 719, 720]], "type": "Polygon", "properties": {"name": "41005"}, "id": "41005"}, {"arcs": [[721, 722, 723, 724, 725, 726]], "type": "Polygon", "properties": {"name": "05113"}, "id": "05113"}, {"arcs": [[[727, 728, 729, 730, 731, 732, 733]], [[734, 735, 736]]], "type": "MultiPolygon", "properties": {"name": "13193"}, "id": "13193"}, {"arcs": [[-322, 737, 738, 739, 740, 741, 742]], "type": "Polygon", "properties": {"name": "18007"}, "id": "18007"}, {"arcs": [[743, 744, 745, 746, 747]], "type": "Polygon", "properties": {"name": "47129"}, "id": "47129"}, {"arcs": [[-514, 748, 749, 750]], "type": "Polygon", "properties": {"name": "46043"}, "id": "46043"}, {"arcs": [[751, 752, 753, 754, 755]], "type": "Polygon", "properties": {"name": "24047"}, "id": "24047"}, {"arcs": [[756, 757, 758, 759, 760, 761]], "type": "Polygon", "properties": {"name": "17185"}, "id": "17185"}, {"arcs": [[762, 763, 764, 765, 766]], "type": "Polygon", "properties": {"name": "18069"}, "id": "18069"}, {"arcs": [[767, 768, 769, 770, 771, 772, 773]], "type": "Polygon", "properties": {"name": "21209"}, "id": "21209"}, {"arcs": [[774, 775, 776, 777, 778]], "type": "Polygon", "properties": {"name": "19053"}, "id": "19053"}, {"arcs": [[-767, 779, 780, 781, 782, 783]], "type": "Polygon", "properties": {"name": "18169"}, "id": "18169"}, {"arcs": [[-764, 784, 785, 786, 787, 788, 789, 790, 791]], "type": "Polygon", "properties": {"name": "18003"}, "id": "18003"}, {"arcs": [[792, 793, 794, 795, 796]], "type": "Polygon", "properties": {"name": "18099"}, "id": "18099"}, {"arcs": [[797, 798, 799, 800, 801]], "type": "Polygon", "properties": {"name": "31171"}, "id": "31171"}, {"arcs": [[802, 803, 804, 805, 806]], "type": "Polygon", "properties": {"name": "38085"}, "id": "38085"}, {"arcs": [[807, 808, 809, 810, 811]], "type": "Polygon", "properties": {"name": "48127"}, "id": "48127"}, {"arcs": [[812, 813, 814, 815, 816, 817]], "type": "Polygon", "properties": {"name": "27045"}, "id": "27045"}, {"arcs": [[818, 819, 820, 821]], "type": "Polygon", "properties": {"name": "45023"}, "id": "45023"}, {"arcs": [[822, 823, 824, 825, 826, 827]], "type": "Polygon", "properties": {"name": "27073"}, "id": "27073"}, {"arcs": [[-152, 828, 829, 830, 831]], "type": "Polygon", "properties": {"name": "49005"}, "id": "49005"}, {"arcs": [[832, 833, 834, 835, 836, 837]], "type": "Polygon", "properties": {"name": "55093"}, "id": "55093"}, {"arcs": [[-326, 838, 839, 840, 841]], "type": "Polygon", "properties": {"name": "13049"}, "id": "13049"}, {"arcs": [[-487, 842, 843, 844, 845, 846]], "type": "Polygon", "properties": {"name": "13233"}, "id": "13233"}, {"arcs": [[847, 848, 849, 850, 851, 852, 853, 854]], "type": "Polygon", "properties": {"name": "17113"}, "id": "17113"}, {"arcs": [[855, 856, 857, 858, 859]], "type": "Polygon", "properties": {"name": "23001"}, "id": "23001"}, {"arcs": [[860, 861, 862, 863]], "type": "Polygon", "properties": {"name": "16055"}, "id": "16055"}, {"arcs": [[864, 865, 866, 867, 868]], "type": "Polygon", "properties": {"name": "32003"}, "id": "32003"}, {"arcs": [[869, 870, 871, 872, 873, 874]], "type": "Polygon", "properties": {"name": "20147"}, "id": "20147"}, {"arcs": [[-671, 875, 876, 877, 878, 879, 880]], "type": "Polygon", "properties": {"name": "31089"}, "id": "31089"}, {"arcs": [[-123, 881, 882, 883, 884]], "type": "Polygon", "properties": {"name": "29101"}, "id": "29101"}, {"arcs": [[885, 886, 887, 888, 889, 890]], "type": "Polygon", "properties": {"name": "55063"}, "id": "55063"}, {"arcs": [[891, 892, 893, 894, 895, 896, 897]], "type": "Polygon", "properties": {"name": "22021"}, "id": "22021"}, {"arcs": [[898, 899, 900, 901, 902]], "type": "Polygon", "properties": {"name": "21061"}, "id": "21061"}, {"arcs": [[903, 904, 905, 906]], "type": "Polygon", "properties": {"name": "17005"}, "id": "17005"}, {"arcs": [[907, 908, 909, 910, 911]], "type": "Polygon", "properties": {"name": "17009"}, "id": "17009"}, {"arcs": [[912, 913, 914, 915, 916]], "type": "Polygon", "properties": {"name": "27085"}, "id": "27085"}, {"arcs": [[-835, 917, 918, 919, 920, 921]], "type": "Polygon", "properties": {"name": "55033"}, "id": "55033"}, {"arcs": [[-133, 922, 923, 924]], "type": "Polygon", "properties": {"name": "08027"}, "id": "08027"}, {"arcs": [[925, 926, 927, 928, 929]], "type": "Polygon", "properties": {"name": "29123"}, "id": "29123"}, {"arcs": [[930, 931, 932, 933, 934]], "type": "Polygon", "properties": {"name": "48353"}, "id": "48353"}, {"arcs": [[935, 936, 937, 938, 939, 940, 941]], "type": "Polygon", "properties": {"name": "42127"}, "id": "42127"}, {"arcs": [[942, 943, 944, 945, 946, 947, 948, 949]], "type": "Polygon", "properties": {"name": "36091"}, "id": "36091"}, {"arcs": [[950, 951, 952, 953, 954]], "type": "Polygon", "properties": {"name": "48041"}, "id": "48041"}, {"arcs": [[955, 956, 957, 958, 959]], "type": "Polygon", "properties": {"name": "40095"}, "id": "40095"}, {"arcs": [[960, 961, 962, 963, 964, 965, 966, 967]], "type": "Polygon", "properties": {"name": "24001"}, "id": "24001"}, {"arcs": [[968, 969, 970, 971, 972, 973, 974, 975]], "type": "Polygon", "properties": {"name": "54103"}, "id": "54103"}, {"arcs": [[-887, 976, 977, 978, 979, 980, 981]], "type": "Polygon", "properties": {"name": "55053"}, "id": "55053"}, {"arcs": [[-11, 982, 983, 984]], "type": "Polygon", "properties": {"name": "41007"}, "id": "41007"}, {"arcs": [[-8, 985, 986, 987, 988, 989, 990, 991]], "type": "Polygon", "properties": {"name": "53041"}, "id": "53041"}, {"arcs": [[-287, 992, 993, 994, 995, 996]], "type": "Polygon", "properties": {"name": "36003"}, "id": "36003"}, {"arcs": [[997, 998, 999, 1000, 1001, 1002]], "type": "Polygon", "properties": {"name": "19031"}, "id": "19031"}, {"arcs": [[1003, 1004, 1005, 1006, 1007]], "type": "Polygon", "properties": {"name": "18117"}, "id": "18117"}, {"arcs": [[-598, 1008, 1009, 1010, 1011]], "type": "Polygon", "properties": {"name": "13089"}, "id": "13089"}, {"arcs": [[1012, 1013, 1014, 1015]], "type": "Polygon", "properties": {"name": "13227"}, "id": "13227"}, {"arcs": [[1016, 1017, 1018, 1019, 1020, 1021, 1022, 1023]], "type": "Polygon", "properties": {"name": "30015"}, "id": "30015"}, {"arcs": [[1024, 1025, 1026, 1027, 1028]], "type": "Polygon", "properties": {"name": "31017"}, "id": "31017"}, {"arcs": [[1029, 1030, 1031, 1032, 1033, 1034]], "type": "Polygon", "properties": {"name": "47013"}, "id": "47013"}, {"arcs": [[1035, 1036, 1037, 1038, 1039]], "type": "Polygon", "properties": {"name": "37069"}, "id": "37069"}, {"arcs": [[1040, 1041, 1042]], "type": "Polygon", "properties": {"name": "24510"}, "id": "24510"}, {"arcs": [[-366, 1043, 1044, 1045, 1046, 1047]], "type": "Polygon", "properties": {"name": "20111"}, "id": "20111"}, {"arcs": [[1048, 1049, 1050, 1051, 1052, 1053]], "type": "Polygon", "properties": {"name": "19027"}, "id": "19027"}, {"arcs": [[1054, 1055, 1056, 1057, 1058, 1059, 1060, 1061]], "type": "Polygon", "properties": {"name": "22107"}, "id": "22107"}, {"arcs": [[1062, 1063, 1064, 1065, 1066, 1067, 1068]], "type": "Polygon", "properties": {"name": "47123"}, "id": "47123"}, {"arcs": [[1069, 1070, 1071, 1072, 1073]], "type": "Polygon", "properties": {"name": "20075"}, "id": "20075"}, {"arcs": [[1074, 1075, 1076, 1077, 1078]], "type": "Polygon", "properties": {"name": "19151"}, "id": "19151"}, {"arcs": [[1079, 1080, 1081, 1082, 1083, 1084, 1085]], "type": "Polygon", "properties": {"name": "16045"}, "id": "16045"}, {"arcs": [[-99, 1086, 1087, 1088, 1089, 1090, 1091]], "type": "Polygon", "properties": {"name": "05063"}, "id": "05063"}, {"arcs": [[1092, 1093, 1094, 1095, 1096, 1097]], "type": "Polygon", "properties": {"name": "05085"}, "id": "05085"}, {"arcs": [[-323, -743, 1098, 1099, 1100]], "type": "Polygon", "properties": {"name": "18111"}, "id": "18111"}, {"arcs": [[1101, 1102, 1103, 1104, 1105]], "type": "Polygon", "properties": {"name": "13119"}, "id": "13119"}, {"arcs": [[1106, 1107, 1108, 1109, 1110]], "type": "Polygon", "properties": {"name": "12051"}, "id": "12051"}, {"arcs": [[1111, 1112, 1113, 1114, 1115]], "type": "Polygon", "properties": {"name": "13265"}, "id": "13265"}, {"arcs": [[-341, 1116, 1117, 1118, 1119, 1120]], "type": "Polygon", "properties": {"name": "48245"}, "id": "48245"}, {"arcs": [[1121, 1122, 1123, 1124, 1125, 1126, 1127, 1128]], "type": "Polygon", "properties": {"name": "30059"}, "id": "30059"}, {"arcs": [[1129, 1130, 1131, 1132, 1133]], "type": "Polygon", "properties": {"name": "08067"}, "id": "08067"}, {"arcs": [[1134, 1135, 1136, 1137, 1138, 1139, 1140]], "type": "Polygon", "properties": {"name": "48027"}, "id": "48027"}, {"arcs": [[1141, 1142, 1143, 1144, 1145]], "type": "Polygon", "properties": {"name": "28069"}, "id": "28069"}, {"arcs": [[1146, 1147, 1148, 1149, 1150, 1151]], "type": "Polygon", "properties": {"name": "05019"}, "id": "05019"}, {"arcs": [[1152, 1153, 1154, 1155, 1156, 1157, 1158]], "type": "Polygon", "properties": {"name": "41035"}, "id": "41035"}, {"arcs": [[1159, 1160, 1161, 1162, 1163, 1164, 1165]], "type": "Polygon", "properties": {"name": "36075"}, "id": "36075"}, {"arcs": [[1166, 1167, 1168, 1169, 1170]], "type": "Polygon", "properties": {"name": "72105"}, "id": "72105"}, {"arcs": [[-278, 1171, -488, -847, 1172, 1173, 1174]], "type": "Polygon", "properties": {"name": "01019"}, "id": "01019"}, {"arcs": [[-427, 1175, 1176, 1177, 1178, 1179]], "type": "Polygon", "properties": {"name": "48019"}, "id": "48019"}, {"arcs": [[-626, 1180, 1181, 1182, 1183, 1184, 1185, 1186]], "type": "Polygon", "properties": {"name": "30087"}, "id": "30087"}, {"arcs": [[1187, 1188, 1189, 1190, 1191, 1192, 1193, 1194]], "type": "Polygon", "properties": {"name": "35059"}, "id": "35059"}, {"arcs": [[1195, 1196, 1197, 1198, 1199]], "type": "Polygon", "properties": {"name": "26153"}, "id": "26153"}, {"arcs": [[1200, 1201, 1202, 1203, 1204, 1205]], "type": "Polygon", "properties": {"name": "36111"}, "id": "36111"}, {"arcs": [[1206, 1207, 1208, 1209]], "type": "Polygon", "properties": {"name": "34007"}, "id": "34007"}, {"arcs": [[1210, 1211, 1212, 1213, 1214]], "type": "Polygon", "properties": {"name": "17083"}, "id": "17083"}, {"arcs": [[1215, 1216, 1217, 1218, 1219, 1220, 1221]], "type": "Polygon", "properties": {"name": "51085"}, "id": "51085"}, {"arcs": [[-711, 1222, 1223, 1224, 1225, 1226]], "type": "Polygon", "properties": {"name": "20199"}, "id": "20199"}, {"arcs": [[-531, 1227, 1228, -1200, 1229]], "type": "Polygon", "properties": {"name": "26003"}, "id": "26003"}, {"arcs": [[1230, 1231, 1232, 1233, 1234, 1235]], "type": "Polygon", "properties": {"name": "05049"}, "id": "05049"}, {"arcs": [[1236, 1237, 1238, 1239, 1240, 1241]], "type": "Polygon", "properties": {"name": "48215"}, "id": "48215"}, {"arcs": [[1242, 1243, 1244, 1245, 1246, 1247, 1248]], "type": "Polygon", "properties": {"name": "37155"}, "id": "37155"}, {"arcs": [[1249, 1250, 1251, 1252, 1253, 1254]], "type": "Polygon", "properties": {"name": "26123"}, "id": "26123"}, {"arcs": [[1255, 1256, 1257, 1258, 1259, 1260]], "type": "Polygon", "properties": {"name": "41049"}, "id": "41049"}, {"arcs": [[1261, 1262, 1263, 1264, 1265, 1266]], "type": "Polygon", "properties": {"name": "27153"}, "id": "27153"}, {"arcs": [[1267, 1268, 1269, 1270, 1271, 1272]], "type": "Polygon", "properties": {"name": "05083"}, "id": "05083"}, {"arcs": [[1273, 1274, 1275, 1276, 1277, 1278]], "type": "Polygon", "properties": {"name": "37109"}, "id": "37109"}, {"arcs": [[1279, 1280, 1281, 1282, 1283, 1284, 1285]], "type": "Polygon", "properties": {"name": "05091"}, "id": "05091"}, {"arcs": [[1286, 1287, 1288, 1289]], "type": "Polygon", "properties": {"name": "12095"}, "id": "12095"}, {"arcs": [[-1130, 1290, 1291, 1292, 1293]], "type": "Polygon", "properties": {"name": "08111"}, "id": "08111"}, {"arcs": [[-832, 1294, 1295, 1296, 1297]], "type": "Polygon", "properties": {"name": "16041"}, "id": "16041"}, {"arcs": [[1298, 1299, 1300, 1301, 1302, 1303, 1304, 1305]], "type": "Polygon", "properties": {"name": "13045"}, "id": "13045"}, {"arcs": [[1306, 1307, 1308, 1309, 1310, 1311]], "type": "Polygon", "properties": {"name": "20161"}, "id": "20161"}, {"arcs": [[-48, 1312, 1313, 1314, 1315]], "type": "Polygon", "properties": {"name": "48413"}, "id": "48413"}, {"arcs": [[1316, 1317, 1318, 1319, 1320, 1321, 1322]], "type": "Polygon", "properties": {"name": "51167"}, "id": "51167"}, {"arcs": [[1323, 1324, 1325, 1326, 1327, 1328]], "type": "Polygon", "properties": {"name": "37027"}, "id": "37027"}, {"arcs": [[-382, 1329, 1330, 1331]], "type": "Polygon", "properties": {"name": "16065"}, "id": "16065"}, {"arcs": [[1332, 1333, 1334, 1335, 1336, 1337, 1338]], "type": "Polygon", "properties": {"name": "18173"}, "id": "18173"}, {"arcs": [[1339, 1340, 1341, 1342, 1343, 1344]], "type": "Polygon", "properties": {"name": "21001"}, "id": "21001"}, {"arcs": [[1345, 1346, 1347, 1348, 1349]], "type": "Polygon", "properties": {"name": "21077"}, "id": "21077"}, {"arcs": [[-769, 1350, 1351, 1352, 1353, 1354, 1355]], "type": "Polygon", "properties": {"name": "21097"}, "id": "21097"}, {"arcs": [[-858, 1356, 1357, 1358, 1359]], "type": "Polygon", "properties": {"name": "23023"}, "id": "23023"}, {"arcs": [[-1126, 1360, 1361, 1362, 1363]], "type": "Polygon", "properties": {"name": "30097"}, "id": "30097"}, {"arcs": [[-415, 1364, 1365, 1366, 1367, -960, 1368]], "type": "Polygon", "properties": {"name": "48181"}, "id": "48181"}, {"arcs": [[-970, 1369, 1370, 1371, 1372]], "type": "Polygon", "properties": {"name": "42059"}, "id": "42059"}, {"arcs": [[1373, 1374, 1375, 1376]], "type": "Polygon", "properties": {"name": "02188"}, "id": "02188"}, {"arcs": [[1377, 1378, 1379, 1380, 1381, 1382]], "type": "Polygon", "properties": {"name": "20051"}, "id": "20051"}, {"arcs": [[-198, 1383, 1384, 1385, 1386]], "type": "Polygon", "properties": {"name": "01065"}, "id": "01065"}, {"arcs": [[-199, -1387, 1387, 1388, 1389]], "type": "Polygon", "properties": {"name": "01105"}, "id": "01105"}, {"arcs": [[1390, 1391, 1392, 1393]], "type": "Polygon", "properties": {"name": "01033"}, "id": "01033"}, {"arcs": [[1394, 1395, 1396, 1397, 1398, 1399]], "type": "Polygon", "properties": {"name": "20151"}, "id": "20151"}, {"arcs": [[-770, -1356, 1400, 1401, 1402, 1403]], "type": "Polygon", "properties": {"name": "21017"}, "id": "21017"}, {"arcs": [[1404, 1405, 1406, 1407, 1408, 1409, 1410]], "type": "Polygon", "properties": {"name": "47149"}, "id": "47149"}, {"arcs": [[1411, 1412, 1413, 1414, 1415]], "type": "Polygon", "properties": {"name": "13075"}, "id": "13075"}, {"arcs": [[1416, 1417, 1418, 1419]], "type": "Polygon", "properties": {"name": "20101"}, "id": "20101"}, {"arcs": [[1420, 1421, 1422, 1423, 1424, 1425]], "type": "Polygon", "properties": {"name": "40059"}, "id": "40059"}, {"arcs": [[-852, 1426, 1427, 1428, 1429, 1430]], "type": "Polygon", "properties": {"name": "17147"}, "id": "17147"}, {"arcs": [[1431, 1432, 1433, 1434]], "type": "Polygon", "properties": {"name": "48107"}, "id": "48107"}, {"arcs": [[1435, 1436, 1437]], "type": "Polygon", "properties": {"name": "72053"}, "id": "72053"}, {"arcs": [[-197, 1438, 1439, 1440, -1384]], "type": "Polygon", "properties": {"name": "01063"}, "id": "01063"}, {"arcs": [[-380, 1441, 1442, 1443, 1444]], "type": "Polygon", "properties": {"name": "16033"}, "id": "16033"}, {"arcs": [[1445, 1446, 1447, 1448, 1449, 1450, 1451]], "type": "Polygon", "properties": {"name": "19109"}, "id": "19109"}, {"arcs": [[-35, 1452, 1453, 1454, 1455, 1456]], "type": "Polygon", "properties": {"name": "72151"}, "id": "72151"}, {"arcs": [[1457, 1458, 1459, 1460, 1461, 1462]], "type": "Polygon", "properties": {"name": "38013"}, "id": "38013"}, {"arcs": [[-140, 1463, 1464, 1465, 1466]], "type": "Polygon", "properties": {"name": "37063"}, "id": "37063"}, {"arcs": [[1467, 1468, 1469, 1470, 1471, 1472]], "type": "Polygon", "properties": {"name": "19085"}, "id": "19085"}, {"arcs": [[-672, 1473, -1029, 1474, 1475, 1476]], "type": "Polygon", "properties": {"name": "31103"}, "id": "31103"}, {"arcs": [[-1076, 1477, 1478, 1479, 1480, 1481, 1482]], "type": "Polygon", "properties": {"name": "19187"}, "id": "19187"}, {"arcs": [[1483, 1484, 1485, 1486, 1487]], "type": "Polygon", "properties": {"name": "17151"}, "id": "17151"}, {"arcs": [[1488, 1489, 1490, 1491, 1492, 1493]], "type": "Polygon", "properties": {"name": "47159"}, "id": "47159"}, {"arcs": [[1494, 1495, 1496, 1497, 1498], [1499]], "type": "Polygon", "properties": {"name": "51089"}, "id": "51089"}, {"arcs": [[1500, 1501, 1502, 1503]], "type": "Polygon", "properties": {"name": "51510"}, "id": "51510"}, {"arcs": [[1504, 1505, 1506, 1507, 1508]], "type": "Polygon", "properties": {"name": "19101"}, "id": "19101"}, {"arcs": [[-1122, 1509, 1510, 1511, 1512, 1513, 1514]], "type": "Polygon", "properties": {"name": "30049"}, "id": "30049"}, {"arcs": [[1515, 1516, 1517, 1518, 1519, 1520]], "type": "Polygon", "properties": {"name": "49013"}, "id": "49013"}, {"arcs": [[1521, 1522, 1523, 1524, 1525, 1526]], "type": "Polygon", "properties": {"name": "40003"}, "id": "40003"}, {"arcs": [[-412, 1527, 1528, 1529, 1530, 1531]], "type": "Polygon", "properties": {"name": "48119"}, "id": "48119"}, {"arcs": [[-1489, 1532, 1533, 1534]], "type": "Polygon", "properties": {"name": "47169"}, "id": "47169"}, {"arcs": [[1535, 1536, 1537, 1538, 1539, 1540, 1541]], "type": "Polygon", "properties": {"name": "21193"}, "id": "21193"}, {"arcs": [[-827, 1542, 1543, 1544, 1545, 1546, 1547]], "type": "Polygon", "properties": {"name": "46039"}, "id": "46039"}, {"arcs": [[-1154, 1548, 1549, 1550]], "type": "Polygon", "properties": {"name": "41029"}, "id": "41029"}, {"arcs": [[1551, 1552, 1553]], "type": "Polygon", "properties": {"name": "72067"}, "id": "72067"}, {"arcs": [[-812, 1554, 1555, 1556]], "type": "Polygon", "properties": {"name": "48507"}, "id": "48507"}, {"arcs": [[1557, 1558, 1559, 1560, 1561, 1562]], "type": "Polygon", "properties": {"name": "31007"}, "id": "31007"}, {"arcs": [[1563, 1564, 1565, 1566, 1567]], "type": "Polygon", "properties": {"name": "19121"}, "id": "19121"}, {"arcs": [[-1110, 1568, 1569, 1570, 1571]], "type": "Polygon", "properties": {"name": "12011"}, "id": "12011"}, {"arcs": [[1572, 1573, 1574, 1575, 1576]], "type": "Polygon", "properties": {"name": "13279"}, "id": "13279"}, {"arcs": [[1577, 1578, 1579, 1580, 1581]], "type": "Polygon", "properties": {"name": "26151"}, "id": "26151"}, {"arcs": [[1582, 1583, 1584, 1585]], "type": "Polygon", "properties": {"name": "48397"}, "id": "48397"}, {"arcs": [[1586, 1587, 1588, 1589, 1590]], "type": "Polygon", "properties": {"name": "26163"}, "id": "26163"}, {"arcs": [[1591, 1592, 1593, 1594, 1595, 1596]], "type": "Polygon", "properties": {"name": "27105"}, "id": "27105"}, {"arcs": [[-675, 1597, 1598, 1599, 1600, 1601, 1602, 1603]], "type": "Polygon", "properties": {"name": "27001"}, "id": "27001"}, {"arcs": [[-686, 1604, 1605, 1606, 1607]], "type": "Polygon", "properties": {"name": "38071"}, "id": "38071"}, {"arcs": [[-1465, 1608, 1609, 1610, 1611]], "type": "Polygon", "properties": {"name": "37145"}, "id": "37145"}, {"arcs": [[-1383, 1612, 1613, 1614, 1615]], "type": "Polygon", "properties": {"name": "20195"}, "id": "20195"}, {"arcs": [[1616, 1617, 1618, 1619, 1620, 1621]], "type": "Polygon", "properties": {"name": "28151"}, "id": "28151"}, {"arcs": [[1622, 1623, 1624, 1625, 1626, 1627, 1628]], "type": "Polygon", "properties": {"name": "48133"}, "id": "48133"}, {"arcs": [[-1620, 1629, 1630, 1631, 1632, 1633]], "type": "Polygon", "properties": {"name": "28055"}, "id": "28055"}, {"arcs": [[-386, 1634, 1635, 1636, 1637]], "type": "Polygon", "properties": {"name": "48123"}, "id": "48123"}, {"arcs": [[1638, 1639, 1640, 1641, 1642, 1643, 1644, 1645]], "type": "Polygon", "properties": {"name": "48005"}, "id": "48005"}, {"arcs": [[1646, 1647, 1648, 1649, 1650]], "type": "Polygon", "properties": {"name": "45081"}, "id": "45081"}, {"arcs": [[1651, 1652, 1653, 1654, 1655]], "type": "Polygon", "properties": {"name": "29125"}, "id": "29125"}, {"arcs": [[-1096, 1656, 1657, 1658, 1659, 1660, 1661]], "type": "Polygon", "properties": {"name": "05001"}, "id": "05001"}, {"arcs": [[1662, 1663, 1664, 1665, 1666, 1667, 1668]], "type": "Polygon", "properties": {"name": "29109"}, "id": "29109"}, {"arcs": [[1669]], "type": "Polygon", "properties": {"name": "51540"}, "id": "51540"}, {"arcs": [[1670, 1671, 1672, 1673, 1674, 1675, 1676]], "type": "Polygon", "properties": {"name": "17011"}, "id": "17011"}, {"arcs": [[1677, 1678, 1679, 1680, 1681, 1682]], "type": "Polygon", "properties": {"name": "39145"}, "id": "39145"}, {"arcs": [[1683, 1684, 1685, 1686, 1687, 1688]], "type": "Polygon", "properties": {"name": "37115"}, "id": "37115"}, {"arcs": [[1689, 1690, 1691, 1692, 1693]], "type": "Polygon", "properties": {"name": "16053"}, "id": "16053"}, {"arcs": [[1694, 1695, 1696, 1697, 1698, 1699]], "type": "Polygon", "properties": {"name": "39163"}, "id": "39163"}, {"arcs": [[-1135, 1700, 1701, 1702, 1703, 1704]], "type": "Polygon", "properties": {"name": "48309"}, "id": "48309"}, {"arcs": [[1705, 1706, 1707, 1708, 1709, 1710]], "type": "Polygon", "properties": {"name": "16037"}, "id": "16037"}, {"arcs": [[-815, 1711, 1712, 1713, 1714]], "type": "Polygon", "properties": {"name": "19089"}, "id": "19089"}, {"arcs": [[-1109, 1715, 1716, -1569]], "type": "Polygon", "properties": {"name": "12099"}, "id": "12099"}, {"arcs": [[-86, 1717, 1718, 1719, -615]], "type": "Polygon", "properties": {"name": "13181"}, "id": "13181"}, {"arcs": [[1720, 1721, 1722, 1723, 1724, 1725]], "type": "Polygon", "properties": {"name": "01013"}, "id": "01013"}, {"arcs": [[-358, 1726, -1534, 1727, 1728, 1729, 1730]], "type": "Polygon", "properties": {"name": "47165"}, "id": "47165"}, {"arcs": [[-238, 1731, 1732, 1733, 1734, 1735, 1736]], "type": "Polygon", "properties": {"name": "51097"}, "id": "51097"}, {"arcs": [[1737, 1738, 1739, 1740, 1741, 1742, 1743]], "type": "Polygon", "properties": {"name": "05015"}, "id": "05015"}, {"arcs": [[1744]], "type": "Polygon", "properties": {"name": "51820"}, "id": "51820"}, {"arcs": [[[1745, 1746]], [[1747]], [[1748]]], "type": "MultiPolygon", "properties": {"name": "02220"}, "id": "02220"}, {"arcs": [[-716, 1749, 1750, 1751, 1752, 1753]], "type": "Polygon", "properties": {"name": "41051"}, "id": "41051"}, {"arcs": [[-393, 1754, 1755, 1756, 1757]], "type": "Polygon", "properties": {"name": "47061"}, "id": "47061"}, {"arcs": [[1758, 1759, 1760, 1761, 1762]], "type": "Polygon", "properties": {"name": "27057"}, "id": "27057"}, {"arcs": [[1763, 1764, 1765, 1766, 1767]], "type": "Polygon", "properties": {"name": "38081"}, "id": "38081"}, {"arcs": [[1768, 1769, 1770, 1771, 1772, 1773]], "type": "Polygon", "properties": {"name": "36089"}, "id": "36089"}, {"arcs": [[1774, 1775, 1776, 1777, 1778]], "type": "Polygon", "properties": {"name": "29179"}, "id": "29179"}, {"arcs": [[1779, 1780, 1781, 1782, 1783, 1784, 1785, 1786]], "type": "Polygon", "properties": {"name": "06067"}, "id": "06067"}, {"arcs": [[-789, 1787, 1788, 1789]], "type": "Polygon", "properties": {"name": "39125"}, "id": "39125"}, {"arcs": [[-765, -792, 1790, 1791, 1792, 1793]], "type": "Polygon", "properties": {"name": "18179"}, "id": "18179"}, {"arcs": [[-168, 1794, 1795, 1796, 1797, 1798]], "type": "Polygon", "properties": {"name": "51063"}, "id": "51063"}, {"arcs": [[[1799, 1800, 1801, 1802]], [[1803]], [[1804]]], "type": "MultiPolygon", "properties": {"name": "06083"}, "id": "06083"}, {"arcs": [[1805, 1806, 1807, 1808, 1809]], "type": "Polygon", "properties": {"name": "54005"}, "id": "54005"}, {"arcs": [[-662, 1810, 1811, 1812, 1813]], "type": "Polygon", "properties": {"name": "28009"}, "id": "28009"}, {"arcs": [[1814, 1815, 1816, 1817, 1818, 1819]], "type": "Polygon", "properties": {"name": "21055"}, "id": "21055"}, {"arcs": [[-1079, 1820, 1821, -1452]], "type": "Polygon", "properties": {"name": "19147"}, "id": "19147"}, {"arcs": [[-778, 1822, 1823, 1824, 1825]], "type": "Polygon", "properties": {"name": "19159"}, "id": "19159"}, {"arcs": [[-145, 1826, 1827, -538, 1828, -361]], "type": "Polygon", "properties": {"name": "37151"}, "id": "37151"}, {"arcs": [[1829, 1830, 1831, 1832, 1833, 1834]], "type": "Polygon", "properties": {"name": "24015"}, "id": "24015"}, {"arcs": [[-740, 1835, 1836, 1837, 1838]], "type": "Polygon", "properties": {"name": "18171"}, "id": "18171"}, {"arcs": [[1839, 1840, 1841, 1842, 1843, 1844]], "type": "Polygon", "properties": {"name": "31077"}, "id": "31077"}, {"arcs": [[1845, 1846, 1847, 1848]], "type": "Polygon", "properties": {"name": "31095"}, "id": "31095"}, {"arcs": [[-23, 1849, -1846, 1850, 1851]], "type": "Polygon", "properties": {"name": "31151"}, "id": "31151"}, {"arcs": [[-1539, 1852, 1853, 1854, 1855, 1856]], "type": "Polygon", "properties": {"name": "21119"}, "id": "21119"}, {"arcs": [[-1000, 1857, 1858, 1859, 1860, 1861, 1862]], "type": "Polygon", "properties": {"name": "19045"}, "id": "19045"}, {"arcs": [[-1593, 1863, 1864, 1865, 1866, 1867, 1868]], "type": "Polygon", "properties": {"name": "27063"}, "id": "27063"}, {"arcs": [[1869, 1870, 1871, 1872, 1873]], "type": "Polygon", "properties": {"name": "27039"}, "id": "27039"}, {"arcs": [[1874, 1875, 1876, 1877, 1878, 1879]], "type": "Polygon", "properties": {"name": "27047"}, "id": "27047"}, {"arcs": [[1880, 1881, 1882, 1883, 1884]], "type": "Polygon", "properties": {"name": "06009"}, "id": "06009"}, {"arcs": [[1885, 1886]], "type": "Polygon", "properties": {"name": "25001"}, "id": "25001"}, {"arcs": [[-1736, 1887, 1888, 1889, 1890]], "type": "Polygon", "properties": {"name": "51119"}, "id": "51119"}, {"arcs": [[-291, 1891, 1892, 1893, 1894, 1895]], "type": "Polygon", "properties": {"name": "42065"}, "id": "42065"}, {"arcs": [[-317, -1101, 1896, 1897, 1898, 1899, 1900]], "type": "Polygon", "properties": {"name": "18089"}, "id": "18089"}, {"arcs": [[-1409, 1901, 1902, 1903, 1904]], "type": "Polygon", "properties": {"name": "47003"}, "id": "47003"}, {"arcs": [[-58, 1905, 1906, 1907, 1908, 1909, 1910]], "type": "Polygon", "properties": {"name": "47027"}, "id": "47027"}, {"arcs": [[1911, 1912, 1913, 1914, 1915, 1916]], "type": "Polygon", "properties": {"name": "17029"}, "id": "17029"}, {"arcs": [[1917, 1918, 1919, 1920, 1921]], "type": "Polygon", "properties": {"name": "47097"}, "id": "47097"}, {"arcs": [[-110, 1922, 1923, 1924, 1925, 1926]], "type": "Polygon", "properties": {"name": "41001"}, "id": "41001"}, {"arcs": [[-283, 1927, 1928, 1929, 1930]], "type": "Polygon", "properties": {"name": "36097"}, "id": "36097"}, {"arcs": [[1931, 1932, 1933, 1934, 1935]], "type": "Polygon", "properties": {"name": "26159"}, "id": "26159"}, {"arcs": [[1936, 1937, 1938, 1939, 1940, 1941, 1942]], "type": "Polygon", "properties": {"name": "17131"}, "id": "17131"}, {"arcs": [[1943, 1944, 1945, 1946, 1947, 1948, 1949]], "type": "Polygon", "properties": {"name": "21127"}, "id": "21127"}, {"arcs": [[-1947, 1950, 1951, 1952, 1953, 1954, 1955]], "type": "Polygon", "properties": {"name": "21175"}, "id": "21175"}, {"arcs": [[1956, 1957, 1958, 1959, 1960, 1961, 1962]], "type": "Polygon", "properties": {"name": "21177"}, "id": "21177"}, {"arcs": [[-544, 1963, 1964, 1965, 1966]], "type": "Polygon", "properties": {"name": "17049"}, "id": "17049"}, {"arcs": [[-1064, 1967, 1968, 1969, 1970]], "type": "Polygon", "properties": {"name": "47105"}, "id": "47105"}, {"arcs": [[1971, 1972, 1973, 1974, 1975, 1976]], "type": "Polygon", "properties": {"name": "46025"}, "id": "46025"}, {"arcs": [[1977]], "type": "Polygon", "properties": {"name": "15003"}, "id": "15003"}, {"arcs": [[1978, 1979, 1980, 1981, 1982, 1983]], "type": "Polygon", "properties": {"name": "12041"}, "id": "12041"}, {"arcs": [[-739, 1984, 1985, 1986, 1987, 1988, -1836]], "type": "Polygon", "properties": {"name": "18157"}, "id": "18157"}, {"arcs": [[1989, 1990, 1991, 1992]], "type": "Polygon", "properties": {"name": "42109"}, "id": "42109"}, {"arcs": [[-411, 1993, 1994, 1995, -1528]], "type": "Polygon", "properties": {"name": "48277"}, "id": "48277"}, {"arcs": [[-1571, 1996, 1997, 1998, 1999, 2000, 2001, 2002]], "type": "Polygon", "properties": {"name": "12086"}, "id": "12086"}, {"arcs": [[2003, 2004, 2005, 2006, 2007, 2008]], "type": "Polygon", "properties": {"name": "31057"}, "id": "31057"}, {"arcs": [[2009, 2010, 2011, 2012, 2013, 2014]], "type": "Polygon", "properties": {"name": "48289"}, "id": "48289"}, {"arcs": [[2015, 2016, 2017, 2018, 2019, 2020]], "type": "Polygon", "properties": {"name": "08097"}, "id": "08097"}, {"arcs": [[-684, 2021, 2022, 2023, 2024, 2025]], "type": "Polygon", "properties": {"name": "38035"}, "id": "38035"}, {"arcs": [[2026, 2027, 2028, 2029, 2030]], "type": "Polygon", "properties": {"name": "18091"}, "id": "18091"}, {"arcs": [[2031, 2032, 2033, 2034, 2035, 2036]], "type": "Polygon", "properties": {"name": "18057"}, "id": "18057"}, {"arcs": [[2037]], "type": "Polygon", "properties": {"name": "51595"}, "id": "51595"}, {"arcs": [[2038, 2039, 2040, 2041, 2042, 2043]], "type": "Polygon", "properties": {"name": "40081"}, "id": "40081"}, {"arcs": [[-712, -1227, 2044, -1070, 2045, 2046]], "type": "Polygon", "properties": {"name": "20071"}, "id": "20071"}, {"arcs": [[2047, 2048, 2049, 2050, 2051, 2052]], "type": "Polygon", "properties": {"name": "13145"}, "id": "13145"}, {"arcs": [[2053, 2054, 2055, 2056, 2057, 2058]], "type": "Polygon", "properties": {"name": "13251"}, "id": "13251"}, {"arcs": [[2059, 2060, 2061, 2062, 2063, 2064, 2065, 2066]], "type": "Polygon", "properties": {"name": "72127"}, "id": "72127"}, {"arcs": [[2067, 2068, 2069, 2070, 2071]], "type": "Polygon", "properties": {"name": "48433"}, "id": "48433"}, {"arcs": [[2072, 2073, 2074, 2075, 2076, 2077]], "type": "Polygon", "properties": {"name": "39069"}, "id": "39069"}, {"arcs": [[2078, 2079, 2080, 2081, 2082, 2083, 2084, 2085, 2086, 2087]], "type": "Polygon", "properties": {"name": "33009"}, "id": "33009"}, {"arcs": [[-1668, 2088, 2089, 2090, 2091, 2092]], "type": "Polygon", "properties": {"name": "29145"}, "id": "29145"}, {"arcs": [[2093, 2094, 2095, 2096, 2097, 2098]], "type": "Polygon", "properties": {"name": "18129"}, "id": "18129"}, {"arcs": [[2099, 2100, 2101, 2102]], "type": "Polygon", "properties": {"name": "48311"}, "id": "48311"}, {"arcs": [[-1914, 2103, 2104, -1966, 2105]], "type": "Polygon", "properties": {"name": "17035"}, "id": "17035"}, {"arcs": [[2106, 2107, 2108, 2109, 2110, 2111]], "type": "Polygon", "properties": {"name": "13297"}, "id": "13297"}, {"arcs": [[2112, 2113, 2114, 2115, 2116]], "type": "Polygon", "properties": {"name": "27121"}, "id": "27121"}, {"arcs": [[2117, 2118, 2119, 2120, 2121]], "type": "Polygon", "properties": {"name": "51157"}, "id": "51157"}, {"arcs": [[2122, 2123, 2124, 2125, 2126, 2127]], "type": "Polygon", "properties": {"name": "51009"}, "id": "51009"}, {"arcs": [[-1802, 2128, 2129, 2130]], "type": "Polygon", "properties": {"name": "06111"}, "id": "06111"}, {"arcs": [[2131, 2132, 2133, 2134, 2135, 2136]], "type": "Polygon", "properties": {"name": "17033"}, "id": "17033"}, {"arcs": [[2137, 2138, 2139, 2140, 2141, 2142, 2143]], "type": "Polygon", "properties": {"name": "08093"}, "id": "08093"}, {"arcs": [[[-2130, 2144, 2145, 2146, 2147]], [[2148]], [[2149]]], "type": "MultiPolygon", "properties": {"name": "06037"}, "id": "06037"}, {"arcs": [[2150, 2151, 2152, 2153, 2154]], "type": "Polygon", "properties": {"name": "04027"}, "id": "04027"}, {"arcs": [[-485, 2155, 2156, 2157, 2158, -1015, 2159]], "type": "Polygon", "properties": {"name": "13129"}, "id": "13129"}, {"arcs": [[-1050, 2160, -1077, -1483, 2161]], "type": "Polygon", "properties": {"name": "19025"}, "id": "19025"}, {"arcs": [[2162, 2163, 2164, 2165, 2166]], "type": "Polygon", "properties": {"name": "12055"}, "id": "12055"}, {"arcs": [[2167]], "type": "Polygon", "properties": {"name": "51580"}, "id": "51580"}, {"arcs": [[-2079, -2088, 2168, 2169, 2170, 2171]], "type": "Polygon", "properties": {"name": "50017"}, "id": "50017"}, {"arcs": [[2172, 2173, 2174, 2175, 2176, 2177]], "type": "Polygon", "properties": {"name": "20113"}, "id": "20113"}, {"arcs": [[2178, 2179, 2180, 2181]], "type": "Polygon", "properties": {"name": "04021"}, "id": "04021"}, {"arcs": [[-2074, 2182, 2183, 2184, 2185]], "type": "Polygon", "properties": {"name": "39051"}, "id": "39051"}, {"arcs": [[-135, 2186, 2187, 2188, 2189]], "type": "Polygon", "properties": {"name": "08003"}, "id": "08003"}, {"arcs": [[-428, 2190, 2191, 2192, 2193]], "type": "Polygon", "properties": {"name": "12017"}, "id": "12017"}, {"arcs": [[2194]], "type": "Polygon", "properties": {"name": "72049"}, "id": "72049"}, {"arcs": [[2195, 2196, 2197, 2198]], "type": "Polygon", "properties": {"name": "72051"}, "id": "72051"}, {"arcs": [[-409, 2199, 2200, 2201, -1493, 2202]], "type": "Polygon", "properties": {"name": "47041"}, "id": "47041"}, {"arcs": [[-292, -1896, 2203, 2204, 2205]], "type": "Polygon", "properties": {"name": "42031"}, "id": "42031"}, {"arcs": [[2206, 2207, 2208, 2209, 2210]], "type": "Polygon", "properties": {"name": "46097"}, "id": "46097"}, {"arcs": [[2211, 2212, 2213, 2214, 2215, 2216]], "type": "Polygon", "properties": {"name": "46073"}, "id": "46073"}, {"arcs": [[2217, 2218, 2219, 2220, 2221, 2222]], "type": "Polygon", "properties": {"name": "18031"}, "id": "18031"}, {"arcs": [[-656, 2223, -1334, 2224, 2225, 2226, -1006, 2227]], "type": "Polygon", "properties": {"name": "18037"}, "id": "18037"}, {"arcs": [[-1735, 2228, 2229, 2230, 2231, 2232, -1888]], "type": "Polygon", "properties": {"name": "51057"}, "id": "51057"}, {"arcs": [[2233, 2234, 2235, 2236, 2237]], "type": "Polygon", "properties": {"name": "45089"}, "id": "45089"}, {"arcs": [[2238, 2239, 2240, 2241, 2242, 2243, 2244]], "type": "Polygon", "properties": {"name": "36031"}, "id": "36031"}, {"arcs": [[-1878, 2245, 2246, 2247, 2248]], "type": "Polygon", "properties": {"name": "19195"}, "id": "19195"}, {"arcs": [[2249, 2250, 2251, 2252, 2253, 2254]], "type": "Polygon", "properties": {"name": "40063"}, "id": "40063"}, {"arcs": [[-1323, 2255, 2256, 2257, 2258, 2259]], "type": "Polygon", "properties": {"name": "51027"}, "id": "51027"}, {"arcs": [[2260, 2261, 2262, 2263, 2264, 2265], [-2168]], "type": "Polygon", "properties": {"name": "51005"}, "id": "51005"}, {"arcs": [[2266, 2267, 2268, 2269, 2270, 2271]], "type": "Polygon", "properties": {"name": "28087"}, "id": "28087"}, {"arcs": [[2272, 2273, 2274, 2275, 2276]], "type": "Polygon", "properties": {"name": "18143"}, "id": "18143"}, {"arcs": [[-1074, 2277, 2278, 2279, 2280, -2046]], "type": "Polygon", "properties": {"name": "08099"}, "id": "08099"}, {"arcs": [[-1313, 2281, 2282, 2283, 2284]], "type": "Polygon", "properties": {"name": "48435"}, "id": "48435"}, {"arcs": [[2285, 2286, 2287, 2288, 2289]], "type": "Polygon", "properties": {"name": "72121"}, "id": "72121"}, {"arcs": [[-273, 2290, 2291, 2292, 2293, 2294]], "type": "Polygon", "properties": {"name": "40101"}, "id": "40101"}, {"arcs": [[-1665, 2295, 2296, 2297, 2298, 2299]], "type": "Polygon", "properties": {"name": "29043"}, "id": "29043"}, {"arcs": [[2300, 2301, 2302, 2303, 2304, 2305, 2306]], "type": "Polygon", "properties": {"name": "72039"}, "id": "72039"}, {"arcs": [[2307, 2308, 2309, 2310, 2311]], "type": "Polygon", "properties": {"name": "28073"}, "id": "28073"}, {"arcs": [[-611, 2312, 2313, 2314, -2219, 2315, 2316]], "type": "Polygon", "properties": {"name": "18137"}, "id": "18137"}, {"arcs": [[2317, 2318, 2319, 2320, 2321]], "type": "Polygon", "properties": {"name": "38057"}, "id": "38057"}, {"arcs": [[-1104, 2322, 2323, 2324, 2325]], "type": "Polygon", "properties": {"name": "13147"}, "id": "13147"}, {"arcs": [[-892, 2326, 2327, 2328, 2329]], "type": "Polygon", "properties": {"name": "22049"}, "id": "22049"}, {"arcs": [[2330, 2331, 2332, 2333]], "type": "Polygon", "properties": {"name": "51133"}, "id": "51133"}, {"arcs": [[2334, 2335, 2336, 2337, 2338]], "type": "Polygon", "properties": {"name": "48157"}, "id": "48157"}, {"arcs": [[2339, 2340, 2341, 2342, 2343, 2344]], "type": "Polygon", "properties": {"name": "55047"}, "id": "55047"}, {"arcs": [[-1022, 2345, 2346, 2347, 2348, 2349]], "type": "Polygon", "properties": {"name": "30073"}, "id": "30073"}, {"arcs": [[2350, 2351, 2352, 2353, 2354, 2355, 2356]], "type": "Polygon", "properties": {"name": "55127"}, "id": "55127"}, {"arcs": [[-494, 2357, 2358, 2359, 2360]], "type": "Polygon", "properties": {"name": "32021"}, "id": "32021"}, {"arcs": [[2361, 2362, 2363, 2364, 2365, 2366, 2367]], "type": "Polygon", "properties": {"name": "17057"}, "id": "17057"}, {"arcs": [[2368, 2369]], "type": "Polygon", "properties": {"name": "36103"}, "id": "36103"}, {"arcs": [[-586, 2370, 2371, 2372, 2373]], "type": "Polygon", "properties": {"name": "18161"}, "id": "18161"}, {"arcs": [[-2090, 2374, 2375, 2376, 2377]], "type": "Polygon", "properties": {"name": "29119"}, "id": "29119"}, {"arcs": [[-1558, 2378, 2379, 2380, 2381]], "type": "Polygon", "properties": {"name": "31157"}, "id": "31157"}, {"arcs": [[2382, 2383, 2384, 2385, 2386, 2387]], "type": "Polygon", "properties": {"name": "35047"}, "id": "35047"}, {"arcs": [[-2053, 2388, 2389, 2390, 2391, 2392]], "type": "Polygon", "properties": {"name": "01081"}, "id": "01081"}, {"arcs": [[2393, 2394, 2395, 2396, 2397, 2398]], "type": "Polygon", "properties": {"name": "48367"}, "id": "48367"}, {"arcs": [[-1768, 2399, 2400, 2401, 2402, 2403]], "type": "Polygon", "properties": {"name": "38021"}, "id": "38021"}, {"arcs": [[2404, 2405, 2406, 2407, 2408, 2409]], "type": "Polygon", "properties": {"name": "38003"}, "id": "38003"}, {"arcs": [[-916, 2410, 2411, 2412, 2413, 2414]], "type": "Polygon", "properties": {"name": "27143"}, "id": "27143"}, {"arcs": [[-333, 2415, 2416, 2417, 2418, 2419, 2420]], "type": "Polygon", "properties": {"name": "13293"}, "id": "13293"}, {"arcs": [[2421, 2422, 2423, 2424, 2425, 2426, 2427]], "type": "Polygon", "properties": {"name": "06097"}, "id": "06097"}, {"arcs": [[2428, 2429, 2430]], "type": "Polygon", "properties": {"name": "26033"}, "id": "26033"}, {"arcs": [[-206, 2431, 2432, -377, -1332, 2433, 2434]], "type": "Polygon", "properties": {"name": "16019"}, "id": "16019"}, {"arcs": [[-2108, 2435, 2436, 2437]], "type": "Polygon", "properties": {"name": "13013"}, "id": "13013"}, {"arcs": [[2438, 2439, 2440, 2441]], "type": "Polygon", "properties": {"name": "13183"}, "id": "13183"}, {"arcs": [[2442, 2443, 2444, 2445, 2446]], "type": "Polygon", "properties": {"name": "48271"}, "id": "48271"}, {"arcs": [[-2091, -2378, 2447, 2448, 2449]], "type": "Polygon", "properties": {"name": "40115"}, "id": "40115"}, {"arcs": [[-1893, 2450, 2451, 2452, 2453, 2454, 2455, 2456]], "type": "Polygon", "properties": {"name": "42033"}, "id": "42033"}, {"arcs": [[2457, 2458, 2459, 2460, 2461]], "type": "Polygon", "properties": {"name": "26037"}, "id": "26037"}, {"arcs": [[2462, 2463, 2464, 2465]], "type": "Polygon", "properties": {"name": "72133"}, "id": "72133"}, {"arcs": [[-907, 2466, 2467, 2468, 2469, 2470, 2471]], "type": "Polygon", "properties": {"name": "17135"}, "id": "17135"}, {"arcs": [[2472, 2473, 2474, 2475, 2476, 2477]], "type": "Polygon", "properties": {"name": "28003"}, "id": "28003"}, {"arcs": [[-667, 2478, 2479, 2480, 2481, 2482, 2483]], "type": "Polygon", "properties": {"name": "28071"}, "id": "28071"}, {"arcs": [[2484, 2485, 2486, 2487]], "type": "Polygon", "properties": {"name": "22043"}, "id": "22043"}, {"arcs": [[2488, 2489, 2490, 2491, 2492, 2493]], "type": "Polygon", "properties": {"name": "29005"}, "id": "29005"}, {"arcs": [[-1430, 2494, 2495, 2496, 2497, 2498, 2499]], "type": "Polygon", "properties": {"name": "17115"}, "id": "17115"}, {"arcs": [[2500, 2501, 2502, 2503, 2504]], "type": "Polygon", "properties": {"name": "26149"}, "id": "26149"}, {"arcs": [[2505, 2506, 2507, 2508, 2509, 2510]], "type": "Polygon", "properties": {"name": "17055"}, "id": "17055"}, {"arcs": [[-1182, 2511, 2512, 2513, 2514, 2515, 2516]], "type": "Polygon", "properties": {"name": "30033"}, "id": "30033"}, {"arcs": [[-500, 2517, 2518, 2519, 2520, 2521]], "type": "Polygon", "properties": {"name": "31001"}, "id": "31001"}, {"arcs": [[-817, 2522, -1872, 2523, 2524, 2525]], "type": "Polygon", "properties": {"name": "27109"}, "id": "27109"}, {"arcs": [[2526, 2527, 2528, 2529, 2530, 2531]], "type": "Polygon", "properties": {"name": "34039"}, "id": "34039"}, {"arcs": [[-2063, 2532, 2533, 2534]], "type": "Polygon", "properties": {"name": "72139"}, "id": "72139"}, {"arcs": [[2535, 2536, 2537, 2538, 2539, 2540]], "type": "Polygon", "properties": {"name": "01097"}, "id": "01097"}, {"arcs": [[-44, 2541, -509, 2542, -2209, 2543]], "type": "Polygon", "properties": {"name": "46087"}, "id": "46087"}, {"arcs": [[2544, 2545, 2546, 2547, 2548]], "type": "Polygon", "properties": {"name": "01057"}, "id": "01057"}, {"arcs": [[-2048, -2393, 2549, 2550, 2551]], "type": "Polygon", "properties": {"name": "01017"}, "id": "01017"}, {"arcs": [[2552, 2553, 2554, 2555, 2556, 2557, 2558]], "type": "Polygon", "properties": {"name": "37131"}, "id": "37131"}, {"arcs": [[2559, 2560, 2561, 2562, 2563, 2564]], "type": "Polygon", "properties": {"name": "08081"}, "id": "08081"}, {"arcs": [[-1345, 2565, 2566, 2567, 2568]], "type": "Polygon", "properties": {"name": "21087"}, "id": "21087"}, {"arcs": [[-591, 2569, -2316, -2218, 2570, 2571, -2371]], "type": "Polygon", "properties": {"name": "18047"}, "id": "18047"}, {"arcs": [[2572, 2573, 2574, 2575, 2576, 2577, 2578]], "type": "Polygon", "properties": {"name": "37013"}, "id": "37013"}, {"arcs": [[-2304, 2579, 2580, 2581, 2582]], "type": "Polygon", "properties": {"name": "72073"}, "id": "72073"}, {"arcs": [[2583, 2584, 2585, 2586, 2587, 2588]], "type": "Polygon", "properties": {"name": "38015"}, "id": "38015"}, {"arcs": [[-540, 2589, 2590, 2591, 2592]], "type": "Polygon", "properties": {"name": "37159"}, "id": "37159"}, {"arcs": [[-528, 2593, 2594, 2595, 2596, 2597, 2598, 2599, 2600]], "type": "Polygon", "properties": {"name": "26071"}, "id": "26071"}, {"arcs": [[-2115, 2601, 2602, 2603, 2604, 2605]], "type": "Polygon", "properties": {"name": "27067"}, "id": "27067"}, {"arcs": [[-1953, 2606, 2607, 2608, 2609, 2610]], "type": "Polygon", "properties": {"name": "21237"}, "id": "21237"}, {"arcs": [[-384, 2611, 2612, 2613, 2614, 2615, 2616, 2617]], "type": "Polygon", "properties": {"name": "48149"}, "id": "48149"}, {"arcs": [[2618, 2619, 2620, 2621, 2622]], "type": "Polygon", "properties": {"name": "46081"}, "id": "46081"}, {"arcs": [[2623, 2624, 2625, 2626]], "type": "Polygon", "properties": {"name": "23029"}, "id": "23029"}, {"arcs": [[-78, 2627, 2628, 2629, 2630, 2631]], "type": "Polygon", "properties": {"name": "48045"}, "id": "48045"}, {"arcs": [[-2599, 2632, 2633, 2634]], "type": "Polygon", "properties": {"name": "26131"}, "id": "26131"}, {"arcs": [[2635, 2636, 2637, 2638, 2639]], "type": "Polygon", "properties": {"name": "28015"}, "id": "28015"}, {"arcs": [[2640, 2641, 2642, 2643]], "type": "Polygon", "properties": {"name": "41003"}, "id": "41003"}, {"arcs": [[-40, 2644, 2645, -1596, 2646]], "type": "Polygon", "properties": {"name": "27133"}, "id": "27133"}, {"arcs": [[-1894, -2457, 2647, 2648, 2649]], "type": "Polygon", "properties": {"name": "42063"}, "id": "42063"}, {"arcs": [[-267, 2650, -2329, 2651, 2652]], "type": "Polygon", "properties": {"name": "22061"}, "id": "22061"}, {"arcs": [[-635, 2653, 2654, 2655]], "type": "Polygon", "properties": {"name": "42099"}, "id": "42099"}, {"arcs": [[2656, 2657, 2658, 2659, 2660]], "type": "Polygon", "properties": {"name": "46137"}, "id": "46137"}, {"arcs": [[2661, 2662, 2663, 2664, 2665, 2666]], "type": "Polygon", "properties": {"name": "48203"}, "id": "48203"}, {"arcs": [[-529, -2601, 2667, 2668]], "type": "Polygon", "properties": {"name": "26013"}, "id": "26013"}, {"arcs": [[2669, 2670, 2671, 2672, 2673, 2674]], "type": "Polygon", "properties": {"name": "40131"}, "id": "40131"}, {"arcs": [[2675, 2676, 2677, 2678, 2679, 2680, 2681]], "type": "Polygon", "properties": {"name": "29019"}, "id": "29019"}, {"arcs": [[-1552, 2682, 2683, 2684, 2685, 2686, 2687]], "type": "Polygon", "properties": {"name": "72097"}, "id": "72097"}, {"arcs": [[-478, 2688, 2689, 2690, 2691, 2692, 2693]], "type": "Polygon", "properties": {"name": "40015"}, "id": "40015"}, {"arcs": [[-2141, 2694, 2695, 2696, 2697, 2698, 2699, 2700, 2701]], "type": "Polygon", "properties": {"name": "08059"}, "id": "08059"}, {"arcs": [[-643, 2702, 2703, 2704, 2705, 2706]], "type": "Polygon", "properties": {"name": "54011"}, "id": "54011"}, {"arcs": [[2707, 2708, 2709, 2710, 2711, 2712]], "type": "Polygon", "properties": {"name": "48383"}, "id": "48383"}, {"arcs": [[-101, 2713, 2714, 2715, 2716, 2717]], "type": "Polygon", "properties": {"name": "05141"}, "id": "05141"}, {"arcs": [[-2139, 2718, 2719, 2720, 2721]], "type": "Polygon", "properties": {"name": "08117"}, "id": "08117"}, {"arcs": [[2722, 2723, 2724, 2725, 2726, 2727]], "type": "Polygon", "properties": {"name": "20035"}, "id": "20035"}, {"arcs": [[-1268, 2728, 2729, 2730, 2731]], "type": "Polygon", "properties": {"name": "05071"}, "id": "05071"}, {"arcs": [[-943, 2732, 2733, -1770, 2734, -2243, 2735]], "type": "Polygon", "properties": {"name": "36041"}, "id": "36041"}, {"arcs": [[-166, 2736, 2737, -2264, 2738, 2739]], "type": "Polygon", "properties": {"name": "51045"}, "id": "51045"}, {"arcs": [[2740, 2741, 2742, 2743, 2744, 2745]], "type": "Polygon", "properties": {"name": "48083"}, "id": "48083"}, {"arcs": [[-1374, 2746, 2747, 2748, 2749, 2750, 2751, 2752, 2753, 2754]], "type": "Polygon", "properties": {"name": "02290"}, "id": "02290"}, {"arcs": [[2755, 2756, 2757, 2758, 2759]], "type": "Polygon", "properties": {"name": "04017"}, "id": "04017"}, {"arcs": [[2760, 2761, 2762, 2763, 2764, 2765, 2766]], "type": "Polygon", "properties": {"name": "28085"}, "id": "28085"}, {"arcs": [[2767, 2768, 2769, 2770, 2771]], "type": "Polygon", "properties": {"name": "48357"}, "id": "48357"}, {"arcs": [[2772, 2773, 2774, 2775, 2776]], "type": "Polygon", "properties": {"name": "48103"}, "id": "48103"}, {"arcs": [[2777, 2778, 2779, 2780, 2781, 2782]], "type": "Polygon", "properties": {"name": "56003"}, "id": "56003"}, {"arcs": [[2783, 2784, 2785, 2786, 2787, 2788]], "type": "Polygon", "properties": {"name": "47081"}, "id": "47081"}, {"arcs": [[2789, 2790, 2791, 2792, 2793, 2794, 2795, 2796]], "type": "Polygon", "properties": {"name": "28143"}, "id": "28143"}, {"arcs": [[-777, 2797, 2798, 2799, 2800, 2801, -1823]], "type": "Polygon", "properties": {"name": "29081"}, "id": "29081"}, {"arcs": [[-31, 2802, 2803, 2804, 2805]], "type": "Polygon", "properties": {"name": "72029"}, "id": "72029"}, {"arcs": [[-2221, 2806, 2807, 2808, 2809, 2810]], "type": "Polygon", "properties": {"name": "18005"}, "id": "18005"}, {"arcs": [[-844, 2811, 2812, 2813, -1299, 2814]], "type": "Polygon", "properties": {"name": "13223"}, "id": "13223"}, {"arcs": [[2815, 2816, 2817, 2818, 2819, 2820]], "type": "Polygon", "properties": {"name": "39015"}, "id": "39015"}, {"arcs": [[-405, -2203, -1492, 2821, 2822, 2823, 2824]], "type": "Polygon", "properties": {"name": "47141"}, "id": "47141"}, {"arcs": [[-1460, 2825, 2826, 2827, 2828]], "type": "Polygon", "properties": {"name": "38101"}, "id": "38101"}, {"arcs": [[-352, 2829, 2830, 2831, 2832, 2833, 2834, 2835, 2836, 2837]], "type": "Polygon", "properties": {"name": "25027"}, "id": "25027"}, {"arcs": [[2838, 2839, 2840, 2841, 2842]], "type": "Polygon", "properties": {"name": "39091"}, "id": "39091"}, {"arcs": [[2843, 2844, 2845, 2846, 2847]], "type": "Polygon", "properties": {"name": "06031"}, "id": "06031"}, {"arcs": [[2848, 2849, 2850, 2851]], "type": "Polygon", "properties": {"name": "06073"}, "id": "06073"}, {"arcs": [[-2464, 2852, 2853, 2854, 2855, 2856]], "type": "Polygon", "properties": {"name": "72123"}, "id": "72123"}, {"arcs": [[-2417, 2857, 2858, 2859, 2860]], "type": "Polygon", "properties": {"name": "13079"}, "id": "13079"}, {"arcs": [[-33, 2861, 2862, 2863, 2864]], "type": "Polygon", "properties": {"name": "72103"}, "id": "72103"}, {"arcs": [[-128, 2865, 2866, 2867, 2868, -882]], "type": "Polygon", "properties": {"name": "29037"}, "id": "29037"}, {"arcs": [[-1204, 2869, 2870, 2871, 2872, 2873, 2874]], "type": "Polygon", "properties": {"name": "36027"}, "id": "36027"}, {"arcs": [[-954, 2875, 2876, 2877, -2615, 2878, 2879]], "type": "Polygon", "properties": {"name": "48477"}, "id": "48477"}, {"arcs": [[-924, 2880, 2881, 2882, 2883, 2884, 2885]], "type": "Polygon", "properties": {"name": "08101"}, "id": "08101"}, {"arcs": [[-2298, 2886, 2887, 2888, 2889, 2890, 2891]], "type": "Polygon", "properties": {"name": "29067"}, "id": "29067"}, {"arcs": [[2892, 2893, 2894, 2895, 2896]], "type": "Polygon", "properties": {"name": "38009"}, "id": "38009"}, {"arcs": [[-1246, 2897, 2898, 2899, 2900, 2901]], "type": "Polygon", "properties": {"name": "37051"}, "id": "37051"}, {"arcs": [[-605, 2902, 2903]], "type": "Polygon", "properties": {"name": "56017"}, "id": "56017"}, {"arcs": [[-395, 2904, 2905, 2906]], "type": "Polygon", "properties": {"name": "26001"}, "id": "26001"}, {"arcs": [[-1787, 2907, 2908, 2909, 2910, 2911, 2912, 2913]], "type": "Polygon", "properties": {"name": "06061"}, "id": "06061"}, {"arcs": [[-102, -2718, 2914, 2915, 2916, 2917, 2918]], "type": "Polygon", "properties": {"name": "05129"}, "id": "05129"}, {"arcs": [[2919, 2920, 2921, 2922, 2923]], "type": "Polygon", "properties": {"name": "48305"}, "id": "48305"}, {"arcs": [[2924, 2925, 2926, 2927, 2928, 2929, 2930]], "type": "Polygon", "properties": {"name": "36077"}, "id": "36077"}, {"arcs": [[2931, 2932, 2933, 2934, 2935]], "type": "Polygon", "properties": {"name": "37153"}, "id": "37153"}, {"arcs": [[-1245, 2936, 2937, -2898]], "type": "Polygon", "properties": {"name": "37093"}, "id": "37093"}, {"arcs": [[-21, 2938, 2939, -2489, 2940, 2941]], "type": "Polygon", "properties": {"name": "31131"}, "id": "31131"}, {"arcs": [[-2452, 2942, 2943, 2944, 2945]], "type": "Polygon", "properties": {"name": "42023"}, "id": "42023"}, {"arcs": [[2946, 2947, 2948, 2949]], "type": "Polygon", "properties": {"name": "45035"}, "id": "45035"}, {"arcs": [[-1875, 2950, 2951, 2952, 2953, 2954]], "type": "Polygon", "properties": {"name": "27161"}, "id": "27161"}, {"arcs": [[-2214, 2955, 2956, 2957, 2958]], "type": "Polygon", "properties": {"name": "46015"}, "id": "46015"}, {"arcs": [[-408, 2959, 2960, -1757, 2961, 2962, -2200]], "type": "Polygon", "properties": {"name": "47177"}, "id": "47177"}, {"arcs": [[-1913, 2963, 2964, 2965, -2132, 2966, -2104]], "type": "Polygon", "properties": {"name": "17023"}, "id": "17023"}, {"arcs": [[-1354, 2967, 2968, 2969, 2970]], "type": "Polygon", "properties": {"name": "21201"}, "id": "21201"}, {"arcs": [[2971, 2972, 2973, 2974, 2975, 2976, 2977]], "type": "Polygon", "properties": {"name": "47095"}, "id": "47095"}, {"arcs": [[-2237, 2978, 2979, -2947, 2980, 2981]], "type": "Polygon", "properties": {"name": "45015"}, "id": "45015"}, {"arcs": [[2982, 2983, 2984, 2985, 2986]], "type": "Polygon", "properties": {"name": "05051"}, "id": "05051"}, {"arcs": [[-1047, 2987, 2988, 2989, 2990, 2991]], "type": "Polygon", "properties": {"name": "20139"}, "id": "20139"}, {"arcs": [[-693, 2992, 2993, 2994, 2995, 2996]], "type": "Polygon", "properties": {"name": "39155"}, "id": "39155"}, {"arcs": [[2997, 2998, 2999, 3000, 3001]], "type": "Polygon", "properties": {"name": "48333"}, "id": "48333"}, {"arcs": [[3002, 3003, 3004, 3005, 3006]], "type": "Polygon", "properties": {"name": "48359"}, "id": "48359"}, {"arcs": [[-113, 3007, 3008, 3009, -2205, 3010, 3011]], "type": "Polygon", "properties": {"name": "42019"}, "id": "42019"}, {"arcs": [[-108, 3012, 3013, 3014, 3015, 3016, 3017, 3018, 3019]], "type": "Polygon", "properties": {"name": "16049"}, "id": "16049"}, {"arcs": [[-2175, 3020, 3021, 3022, 3023, 3024]], "type": "Polygon", "properties": {"name": "20115"}, "id": "20115"}, {"arcs": [[3025, 3026, 3027, 3028, 3029, 3030]], "type": "Polygon", "properties": {"name": "51029"}, "id": "51029"}, {"arcs": [[-2591, 3031, 3032, 3033, 3034]], "type": "Polygon", "properties": {"name": "37025"}, "id": "37025"}, {"arcs": [[-2297, 3035, 3036, 3037, 3038, -2887]], "type": "Polygon", "properties": {"name": "29225"}, "id": "29225"}, {"arcs": [[3039, 3040, 3041, 3042]], "type": "Polygon", "properties": {"name": "49011"}, "id": "49011"}, {"arcs": [[-1592, 3043, 3044, 3045, 3046, -1864]], "type": "Polygon", "properties": {"name": "27033"}, "id": "27033"}, {"arcs": [[-2164, 3047, 3048, 3049, 3050, 3051]], "type": "Polygon", "properties": {"name": "12093"}, "id": "12093"}, {"arcs": [[3052, 3053, 3054, 3055, 3056, 3057]], "type": "Polygon", "properties": {"name": "13291"}, "id": "13291"}, {"arcs": [[3058, 3059, 3060, 3061, 3062, 3063]], "type": "Polygon", "properties": {"name": "19013"}, "id": "19013"}, {"arcs": [[3064, 3065, 3066, 3067, 3068]], "type": "Polygon", "properties": {"name": "48403"}, "id": "48403"}, {"arcs": [[-1683, 3069, 3070, 3071, 3072]], "type": "Polygon", "properties": {"name": "39131"}, "id": "39131"}, {"arcs": [[-1385, -1441, 3073, -2547, 3074, 3075, 3076]], "type": "Polygon", "properties": {"name": "01125"}, "id": "01125"}, {"arcs": [[-201, 3077, 3078, -1722, 3079, 3080]], "type": "Polygon", "properties": {"name": "01131"}, "id": "01131"}, {"arcs": [[-2636, 3081, 3082, 3083, 3084]], "type": "Polygon", "properties": {"name": "28097"}, "id": "28097"}, {"arcs": [[-255, 3085, -2518, -499, 3086]], "type": "Polygon", "properties": {"name": "31099"}, "id": "31099"}, {"arcs": [[-2005, 3087, 3088, 3089, 3090]], "type": "Polygon", "properties": {"name": "31087"}, "id": "31087"}, {"arcs": [[-1830, 3091, 3092, 3093, 3094, 3095, 3096, 3097]], "type": "Polygon", "properties": {"name": "10003"}, "id": "10003"}, {"arcs": [[-1331, 3098, 3099, -2434]], "type": "Polygon", "properties": {"name": "16081"}, "id": "16081"}, {"arcs": [[-1862, 3100, 3101, -1937, 3102, 3103]], "type": "Polygon", "properties": {"name": "17161"}, "id": "17161"}, {"arcs": [[-239, -1737, -1891, 3104, 3105, 3106]], "type": "Polygon", "properties": {"name": "51073"}, "id": "51073"}, {"arcs": [[-725, 3107, 3108, 3109]], "type": "Polygon", "properties": {"name": "05133"}, "id": "05133"}, {"arcs": [[3110, 3111, 3112, 3113, 3114, 3115]], "type": "Polygon", "properties": {"name": "18017"}, "id": "18017"}, {"arcs": [[3116, 3117, 3118, 3119, 3120]], "type": "Polygon", "properties": {"name": "16077"}, "id": "16077"}, {"arcs": [[-1986, 3121, -3115, 3122, 3123]], "type": "Polygon", "properties": {"name": "18015"}, "id": "18015"}, {"arcs": [[-1210, 3124, 3125, 3126, 3127, 3128]], "type": "Polygon", "properties": {"name": "42101"}, "id": "42101"}, {"arcs": [[-606, -2904, 3129, -2782, 3130, 3131]], "type": "Polygon", "properties": {"name": "56043"}, "id": "56043"}, {"arcs": [[3132, 3133, 3134, 3135, 3136, 3137]], "type": "Polygon", "properties": {"name": "37029"}, "id": "37029"}, {"arcs": [[-1930, 3138, 3139, 3140, 3141, 3142]], "type": "Polygon", "properties": {"name": "36109"}, "id": "36109"}, {"arcs": [[-1097, -1662, 3143, 3144, 3145, 3146]], "type": "Polygon", "properties": {"name": "05069"}, "id": "05069"}, {"arcs": [[-1661, 3147, 3148, 3149, -3144]], "type": "Polygon", "properties": {"name": "05079"}, "id": "05079"}, {"arcs": [[-91, 3150, 3151, 3152, 3153, -889, 3154, 3155]], "type": "Polygon", "properties": {"name": "55123"}, "id": "55123"}, {"arcs": [[-930, 3156, -1776, 3157, 3158, 3159, 3160]], "type": "Polygon", "properties": {"name": "29093"}, "id": "29093"}, {"arcs": [[-1531, 3161, 3162, 3163, 3164]], "type": "Polygon", "properties": {"name": "48223"}, "id": "48223"}, {"arcs": [[-947, 3165, 3166, 3167, 3168]], "type": "Polygon", "properties": {"name": "36001"}, "id": "36001"}, {"arcs": [[-1639, 3169, 3170, 3171, -2011, 3172, 3173]], "type": "Polygon", "properties": {"name": "48225"}, "id": "48225"}, {"arcs": [[-976, 3174, 3175, 3176, 3177, 3178]], "type": "Polygon", "properties": {"name": "39111"}, "id": "39111"}, {"arcs": [[-1381, 3179, 3180, 3181, 3182]], "type": "Polygon", "properties": {"name": "20165"}, "id": "20165"}, {"arcs": [[-1988, 3183, 3184, 3185, 3186, 3187, 3188]], "type": "Polygon", "properties": {"name": "18107"}, "id": "18107"}, {"arcs": [[-1073, 3189, 3190, 3191, 3192, -2278]], "type": "Polygon", "properties": {"name": "20187"}, "id": "20187"}, {"arcs": [[-2609, 3193, 3194, 3195, 3196, 3197]], "type": "Polygon", "properties": {"name": "21129"}, "id": "21129"}, {"arcs": [[3198, 3199, 3200, 3201, 3202]], "type": "Polygon", "properties": {"name": "27071"}, "id": "27071"}, {"arcs": [[-1177, 3203, 3204, 3205, 3206, 3207, 3208]], "type": "Polygon", "properties": {"name": "48029"}, "id": "48029"}, {"arcs": [[-2697, 3209, 3210, 3211, 3212, 3213]], "type": "Polygon", "properties": {"name": "08013"}, "id": "08013"}, {"arcs": [[3214, 3215, 3216, 3217, 3218]], "type": "Polygon", "properties": {"name": "47089"}, "id": "47089"}, {"arcs": [[-2671, 3219, 3220, 3221, 3222]], "type": "Polygon", "properties": {"name": "40097"}, "id": "40097"}, {"arcs": [[-1865, -3047, 3223, 3224, 3225]], "type": "Polygon", "properties": {"name": "27165"}, "id": "27165"}, {"arcs": [[-1711, 3226, 3227, -3117, 3228, 3229, 3230, 3231, 3232]], "type": "Polygon", "properties": {"name": "16013"}, "id": "16013"}, {"arcs": [[-262, 3233, 3234, 3235, 3236, 3237, 3238]], "type": "Polygon", "properties": {"name": "22053"}, "id": "22053"}, {"arcs": [[3239, 3240, 3241, 3242, 3243]], "type": "Polygon", "properties": {"name": "46119"}, "id": "46119"}, {"arcs": [[-2700, 3244, 3245]], "type": "Polygon", "properties": {"name": "08031"}, "id": "08031"}, {"arcs": [[-2253, 3246, 3247, 3248, 3249]], "type": "Polygon", "properties": {"name": "40029"}, "id": "40029"}, {"arcs": [[3250, 3251, 3252, 3253, 3254, 3255]], "type": "Polygon", "properties": {"name": "30011"}, "id": "30011"}, {"arcs": [[-2713, 3256, -2774, 3257, 3258]], "type": "Polygon", "properties": {"name": "48461"}, "id": "48461"}, {"arcs": [[-760, 3259, 3260, -1339, 3261, -2094, 3262]], "type": "Polygon", "properties": {"name": "18051"}, "id": "18051"}, {"arcs": [[-1561, 3263, 3264, 3265, 3266]], "type": "Polygon", "properties": {"name": "31105"}, "id": "31105"}, {"arcs": [[3267, 3268, 3269, 3270, 3271]], "type": "Polygon", "properties": {"name": "17093"}, "id": "17093"}, {"arcs": [[-1502, 3272, 3273, 3274]], "type": "Polygon", "properties": {"name": "11001"}, "id": "11001"}, {"arcs": [[3275, 3276, 3277, 3278, 3279, 3280]], "type": "Polygon", "properties": {"name": "08085"}, "id": "08085"}, {"arcs": [[-914, 3281, 3282, 3283, 3284, 3285]], "type": "Polygon", "properties": {"name": "27171"}, "id": "27171"}, {"arcs": [[-2353, 3286, 3287, 3288, 3289]], "type": "Polygon", "properties": {"name": "55059"}, "id": "55059"}, {"arcs": [[-2018, 3290, 3291, 3292, -2720, 3293]], "type": "Polygon", "properties": {"name": "08037"}, "id": "08037"}, {"arcs": [[3294, 3295]], "type": "Polygon", "properties": {"name": "06075"}, "id": "06075"}, {"arcs": [[-1292, 3296, 3297, -3279, 3298]], "type": "Polygon", "properties": {"name": "08113"}, "id": "08113"}, {"arcs": [[3299, 3300, 3301, 3302]], "type": "Polygon", "properties": {"name": "02020"}, "id": "02020"}, {"arcs": [[3303, 3304, 3305, 3306, 3307]], "type": "Polygon", "properties": {"name": "12109"}, "id": "12109"}, {"arcs": [[-3084, 3308, 3309, 3310, 3311]], "type": "Polygon", "properties": {"name": "28019"}, "id": "28019"}, {"arcs": [[-555, 3312, -2799, 3313, 3314, 3315]], "type": "Polygon", "properties": {"name": "29079"}, "id": "29079"}, {"arcs": [[-1255, 3316, 3317, 3318, 3319]], "type": "Polygon", "properties": {"name": "26085"}, "id": "26085"}, {"arcs": [[3320, 3321, 3322, 3323]], "type": "Polygon", "properties": {"name": "26139"}, "id": "26139"}, {"arcs": [[-1899, 3324, 3325, 3326, 3327, 3328, 3329]], "type": "Polygon", "properties": {"name": "17031"}, "id": "17031"}, {"arcs": [[-2098, 3330, 3331, 3332, 3333]], "type": "Polygon", "properties": {"name": "17059"}, "id": "17059"}, {"arcs": [[-1651, 3334, 3335, 3336, 3337, 3338]], "type": "Polygon", "properties": {"name": "45047"}, "id": "45047"}, {"arcs": [[-2991, 3339, 3340, 3341, 3342]], "type": "Polygon", "properties": {"name": "20059"}, "id": "20059"}, {"arcs": [[3343, 3344, 3345, 3346, 3347, 3348]], "type": "Polygon", "properties": {"name": "27027"}, "id": "27027"}, {"arcs": [[-1920, 3349, 3350, 3351, 3352, 3353]], "type": "Polygon", "properties": {"name": "47075"}, "id": "47075"}, {"arcs": [[-830, 3354, 3355, 3356, 3357, 3358]], "type": "Polygon", "properties": {"name": "49003"}, "id": "49003"}, {"arcs": [[-663, -1814, 3359, -2476, 3360]], "type": "Polygon", "properties": {"name": "28139"}, "id": "28139"}, {"arcs": [[-969, -3179, 3361, 3362, 3363, -1370]], "type": "Polygon", "properties": {"name": "54051"}, "id": "54051"}, {"arcs": [[-640, 3364, 3365, 3366, 3367, 3368, 3369]], "type": "Polygon", "properties": {"name": "54035"}, "id": "54035"}, {"arcs": [[-1706, -3233, 3370, 3371, 3372, 3373, 3374, 3375]], "type": "Polygon", "properties": {"name": "16039"}, "id": "16039"}, {"arcs": [[-1042, 3376, 3377, 3378, 3379, 3380, 3381]], "type": "Polygon", "properties": {"name": "24005"}, "id": "24005"}, {"arcs": [[-1606, 3382, 3383, 3384, 3385, 3386]], "type": "Polygon", "properties": {"name": "38005"}, "id": "38005"}, {"arcs": [[3387, 3388, 3389, 3390, 3391, 3392]], "type": "Polygon", "properties": {"name": "29163"}, "id": "29163"}, {"arcs": [[-1679, 3393, 3394, -2705, 3395, 3396, 3397]], "type": "Polygon", "properties": {"name": "39087"}, "id": "39087"}, {"arcs": [[3398, 3399, 3400, 3401, 3402]], "type": "Polygon", "properties": {"name": "29201"}, "id": "29201"}, {"arcs": [[-1682, 3403, 3404, -2818, 3405, -3070]], "type": "Polygon", "properties": {"name": "39001"}, "id": "39001"}, {"arcs": [[-1624, 3406, 3407, 3408, 3409, 3410, 3411]], "type": "Polygon", "properties": {"name": "48143"}, "id": "48143"}, {"arcs": [[3412, 3413, 3414, 3415, 3416, 3417, 3418]], "type": "Polygon", "properties": {"name": "13137"}, "id": "13137"}, {"arcs": [[3419, 3420, 3421, 3422, 3423, 3424]], "type": "Polygon", "properties": {"name": "13319"}, "id": "13319"}, {"arcs": [[-971, -1373, 3425, 3426, 3427, 3428]], "type": "Polygon", "properties": {"name": "54061"}, "id": "54061"}, {"arcs": [[3429, 3430, 3431, 3432, 3433, 3434]], "type": "Polygon", "properties": {"name": "39033"}, "id": "39033"}, {"arcs": [[-2166, 3435, 3436, 3437, 3438]], "type": "Polygon", "properties": {"name": "12027"}, "id": "12027"}, {"arcs": [[-534, 3439, 3440, 3441, 3442, 3443, 3444]], "type": "Polygon", "properties": {"name": "09011"}, "id": "09011"}, {"arcs": [[3445, 3446, 3447, 3448, 3449, 3450]], "type": "Polygon", "properties": {"name": "39059"}, "id": "39059"}, {"arcs": [[3451, 3452, 3453, 3454, 3455, 3456]], "type": "Polygon", "properties": {"name": "26015"}, "id": "26015"}, {"arcs": [[-1666, -2300, 3457, -1744, 3458]], "type": "Polygon", "properties": {"name": "29209"}, "id": "29209"}, {"arcs": [[3459, 3460]], "type": "Polygon", "properties": {"name": "51760"}, "id": "51760"}, {"arcs": [[-1498, 3461, 3462, 3463, 3464]], "type": "Polygon", "properties": {"name": "37169"}, "id": "37169"}, {"arcs": [[-779, 3465, -1565, 3466, 3467]], "type": "Polygon", "properties": {"name": "19039"}, "id": "19039"}, {"arcs": [[3468, 3469, 3470, 3471, 3472]], "type": "Polygon", "properties": {"name": "19065"}, "id": "19065"}, {"arcs": [[-2427, 3473]], "type": "Polygon", "properties": {"name": "06041"}, "id": "06041"}, {"arcs": [[-80, 3474, 3475, 3476, 3477]], "type": "Polygon", "properties": {"name": "48381"}, "id": "48381"}, {"arcs": [[-2666, 3478, 3479, 3480, 3481, 3482, 3483]], "type": "Polygon", "properties": {"name": "48401"}, "id": "48401"}, {"arcs": [[-1564, 3484, 3485, 3486, -3467]], "type": "Polygon", "properties": {"name": "19181"}, "id": "19181"}, {"arcs": [[-83, 3487, 3488, 3489, -790, -1790, 3490]], "type": "Polygon", "properties": {"name": "39161"}, "id": "39161"}, {"arcs": [[-1108, 3491, -2165, -3052]], "type": "Polygon", "properties": {"name": "12043"}, "id": "12043"}, {"arcs": [[-2050, 3492, 3493, 3494, 3495, -2420, 3496]], "type": "Polygon", "properties": {"name": "13199"}, "id": "13199"}, {"arcs": [[-2188, 3497, 3498, 3499, 3500, 3501]], "type": "Polygon", "properties": {"name": "08023"}, "id": "08023"}, {"arcs": [[-1141, 3502, 3503, 3504, -1701]], "type": "Polygon", "properties": {"name": "48099"}, "id": "48099"}, {"arcs": [[-1567, 3505, 3506, 3507, 3508]], "type": "Polygon", "properties": {"name": "19001"}, "id": "19001"}, {"arcs": [[3509, 3510, 3511, 3512, 3513]], "type": "Polygon", "properties": {"name": "13053"}, "id": "13053"}, {"arcs": [[3514, 3515, 3516, 3517]], "type": "Polygon", "properties": {"name": "06043"}, "id": "06043"}, {"arcs": [[-2682, 3518, 3519, 3520, 3521]], "type": "Polygon", "properties": {"name": "29089"}, "id": "29089"}, {"arcs": [[-719, 3522, 3523, 3524, 3525, 3526]], "type": "Polygon", "properties": {"name": "41047"}, "id": "41047"}, {"arcs": [[3527, 3528, 3529, 3530]], "type": "Polygon", "properties": {"name": "55079"}, "id": "55079"}, {"arcs": [[-2412, 3531, 3532, 3533, 3534, 3535]], "type": "Polygon", "properties": {"name": "27139"}, "id": "27139"}, {"arcs": [[-346, 3536, 3537, 3538, 3539, 3540]], "type": "Polygon", "properties": {"name": "39129"}, "id": "39129"}, {"arcs": [[3541, 3542, 3543, 3544]], "type": "Polygon", "properties": {"name": "51145"}, "id": "51145"}, {"arcs": [[-2698, -3214, 3545, 3546]], "type": "Polygon", "properties": {"name": "08014"}, "id": "08014"}, {"arcs": [[3547, 3548, 3549, 3550, 3551]], "type": "Polygon", "properties": {"name": "47099"}, "id": "47099"}, {"arcs": [[3552, 3553, 3554, 3555, 3556]], "type": "Polygon", "properties": {"name": "26009"}, "id": "26009"}, {"arcs": [[-1243, 3557, 3558, 3559, 3560, -2935, 3561]], "type": "Polygon", "properties": {"name": "45069"}, "id": "45069"}, {"arcs": [[-863, 3562, 3563, 3564, 3565]], "type": "Polygon", "properties": {"name": "16009"}, "id": "16009"}, {"arcs": [[-1672, 3566, 3567, 3568, 3569]], "type": "Polygon", "properties": {"name": "17103"}, "id": "17103"}, {"arcs": [[-2494, 3570, 3571, 3572, 3573, -2941]], "type": "Polygon", "properties": {"name": "31127"}, "id": "31127"}, {"arcs": [[3574, 3575, 3576, 3577]], "type": "Polygon", "properties": {"name": "37031"}, "id": "37031"}, {"arcs": [[-1309, 3578, 3579, 3580, 3581, 3582]], "type": "Polygon", "properties": {"name": "20149"}, "id": "20149"}, {"arcs": [[3583, 3584, 3585, 3586, 3587, 3588, 3589]], "type": "Polygon", "properties": {"name": "26075"}, "id": "26075"}, {"arcs": [[-3205, 3590, 3591, 3592, 3593]], "type": "Polygon", "properties": {"name": "48091"}, "id": "48091"}, {"arcs": [[3594]], "type": "Polygon", "properties": {"name": "25019"}, "id": "25019"}, {"arcs": [[3595, 3596, 3597, 3598]], "type": "Polygon", "properties": {"name": "45009"}, "id": "45009"}, {"arcs": [[[-219, 3599, 3600, 3601]], [[3602, -579, 3603]], [[-581, 3604, 3605, 3606]]], "type": "MultiPolygon", "properties": {"name": "48007"}, "id": "48007"}, {"arcs": [[-1413, 3607, 3608, 3609, 3610, 3611, 3612]], "type": "Polygon", "properties": {"name": "13019"}, "id": "13019"}, {"arcs": [[-1838, 3613, 3614, 3615, 3616, 3617]], "type": "Polygon", "properties": {"name": "18165"}, "id": "18165"}, {"arcs": [[-457, 3618, 3619, 3620, 3621]], "type": "Polygon", "properties": {"name": "26143"}, "id": "26143"}, {"arcs": [[3622, 3623, 3624, 3625]], "type": "Polygon", "properties": {"name": "37005"}, "id": "37005"}, {"arcs": [[-50, 3626, 3627, 3628, 3629]], "type": "Polygon", "properties": {"name": "06035"}, "id": "06035"}, {"arcs": [[3630, 3631]], "type": "Polygon", "properties": {"name": "51610"}, "id": "51610"}, {"arcs": [[-3438, 3632, 3633, 3634, 3635]], "type": "Polygon", "properties": {"name": "12081"}, "id": "12081"}, {"arcs": [[-687, 3636, 3637, 3638, -3450, 3639]], "type": "Polygon", "properties": {"name": "39119"}, "id": "39119"}, {"arcs": [[-131, 3640, -2020, 3641, -2144, 3642]], "type": "Polygon", "properties": {"name": "08015"}, "id": "08015"}, {"arcs": [[-2883, 3643, 3644, 3645]], "type": "Polygon", "properties": {"name": "08025"}, "id": "08025"}, {"arcs": [[-132, -3643, -2143, 3646, 3647, -2881, -923]], "type": "Polygon", "properties": {"name": "08043"}, "id": "08043"}, {"arcs": [[-2311, 3648, 3649, 3650, 3651, 3652, 3653]], "type": "Polygon", "properties": {"name": "28109"}, "id": "28109"}, {"arcs": [[3654, 3655, 3656, 3657, 3658, 3659]], "type": "Polygon", "properties": {"name": "28111"}, "id": "28111"}, {"arcs": [[3660, 3661, 3662, 3663, 3664, 3665, 3666, 3667, 3668]], "type": "Polygon", "properties": {"name": "31041"}, "id": "31041"}, {"arcs": [[3669, 3670, 3671, 3672]], "type": "Polygon", "properties": {"name": "12013"}, "id": "12013"}, {"arcs": [[3673, 3674, 3675, 3676, 3677]], "type": "Polygon", "properties": {"name": "21117"}, "id": "21117"}, {"arcs": [[-1713, 3678, -3469, 3679, 3680]], "type": "Polygon", "properties": {"name": "19037"}, "id": "19037"}, {"arcs": [[-3271, 3681, -3569, 3682, 3683, 3684, 3685]], "type": "Polygon", "properties": {"name": "17037"}, "id": "17037"}, {"arcs": [[-1450, 3686, 3687, 3688]], "type": "Polygon", "properties": {"name": "19081"}, "id": "19081"}, {"arcs": [[-2321, 3689, 3690, 3691, 3692, 3693, 3694]], "type": "Polygon", "properties": {"name": "38089"}, "id": "38089"}, {"arcs": [[-1196, -1229, 3695, -2430, 3696]], "type": "Polygon", "properties": {"name": "26095"}, "id": "26095"}, {"arcs": [[-957, 3697, 3698, 3699, 3700, 3701, 3702]], "type": "Polygon", "properties": {"name": "40019"}, "id": "40019"}, {"arcs": [[-3138, 3703, 3704, 3705]], "type": "Polygon", "properties": {"name": "37139"}, "id": "37139"}, {"arcs": [[-3501, 3706, 3707, 3708, 3709]], "type": "Polygon", "properties": {"name": "35055"}, "id": "35055"}, {"arcs": [[-1622, 3710, 3711, 3712, 3713, 3714]], "type": "Polygon", "properties": {"name": "28011"}, "id": "28011"}, {"arcs": [[-493, 3715, 3716, 3717, 3718, -869, 3719, 3720, -2358]], "type": "Polygon", "properties": {"name": "32023"}, "id": "32023"}, {"arcs": [[3721, 3722, 3723, 3724, 3725, 3726, 3727]], "type": "Polygon", "properties": {"name": "47073"}, "id": "47073"}, {"arcs": [[3728, 3729, 3730, 3731]], "type": "Polygon", "properties": {"name": "38011"}, "id": "38011"}, {"arcs": [[-963, 3732, 3733, 3734, 3735]], "type": "Polygon", "properties": {"name": "42057"}, "id": "42057"}, {"arcs": [[3736, 3737, 3738, 3739, 3740]], "type": "Polygon", "properties": {"name": "22055"}, "id": "22055"}, {"arcs": [[-235, 3741, 3742, -2394, 3743, 3744, 3745]], "type": "Polygon", "properties": {"name": "48237"}, "id": "48237"}, {"arcs": [[-1676, 3746, 3747, 3748, 3749]], "type": "Polygon", "properties": {"name": "17175"}, "id": "17175"}, {"arcs": [[3750, 3751, 3752, 3753]], "type": "Polygon", "properties": {"name": "40055"}, "id": "40055"}, {"arcs": [[3754, 3755, 3756, 3757, 3758]], "type": "Polygon", "properties": {"name": "48211"}, "id": "48211"}, {"arcs": [[-107, 3759, 3760, 3761, 3762, 3763, -3013]], "type": "Polygon", "properties": {"name": "16069"}, "id": "16069"}, {"arcs": [[3764, 3765, 3766, 3767, 3768, 3769]], "type": "Polygon", "properties": {"name": "46129"}, "id": "46129"}, {"arcs": [[-2424, 3770, 3771, 3772]], "type": "Polygon", "properties": {"name": "06055"}, "id": "06055"}, {"arcs": [[-232, 3773, 3774, 3775, 3776, 3777]], "type": "Polygon", "properties": {"name": "40033"}, "id": "40033"}, {"arcs": [[-3160, 3778, 3779, 3780, 3781]], "type": "Polygon", "properties": {"name": "29221"}, "id": "29221"}, {"arcs": [[-1165, 3782, 3783, -3140, 3784, 3785, 3786]], "type": "Polygon", "properties": {"name": "36011"}, "id": "36011"}, {"arcs": [[-1628, 3787, 3788, 3789, 3790, 3791]], "type": "Polygon", "properties": {"name": "48417"}, "id": "48417"}, {"arcs": [[3792, 3793, 3794, 3795, 3796]], "type": "Polygon", "properties": {"name": "48407"}, "id": "48407"}, {"arcs": [[3797, 3798, 3799, 3800, 3801, 3802]], "type": "Polygon", "properties": {"name": "19061"}, "id": "19061"}, {"arcs": [[-1216, 3803, -3545, 3804, 3805, 3806]], "type": "Polygon", "properties": {"name": "51075"}, "id": "51075"}, {"arcs": [[-1224, 3807, 3808, 3809, 3810, 3811]], "type": "Polygon", "properties": {"name": "20181"}, "id": "20181"}, {"arcs": [[-3431, 3812, 3813, 3814, 3815]], "type": "Polygon", "properties": {"name": "39139"}, "id": "39139"}, {"arcs": [[-505, 3816, -912, 3817, 3818, 3819]], "type": "Polygon", "properties": {"name": "17001"}, "id": "17001"}, {"arcs": [[-2840, 3820, 3821, 3822, 3823, 3824]], "type": "Polygon", "properties": {"name": "39021"}, "id": "39021"}, {"arcs": [[-2086, 3825, 3826, 3827, 3828, 3829]], "type": "Polygon", "properties": {"name": "33019"}, "id": "33019"}, {"arcs": [[-742, 3830, 3831, 3832, -1099]], "type": "Polygon", "properties": {"name": "17075"}, "id": "17075"}, {"arcs": [[3833, 3834, 3835, 3836, 3837]], "type": "Polygon", "properties": {"name": "19157"}, "id": "19157"}, {"arcs": [[3838, 3839, 3840, 3841, 3842]], "type": "Polygon", "properties": {"name": "39169"}, "id": "39169"}, {"arcs": [[-601, 3843, 3844, 3845]], "type": "Polygon", "properties": {"name": "13113"}, "id": "13113"}, {"arcs": [[-1113, 3846, 3847, 3848, 3849, 3850, 3851]], "type": "Polygon", "properties": {"name": "13141"}, "id": "13141"}, {"arcs": [[-426, 3852, 3853, -3591, -3204, -1176]], "type": "Polygon", "properties": {"name": "48259"}, "id": "48259"}, {"arcs": [[-1202, 3854, 3855, -3167, 3856]], "type": "Polygon", "properties": {"name": "36039"}, "id": "36039"}, {"arcs": [[3857, 3858, 3859, 3860, 3861, 3862]], "type": "Polygon", "properties": {"name": "51137"}, "id": "51137"}, {"arcs": [[-726, -3110, 3863, 3864, 3865, 3866, 3867, 3868]], "type": "Polygon", "properties": {"name": "40089"}, "id": "40089"}, {"arcs": [[-1412, 3869, 3870, 3871, 3872, -3608]], "type": "Polygon", "properties": {"name": "13277"}, "id": "13277"}, {"arcs": [[-20, 3873, 3874, 3875, 3876, -2939]], "type": "Polygon", "properties": {"name": "31025"}, "id": "31025"}, {"arcs": [[-1975, 3877, 3878, 3879, -2207, 3880, 3881]], "type": "Polygon", "properties": {"name": "46077"}, "id": "46077"}, {"arcs": [[3882, 3883, 3884, 3885, 3886, 3887, 3888, 3889]], "type": "Polygon", "properties": {"name": "56009"}, "id": "56009"}, {"arcs": [[-1771, -2734, 3890, 3891, -2927, 3892, 3893]], "type": "Polygon", "properties": {"name": "36043"}, "id": "36043"}, {"arcs": [[3894, 3895, 3896, 3897, 3898]], "type": "Polygon", "properties": {"name": "38047"}, "id": "38047"}, {"arcs": [[-2598, 3899, 3900, 3901, -2633]], "type": "Polygon", "properties": {"name": "26053"}, "id": "26053"}, {"arcs": [[-1762, 3902, 3903, -3345, 3904, 3905, 3906]], "type": "Polygon", "properties": {"name": "27005"}, "id": "27005"}, {"arcs": [[-280, 3907, 3908, 3909, 3910, 3911, 3912]], "type": "Polygon", "properties": {"name": "01095"}, "id": "01095"}, {"arcs": [[-1033, 3913, 3914, 3915, 3916]], "type": "Polygon", "properties": {"name": "47173"}, "id": "47173"}, {"arcs": [[-967, 3917, 3918, 3919]], "type": "Polygon", "properties": {"name": "54057"}, "id": "54057"}, {"arcs": [[[3920, 3921, 3922, 3923, 3924]], [[3925]]], "type": "MultiPolygon", "properties": {"name": "55003"}, "id": "55003"}, {"arcs": [[-850, 3926, 3927, -3832, 3928, 3929]], "type": "Polygon", "properties": {"name": "17053"}, "id": "17053"}, {"arcs": [[-804, 3930, -2586, 3931, -3897, 3932, 3933, 3934]], "type": "Polygon", "properties": {"name": "38029"}, "id": "38029"}, {"arcs": [[-3628, 3935, 3936, 3937, 3938, 3939]], "type": "Polygon", "properties": {"name": "06089"}, "id": "06089"}, {"arcs": [[-3238, 3940, -3741, 3941, 3942, 3943]], "type": "Polygon", "properties": {"name": "22113"}, "id": "22113"}, {"arcs": [[3944, 3945, 3946, 3947, 3948, 3949]], "type": "Polygon", "properties": {"name": "05121"}, "id": "05121"}, {"arcs": [[3950, 3951, 3952, 3953, 3954]], "type": "Polygon", "properties": {"name": "55085"}, "id": "55085"}, {"arcs": [[-1633, 3955, 3956, 3957, 3958, 3959]], "type": "Polygon", "properties": {"name": "22035"}, "id": "22035"}, {"arcs": [[3960, 3961, 3962, 3963, 3964, 3965]], "type": "Polygon", "properties": {"name": "22037"}, "id": "22037"}, {"arcs": [[[3969, 3970, 3971]], [[3972]]], "type": "MultiPolygon", "properties": {"name": "22087"}, "id": "22087"}, {"arcs": [[-2338, 3973, 3974, 3975, 3976, 3977]], "type": "Polygon", "properties": {"name": "48481"}, "id": "48481"}, {"arcs": [[[-452, 3978]], [[3979, 3980]], [[3981]], [[3982]], [[3983]]], "type": "MultiPolygon", "properties": {"name": "02198"}, "id": "02198"}, {"arcs": [[[-3980, 3984]], [[3985, 3986, 3987, 3988]]], "type": "MultiPolygon", "properties": {"name": "02195"}, "id": "02195"}, {"arcs": [[-68, 3989, -2631, 3990, -1435]], "type": "Polygon", "properties": {"name": "48153"}, "id": "48153"}, {"arcs": [[[-450, 3991, -3988, 3992]], [[3993]], [[3994]]], "type": "MultiPolygon", "properties": {"name": "02275"}, "id": "02275"}, {"arcs": [[3995, 3996, 3997, 3998, 3999, 4000, 4001]], "type": "Polygon", "properties": {"name": "21151"}, "id": "21151"}, {"arcs": [[-1065, -1971, 4002, 4003, 4004, 4005]], "type": "Polygon", "properties": {"name": "47009"}, "id": "47009"}, {"arcs": [[-1128, 4006, 4007, 4008, 4009, 4010, 4011, 4012]], "type": "Polygon", "properties": {"name": "30031"}, "id": "30031"}, {"arcs": [[-3560, 4013, 4014, 4015, 4016]], "type": "Polygon", "properties": {"name": "45031"}, "id": "45031"}, {"arcs": [[4017, 4018, 4019, 4020, 4021, 4022, 4023]], "type": "Polygon", "properties": {"name": "01053"}, "id": "01053"}, {"arcs": [[-845, -2815, -1306, 4024]], "type": "Polygon", "properties": {"name": "13143"}, "id": "13143"}, {"arcs": [[4025, 4026, 4027, 4028]], "type": "Polygon", "properties": {"name": "20001"}, "id": "20001"}, {"arcs": [[-1428, 4029, 4030, -1917, 4031]], "type": "Polygon", "properties": {"name": "17041"}, "id": "17041"}, {"arcs": [[-3862, 4032, 4033, 4034, 4035]], "type": "Polygon", "properties": {"name": "51079"}, "id": "51079"}, {"arcs": [[4036]], "type": "Polygon", "properties": {"name": "66010"}, "id": "66010"}, {"arcs": [[-2340, 4037, 4038, 4039, 4040, 4041]], "type": "Polygon", "properties": {"name": "55137"}, "id": "55137"}, {"arcs": [[-98, 4042, -1235, 4043, -1087]], "type": "Polygon", "properties": {"name": "05065"}, "id": "05065"}, {"arcs": [[-2847, 4044, 4045, 4046, 4047, 4048]], "type": "Polygon", "properties": {"name": "06053"}, "id": "06053"}, {"arcs": [[-193, 4049, 4050, 4051, 4052]], "type": "Polygon", "properties": {"name": "35017"}, "id": "35017"}, {"arcs": [[-1656, 4053, 4054, 4055, 4056, 4057, 4058]], "type": "Polygon", "properties": {"name": "29131"}, "id": "29131"}, {"arcs": [[-1325, 4059, 4060, -3625, 4061, 4062, 4063, 4064]], "type": "Polygon", "properties": {"name": "37193"}, "id": "37193"}, {"arcs": [[[4065, 4066, 4067, 4068, 4069]], [[4070, 4071]]], "type": "MultiPolygon", "properties": {"name": "02110"}, "id": "02110"}, {"arcs": [[4072, 4073, 4074, 4075, 4076, 4077]], "type": "Polygon", "properties": {"name": "29165"}, "id": "29165"}, {"arcs": [[-419, 4078, 4079, 4080, -4074, 4081]], "type": "Polygon", "properties": {"name": "29021"}, "id": "29021"}, {"arcs": [[4082, 4083, 4084, 4085, 4086, 4087]], "type": "Polygon", "properties": {"name": "01083"}, "id": "01083"}, {"arcs": [[4088, 4089, 4090, 4091, 4092, 4093, 4094]], "type": "Polygon", "properties": {"name": "18065"}, "id": "18065"}, {"arcs": [[4095, 4096, 4097, 4098, 4099]], "type": "Polygon", "properties": {"name": "31143"}, "id": "31143"}, {"arcs": [[4100, 4101, 4102, 4103, 4104]], "type": "Polygon", "properties": {"name": "39123"}, "id": "39123"}, {"arcs": [[-3344, 4105, 4106, 4107, 4108, -3905]], "type": "Polygon", "properties": {"name": "27107"}, "id": "27107"}, {"arcs": [[-1470, 4109, 4110, 4111, 4112]], "type": "Polygon", "properties": {"name": "19165"}, "id": "19165"}, {"arcs": [[-3379, 4113, 4114, 4115, 4116]], "type": "Polygon", "properties": {"name": "24013"}, "id": "24013"}, {"arcs": [[-3062, 4117, 4118, 4119, 4120]], "type": "Polygon", "properties": {"name": "19011"}, "id": "19011"}, {"arcs": [[-1945, 4121, 4122, 4123, 4124, 4125]], "type": "Polygon", "properties": {"name": "21159"}, "id": "21159"}, {"arcs": [[4126, 4127, 4128, 4129, 4130, 4131]], "type": "Polygon", "properties": {"name": "27025"}, "id": "27025"}, {"arcs": [[-1537, 4132, 4133, -3195, 4134]], "type": "Polygon", "properties": {"name": "21189"}, "id": "21189"}, {"arcs": [[-562, 4135, 4136, 4137, 4138, 4139, 4140]], "type": "Polygon", "properties": {"name": "42015"}, "id": "42015"}, {"arcs": [[-116, 4141, 4142, 4143, 4144]], "type": "Polygon", "properties": {"name": "54029"}, "id": "54029"}, {"arcs": [[-2679, 4145, 4146, -4058, 4147]], "type": "Polygon", "properties": {"name": "29051"}, "id": "29051"}, {"arcs": [[-1934, 4148, 4149, -2027, 4150]], "type": "Polygon", "properties": {"name": "26021"}, "id": "26021"}, {"arcs": [[-3734, 4151, 4152, 4153, 4154, 4155, 4156]], "type": "Polygon", "properties": {"name": "42061"}, "id": "42061"}, {"arcs": [[4157, 4158, 4159, 4160, 4161]], "type": "Polygon", "properties": {"name": "31045"}, "id": "31045"}, {"arcs": [[-1499, -3465, 4162, 4163, -1797, 4164]], "type": "Polygon", "properties": {"name": "51141"}, "id": "51141"}, {"arcs": [[-397, 4165, 4166, 4167, 4168]], "type": "Polygon", "properties": {"name": "26119"}, "id": "26119"}, {"arcs": [[-396, -2907, 4169, 4170, -4166]], "type": "Polygon", "properties": {"name": "26135"}, "id": "26135"}, {"arcs": [[-1195, 4171, 4172, -3707, -3500, 4173]], "type": "Polygon", "properties": {"name": "35007"}, "id": "35007"}, {"arcs": [[4174, 4175, 4176, 4177, 4178, 4179, 4180]], "type": "Polygon", "properties": {"name": "17163"}, "id": "17163"}, {"arcs": [[-4177, 4181, 4182, 4183, 4184, 4185]], "type": "Polygon", "properties": {"name": "17189"}, "id": "17189"}, {"arcs": [[-962, 4186, 4187, 4188, -4152, -3733]], "type": "Polygon", "properties": {"name": "42009"}, "id": "42009"}, {"arcs": [[-722, 4189, 4190, -1271, 4191, 4192]], "type": "Polygon", "properties": {"name": "05127"}, "id": "05127"}, {"arcs": [[4193, 4194, 4195, 4196, 4197, 4198]], "type": "Polygon", "properties": {"name": "20099"}, "id": "20099"}, {"arcs": [[-112, 4199, 4200, 4201, -3008]], "type": "Polygon", "properties": {"name": "42073"}, "id": "42073"}, {"arcs": [[-3447, 4202, 4203, 4204, 4205]], "type": "Polygon", "properties": {"name": "39067"}, "id": "39067"}, {"arcs": [[-1326, -4065, 4206, 4207]], "type": "Polygon", "properties": {"name": "37003"}, "id": "37003"}, {"arcs": [[4208, 4209, 4210]], "type": "Polygon", "properties": {"name": "34009"}, "id": "34009"}, {"arcs": [[-2831, 4211, 4212, -3828, 4213]], "type": "Polygon", "properties": {"name": "33005"}, "id": "33005"}, {"arcs": [[-683, 4214, 4215, 4216, 4217, 4218, 4219, -2022]], "type": "Polygon", "properties": {"name": "27089"}, "id": "27089"}, {"arcs": [[-1220, 4220, -1733, 4221]], "type": "Polygon", "properties": {"name": "51101"}, "id": "51101"}, {"arcs": [[-134, -925, -2886, 4222, -3498, -2187]], "type": "Polygon", "properties": {"name": "08055"}, "id": "08055"}, {"arcs": [[-387, -1638, 4223, 4224, 4225, 4226, 4227]], "type": "Polygon", "properties": {"name": "48255"}, "id": "48255"}, {"arcs": [[4228, 4229, 4230, 4231, 4232]], "type": "Polygon", "properties": {"name": "47023"}, "id": "47023"}, {"arcs": [[4233, 4234, 4235]], "type": "Polygon", "properties": {"name": "17171"}, "id": "17171"}, {"arcs": [[4236, 4237, 4238, 4239, 4240, 4241]], "type": "Polygon", "properties": {"name": "49027"}, "id": "49027"}, {"arcs": [[-150, 4242, 4243, -3043, 4244]], "type": "Polygon", "properties": {"name": "49029"}, "id": "49029"}, {"arcs": [[-1584, 4245, 4246, 4247, 4248, 4249]], "type": "Polygon", "properties": {"name": "48257"}, "id": "48257"}, {"arcs": [[-194, -4053, 4250, 4251, 4252, 4253]], "type": "Polygon", "properties": {"name": "04011"}, "id": "04011"}, {"arcs": [[-2153, 4254, 4255, 4256, -2182, 4257]], "type": "Polygon", "properties": {"name": "04013"}, "id": "04013"}, {"arcs": [[-3621, -4170, 4258, 4259, 4260]], "type": "Polygon", "properties": {"name": "26129"}, "id": "26129"}, {"arcs": [[-1491, 4261, -1908, 4262, -2822]], "type": "Polygon", "properties": {"name": "47087"}, "id": "47087"}, {"arcs": [[-546, 4263, -2136, 4264, -757, 4265, 4266]], "type": "Polygon", "properties": {"name": "17159"}, "id": "17159"}, {"arcs": [[-3909, 4267, 4268, 4269, 4270, 4271]], "type": "Polygon", "properties": {"name": "01009"}, "id": "01009"}, {"arcs": [[-1023, -2350, 4272, 4273, 4274]], "type": "Polygon", "properties": {"name": "30051"}, "id": "30051"}, {"arcs": [[-707, 4275, -2102, 4276, 4277, 4278]], "type": "Polygon", "properties": {"name": "48131"}, "id": "48131"}, {"arcs": [[-3393, 4279, 4280, 4281, 4282]], "type": "Polygon", "properties": {"name": "29173"}, "id": "29173"}, {"arcs": [[-2397, 4283, 4284, 4285, 4286, 4287, 4288]], "type": "Polygon", "properties": {"name": "48251"}, "id": "48251"}, {"arcs": [[4289, 4290, 4291, 4292, 4293, 4294]], "type": "Polygon", "properties": {"name": "13061"}, "id": "13061"}, {"arcs": [[-518, 4295, -1259, 4296, 4297, -1926, 4298, 4299]], "type": "Polygon", "properties": {"name": "41023"}, "id": "41023"}, {"arcs": [[4300, 4301, 4302]], "type": "Polygon", "properties": {"name": "41011"}, "id": "41011"}, {"arcs": [[-1530, 4303, 4304, 4305, 4306, -3162]], "type": "Polygon", "properties": {"name": "48159"}, "id": "48159"}, {"arcs": [[-944, -2736, -2242, 4307]], "type": "Polygon", "properties": {"name": "36113"}, "id": "36113"}, {"arcs": [[-2120, 4308, -3863, -4036, 4309]], "type": "Polygon", "properties": {"name": "51113"}, "id": "51113"}, {"arcs": [[-3248, 4310, 4311, 4312, 4313, 4314]], "type": "Polygon", "properties": {"name": "40005"}, "id": "40005"}, {"arcs": [[4315, 4316, 4317, 4318]], "type": "Polygon", "properties": {"name": "17129"}, "id": "17129"}, {"arcs": [[-486, -2160, 4319, 4320, -2812, -843]], "type": "Polygon", "properties": {"name": "13015"}, "id": "13015"}, {"arcs": [[-471, 4321, -1290, 4322, 4323, 4324]], "type": "Polygon", "properties": {"name": "12069"}, "id": "12069"}, {"arcs": [[-2293, 4325, 4326, 4327, 4328, 4329]], "type": "Polygon", "properties": {"name": "40111"}, "id": "40111"}, {"arcs": [[-2584, 4330, 4331, 4332, 4333, 4334]], "type": "Polygon", "properties": {"name": "38083"}, "id": "38083"}, {"arcs": [[-782, 4335, -3112, 4336, -795, 4337]], "type": "Polygon", "properties": {"name": "18049"}, "id": "18049"}, {"arcs": [[-2868, 4338, 4339, 4340, 4341, 4342]], "type": "Polygon", "properties": {"name": "20091"}, "id": "20091"}, {"arcs": [[4343, 4344, 4345, 4346, 4347]], "type": "Polygon", "properties": {"name": "24009"}, "id": "24009"}, {"arcs": [[4348, 4349, 4350, 4351]], "type": "Polygon", "properties": {"name": "55129"}, "id": "55129"}, {"arcs": [[4352, 4353, 4354, 4355, 4356]], "type": "Polygon", "properties": {"name": "53031"}, "id": "53031"}, {"arcs": [[4357, 4358, 4359, 4360, 4361]], "type": "Polygon", "properties": {"name": "72003"}, "id": "72003"}, {"arcs": [[-818, -2526, 4362, 4363, 4364, -891, 4365]], "type": "Polygon", "properties": {"name": "27169"}, "id": "27169"}, {"arcs": [[-1056, 4366, -3956, -1632, 4367, 4368, 4369]], "type": "Polygon", "properties": {"name": "28149"}, "id": "28149"}, {"arcs": [[-418, 4370, 4371, 4372, 4373, -4079]], "type": "Polygon", "properties": {"name": "29003"}, "id": "29003"}, {"arcs": [[-3391, 4374, 4375, 4376, 4377, 4378, 4379]], "type": "Polygon", "properties": {"name": "29139"}, "id": "29139"}, {"arcs": [[-2092, -2450, 4380, -4196, 4381, 4382]], "type": "Polygon", "properties": {"name": "20021"}, "id": "20021"}, {"arcs": [[-2556, 4383, 4384, 4385, 4386, 4387]], "type": "Polygon", "properties": {"name": "37083"}, "id": "37083"}, {"arcs": [[4388, 4389, 4390, 4391, 4392, 4393, 4394]], "type": "Polygon", "properties": {"name": "35043"}, "id": "35043"}, {"arcs": [[-1536, 4395, 4396, 4397, 4398, 4399, -4133]], "type": "Polygon", "properties": {"name": "21051"}, "id": "21051"}, {"arcs": [[-2453, -2946, 4400, 4401, 4402, 4403]], "type": "Polygon", "properties": {"name": "42035"}, "id": "42035"}, {"arcs": [[-2641, 4404, -3525, 4405, 4406, 4407]], "type": "Polygon", "properties": {"name": "41043"}, "id": "41043"}, {"arcs": [[4408, 4409, 4410, 4411, 4412]], "type": "Polygon", "properties": {"name": "55065"}, "id": "55065"}, {"arcs": [[-2674, 4413, 4414, 4415, 4416, 4417]], "type": "Polygon", "properties": {"name": "40147"}, "id": "40147"}, {"arcs": [[-3427, 4418, 4419, 4420, 4421, 4422, 4423]], "type": "Polygon", "properties": {"name": "54077"}, "id": "54077"}, {"arcs": [[4424]], "type": "Polygon", "properties": {"name": "69100"}, "id": "69100"}, {"arcs": [[-4041, 4425, 4426, 4427, 4428]], "type": "Polygon", "properties": {"name": "55135"}, "id": "55135"}, {"arcs": [[-423, 4429, 4430, -2444, 4431, -2283, 4432]], "type": "Polygon", "properties": {"name": "48137"}, "id": "48137"}, {"arcs": [[-1158, 4433, 4434, 4435, 4436]], "type": "Polygon", "properties": {"name": "41037"}, "id": "41037"}, {"arcs": [[-1231, 4437, 4438, 4439, -2891, 4440]], "type": "Polygon", "properties": {"name": "29153"}, "id": "29153"}, {"arcs": [[-2335, 4441, -2877, 4442, 4443, 4444]], "type": "Polygon", "properties": {"name": "48473"}, "id": "48473"}, {"arcs": [[-1721, 4445, -4018, 4446, 4447, -3080]], "type": "Polygon", "properties": {"name": "01099"}, "id": "01099"}, {"arcs": [[-2081, 4448, 4449, 4450, 4451]], "type": "Polygon", "properties": {"name": "50009"}, "id": "50009"}, {"arcs": [[4452, 4453, 4454, 4455, 4456]], "type": "Polygon", "properties": {"name": "51111"}, "id": "51111"}, {"arcs": [[-2024, 4457, -4107, 4458, 4459]], "type": "Polygon", "properties": {"name": "38097"}, "id": "38097"}, {"arcs": [[-3418, 4460, 4461, 4462, 4463, 4464, 4465, 4466]], "type": "Polygon", "properties": {"name": "13139"}, "id": "13139"}, {"arcs": [[4467, 4468, 4469, 4470]], "type": "Polygon", "properties": {"name": "13283"}, "id": "13283"}, {"arcs": [[-596, 4471, 4472, 4473, -4293, 4474]], "type": "Polygon", "properties": {"name": "13037"}, "id": "13037"}, {"arcs": [[-2597, 4475, -3952, 4476, 4477, -3900]], "type": "Polygon", "properties": {"name": "55125"}, "id": "55125"}, {"arcs": [[-1759, 4478, 4479, -4218, 4480, 4481, -3201, 4482, 4483]], "type": "Polygon", "properties": {"name": "27007"}, "id": "27007"}, {"arcs": [[-2463, 4484, 4485, 4486, 4487, 4488, -2853]], "type": "Polygon", "properties": {"name": "72043"}, "id": "72043"}, {"arcs": [[-2288, 4489, 4490, 4491]], "type": "Polygon", "properties": {"name": "72055"}, "id": "72055"}, {"arcs": [[4492, 4493, 4494, 4495, 4496]], "type": "Polygon", "properties": {"name": "24019"}, "id": "24019"}, {"arcs": [[4497, 4498, 4499, 4500, 4501, 4502]], "type": "Polygon", "properties": {"name": "42037"}, "id": "42037"}, {"arcs": [[-3823, 4503, 4504, 4505, 4506]], "type": "Polygon", "properties": {"name": "39023"}, "id": "39023"}, {"arcs": [[-811, 4507, 4508, -2446, -1555]], "type": "Polygon", "properties": {"name": "48323"}, "id": "48323"}, {"arcs": [[-2154, -4258, -2181, 4509, 4510, 4511, 4512]], "type": "Polygon", "properties": {"name": "04019"}, "id": "04019"}, {"arcs": [[-190, 4513, 4514, -4389, 4515, 4516, 4517]], "type": "Polygon", "properties": {"name": "35006"}, "id": "35006"}, {"arcs": [[-1207, -3129, 4518, 4519, 4520, 4521, 4522]], "type": "Polygon", "properties": {"name": "34005"}, "id": "34005"}, {"arcs": [[4523, 4524, 4525, 4526]], "type": "Polygon", "properties": {"name": "50021"}, "id": "50021"}, {"arcs": [[-4294, -4474, 4527, 4528, 4529, 4530, 4531]], "type": "Polygon", "properties": {"name": "13099"}, "id": "13099"}, {"arcs": [[4532]], "type": "Polygon", "properties": {"name": "25007"}, "id": "25007"}, {"arcs": [[-2827, 4533, -2896, 4534, -4332, 4535]], "type": "Polygon", "properties": {"name": "38049"}, "id": "38049"}, {"arcs": [[-1, 4536, 4537, 4538, 4539, 4540]], "type": "Polygon", "properties": {"name": "31179"}, "id": "31179"}, {"arcs": [[-2403, 4541, -3895, 4542, -2409, 4543]], "type": "Polygon", "properties": {"name": "38045"}, "id": "38045"}, {"arcs": [[-379, 4544, -3227, -1710, 4545, -1442]], "type": "Polygon", "properties": {"name": "16023"}, "id": "16023"}, {"arcs": [[-2082, -4452, 4546, 4547, 4548]], "type": "Polygon", "properties": {"name": "33007"}, "id": "33007"}, {"arcs": [[-2585, -4335, 4549, 4550, -3898, -3932]], "type": "Polygon", "properties": {"name": "38043"}, "id": "38043"}, {"arcs": [[[4551, 4552, 4553, 4554, 4555]], [[4556, 4557, 4558, 4559]]], "type": "MultiPolygon", "properties": {"name": "48273"}, "id": "48273"}, {"arcs": [[-318, -1901, 4560, -2030]], "type": "Polygon", "properties": {"name": "18127"}, "id": "18127"}, {"arcs": [[-118, 4561, 4562, 4563, 4564]], "type": "Polygon", "properties": {"name": "28101"}, "id": "28101"}, {"arcs": [[-2901, 4565, 4566, 4567, 4568, 4569, 4570]], "type": "Polygon", "properties": {"name": "37163"}, "id": "37163"}, {"arcs": [[-1903, 4571, 4572, 4573]], "type": "Polygon", "properties": {"name": "47127"}, "id": "47127"}, {"arcs": [[4574, 4575, 4576, 4577]], "type": "Polygon", "properties": {"name": "12103"}, "id": "12103"}, {"arcs": [[-1170, 4578, 4579, 4580, -4488, 4581, 4582]], "type": "Polygon", "properties": {"name": "72019"}, "id": "72019"}, {"arcs": [[-2507, 4583, 4584, 4585, 4586]], "type": "Polygon", "properties": {"name": "17065"}, "id": "17065"}, {"arcs": [[-2985, 4587, 4588, 4589, 4590, 4591]], "type": "Polygon", "properties": {"name": "05105"}, "id": "05105"}, {"arcs": [[-2007, 4592, -3809, 4593, 4594]], "type": "Polygon", "properties": {"name": "20023"}, "id": "20023"}, {"arcs": [[-3276, 4595, 4596]], "type": "Polygon", "properties": {"name": "08029"}, "id": "08029"}, {"arcs": [[-775, 4597, 4598, 4599, 4600]], "type": "Polygon", "properties": {"name": "19185"}, "id": "19185"}, {"arcs": [[4601, 4602, 4603, 4604, 4605, 4606]], "type": "Polygon", "properties": {"name": "48165"}, "id": "48165"}, {"arcs": [[-2545, 4607, 4608, 4609, 4610, 4611, 4612]], "type": "Polygon", "properties": {"name": "01093"}, "id": "01093"}, {"arcs": [[-1324, 4613, 4614, 4615, -4060]], "type": "Polygon", "properties": {"name": "37189"}, "id": "37189"}, {"arcs": [[-163, 4616]], "type": "Polygon", "properties": {"name": "51770"}, "id": "51770"}, {"arcs": [[-4604, 4617, 4618, 4619, 4620, 4621]], "type": "Polygon", "properties": {"name": "48317"}, "id": "48317"}, {"arcs": [[-1286, 4622, 4623, 4624, -3865, 4625]], "type": "Polygon", "properties": {"name": "48037"}, "id": "48037"}, {"arcs": [[-151, -4245, -3042, -3355, -829]], "type": "Polygon", "properties": {"name": "49057"}, "id": "49057"}, {"arcs": [[-3819, 4626, -4282, 4627, 4628, 4629]], "type": "Polygon", "properties": {"name": "29127"}, "id": "29127"}, {"arcs": [[-1160, 4630, -1773, 4631]], "type": "Polygon", "properties": {"name": "36045"}, "id": "36045"}, {"arcs": [[-1859, 4632, -3801, 4633, 4634]], "type": "Polygon", "properties": {"name": "19097"}, "id": "19097"}, {"arcs": [[-685, -2026, 4635, 4636, 4637, -3383, -1605]], "type": "Polygon", "properties": {"name": "38063"}, "id": "38063"}, {"arcs": [[-2245, 4638, 4639, 4640, 4641]], "type": "Polygon", "properties": {"name": "36019"}, "id": "36019"}, {"arcs": [[-2017, 4642, 4643, 4644, 4645, 4646, -3291]], "type": "Polygon", "properties": {"name": "08045"}, "id": "08045"}, {"arcs": [[4647, 4648, 4649, 4650, 4651, 4652]], "type": "Polygon", "properties": {"name": "29177"}, "id": "29177"}, {"arcs": [[-1695, 4653, -3540, 4654, 4655, 4656]], "type": "Polygon", "properties": {"name": "39073"}, "id": "39073"}, {"arcs": [[-1723, -3079, 4657, 4658, 4659, 4660]], "type": "Polygon", "properties": {"name": "01085"}, "id": "01085"}, {"arcs": [[4661, 4662, 4663, 4664]], "type": "Polygon", "properties": {"name": "13043"}, "id": "13043"}, {"arcs": [[-998, 4665, -4119, 4666, 4667, 4668]], "type": "Polygon", "properties": {"name": "19113"}, "id": "19113"}, {"arcs": [[-3938, 4669, 4670, 4671, 4672]], "type": "Polygon", "properties": {"name": "06105"}, "id": "06105"}, {"arcs": [[-2052, 4673, -3510, 4674, -2389]], "type": "Polygon", "properties": {"name": "13215"}, "id": "13215"}, {"arcs": [[4675, 4676, 4677, 4678, 4679, 4680, 4681]], "type": "Polygon", "properties": {"name": "28135"}, "id": "28135"}, {"arcs": [[-420, -4082, -4073, 4682, 4683, 4684, 4685]], "type": "Polygon", "properties": {"name": "20005"}, "id": "20005"}, {"arcs": [[4686, 4687, 4688, 4689, 4690, 4691, 4692, 4693]], "type": "Polygon", "properties": {"name": "72081"}, "id": "72081"}, {"arcs": [[-4605, -4622, 4694, 4695, 4696, 4697]], "type": "Polygon", "properties": {"name": "48003"}, "id": "48003"}, {"arcs": [[-3824, -4507, 4698, 4699, 4700]], "type": "Polygon", "properties": {"name": "39109"}, "id": "39109"}, {"arcs": [[-3004, 4701, 4702, -3478]], "type": "Polygon", "properties": {"name": "48375"}, "id": "48375"}, {"arcs": [[-2255, 4703, 4704, 4705]], "type": "Polygon", "properties": {"name": "40133"}, "id": "40133"}, {"arcs": [[-1649, 4706, 4707, 4708, 4709, 4710, 4711]], "type": "Polygon", "properties": {"name": "45003"}, "id": "45003"}, {"arcs": [[4712]], "type": "Polygon", "properties": {"name": "60020"}, "id": "60020"}, {"arcs": [[-2422, 4713, 4714, -4671, 4715, 4716, 4717]], "type": "Polygon", "properties": {"name": "06045"}, "id": "06045"}, {"arcs": [[-3135, 4718, 4719, 4720, 4721, 4722]], "type": "Polygon", "properties": {"name": "51550"}, "id": "51550"}, {"arcs": [[4723]], "type": "Polygon", "properties": {"name": "69120"}, "id": "69120"}, {"arcs": [[-2287, 4724, -4691, 4725, 4726, 4727, -4490]], "type": "Polygon", "properties": {"name": "72153"}, "id": "72153"}, {"arcs": [[-209, 4728, -609, 4729, -2561, 4730, 4731, -697]], "type": "Polygon", "properties": {"name": "56037"}, "id": "56037"}, {"arcs": [[-1433, 4732, 4733, 4734, -2920]], "type": "Polygon", "properties": {"name": "48169"}, "id": "48169"}, {"arcs": [[4735, 4736, 4737, 4738, 4739, 4740]], "type": "Polygon", "properties": {"name": "54031"}, "id": "54031"}, {"arcs": [[-4690, 4741, 4742, 4743, 4744, -4726]], "type": "Polygon", "properties": {"name": "72001"}, "id": "72001"}, {"arcs": [[-3530, 4745, 4746, 4747]], "type": "Polygon", "properties": {"name": "55089"}, "id": "55089"}, {"arcs": [[-3723, 4748, 4749, 4750, 4751, 4752, 4753, 4754]], "type": "Polygon", "properties": {"name": "47163"}, "id": "47163"}, {"arcs": [[-3338, 4755, 4756, 4757, 4758, 4759]], "type": "Polygon", "properties": {"name": "45059"}, "id": "45059"}, {"arcs": [[-2623, 4760, 4761, 4762, -3255, 4763]], "type": "Polygon", "properties": {"name": "56011"}, "id": "56011"}, {"arcs": [[-4747, 4764, 4765, 4766, 4767, 4768]], "type": "Polygon", "properties": {"name": "55117"}, "id": "55117"}, {"arcs": [[-353, -2838, 4769, 4770, 4771, 4772]], "type": "Polygon", "properties": {"name": "25013"}, "id": "25013"}, {"arcs": [[-383, 4773, 4774, 4775, 4776, -2612]], "type": "Polygon", "properties": {"name": "48055"}, "id": "48055"}, {"arcs": [[-463, 4777, 4778, 4779, 4780, 4781]], "type": "Polygon", "properties": {"name": "20029"}, "id": "20029"}, {"arcs": [[-868, 4782, 4783, 4784, 4785, 4786, 4787, -3720]], "type": "Polygon", "properties": {"name": "06027"}, "id": "06027"}, {"arcs": [[-74, 4788, 4789, 4790, 4791, 4792]], "type": "Polygon", "properties": {"name": "01037"}, "id": "01037"}, {"arcs": [[-1868, 4793, 4794, 4795]], "type": "Polygon", "properties": {"name": "19059"}, "id": "19059"}, {"arcs": [[-1541, 4796, 4797, 4798, 4799, 4800]], "type": "Polygon", "properties": {"name": "21095"}, "id": "21095"}, {"arcs": [[-1311, 4801, 4802, 4803, 4804]], "type": "Polygon", "properties": {"name": "20061"}, "id": "20061"}, {"arcs": [[4805, 4806, 4807, 4808, 4809, 4810]], "type": "Polygon", "properties": {"name": "42011"}, "id": "42011"}, {"arcs": [[-4754, 4811, 4812, 4813, 4814, 4815]], "type": "Polygon", "properties": {"name": "47019"}, "id": "47019"}, {"arcs": [[4816, 4817, 4818, 4819, 4820]], "type": "Polygon", "properties": {"name": "27083"}, "id": "27083"}, {"arcs": [[-4456, 4821, 4822, 4823, 4824, 4825]], "type": "Polygon", "properties": {"name": "51037"}, "id": "51037"}, {"arcs": [[-3724, -4755, -4816, 4826, 4827]], "type": "Polygon", "properties": {"name": "47179"}, "id": "47179"}, {"arcs": [[-1647, -3339, -4760, 4828, 4829, 4830, 4831]], "type": "Polygon", "properties": {"name": "45071"}, "id": "45071"}, {"arcs": [[-574, 4832, 4833, 4834, 4835, 4836]], "type": "Polygon", "properties": {"name": "51093"}, "id": "51093"}, {"arcs": [[-517, 4837, 4838, 4839, -1260, -4296]], "type": "Polygon", "properties": {"name": "41069"}, "id": "41069"}, {"arcs": [[4840, 4841, 4842, 4843, 4844, 4845]], "type": "Polygon", "properties": {"name": "29023"}, "id": "29023"}, {"arcs": [[4846, 4847, 4848, 4849, 4850, 4851, 4852]], "type": "Polygon", "properties": {"name": "22047"}, "id": "22047"}, {"arcs": [[-1619, 4853, 4854, -1630]], "type": "Polygon", "properties": {"name": "28125"}, "id": "28125"}, {"arcs": [[-311, 4855, -2118, 4856, 4857, 4858, 4859]], "type": "Polygon", "properties": {"name": "51061"}, "id": "51061"}, {"arcs": [[-170, 4860]], "type": "Polygon", "properties": {"name": "51750"}, "id": "51750"}, {"arcs": [[-2913, 4861, 4862, 4863, 4864, 4865]], "type": "Polygon", "properties": {"name": "32005"}, "id": "32005"}, {"arcs": [[-434, 4866, 4867, 4868]], "type": "Polygon", "properties": {"name": "12037"}, "id": "12037"}, {"arcs": [[4869, 4870, 4871, 4872, 4873, 4874, 4875, 4876]], "type": "Polygon", "properties": {"name": "18055"}, "id": "18055"}, {"arcs": [[-2223, 4877, 4878, -4093, 4879, -2571]], "type": "Polygon", "properties": {"name": "18139"}, "id": "18139"}, {"arcs": [[-4746, 4880, 4881, 4882, -4765]], "type": "Polygon", "properties": {"name": "55131"}, "id": "55131"}, {"arcs": [[-3038, 4883, 4884, 4885, 4886, 4887]], "type": "Polygon", "properties": {"name": "29105"}, "id": "29105"}, {"arcs": [[-2996, 4888, 4889, -3009, -4202, 4890]], "type": "Polygon", "properties": {"name": "42085"}, "id": "42085"}, {"arcs": [[4891, 4892, 4893, 4894, 4895, 4896]], "type": "Polygon", "properties": {"name": "05031"}, "id": "05031"}, {"arcs": [[-3520, 4897, 4898, 4899, 4900, 4901]], "type": "Polygon", "properties": {"name": "29195"}, "id": "29195"}, {"arcs": [[-761, -3263, -2099, -3334, -4586, 4902, 4903]], "type": "Polygon", "properties": {"name": "17193"}, "id": "17193"}, {"arcs": [[-853, -1431, -2500, 4904]], "type": "Polygon", "properties": {"name": "17039"}, "id": "17039"}, {"arcs": [[-3718, 4905, 4906, 4907, 4908, -4241, 4909]], "type": "Polygon", "properties": {"name": "32033"}, "id": "32033"}, {"arcs": [[-837, 4910, 4911, -2524, -1871, 4912, 4913]], "type": "Polygon", "properties": {"name": "27049"}, "id": "27049"}, {"arcs": [[-4005, 4914, 4915, 4916, 4917, 4918]], "type": "Polygon", "properties": {"name": "37173"}, "id": "37173"}, {"arcs": [[-430, 4919, 4920, 4921, -4576, 4922]], "type": "Polygon", "properties": {"name": "12101"}, "id": "12101"}, {"arcs": [[-429, -2194, 4923, -4324, 4924, -4920]], "type": "Polygon", "properties": {"name": "12119"}, "id": "12119"}, {"arcs": [[-2369, 4925, 4926, 4927]], "type": "Polygon", "properties": {"name": "36059"}, "id": "36059"}, {"arcs": [[-2025, -4460, 4928, -2406, 4929, -4636]], "type": "Polygon", "properties": {"name": "38091"}, "id": "38091"}, {"arcs": [[-1338, 4930, -2095, -3262]], "type": "Polygon", "properties": {"name": "18163"}, "id": "18163"}, {"arcs": [[-3780, 4931, 4932, 4933, 4934, 4935, 4936]], "type": "Polygon", "properties": {"name": "29071"}, "id": "29071"}, {"arcs": [[-1329, 4937, 4938, 4939, -4813, 4940, -4614]], "type": "Polygon", "properties": {"name": "37011"}, "id": "37011"}, {"arcs": [[-3367, 4941, 4942, 4943, 4944, 4945, 4946]], "type": "Polygon", "properties": {"name": "54107"}, "id": "54107"}, {"arcs": [[-3924, 4947, 4948, 4949]], "type": "Polygon", "properties": {"name": "55007"}, "id": "55007"}, {"arcs": [[4950, 4951, 4952, 4953, 4954, 4955, 4956]], "type": "Polygon", "properties": {"name": "47161"}, "id": "47161"}, {"arcs": [[-4040, 4957, 4958, 4959, -4426]], "type": "Polygon", "properties": {"name": "55097"}, "id": "55097"}, {"arcs": [[-1648, -4832, 4960, 4961, 4962, -4707]], "type": "Polygon", "properties": {"name": "45063"}, "id": "45063"}, {"arcs": [[-1041, 4963, -4344, 4964, 4965, -3377]], "type": "Polygon", "properties": {"name": "24003"}, "id": "24003"}, {"arcs": [[-2342, 4966, 4967, -4766, -4883, 4968]], "type": "Polygon", "properties": {"name": "55039"}, "id": "55039"}, {"arcs": [[-231, 4969, 4970, 4971, 4972, 4973, 4974]], "type": "Polygon", "properties": {"name": "54101"}, "id": "54101"}, {"arcs": [[4975, 4976, 4977, 4978, 4979]], "type": "Polygon", "properties": {"name": "55061"}, "id": "55061"}, {"arcs": [[4980, 4981, 4982, 4983, 4984]], "type": "Polygon", "properties": {"name": "48369"}, "id": "48369"}, {"arcs": [[-1422, 4985, 4986, -1527, 4987, 4988]], "type": "Polygon", "properties": {"name": "40151"}, "id": "40151"}, {"arcs": [[-1948, -1956, 4989, 4990]], "type": "Polygon", "properties": {"name": "21063"}, "id": "21063"}, {"arcs": [[-354, -4773, 4991, -2871, 4992, 4993, 4994, 4995]], "type": "Polygon", "properties": {"name": "25003"}, "id": "25003"}, {"arcs": [[-557, 4996, 4997, 4998, -3521, -4902, 4999]], "type": "Polygon", "properties": {"name": "29041"}, "id": "29041"}, {"arcs": [[-2564, 5000, -4646, 5001]], "type": "Polygon", "properties": {"name": "08103"}, "id": "08103"}, {"arcs": [[5002, 5003, 5004, 5005]], "type": "Polygon", "properties": {"name": "08087"}, "id": "08087"}, {"arcs": [[-701, 5006, -4299, -1925, 5007, 5008, 5009, 5010]], "type": "Polygon", "properties": {"name": "41045"}, "id": "41045"}, {"arcs": [[-2530, 5011, 5012, 5013, 5014, 5015]], "type": "Polygon", "properties": {"name": "34023"}, "id": "34023"}, {"arcs": [[-1380, 5016, 5017, 5018, 5019, -3180]], "type": "Polygon", "properties": {"name": "20167"}, "id": "20167"}, {"arcs": [[-1674, 5020, 5021]], "type": "Polygon", "properties": {"name": "17155"}, "id": "17155"}, {"arcs": [[-2660, 5022, 5023, 5024, 5025, 5026]], "type": "Polygon", "properties": {"name": "46055"}, "id": "46055"}, {"arcs": [[-357, 5027, -1909, -4262, -1490, -1535, -1727]], "type": "Polygon", "properties": {"name": "47111"}, "id": "47111"}, {"arcs": [[-100, -1092, 5028, 5029, -2714]], "type": "Polygon", "properties": {"name": "05023"}, "id": "05023"}, {"arcs": [[5030, 5031, 5032, 5033, 5034, 5035]], "type": "Polygon", "properties": {"name": "01109"}, "id": "01109"}, {"arcs": [[-109, -3020, 5036, -1081, 5037, -1923]], "type": "Polygon", "properties": {"name": "16003"}, "id": "16003"}, {"arcs": [[5038, 5039, 5040, 5041, 5042, 5043]], "type": "Polygon", "properties": {"name": "25005"}, "id": "25005"}, {"arcs": [[-630, 5044, -4500, 5045, 5046, 5047, -4811, 5048]], "type": "Polygon", "properties": {"name": "42107"}, "id": "42107"}, {"arcs": [[-3385, 5049, 5050, 5051, -4550, -4334, 5052]], "type": "Polygon", "properties": {"name": "38103"}, "id": "38103"}, {"arcs": [[-1274, 5053, 5054, 5055, 5056, 5057]], "type": "Polygon", "properties": {"name": "37045"}, "id": "37045"}, {"arcs": [[-1148, 5058, -2987, 5059, 5060, 5061]], "type": "Polygon", "properties": {"name": "05059"}, "id": "05059"}, {"arcs": [[-4115, 5062, 5063, 5064, 5065, 5066, 5067]], "type": "Polygon", "properties": {"name": "24021"}, "id": "24021"}, {"arcs": [[-504, 5068, -2367, 5069, 5070, -908, -3817]], "type": "Polygon", "properties": {"name": "17169"}, "id": "17169"}, {"arcs": [[-2360, 5071, -4787, 5072, 5073, 5074, 5075, -4864, 5076]], "type": "Polygon", "properties": {"name": "06051"}, "id": "06051"}, {"arcs": [[-1882, 5077, -5075, 5078, -3516, 5079]], "type": "Polygon", "properties": {"name": "06109"}, "id": "06109"}, {"arcs": [[-189, 5080, 5081, 5082, 5083]], "type": "Polygon", "properties": {"name": "35013"}, "id": "35013"}, {"arcs": [[5084, 5085, 5086, 5087, 5088, 5089]], "type": "Polygon", "properties": {"name": "13081"}, "id": "13081"}, {"arcs": [[5090, 5091, 5092, 5093, 5094, 5095]], "type": "Polygon", "properties": {"name": "05027"}, "id": "05027"}, {"arcs": [[-2405, 5096, 5097, 5098, -4637, -4930]], "type": "Polygon", "properties": {"name": "38039"}, "id": "38039"}, {"arcs": [[-1784, 5099, 5100, -2425, -3773, 5101]], "type": "Polygon", "properties": {"name": "06095"}, "id": "06095"}, {"arcs": [[-3471, 5102, 5103, 5104, -3798, 5105]], "type": "Polygon", "properties": {"name": "19043"}, "id": "19043"}, {"arcs": [[-4305, 5106, 5107, 5108]], "type": "Polygon", "properties": {"name": "48449"}, "id": "48449"}, {"arcs": [[-966, 5109, 5110, -4736, -3918]], "type": "Polygon", "properties": {"name": "54027"}, "id": "54027"}, {"arcs": [[-144, 5111, 5112, -2899, -2938, -2933, 5113, -1827]], "type": "Polygon", "properties": {"name": "37125"}, "id": "37125"}, {"arcs": [[-3181, -5020, 5114, 5115, 5116, 5117]], "type": "Polygon", "properties": {"name": "20009"}, "id": "20009"}, {"arcs": [[-3693, 5118, 5119, -3729, 5120, 5121, 5122]], "type": "Polygon", "properties": {"name": "38087"}, "id": "38087"}, {"arcs": [[-894, 5123, 5124, 5125, -3958, 5126, 5127]], "type": "Polygon", "properties": {"name": "22083"}, "id": "22083"}, {"arcs": [[-879, 5128, 5129, -3662, 5130]], "type": "Polygon", "properties": {"name": "31071"}, "id": "31071"}, {"arcs": [[[-3739, 5131, 5132, -4853, 5133]], [[5134, 5135, 5136]]], "type": "MultiPolygon", "properties": {"name": "22099"}, "id": "22099"}, {"arcs": [[-196, 5137, 5138, -1144, 5139, 5140, -1439]], "type": "Polygon", "properties": {"name": "01119"}, "id": "01119"}, {"arcs": [[-4612, 5141, 5142, 5143, 5144]], "type": "Polygon", "properties": {"name": "01133"}, "id": "01133"}, {"arcs": [[-470, -1287, -4322]], "type": "Polygon", "properties": {"name": "12117"}, "id": "12117"}, {"arcs": [[-2310, 5145, 5146, -3659, 5147, -3649]], "type": "Polygon", "properties": {"name": "28035"}, "id": "28035"}, {"arcs": [[-2460, 5148, 5149, -3585, 5150]], "type": "Polygon", "properties": {"name": "26065"}, "id": "26065"}, {"arcs": [[-2989, 5151, -3582, 5152, 5153, 5154]], "type": "Polygon", "properties": {"name": "20177"}, "id": "20177"}, {"arcs": [[-516, 5155, 5156, -2210, -2543]], "type": "Polygon", "properties": {"name": "46061"}, "id": "46061"}, {"arcs": [[-1600, 5157, -4483, -3200, 5158]], "type": "Polygon", "properties": {"name": "27061"}, "id": "27061"}, {"arcs": [[-714, 5159, -3644, 5160, 5161, 5162, 5163, 5164]], "type": "Polygon", "properties": {"name": "08073"}, "id": "08073"}, {"arcs": [[-1163, 5165, -2925, 5166, 5167, 5168]], "type": "Polygon", "properties": {"name": "36053"}, "id": "36053"}, {"arcs": [[-945, -4308, -2241, 5169, -4527, 5170, 5171]], "type": "Polygon", "properties": {"name": "36115"}, "id": "36115"}, {"arcs": [[-2810, 5172, 5173, 5174, 5175]], "type": "Polygon", "properties": {"name": "18081"}, "id": "18081"}, {"arcs": [[-2923, 5176, -4602, 5177, 5178]], "type": "Polygon", "properties": {"name": "48445"}, "id": "48445"}, {"arcs": [[-1194, 5179, -2384, 5180, -4172]], "type": "Polygon", "properties": {"name": "35021"}, "id": "35021"}, {"arcs": [[-75, -4793, 5181, 5182, 5183, 5184]], "type": "Polygon", "properties": {"name": "01121"}, "id": "01121"}, {"arcs": [[-3954, 5185, 5186, 5187, 5188, 5189, 5190]], "type": "Polygon", "properties": {"name": "55067"}, "id": "55067"}, {"arcs": [[5191, 5192, 5193, 5194, 5195, 5196]], "type": "Polygon", "properties": {"name": "48155"}, "id": "48155"}, {"arcs": [[-1078, 5197, 5198, 5199]], "type": "Polygon", "properties": {"name": "19021"}, "id": "19021"}, {"arcs": [[-3876, 5200, 5201, 5202, 5203]], "type": "Polygon", "properties": {"name": "19129"}, "id": "19129"}, {"arcs": [[-422, -1180, 5204, -4430]], "type": "Polygon", "properties": {"name": "48385"}, "id": "48385"}, {"arcs": [[5205, 5206, 5207, 5208, 5209, 5210]], "type": "Polygon", "properties": {"name": "39041"}, "id": "39041"}, {"arcs": [[-542, 5211, 5212, 5213, -3463, 5214]], "type": "Polygon", "properties": {"name": "37067"}, "id": "37067"}, {"arcs": [[-2912, 5215, 5216, -4862]], "type": "Polygon", "properties": {"name": "32510"}, "id": "32510"}, {"arcs": [[-1568, 5217, 5218, 5219, 5220]], "type": "Polygon", "properties": {"name": "19049"}, "id": "19049"}, {"arcs": [[-76, -4703, 5221, 5222, 5223, 5224]], "type": "Polygon", "properties": {"name": "48065"}, "id": "48065"}, {"arcs": [[-593, 5225, 5226, 5227, -732, 5228, -5087, 5229]], "type": "Polygon", "properties": {"name": "13261"}, "id": "13261"}, {"arcs": [[-929, 5230, 5231, -4841, 5232, -1777, -3157]], "type": "Polygon", "properties": {"name": "29223"}, "id": "29223"}, {"arcs": [[-2324, 5233, 5234, 5235, 5236, 5237]], "type": "Polygon", "properties": {"name": "45007"}, "id": "45007"}, {"arcs": [[-608, 5238, -3883, 5239, 5240, 5241, -2562, -4730]], "type": "Polygon", "properties": {"name": "56007"}, "id": "56007"}, {"arcs": [[5242, 5243, 5244, 5245]], "type": "Polygon", "properties": {"name": "30093"}, "id": "30093"}, {"arcs": [[-4411, 5246, 5247, 5248, 5249, 5250]], "type": "Polygon", "properties": {"name": "17177"}, "id": "17177"}, {"arcs": [[-1581, 5251, 5252, 5253, 5254, 5255]], "type": "Polygon", "properties": {"name": "26087"}, "id": "26087"}, {"arcs": [[-268, -2653, 5256, 5257, -5094, 5258]], "type": "Polygon", "properties": {"name": "22027"}, "id": "22027"}, {"arcs": [[-2481, 5259, 5260, -4677, 5261]], "type": "Polygon", "properties": {"name": "28161"}, "id": "28161"}, {"arcs": [[-2286, 5262, -2687, 5263, -4692, -4725]], "type": "Polygon", "properties": {"name": "72093"}, "id": "72093"}, {"arcs": [[-3554, 5264, 5265, 5266]], "type": "Polygon", "properties": {"name": "26079"}, "id": "26079"}, {"arcs": [[-4358, 5267, 5268, 5269]], "type": "Polygon", "properties": {"name": "72005"}, "id": "72005"}, {"arcs": [[-3236, 5270, 5271, 5272, 5273, 5274]], "type": "Polygon", "properties": {"name": "22039"}, "id": "22039"}, {"arcs": [[-1813, 5275, -3352, 5276, -4232, 5277, -2477, -3360]], "type": "Polygon", "properties": {"name": "47069"}, "id": "47069"}, {"arcs": [[-4252, 5278, 5279, 5280, -4511, 5281]], "type": "Polygon", "properties": {"name": "04003"}, "id": "04003"}, {"arcs": [[-4052, 5282, 5283, -5279, -4251]], "type": "Polygon", "properties": {"name": "35023"}, "id": "35023"}, {"arcs": [[-1463, 5284, 5285, 5286]], "type": "Polygon", "properties": {"name": "38023"}, "id": "38023"}, {"arcs": [[-867, 5287, 5288, 5289, 5290, -2146, 5291, -4783]], "type": "Polygon", "properties": {"name": "06071"}, "id": "06071"}, {"arcs": [[-1134, 5292, 5293, 5294]], "type": "Polygon", "properties": {"name": "08083"}, "id": "08083"}, {"arcs": [[-119, 5295, 5296, 5297]], "type": "Polygon", "properties": {"name": "28023"}, "id": "28023"}, {"arcs": [[-3486, 5298, 5299, 5300, 5301, 5302]], "type": "Polygon", "properties": {"name": "19125"}, "id": "19125"}, {"arcs": [[5303, 5304, 5305, 5306, 5307]], "type": "Polygon", "properties": {"name": "31055"}, "id": "31055"}, {"arcs": [[5308]], "type": "Polygon", "properties": {"name": "51600"}, "id": "51600"}, {"arcs": [[-3754, 5309, 5310, 5311, 5312, 5313]], "type": "Polygon", "properties": {"name": "40057"}, "id": "40057"}, {"arcs": [[-212, 5314, 5315, 5316, 5317]], "type": "Polygon", "properties": {"name": "29039"}, "id": "29039"}, {"arcs": [[5318, 5319, 5320, 5321]], "type": "Polygon", "properties": {"name": "13059"}, "id": "13059"}, {"arcs": [[-1082, -5037, -3019, 5322, -1708, 5323]], "type": "Polygon", "properties": {"name": "16085"}, "id": "16085"}, {"arcs": [[-5197, 5324, 5325, 5326]], "type": "Polygon", "properties": {"name": "48275"}, "id": "48275"}, {"arcs": [[-1150, 5327, 5328, 5329, -5092, 5330]], "type": "Polygon", "properties": {"name": "05103"}, "id": "05103"}, {"arcs": [[-4700, 5331, 5332, 5333, 5334, 5335, 5336, 5337]], "type": "Polygon", "properties": {"name": "39037"}, "id": "39037"}, {"arcs": [[-2727, 5338, 5339, 5340, 5341, 5342]], "type": "Polygon", "properties": {"name": "40071"}, "id": "40071"}, {"arcs": [[-2659, 5343, -3765, 5344, -3243, 5345]], "type": "Polygon", "properties": {"name": "46041"}, "id": "46041"}, {"arcs": [[-984, 5346, 5347, 5348, 5349, 5350]], "type": "Polygon", "properties": {"name": "41057"}, "id": "41057"}, {"arcs": [[-1302, 5351, -3845, 5352, -3494, 5353, 5354]], "type": "Polygon", "properties": {"name": "13077"}, "id": "13077"}, {"arcs": [[5355, 5356, 5357, 5358, 5359, 5360]], "type": "Polygon", "properties": {"name": "28127"}, "id": "28127"}, {"arcs": [[-3650, -5148, -3658, 5361, 5362, 5363]], "type": "Polygon", "properties": {"name": "28131"}, "id": "28131"}, {"arcs": [[-1783, 5364, 5365, 5366, -5100]], "type": "Polygon", "properties": {"name": "06013"}, "id": "06013"}, {"arcs": [[5367, 5368, 5369, 5370, 5371, 5372, 5373]], "type": "Polygon", "properties": {"name": "47017"}, "id": "47017"}, {"arcs": [[-1222, 5374, 5375, 5376, -3460, 5377, -3804]], "type": "Polygon", "properties": {"name": "51087"}, "id": "51087"}, {"arcs": [[-4871, 5378, 5379, 5380, 5381]], "type": "Polygon", "properties": {"name": "18119"}, "id": "18119"}, {"arcs": [[5382, 5383, 5384, 5385, 5386, 5387]], "type": "Polygon", "properties": {"name": "36119"}, "id": "36119"}, {"arcs": [[-928, 5388, 5389, 5390, -5231]], "type": "Polygon", "properties": {"name": "29017"}, "id": "29017"}, {"arcs": [[-2259, 5391, 5392, 5393, 5394]], "type": "Polygon", "properties": {"name": "54047"}, "id": "54047"}, {"arcs": [[-973, 5395, 5396, 5397, 5398, 5399, 5400]], "type": "Polygon", "properties": {"name": "54033"}, "id": "54033"}, {"arcs": [[-1039, 5401, -1466, -1612, 5402, 5403, 5404]], "type": "Polygon", "properties": {"name": "37077"}, "id": "37077"}, {"arcs": [[-536, 5405, 5406, 5407, 5408]], "type": "Polygon", "properties": {"name": "09009"}, "id": "09009"}, {"arcs": [[-4538, 5409, 5410, 5411, 5412]], "type": "Polygon", "properties": {"name": "31139"}, "id": "31139"}, {"arcs": [[5413, 5414, 5415, 5416, 5417]], "type": "Polygon", "properties": {"name": "13023"}, "id": "13023"}, {"arcs": [[-2059, 5418, 5419, 5420, 5421, -4710, 5422, 5423]], "type": "Polygon", "properties": {"name": "13033"}, "id": "13033"}, {"arcs": [[5424, 5425, 5426, 5427, 5428, 5429, 5430]], "type": "Polygon", "properties": {"name": "17181"}, "id": "17181"}, {"arcs": [[-1100, -3833, -3928, 5431, 5432, 5433, -1897]], "type": "Polygon", "properties": {"name": "17091"}, "id": "17091"}, {"arcs": [[-2402, 5434, 5435, -3933, -3896, -4542]], "type": "Polygon", "properties": {"name": "38051"}, "id": "38051"}, {"arcs": [[-4096, 5436, 5437, 5438, 5439, 5440, 5441, 5442]], "type": "Polygon", "properties": {"name": "31141"}, "id": "31141"}, {"arcs": [[-1036, 5443, 5444, 5445, -2557, -4388]], "type": "Polygon", "properties": {"name": "37185"}, "id": "37185"}, {"arcs": [[-2854, -4489, -4581, 5446, 5447]], "type": "Polygon", "properties": {"name": "72009"}, "id": "72009"}, {"arcs": [[-3512, 5448, 5449, 5450, -5227, 5451, 5452]], "type": "Polygon", "properties": {"name": "13197"}, "id": "13197"}, {"arcs": [[5453, 5454, 5455, 5456, 5457, 5458]], "type": "Polygon", "properties": {"name": "46027"}, "id": "46027"}, {"arcs": [[-753, 5459, -4494, 5460, 5461, 5462]], "type": "Polygon", "properties": {"name": "10005"}, "id": "10005"}, {"arcs": [[5463, 5464, 5465, 5466, 5467, 5468]], "type": "Polygon", "properties": {"name": "13159"}, "id": "13159"}, {"arcs": [[-2676, -3522, -4999, 5469, 5470, 5471]], "type": "Polygon", "properties": {"name": "29175"}, "id": "29175"}, {"arcs": [[-371, 5472, -2723, 5473, 5474, -3024, 5475]], "type": "Polygon", "properties": {"name": "20015"}, "id": "20015"}, {"arcs": [[-3593, 5476, 5477, -4775, 5478]], "type": "Polygon", "properties": {"name": "48209"}, "id": "48209"}, {"arcs": [[-1178, -3209, 5479, 5480, 5481]], "type": "Polygon", "properties": {"name": "48325"}, "id": "48325"}, {"arcs": [[-3317, 5482, 5483, 5484]], "type": "Polygon", "properties": {"name": "26105"}, "id": "26105"}, {"arcs": [[5485, 5486, 5487, 5488]], "type": "Polygon", "properties": {"name": "45013"}, "id": "45013"}, {"arcs": [[-511, 5489, -5459, 5490, 5491, 5492]], "type": "Polygon", "properties": {"name": "46135"}, "id": "46135"}, {"arcs": [[-2356, 5493, 5494, 5495, 5496, 5497]], "type": "Polygon", "properties": {"name": "55105"}, "id": "55105"}, {"arcs": [[-5235, 5498, 5499, 5500]], "type": "Polygon", "properties": {"name": "45077"}, "id": "45077"}, {"arcs": [[-104, 5501, 5502, 5503, 5504, 5505]], "type": "Polygon", "properties": {"name": "53013"}, "id": "53013"}, {"arcs": [[-1987, -3124, 5506, 5507, -2036, 5508, -3184]], "type": "Polygon", "properties": {"name": "18023"}, "id": "18023"}, {"arcs": [[-905, 5509, 5510, -4182, -4176, 5511]], "type": "Polygon", "properties": {"name": "17027"}, "id": "17027"}, {"arcs": [[-1690, 5512, -3230, 5513]], "type": "Polygon", "properties": {"name": "16067"}, "id": "16067"}, {"arcs": [[-4140, 5514, 5515, -4498, 5516]], "type": "Polygon", "properties": {"name": "42113"}, "id": "42113"}, {"arcs": [[-5361, 5517, 5518, 5519, 5520]], "type": "Polygon", "properties": {"name": "28121"}, "id": "28121"}, {"arcs": [[-2630, 5521, 5522, 5523, -3991]], "type": "Polygon", "properties": {"name": "48345"}, "id": "48345"}, {"arcs": [[-1156, 5524, 5525, 5526, -2642, -4408, 5527]], "type": "Polygon", "properties": {"name": "41039"}, "id": "41039"}, {"arcs": [[-237, 5528, 5529, 5530, -3774]], "type": "Polygon", "properties": {"name": "48485"}, "id": "48485"}, {"arcs": [[-2459, 5531, 5532, 5533, 5534, -5149]], "type": "Polygon", "properties": {"name": "26155"}, "id": "26155"}, {"arcs": [[-29, -464, -4782, 5535, 5536, 5537, -496]], "type": "Polygon", "properties": {"name": "20089"}, "id": "20089"}, {"arcs": [[-4781, 5538, 5539, 5540, -5536]], "type": "Polygon", "properties": {"name": "20123"}, "id": "20123"}, {"arcs": [[5541, 5542, 5543, 5544, 5545]], "type": "Polygon", "properties": {"name": "12007"}, "id": "12007"}, {"arcs": [[-2312, -3654, 5546, 5547, 5548, 5549]], "type": "Polygon", "properties": {"name": "28091"}, "id": "28091"}, {"arcs": [[-2541, 5550, -5362, -3657, 5551]], "type": "Polygon", "properties": {"name": "28039"}, "id": "28039"}, {"arcs": [[-3800, 5552, -4412, -5251, 5553, -4634]], "type": "Polygon", "properties": {"name": "17085"}, "id": "17085"}, {"arcs": [[-2033, 5554, -4094, -4879, 5555, 5556]], "type": "Polygon", "properties": {"name": "18059"}, "id": "18059"}, {"arcs": [[-4836, 5557]], "type": "Polygon", "properties": {"name": "51620"}, "id": "51620"}, {"arcs": [[-3259, 5558, -4695, -4621, 5559]], "type": "Polygon", "properties": {"name": "48329"}, "id": "48329"}, {"arcs": [[-1419, 5560, 5561, 5562, 5563, 5564]], "type": "Polygon", "properties": {"name": "20171"}, "id": "20171"}, {"arcs": [[-1020, 5565, -1123, -1515, 5566]], "type": "Polygon", "properties": {"name": "30013"}, "id": "30013"}, {"arcs": [[5567]], "type": "Polygon", "properties": {"name": "51660"}, "id": "51660"}, {"arcs": [[-2509, 5568, 5569, -5425, 5570]], "type": "Polygon", "properties": {"name": "17199"}, "id": "17199"}, {"arcs": [[-1513, 5571, 5572, 5573, 5574, 5575, 5576, 5577, -2347, 5578]], "type": "Polygon", "properties": {"name": "30029"}, "id": "30029"}, {"arcs": [[-4744, 5579, 5580, 5581]], "type": "Polygon", "properties": {"name": "72111"}, "id": "72111"}, {"arcs": [[-3191, 5582, 5583, 5584, 5585, 5586]], "type": "Polygon", "properties": {"name": "20189"}, "id": "20189"}, {"arcs": [[-771, -1404, 5587, -3997, 5588, 5589]], "type": "Polygon", "properties": {"name": "21067"}, "id": "21067"}, {"arcs": [[-660, 5590, 5591, 5592, 5593]], "type": "Polygon", "properties": {"name": "21091"}, "id": "21091"}, {"arcs": [[-1767, 5594, 5595, 5596, 5597, 5598, 5599, -2400]], "type": "Polygon", "properties": {"name": "46013"}, "id": "46013"}, {"arcs": [[-4423, 5600, 5601, 5602, -5398, 5603]], "type": "Polygon", "properties": {"name": "54001"}, "id": "54001"}, {"arcs": [[-3551, 5604, 5605, 5606, 5607, 5608]], "type": "Polygon", "properties": {"name": "47181"}, "id": "47181"}, {"arcs": [[-2381, 5609, -4161, 5610, 5611]], "type": "Polygon", "properties": {"name": "31013"}, "id": "31013"}, {"arcs": [[-629, 5612, -1990, 5613, 5614, 5615, -4501, -5045]], "type": "Polygon", "properties": {"name": "42097"}, "id": "42097"}, {"arcs": [[-222, -585, 5616, -1636, 5617, 5618]], "type": "Polygon", "properties": {"name": "48469"}, "id": "48469"}, {"arcs": [[5619]], "type": "Polygon", "properties": {"name": "51530"}, "id": "51530"}, {"arcs": [[-1580, 5620, 5621, -5252]], "type": "Polygon", "properties": {"name": "26147"}, "id": "26147"}, {"arcs": [[-2, -4541, 5622, -567, 5623, 5624, 5625]], "type": "Polygon", "properties": {"name": "31173"}, "id": "31173"}, {"arcs": [[-524, 5626, 5627, 5628, 5629]], "type": "Polygon", "properties": {"name": "50015"}, "id": "50015"}, {"arcs": [[-1495, -4165, -1796, 5630, 5631, 5632]], "type": "Polygon", "properties": {"name": "51067"}, "id": "51067"}, {"arcs": [[-472, -2694, 5633, 5634, 5635, 5636]], "type": "Polygon", "properties": {"name": "40011"}, "id": "40011"}, {"arcs": [[5637, 5638, 5639, 5640, 5641]], "type": "Polygon", "properties": {"name": "53037"}, "id": "53037"}, {"arcs": [[-4090, 5642, 5643, -5335, 5644]], "type": "Polygon", "properties": {"name": "18135"}, "id": "18135"}, {"arcs": [[5645, 5646, 5647, 5648, 5649, 5650]], "type": "Polygon", "properties": {"name": "49025"}, "id": "49025"}, {"arcs": [[-4422, 5651, 5652, -5601]], "type": "Polygon", "properties": {"name": "54093"}, "id": "54093"}, {"arcs": [[-2582, 5653, 5654, -5580, -4743, 5655]], "type": "Polygon", "properties": {"name": "72113"}, "id": "72113"}, {"arcs": [[-3152, 5656, 5657, -5104, 5658]], "type": "Polygon", "properties": {"name": "55023"}, "id": "55023"}, {"arcs": [[-281, -3913, 5659, 5660, -391, 5661]], "type": "Polygon", "properties": {"name": "01071"}, "id": "01071"}, {"arcs": [[-3837, 5662, 5663, 5664, -5301, 5665]], "type": "Polygon", "properties": {"name": "19123"}, "id": "19123"}, {"arcs": [[-2990, -5155, 5666, 5667, -4340, -3340]], "type": "Polygon", "properties": {"name": "20045"}, "id": "20045"}, {"arcs": [[-1336, 5668, -5593, 5669, 5670, 5671]], "type": "Polygon", "properties": {"name": "21059"}, "id": "21059"}, {"arcs": [[-2610, -3198, 5672, 5673, 5674, 5675]], "type": "Polygon", "properties": {"name": "21197"}, "id": "21197"}, {"arcs": [[-214, 5676, -1669, -2093, -4383, 5677]], "type": "Polygon", "properties": {"name": "29097"}, "id": "29097"}, {"arcs": [[-111, -1927, -4298, 5678]], "type": "Polygon", "properties": {"name": "41061"}, "id": "41061"}, {"arcs": [[-599, -1012, 5679, 5680, 5681, 5682]], "type": "Polygon", "properties": {"name": "13151"}, "id": "13151"}, {"arcs": [[-806, 5683, 5684, 5685, -3730, -5120, 5686, 5687]], "type": "Polygon", "properties": {"name": "38001"}, "id": "38001"}, {"arcs": [[-2577, 5688, 5689]], "type": "Polygon", "properties": {"name": "37137"}, "id": "37137"}, {"arcs": [[5690, 5691, 5692, 5693, 5694, 5695, 5696]], "type": "Polygon", "properties": {"name": "21083"}, "id": "21083"}, {"arcs": [[-2456, 5697, -4188, 5698, 5699, -2648]], "type": "Polygon", "properties": {"name": "42021"}, "id": "42021"}, {"arcs": [[-1063, -1069, 5700, 5701, 5702, 5703, -1968]], "type": "Polygon", "properties": {"name": "47107"}, "id": "47107"}, {"arcs": [[-3586, -5150, -5535, 5704, 5705, 5706]], "type": "Polygon", "properties": {"name": "26093"}, "id": "26093"}, {"arcs": [[-2699, -3547, 5707, -5005, 5708, 5709, -3245]], "type": "Polygon", "properties": {"name": "08001"}, "id": "08001"}, {"arcs": [[-942, 5710, 5711, 5712, 5713]], "type": "Polygon", "properties": {"name": "42069"}, "id": "42069"}, {"arcs": [[-2254, -3250, 5714, 5715, 5716, 5717, 5718, -4704]], "type": "Polygon", "properties": {"name": "40123"}, "id": "40123"}, {"arcs": [[-2040, 5719, 5720, 5721, -4328, 5722]], "type": "Polygon", "properties": {"name": "40037"}, "id": "40037"}, {"arcs": [[-1644, 5723, 5724, 5725]], "type": "Polygon", "properties": {"name": "48457"}, "id": "48457"}, {"arcs": [[-407, 5726, 5727, 5728, -2960]], "type": "Polygon", "properties": {"name": "47175"}, "id": "47175"}, {"arcs": [[-2042, 5729, -4705, -5719, 5730, 5731, 5732]], "type": "Polygon", "properties": {"name": "40125"}, "id": "40125"}, {"arcs": [[-2837, 5733, -3441, 5734, -4770]], "type": "Polygon", "properties": {"name": "09013"}, "id": "09013"}, {"arcs": [[-191, -4518, 5735, 5736, 5737, 5738]], "type": "Polygon", "properties": {"name": "35053"}, "id": "35053"}, {"arcs": [[-3611, 5739, 5740, 5741, 5742]], "type": "Polygon", "properties": {"name": "13003"}, "id": "13003"}, {"arcs": [[-3307, 5743, 5744, 5745, 5746]], "type": "Polygon", "properties": {"name": "12031"}, "id": "12031"}, {"arcs": [[-1136, -1705, 5747, 5748, 5749]], "type": "Polygon", "properties": {"name": "48145"}, "id": "48145"}, {"arcs": [[-1270, 5750, 5751, -4588, -2984, 5752, -4192]], "type": "Polygon", "properties": {"name": "05149"}, "id": "05149"}, {"arcs": [[-1421, 5753, 5754, 5755, -4986]], "type": "Polygon", "properties": {"name": "20033"}, "id": "20033"}, {"arcs": [[-3996, 5756, 5757, 5758, -5589]], "type": "Polygon", "properties": {"name": "21113"}, "id": "21113"}, {"arcs": [[-356, 5759, 5760, 5761, -1910, -5028]], "type": "Polygon", "properties": {"name": "21171"}, "id": "21171"}, {"arcs": [[-2691, 5762, 5763, 5764, -3752, 5765, 5766]], "type": "Polygon", "properties": {"name": "40075"}, "id": "40075"}, {"arcs": [[-38, -2544, -2208, -3880, 5767, -636]], "type": "Polygon", "properties": {"name": "46079"}, "id": "46079"}, {"arcs": [[-364, 5768, 5769, 5770, 5771, 5772, -1610, 5773]], "type": "Polygon", "properties": {"name": "37033"}, "id": "37033"}, {"arcs": [[5774, 5775, 5776]], "type": "Polygon", "properties": {"name": "48377"}, "id": "48377"}, {"arcs": [[-350, 5777, 5778, 5779, -4505, 5780]], "type": "Polygon", "properties": {"name": "39057"}, "id": "39057"}, {"arcs": [[[-1240, 5781, 5782, 5783]], [[5784, 5785]]], "type": "MultiPolygon", "properties": {"name": "48489"}, "id": "48489"}, {"arcs": [[-1168, 5786, 5787, 5788, 5789, 5790, 5791]], "type": "Polygon", "properties": {"name": "72021"}, "id": "72021"}, {"arcs": [[-4393, 5792, 5793]], "type": "Polygon", "properties": {"name": "35028"}, "id": "35028"}, {"arcs": [[[-3301, 5794, 5795]], [[5796, 5797, 5798, 5799, 5800]], [[5801]], [[5802]]], "type": "MultiPolygon", "properties": {"name": "02122"}, "id": "02122"}, {"arcs": [[-2538, 5803, 5804, -4447, -4024, 5805, 5806]], "type": "Polygon", "properties": {"name": "01003"}, "id": "01003"}, {"arcs": [[-4599, 5807, 5808, 5809, 5810]], "type": "Polygon", "properties": {"name": "19007"}, "id": "19007"}, {"arcs": [[5811]], "type": "Polygon", "properties": {"name": "78010"}, "id": "78010"}, {"arcs": [[-246, 5812, -5375, -1221, -4222, -1732]], "type": "Polygon", "properties": {"name": "51127"}, "id": "51127"}, {"arcs": [[-2051, -3497, -2419, 5813, -5449, -3511, -4674]], "type": "Polygon", "properties": {"name": "13263"}, "id": "13263"}, {"arcs": [[-1161, -4632, -1772, -3894, 5814]], "type": "Polygon", "properties": {"name": "36049"}, "id": "36049"}, {"arcs": [[5815, 5816, 5817, 5818, 5819]], "type": "Polygon", "properties": {"name": "54015"}, "id": "54015"}, {"arcs": [[-2273, 5820, -2314, 5821, 5822, 5823, 5824]], "type": "Polygon", "properties": {"name": "18077"}, "id": "18077"}, {"arcs": [[-2127, 5825, 5826, 5827, -5632, 5828, 5829, 5830]], "type": "Polygon", "properties": {"name": "51019"}, "id": "51019"}, {"arcs": [[-2383, 5831, 5832, -3708, -4173, -5181]], "type": "Polygon", "properties": {"name": "35033"}, "id": "35033"}, {"arcs": [[-1841, 5833, 5834, 5835, -5439, 5836]], "type": "Polygon", "properties": {"name": "31011"}, "id": "31011"}, {"arcs": [[-1233, 5837, 5838, 5839, 5840, -3945, 5841]], "type": "Polygon", "properties": {"name": "29149"}, "id": "29149"}, {"arcs": [[-4955, 5842, 5843, 5844, 5845]], "type": "Polygon", "properties": {"name": "47083"}, "id": "47083"}, {"arcs": [[-4139, 5846, -5713, 5847, -5515]], "type": "Polygon", "properties": {"name": "42131"}, "id": "42131"}, {"arcs": [[5848, 5849, 5850, 5851, 5852, 5853]], "type": "Polygon", "properties": {"name": "37107"}, "id": "37107"}, {"arcs": [[-2965, 5854, -3616, 5855, 5856, 5857]], "type": "Polygon", "properties": {"name": "18167"}, "id": "18167"}, {"arcs": [[-793, 5858, 5859, -2504, 5860, 5861, 5862]], "type": "Polygon", "properties": {"name": "18039"}, "id": "18039"}, {"arcs": [[-3623, 5863, 5864, 5865, 5866, 5867, 5868, 5869, 5870, 5871]], "type": "Polygon", "properties": {"name": "51077"}, "id": "51077"}, {"arcs": [[-69, -1434, -2924, 5872]], "type": "Polygon", "properties": {"name": "48303"}, "id": "48303"}, {"arcs": [[-913, 5873, -2603, 5874, -3282]], "type": "Polygon", "properties": {"name": "27093"}, "id": "27093"}, {"arcs": [[-3814, 5875, 5876, 5877, -3843, 5878, 5879]], "type": "Polygon", "properties": {"name": "39005"}, "id": "39005"}, {"arcs": [[-5410, 5880, -5440, -5836, 5881]], "type": "Polygon", "properties": {"name": "31119"}, "id": "31119"}, {"arcs": [[-1716, -3051, 5882, 5883]], "type": "Polygon", "properties": {"name": "12085"}, "id": "12085"}, {"arcs": [[-137, 5884, 5885, 5886]], "type": "Polygon", "properties": {"name": "08079"}, "id": "08079"}, {"arcs": [[-1013, 5887, 5888, 5889, -4465, 5890, 5891]], "type": "Polygon", "properties": {"name": "13085"}, "id": "13085"}, {"arcs": [[-3423, 5892, 5893, 5894, 5895]], "type": "Polygon", "properties": {"name": "13167"}, "id": "13167"}, {"arcs": [[-1658, 5896, 5897, 5898, 5899, 5900]], "type": "Polygon", "properties": {"name": "05095"}, "id": "05095"}, {"arcs": [[-3037, 5901, 5902, 5903, 5904, -4884]], "type": "Polygon", "properties": {"name": "29059"}, "id": "29059"}, {"arcs": [[-1496, -5633, -5828, 5905, 5906, -5772, 5907, -5770, 5908]], "type": "Polygon", "properties": {"name": "51143"}, "id": "51143"}, {"arcs": [[-2751, 5909, 5910, 5911]], "type": "Polygon", "properties": {"name": "02068"}, "id": "02068"}, {"arcs": [[-3182, -5118, 5912, 5913, 5914, 5915]], "type": "Polygon", "properties": {"name": "20145"}, "id": "20145"}, {"arcs": [[-4077, 5916, 5917, -4342, 5918]], "type": "Polygon", "properties": {"name": "20209"}, "id": "20209"}, {"arcs": [[-1984, 5919, 5920, 5921, 5922]], "type": "Polygon", "properties": {"name": "12029"}, "id": "12029"}, {"arcs": [[-1582, -5256, 5923, 5924, 5925, 5926, 5927]], "type": "Polygon", "properties": {"name": "26157"}, "id": "26157"}, {"arcs": [[-2749, 5928, 5929, 5930, -5911, 5931]], "type": "Polygon", "properties": {"name": "02240"}, "id": "02240"}, {"arcs": [[-874, 5932, -1615, 5933, 5934, 5935]], "type": "Polygon", "properties": {"name": "20065"}, "id": "20065"}, {"arcs": [[-3738, 5936, -5274, 5937, 5938, -5132]], "type": "Polygon", "properties": {"name": "22097"}, "id": "22097"}, {"arcs": [[-3549, 5939, 5940, 5941, -4083, 5942]], "type": "Polygon", "properties": {"name": "47055"}, "id": "47055"}, {"arcs": [[-2075, -2186, 5943, 5944, 5945, -4101, 5946]], "type": "Polygon", "properties": {"name": "39095"}, "id": "39095"}, {"arcs": [[-1922, 5947, 5948, 5949, 5950, 5951, -4893, 5952, 5953, 5954]], "type": "Polygon", "properties": {"name": "05093"}, "id": "05093"}, {"arcs": [[-4361, 5955, 5956]], "type": "Polygon", "properties": {"name": "72117"}, "id": "72117"}, {"arcs": [[5957, 5958, 5959, 5960]], "type": "Polygon", "properties": {"name": "18043"}, "id": "18043"}, {"arcs": [[-3192, -5587, 5961, 5962, 5963]], "type": "Polygon", "properties": {"name": "20129"}, "id": "20129"}, {"arcs": [[-768, 5964, -1348, 5965, -3677, 5966, -1351]], "type": "Polygon", "properties": {"name": "21081"}, "id": "21081"}, {"arcs": [[-1340, -2569, 5967, 5968, 5969]], "type": "Polygon", "properties": {"name": "21217"}, "id": "21217"}, {"arcs": [[-1066, -4006, -4919, 5970, 5971]], "type": "Polygon", "properties": {"name": "37075"}, "id": "37075"}, {"arcs": [[-1809, 5972, 5973, 5974]], "type": "Polygon", "properties": {"name": "54045"}, "id": "54045"}, {"arcs": [[-4945, 5975, 5976, 5977]], "type": "Polygon", "properties": {"name": "54073"}, "id": "54073"}, {"arcs": [[-165, 5978, 5979, 5980, 5981, 5982, -2737]], "type": "Polygon", "properties": {"name": "51071"}, "id": "51071"}, {"arcs": [[5983, 5984, 5985, 5986, 5987]], "type": "Polygon", "properties": {"name": "54019"}, "id": "54019"}, {"arcs": [[5988, 5989, 5990, 5991, 5992, 5993]], "type": "Polygon", "properties": {"name": "53061"}, "id": "53061"}, {"arcs": [[-185, 5994, 5995, 5996, 5997, 5998]], "type": "Polygon", "properties": {"name": "35015"}, "id": "35015"}, {"arcs": [[-250, 5999, 6000, -801, 6001, 6002]], "type": "Polygon", "properties": {"name": "31117"}, "id": "31117"}, {"arcs": [[-650, 6003, -3090, 6004, 6005]], "type": "Polygon", "properties": {"name": "31145"}, "id": "31145"}, {"arcs": [[-881, 6006, -1025, -1474]], "type": "Polygon", "properties": {"name": "31149"}, "id": "31149"}, {"arcs": [[-2784, 6007, 6008, -5845, 6009]], "type": "Polygon", "properties": {"name": "47085"}, "id": "47085"}, {"arcs": [[-2366, 6010, 6011, -4316, 6012, -5070]], "type": "Polygon", "properties": {"name": "17125"}, "id": "17125"}, {"arcs": [[-5868, 6013, 6014, 6015, 6016]], "type": "Polygon", "properties": {"name": "51197"}, "id": "51197"}, {"arcs": [[-3422, 6017, -3849, 6018, 6019, -5893]], "type": "Polygon", "properties": {"name": "13303"}, "id": "13303"}, {"arcs": [[-990, 6020, -5641, 6021, 6022, 6023, 6024]], "type": "Polygon", "properties": {"name": "53077"}, "id": "53077"}, {"arcs": [[-155, 6025, 6026, 6027]], "type": "Polygon", "properties": {"name": "05143"}, "id": "05143"}, {"arcs": [[-4248, 6028, 6029, 6030, 6031, 6032, 6033, 6034]], "type": "Polygon", "properties": {"name": "48213"}, "id": "48213"}, {"arcs": [[-921, 6035, 6036, -978, 6037, 6038, 6039]], "type": "Polygon", "properties": {"name": "55035"}, "id": "55035"}, {"arcs": [[-181, -394, -1758, -2961, -5729, 6040]], "type": "Polygon", "properties": {"name": "47153"}, "id": "47153"}, {"arcs": [[-3171, 6041, -3797, 6042, 6043, 6044]], "type": "Polygon", "properties": {"name": "48471"}, "id": "48471"}, {"arcs": [[-2760, 6045, 6046, 6047, -5649, 6048]], "type": "Polygon", "properties": {"name": "04005"}, "id": "04005"}, {"arcs": [[-2728, -5343, 6049, 6050, 6051, 6052]], "type": "Polygon", "properties": {"name": "20191"}, "id": "20191"}, {"arcs": [[-1254, 6053, 6054, -5483]], "type": "Polygon", "properties": {"name": "26127"}, "id": "26127"}, {"arcs": [[-676, -1604, 6055, 6056]], "type": "Polygon", "properties": {"name": "27065"}, "id": "27065"}, {"arcs": [[-159, 6057, 6058, 6059, -2994, 6060]], "type": "Polygon", "properties": {"name": "39007"}, "id": "39007"}, {"arcs": [[-1881, 6061, 6062, -4865, -5076, -5078]], "type": "Polygon", "properties": {"name": "06003"}, "id": "06003"}, {"arcs": [[[6063, 6064, 6065]], [[6066, 6067]], [[6068, 6069]]], "type": "MultiPolygon", "properties": {"name": "48167"}, "id": "48167"}, {"arcs": [[-5031, 6070, 6071, 6072, 6073]], "type": "Polygon", "properties": {"name": "01011"}, "id": "01011"}, {"arcs": [[-849, 6074, 6075, 6076, -5432, -3927]], "type": "Polygon", "properties": {"name": "17105"}, "id": "17105"}, {"arcs": [[-587, -2374, 6077, -5333, 6078]], "type": "Polygon", "properties": {"name": "39135"}, "id": "39135"}, {"arcs": [[-1678, -3073, 6079, -1699, 6080, -3394]], "type": "Polygon", "properties": {"name": "39079"}, "id": "39079"}, {"arcs": [[-2336, -4445, 6081, 6082, 6083, 6084, -6064, 6085]], "type": "Polygon", "properties": {"name": "48201"}, "id": "48201"}, {"arcs": [[-376, 6086, -2833, 6087, 6088]], "type": "Polygon", "properties": {"name": "25017"}, "id": "25017"}, {"arcs": [[6089, 6090, 6091, 6092]], "type": "Polygon", "properties": {"name": "72145"}, "id": "72145"}, {"arcs": [[-2922, 6093, -4618, -4603, -5177]], "type": "Polygon", "properties": {"name": "48115"}, "id": "48115"}, {"arcs": [[-289, 6094, 6095, 6096, 6097, 6098]], "type": "Polygon", "properties": {"name": "36069"}, "id": "36069"}, {"arcs": [[[-3300, 6099, -5930, 6100, 6101, 6102, -5795]], [[6103]], [[6104]], [[6105]], [[6106]]], "type": "MultiPolygon", "properties": {"name": "02261"}, "id": "02261"}, {"arcs": [[-4659, 6107, 6108, 6109, 6110]], "type": "Polygon", "properties": {"name": "01001"}, "id": "01001"}, {"arcs": [[-2867, 6111, 6112, -3341, -4339]], "type": "Polygon", "properties": {"name": "20121"}, "id": "20121"}, {"arcs": [[-5415, 6113, 6114, 6115, 6116, 6117]], "type": "Polygon", "properties": {"name": "13091"}, "id": "13091"}, {"arcs": [[-3141, -3784, 6118, -5168, 6119, 6120, 6121]], "type": "Polygon", "properties": {"name": "36023"}, "id": "36023"}, {"arcs": [[-325, 6122, 6123, 6124, -839]], "type": "Polygon", "properties": {"name": "13039"}, "id": "13039"}, {"arcs": [[-1590, 6125, 6126, -3587, -5707, 6127]], "type": "Polygon", "properties": {"name": "26161"}, "id": "26161"}, {"arcs": [[-339, 6128, -5861, -2503, 6129]], "type": "Polygon", "properties": {"name": "18087"}, "id": "18087"}, {"arcs": [[-2776, 6130, 6131, 6132, 6133, 6134, 6135]], "type": "Polygon", "properties": {"name": "48371"}, "id": "48371"}, {"arcs": [[-729, 6136, -736, -2860, 6137]], "type": "Polygon", "properties": {"name": "13225"}, "id": "13225"}, {"arcs": [[-3056, 6138, -3419, -4467, 6139]], "type": "Polygon", "properties": {"name": "13311"}, "id": "13311"}, {"arcs": [[-89, 6140, -5421, 6141, -5894, -6020, 6142, 6143]], "type": "Polygon", "properties": {"name": "13163"}, "id": "13163"}, {"arcs": [[-5187, 6144, 6145, 6146, 6147, 6148, 6149]], "type": "Polygon", "properties": {"name": "55083"}, "id": "55083"}, {"arcs": [[-1641, 6150, -3481, 6151, 6152]], "type": "Polygon", "properties": {"name": "48347"}, "id": "48347"}, {"arcs": [[-3444, 6153, 6154]], "type": "Polygon", "properties": {"name": "44009"}, "id": "44009"}, {"arcs": [[6155, 6156, 6157, 6158, 6159, 6160, 6161, 6162]], "type": "Polygon", "properties": {"name": "53047"}, "id": "53047"}, {"arcs": [[-864, -3566, 6163, 6164, 6165, 6166, 6167]], "type": "Polygon", "properties": {"name": "53063"}, "id": "53063"}, {"arcs": [[-2596, 6168, 6169, -6145, -5186, -3953, -4476]], "type": "Polygon", "properties": {"name": "55041"}, "id": "55041"}, {"arcs": [[-3923, 6170, 6171, -4350, -4948]], "type": "Polygon", "properties": {"name": "55113"}, "id": "55113"}, {"arcs": [[-2528, 6172, 6173, 6174, 6175, 6176]], "type": "Polygon", "properties": {"name": "34017"}, "id": "34017"}, {"arcs": [[-695, 6177, 6178, 6179, 6180, 6181, -3841, 6182]], "type": "Polygon", "properties": {"name": "39151"}, "id": "39151"}, {"arcs": [[-389, 6183, -3206, -3594, -5479, -4774]], "type": "Polygon", "properties": {"name": "48187"}, "id": "48187"}, {"arcs": [[[-5993, 6184]], [[6185]]], "type": "MultiPolygon", "properties": {"name": "53029"}, "id": "53029"}, {"arcs": [[6186, 6187, 6188, 6189]], "type": "Polygon", "properties": {"name": "54037"}, "id": "54037"}, {"arcs": [[-302, -4860, 6190, 6191, 6192], [6193, 6194]], "type": "Polygon", "properties": {"name": "51153"}, "id": "51153"}, {"arcs": [[-1835, 6195, -4808, 6196, 6197, -3092]], "type": "Polygon", "properties": {"name": "42029"}, "id": "42029"}, {"arcs": [[-5394, 6198, 6199, 6200, -5981, 6201, 6202]], "type": "Polygon", "properties": {"name": "54055"}, "id": "54055"}, {"arcs": [[-747, 6203, 6204, -1969, -5704, 6205, 6206, 6207]], "type": "Polygon", "properties": {"name": "47145"}, "id": "47145"}, {"arcs": [[-4356, 6208]], "type": "Polygon", "properties": {"name": "53009"}, "id": "53009"}, {"arcs": [[-6166, 6209, 6210, 6211, 6212]], "type": "Polygon", "properties": {"name": "53065"}, "id": "53065"}, {"arcs": [[-1508, 6213, 6214, 6215, 6216, 6217]], "type": "Polygon", "properties": {"name": "19177"}, "id": "19177"}, {"arcs": [[-258, 6218, 6219, 6220]], "type": "Polygon", "properties": {"name": "31073"}, "id": "31073"}, {"arcs": [[-445, 6221, 6222, -4609, 6223, -2272, 6224]], "type": "Polygon", "properties": {"name": "28095"}, "id": "28095"}, {"arcs": [[-4023, 6225, 6226, -5806]], "type": "Polygon", "properties": {"name": "12033"}, "id": "12033"}, {"arcs": [[-2396, 6227, 6228, 6229, 6230, -4284]], "type": "Polygon", "properties": {"name": "48439"}, "id": "48439"}, {"arcs": [[-1503, -3275, 6231, 6232, -4965, -4348, 6233, 6234]], "type": "Polygon", "properties": {"name": "24033"}, "id": "24033"}, {"arcs": [[-1320, 6235, -4749, -3722, 6236, 6237, 6238]], "type": "Polygon", "properties": {"name": "51169"}, "id": "51169"}, {"arcs": [[-216, -5619, 6239, 6240, -3976, 6241]], "type": "Polygon", "properties": {"name": "48239"}, "id": "48239"}, {"arcs": [[-956, -1368, 6242, 6243, 6244, -3698]], "type": "Polygon", "properties": {"name": "40085"}, "id": "40085"}, {"arcs": [[-3425, -5418, 6245, 6246, 6247]], "type": "Polygon", "properties": {"name": "13289"}, "id": "13289"}, {"arcs": [[-694, -2997, -4891, -4201, 6248, -6178]], "type": "Polygon", "properties": {"name": "39099"}, "id": "39099"}, {"arcs": [[-2391, 6249, -6072, 6250, 6251, 6252]], "type": "Polygon", "properties": {"name": "01087"}, "id": "01087"}, {"arcs": [[-547, -4267, 6253, -4903, -4585, 6254, 6255]], "type": "Polygon", "properties": {"name": "17191"}, "id": "17191"}, {"arcs": [[-67, 6256, -3475, -79, -2632, -3990]], "type": "Polygon", "properties": {"name": "48437"}, "id": "48437"}, {"arcs": [[-1652, -4059, -4147, 6257, -4378, 6258]], "type": "Polygon", "properties": {"name": "29151"}, "id": "29151"}, {"arcs": [[-3272, -3686, 6259, -3327, 6260]], "type": "Polygon", "properties": {"name": "17089"}, "id": "17089"}, {"arcs": [[-1780, -2914, -4866, -6063, 6261]], "type": "Polygon", "properties": {"name": "06017"}, "id": "06017"}, {"arcs": [[-4016, 6262, 6263, 6264, 6265, 6266, 6267]], "type": "Polygon", "properties": {"name": "45055"}, "id": "45055"}, {"arcs": [[-3133, -3706, 6268, 6269, 6270, 6271, 6272]], "type": "Polygon", "properties": {"name": "37073"}, "id": "37073"}, {"arcs": [[-2884, -3646, 6273, 6274, 6275]], "type": "Polygon", "properties": {"name": "08089"}, "id": "08089"}, {"arcs": [[-1155, -1551, 6276, 6277, -4301, 6278, -5525]], "type": "Polygon", "properties": {"name": "41019"}, "id": "41019"}, {"arcs": [[-644, 6279, 6280, 6281, 6282, -5711, -941, 6283]], "type": "Polygon", "properties": {"name": "42089"}, "id": "42089"}, {"arcs": [[-1740, 6284, -2916, 6285, -2731, 6286]], "type": "Polygon", "properties": {"name": "05101"}, "id": "05101"}, {"arcs": [[-681, -1608, 6287, 6288, 6289]], "type": "Polygon", "properties": {"name": "38019"}, "id": "38019"}, {"arcs": [[-5340, 6290, 6291, 6292, 6293, 6294]], "type": "Polygon", "properties": {"name": "40103"}, "id": "40103"}, {"arcs": [[-1420, -5565, 6295, 6296, 6297, -5934, -1614, 6298]], "type": "Polygon", "properties": {"name": "20063"}, "id": "20063"}, {"arcs": [[-4847, -5133, -5939, 6299, 6300, 6301, 6302, 6303]], "type": "Polygon", "properties": {"name": "22077"}, "id": "22077"}, {"arcs": [[-22, 6304, 6305, 6306, 6307, -1847, -1850]], "type": "Polygon", "properties": {"name": "31067"}, "id": "31067"}, {"arcs": [[-4269, 6308, 6309, -5183, 6310, 6311]], "type": "Polygon", "properties": {"name": "01115"}, "id": "01115"}, {"arcs": [[-4562, 6312, -5520, 6313, 6314]], "type": "Polygon", "properties": {"name": "28123"}, "id": "28123"}, {"arcs": [[-595, 6315, 6316, 6317, 6318, -4472]], "type": "Polygon", "properties": {"name": "13095"}, "id": "13095"}, {"arcs": [[-5961, 6319, 6320, 6321, 6322, 6323]], "type": "Polygon", "properties": {"name": "18061"}, "id": "18061"}, {"arcs": [[-861, -6168, 6324, 6325, 6326, 6327, 6328]], "type": "Polygon", "properties": {"name": "16017"}, "id": "16017"}, {"arcs": [[-177, 6329, 6330]], "type": "Polygon", "properties": {"name": "13047"}, "id": "13047"}, {"arcs": [[-897, 6331, 6332, 6333, -2486, 6334]], "type": "Polygon", "properties": {"name": "22059"}, "id": "22059"}, {"arcs": [[6335, 6336, 6337, 6338, 6339, 6340, 6341]], "type": "Polygon", "properties": {"name": "23027"}, "id": "23027"}, {"arcs": [[-3378, -4966, -6233, 6342, -5063, -4114]], "type": "Polygon", "properties": {"name": "24027"}, "id": "24027"}, {"arcs": [[-3040, -4244, 6343, 6344, 6345, 6346]], "type": "Polygon", "properties": {"name": "49035"}, "id": "49035"}, {"arcs": [[-533, -5409, 6347, -4771, -5735, -3440]], "type": "Polygon", "properties": {"name": "09003"}, "id": "09003"}, {"arcs": [[-2836, 6348, 6349, -3442, -5734]], "type": "Polygon", "properties": {"name": "09015"}, "id": "09015"}, {"arcs": [[[6350, -1998, 6351]], [[-2000, 6352]], [[-2002, 6353, 6354]], [[6355]], [[6356]]], "type": "MultiPolygon", "properties": {"name": "12087"}, "id": "12087"}, {"arcs": [[-3446, 6357, 6358, -6181, 6359, -4203]], "type": "Polygon", "properties": {"name": "39157"}, "id": "39157"}, {"arcs": [[-2529, -6177, 6360, -5012]], "type": "Polygon", "properties": {"name": "36085"}, "id": "36085"}, {"arcs": [[-348, 6361, -3071, -3406, -2817, 6362]], "type": "Polygon", "properties": {"name": "39071"}, "id": "39071"}, {"arcs": [[-3202, -4482, 6363, 6364]], "type": "Polygon", "properties": {"name": "27077"}, "id": "27077"}, {"arcs": [[-378, -2433, 6365, 6366, -3118, -3228, -4545]], "type": "Polygon", "properties": {"name": "16011"}, "id": "16011"}, {"arcs": [[-1554, 6367, 6368, 6369, -2683]], "type": "Polygon", "properties": {"name": "72023"}, "id": "72023"}, {"arcs": [[-34, -2865, 6370, -1453]], "type": "Polygon", "properties": {"name": "72069"}, "id": "72069"}, {"arcs": [[-37, 6371, 6372, -2803]], "type": "Polygon", "properties": {"name": "72077"}, "id": "72077"}, {"arcs": [[-4757, -5236, -5501, 6373, 6374, 6375, 6376]], "type": "Polygon", "properties": {"name": "45045"}, "id": "45045"}, {"arcs": [[-2958, 6377, 6378, 6379, 6380, 6381, 6382, 6383, 6384]], "type": "Polygon", "properties": {"name": "46085"}, "id": "46085"}, {"arcs": [[-886, -4365, 6385, -6038, -977]], "type": "Polygon", "properties": {"name": "55121"}, "id": "55121"}, {"arcs": [[-1785, -5102, -3772, 6386, 6387, 6388]], "type": "Polygon", "properties": {"name": "06113"}, "id": "06113"}, {"arcs": [[-2709, 6389, 6390, 6391, 6392, 6393]], "type": "Polygon", "properties": {"name": "48431"}, "id": "48431"}, {"arcs": [[-4697, 6394, 6395, 6396, 6397]], "type": "Polygon", "properties": {"name": "48495"}, "id": "48495"}, {"arcs": [[-5025, 6398, 6399, 6400, 6401, 6402]], "type": "Polygon", "properties": {"name": "46071"}, "id": "46071"}, {"arcs": [[-4238, 6403, 6404, 6405, 6406, 6407]], "type": "Polygon", "properties": {"name": "49041"}, "id": "49041"}, {"arcs": [[-245, 6408, -572, 6409, 6410, -5376, -5813]], "type": "Polygon", "properties": {"name": "51036"}, "id": "51036"}, {"arcs": [[-203, 6411, 6412, 6413, -5297, 6414, -5138]], "type": "Polygon", "properties": {"name": "01023"}, "id": "01023"}, {"arcs": [[-759, 6415, -2134, 6416, -4876, 6417, 6418, -3260]], "type": "Polygon", "properties": {"name": "18083"}, "id": "18083"}, {"arcs": [[-253, -6221, 6419, 6420, -3666, 6421]], "type": "Polygon", "properties": {"name": "31047"}, "id": "31047"}, {"arcs": [[6422, 6423, 6424, 6425, 6426, 6427]], "type": "Polygon", "properties": {"name": "20057"}, "id": "20057"}, {"arcs": [[-1462, 6428, 6429, 6430, 6431, -5285]], "type": "Polygon", "properties": {"name": "38105"}, "id": "38105"}, {"arcs": [[-2407, -4929, -4459, -4106, -3349, 6432, 6433]], "type": "Polygon", "properties": {"name": "38017"}, "id": "38017"}, {"arcs": [[-1486, 6434, -3332, 6435, -1815, 6436]], "type": "Polygon", "properties": {"name": "17069"}, "id": "17069"}, {"arcs": [[-249, 6437, 6438, 6439, -6000]], "type": "Polygon", "properties": {"name": "31005"}, "id": "31005"}, {"arcs": [[-808, -1557, -5481, 6440, 6441]], "type": "Polygon", "properties": {"name": "48163"}, "id": "48163"}, {"arcs": [[-1003, 6442, 6443, 6444, 6445, -4666]], "type": "Polygon", "properties": {"name": "19103"}, "id": "19103"}, {"arcs": [[-4028, 6446, 6447, -4194, 6448, 6449]], "type": "Polygon", "properties": {"name": "20133"}, "id": "20133"}, {"arcs": [[-1680, -3398, 6450, 6451, 6452]], "type": "Polygon", "properties": {"name": "21089"}, "id": "21089"}, {"arcs": [[-6113, 6453, 6454, 6455, 6456]], "type": "Polygon", "properties": {"name": "20107"}, "id": "20107"}, {"arcs": [[-5647, 6457, 6458, 6459, 6460, 6461]], "type": "Polygon", "properties": {"name": "49017"}, "id": "49017"}, {"arcs": [[-3717, 6462, 6463, -4906]], "type": "Polygon", "properties": {"name": "32011"}, "id": "32011"}, {"arcs": [[-2004, 6464, 6465, 6466, 6467, -3088]], "type": "Polygon", "properties": {"name": "31085"}, "id": "31085"}, {"arcs": [[-622, 6468, 6469, 6470, 6471]], "type": "Polygon", "properties": {"name": "08095"}, "id": "08095"}, {"arcs": [[-5329, 6472, 6473, 6474, 6475]], "type": "Polygon", "properties": {"name": "05013"}, "id": "05013"}, {"arcs": [[-2750, -5932, -5910]], "type": "Polygon", "properties": {"name": "02090"}, "id": "02090"}, {"arcs": [[-1337, -5672, 6476, 6477, 6478, -2096, -4931]], "type": "Polygon", "properties": {"name": "21101"}, "id": "21101"}, {"arcs": [[-2638, 6479, 6480, 6481, 6482]], "type": "Polygon", "properties": {"name": "28051"}, "id": "28051"}, {"arcs": [[-2270, 6483, 6484, -3310, 6485, 6486]], "type": "Polygon", "properties": {"name": "28105"}, "id": "28105"}, {"arcs": [[-1436, 6487, -2863, 6488, 6489]], "type": "Polygon", "properties": {"name": "72037"}, "id": "72037"}, {"arcs": [[-1171, -4583, 6490, 6491, 6492, 6493]], "type": "Polygon", "properties": {"name": "72047"}, "id": "72047"}, {"arcs": [[-624, 6494, 6495, 6496, -1018, 6497, 6498, 6499]], "type": "Polygon", "properties": {"name": "30027"}, "id": "30027"}, {"arcs": [[-968, -3920, 6500, -4420, 6501, 6502]], "type": "Polygon", "properties": {"name": "24023"}, "id": "24023"}, {"arcs": [[-5095, -5258, 6503, 6504, 6505]], "type": "Polygon", "properties": {"name": "22119"}, "id": "22119"}, {"arcs": [[-336, 6506, 6507, -3589, 6508, -2184, 6509]], "type": "Polygon", "properties": {"name": "26059"}, "id": "26059"}, {"arcs": [[-1960, 6510, 6511, 6512, 6513, 6514]], "type": "Polygon", "properties": {"name": "21141"}, "id": "21141"}, {"arcs": [[6515, 6516, 6517, 6518, 6519]], "type": "Polygon", "properties": {"name": "46033"}, "id": "46033"}, {"arcs": [[-2085, 6520, 6521, 6522, 6523, -3826]], "type": "Polygon", "properties": {"name": "33013"}, "id": "33013"}, {"arcs": [[-633, 6524, 6525, -3380, -4117, 6526, 6527]], "type": "Polygon", "properties": {"name": "42133"}, "id": "42133"}, {"arcs": [[-5057, 6528, 6529, 6530, 6531, 6532, 6533, 6534]], "type": "Polygon", "properties": {"name": "37161"}, "id": "37161"}, {"arcs": [[-1976, -3882, 6535, -2217, 6536, 6537]], "type": "Polygon", "properties": {"name": "46005"}, "id": "46005"}, {"arcs": [[-3910, -4272, 6538, -5144, 6539, 6540]], "type": "Polygon", "properties": {"name": "01043"}, "id": "01043"}, {"arcs": [[-1300, -2814, 6541, 6542]], "type": "Polygon", "properties": {"name": "13097"}, "id": "13097"}, {"arcs": [[-2942, -3574, 6543, -6305]], "type": "Polygon", "properties": {"name": "31097"}, "id": "31097"}, {"arcs": [[-2574, 6544, 6545, 6546, 6547, 6548]], "type": "Polygon", "properties": {"name": "37187"}, "id": "37187"}, {"arcs": [[-5024, 6549, -6381, 6550, -6399]], "type": "Polygon", "properties": {"name": "46075"}, "id": "46075"}, {"arcs": [[-2936, 6551, 6552, 6553]], "type": "Polygon", "properties": {"name": "37007"}, "id": "37007"}, {"arcs": [[-4069, 6554, 6555, 6556, 6557, 6558]], "type": "Polygon", "properties": {"name": "02100"}, "id": "02100"}, {"arcs": [[-3694, -5123, 6559, 6560, 6561]], "type": "Polygon", "properties": {"name": "38007"}, "id": "38007"}, {"arcs": [[-877, 6562, -5411, -5882, -5835, 6563]], "type": "Polygon", "properties": {"name": "31003"}, "id": "31003"}, {"arcs": [[-1653, -6259, -4377, 6564, -4933, 6565, 6566]], "type": "Polygon", "properties": {"name": "29073"}, "id": "29073"}, {"arcs": [[-899, 6567, -6511, -1959, 6568, 6569]], "type": "Polygon", "properties": {"name": "21031"}, "id": "21031"}, {"arcs": [[6570]], "type": "Polygon", "properties": {"name": "78020"}, "id": "78020"}, {"arcs": [[-3886, 6571, 6572, 6573, -4762, 6574]], "type": "Polygon", "properties": {"name": "56005"}, "id": "56005"}, {"arcs": [[-2110, 6575, 6576, 6577, -5464, 6578]], "type": "Polygon", "properties": {"name": "13211"}, "id": "13211"}, {"arcs": [[6579, 6580, 6581, 6582, 6583]], "type": "Polygon", "properties": {"name": "05037"}, "id": "05037"}, {"arcs": [[-1659, -5901, 6584, -2796, 6585, -3713, 6586]], "type": "Polygon", "properties": {"name": "05107"}, "id": "05107"}, {"arcs": [[6587, 6588, 6589, 6590]], "type": "Polygon", "properties": {"name": "22093"}, "id": "22093"}, {"arcs": [[-53, 6591, -2909, 6592, 6593, 6594]], "type": "Polygon", "properties": {"name": "06115"}, "id": "06115"}, {"arcs": [[-4792, 6595, 6596, 6597, -6311, -5182]], "type": "Polygon", "properties": {"name": "01117"}, "id": "01117"}, {"arcs": [[-1293, -3299, -3278, 6598, 6599]], "type": "Polygon", "properties": {"name": "08091"}, "id": "08091"}, {"arcs": [[-4985, 6600, 6601, 6602, 6603]], "type": "Polygon", "properties": {"name": "35009"}, "id": "35009"}, {"arcs": [[-2692, -5767, 6604, 6605]], "type": "Polygon", "properties": {"name": "40149"}, "id": "40149"}, {"arcs": [[-139, -365, -5774, -1609, -1464]], "type": "Polygon", "properties": {"name": "37135"}, "id": "37135"}, {"arcs": [[-320, 6606, -4337, -3111, 6607]], "type": "Polygon", "properties": {"name": "18131"}, "id": "18131"}, {"arcs": [[-569, 6608, 6609, 6610]], "type": "Polygon", "properties": {"name": "26019"}, "id": "26019"}, {"arcs": [[6611, 6612, 6613, 6614, 6615, 6616]], "type": "Polygon", "properties": {"name": "36029"}, "id": "36029"}, {"arcs": [[-3274, 6617, 6618, -5064, -6343, -6232]], "type": "Polygon", "properties": {"name": "24031"}, "id": "24031"}, {"arcs": [[-6194, 6619]], "type": "Polygon", "properties": {"name": "51685"}, "id": "51685"}, {"arcs": [[-1501, 6620, -3631, 6621, -3273]], "type": "Polygon", "properties": {"name": "51013"}, "id": "51013"}, {"arcs": [[-1798, -4164, 6622, -5871, 6623, -5869, -6017, 6624]], "type": "Polygon", "properties": {"name": "51035"}, "id": "51035"}, {"arcs": [[-1214, 6625, 6626, -4935, 6627, 6628, 6629]], "type": "Polygon", "properties": {"name": "29183"}, "id": "29183"}, {"arcs": [[-4048, 6630, 6631, 6632, 6633]], "type": "Polygon", "properties": {"name": "06069"}, "id": "06069"}, {"arcs": [[6634, 6635, 6636, 6637, 6638]], "type": "Polygon", "properties": {"name": "24035"}, "id": "24035"}, {"arcs": [[-421, -4686, 6639, 6640, 6641]], "type": "Polygon", "properties": {"name": "20013"}, "id": "20013"}, {"arcs": [[-2057, 6642, 6643, 6644, -4662, 6645, 6646]], "type": "Polygon", "properties": {"name": "13031"}, "id": "13031"}, {"arcs": [[-1855, 6647, 6648, -4125, 6649]], "type": "Polygon", "properties": {"name": "21071"}, "id": "21071"}, {"arcs": [[-1129, -4013, 6650, -1510]], "type": "Polygon", "properties": {"name": "30007"}, "id": "30007"}, {"arcs": [[-4469, 6651, 6652, 6653, -6115, 6654]], "type": "Polygon", "properties": {"name": "13309"}, "id": "13309"}, {"arcs": [[-2578, -5690, 6655, -3577, 6656, -5851, 6657]], "type": "Polygon", "properties": {"name": "37049"}, "id": "37049"}, {"arcs": [[-417, 6658, -3571, -2493, 6659, -4371]], "type": "Polygon", "properties": {"name": "29087"}, "id": "29087"}, {"arcs": [[-2771, 6660, 6661, -3755, 6662]], "type": "Polygon", "properties": {"name": "48295"}, "id": "48295"}, {"arcs": [[-10, 6663, 6664, -1751, 6665, -983]], "type": "Polygon", "properties": {"name": "41009"}, "id": "41009"}, {"arcs": [[-2234, 6666, 6667, 6668, -4014, -3559, 6669, 6670]], "type": "Polygon", "properties": {"name": "45041"}, "id": "45041"}, {"arcs": [[-1461, -2829, 6671, 6672, 6673, -6429]], "type": "Polygon", "properties": {"name": "38061"}, "id": "38061"}, {"arcs": [[-5651, 6674, 6675, 6676]], "type": "Polygon", "properties": {"name": "49053"}, "id": "49053"}, {"arcs": [[-1185, 6677, 6678, -2779, 6679, 6680, 6681]], "type": "Polygon", "properties": {"name": "30003"}, "id": "30003"}, {"arcs": [[-290, 6682, -2943, -2451, -1892]], "type": "Polygon", "properties": {"name": "42047"}, "id": "42047"}, {"arcs": [[-2380, 6683, 6684, 6685, -4162, -5610]], "type": "Polygon", "properties": {"name": "31165"}, "id": "31165"}, {"arcs": [[-2309, 6686, -5357, 6687, 6688, -5146]], "type": "Polygon", "properties": {"name": "28031"}, "id": "28031"}, {"arcs": [[-4359, -5270, 6689, 6690, 6691]], "type": "Polygon", "properties": {"name": "72099"}, "id": "72099"}, {"arcs": [[-2809, 6692, 6693, 6694, -5173]], "type": "Polygon", "properties": {"name": "18013"}, "id": "18013"}, {"arcs": [[-2274, -5825, 6695, 6696, 6697, -5959, 6698]], "type": "Polygon", "properties": {"name": "18019"}, "id": "18019"}, {"arcs": [[6699, 6700, 6701, 6702, 6703, 6704]], "type": "Polygon", "properties": {"name": "21021"}, "id": "21021"}, {"arcs": [[-3197, 6705, -3999, 6706, -5673]], "type": "Polygon", "properties": {"name": "21065"}, "id": "21065"}, {"arcs": [[-5313, 6707, 6708, 6709, 6710, 6711]], "type": "Polygon", "properties": {"name": "48087"}, "id": "48087"}, {"arcs": [[-2617, 6712, -3977, -6241, 6713]], "type": "Polygon", "properties": {"name": "48089"}, "id": "48089"}, {"arcs": [[-3269, 6714, -5433, -6077, 6715]], "type": "Polygon", "properties": {"name": "17063"}, "id": "17063"}, {"arcs": [[-1544, 6716, -4821, 6717, 6718]], "type": "Polygon", "properties": {"name": "27081"}, "id": "27081"}, {"arcs": [[-4663, -6645, 6719, 6720, 6721]], "type": "Polygon", "properties": {"name": "13109"}, "id": "13109"}, {"arcs": [[-2395, -3743, 6722, 6723, 6724, -6228]], "type": "Polygon", "properties": {"name": "48497"}, "id": "48497"}, {"arcs": [[[-2753, 6725, -5799, 6726, 6727, 6728, 6729, 6730, 6731]], [[6732]], [[6733]]], "type": "MultiPolygon", "properties": {"name": "02050"}, "id": "02050"}, {"arcs": [[-592, 6734, 6735, -5452, -5226]], "type": "Polygon", "properties": {"name": "13307"}, "id": "13307"}, {"arcs": [[-3420, -6248, 6736, 6737, -5466, 6738, 6739]], "type": "Polygon", "properties": {"name": "13169"}, "id": "13169"}, {"arcs": [[-1010, 6740, 6741, -4463, -2436, -2107, 6742]], "type": "Polygon", "properties": {"name": "13135"}, "id": "13135"}, {"arcs": [[-4130, 6743, 6744, 6745, 6746]], "type": "Polygon", "properties": {"name": "55095"}, "id": "55095"}, {"arcs": [[-4410, 6747, 6748, -5496, 6749, -5247]], "type": "Polygon", "properties": {"name": "55045"}, "id": "55045"}, {"arcs": [[-2303, 6750, -6491, -4582, -4487, 6751, 6752, -2580]], "type": "Polygon", "properties": {"name": "72107"}, "id": "72107"}, {"arcs": [[-2874, 6753, -5383, 6754, 6755]], "type": "Polygon", "properties": {"name": "36079"}, "id": "36079"}, {"arcs": [[-243, 6756, 6757, 6758]], "type": "Polygon", "properties": {"name": "51700"}, "id": "51700"}, {"arcs": [[-2280, 6759, 6760, -6275, 6761]], "type": "Polygon", "properties": {"name": "08011"}, "id": "08011"}, {"arcs": [[-3753, -5765, 6762, 6763, 6764, -5310]], "type": "Polygon", "properties": {"name": "40065"}, "id": "40065"}, {"arcs": [[-5575, 6765, 6766, 6767, 6768, -6328, 6769]], "type": "Polygon", "properties": {"name": "30089"}, "id": "30089"}, {"arcs": [[-2708, -5560, -4620, 6770, -6390]], "type": "Polygon", "properties": {"name": "48173"}, "id": "48173"}, {"arcs": [[-1273, 6771, 6772, 6773, -2729]], "type": "Polygon", "properties": {"name": "05047"}, "id": "05047"}, {"arcs": [[-1526, 6774, 6775, -5636, 6776, 6777, -4988]], "type": "Polygon", "properties": {"name": "40093"}, "id": "40093"}, {"arcs": [[-4954, 6778, 6779, 6780, 6781, 6782, -5843]], "type": "Polygon", "properties": {"name": "47125"}, "id": "47125"}, {"arcs": [[-6167, -6213, 6783, 6784, -6325]], "type": "Polygon", "properties": {"name": "53051"}, "id": "53051"}, {"arcs": [[-2318, 6785, -6672, -2828, -4536, -4331, -2589, 6786]], "type": "Polygon", "properties": {"name": "38055"}, "id": "38055"}, {"arcs": [[-717, -1754, 6787, 6788, 6789]], "type": "Polygon", "properties": {"name": "41027"}, "id": "41027"}, {"arcs": [[-1479, 6790, -3689, 6791, 6792]], "type": "Polygon", "properties": {"name": "19197"}, "id": "19197"}, {"arcs": [[-3065, 6793, -6152, -3480, 6794, 6795, 6796]], "type": "Polygon", "properties": {"name": "48419"}, "id": "48419"}, {"arcs": [[-3159, 6797, 6798, -6566, -4932, -3779]], "type": "Polygon", "properties": {"name": "29055"}, "id": "29055"}, {"arcs": [[-229, 6799, 6800, 6801, -2261, 6802]], "type": "Polygon", "properties": {"name": "51017"}, "id": "51017"}, {"arcs": [[-1267, 6803, 6804, 6805, -3346, -3904, 6806]], "type": "Polygon", "properties": {"name": "27111"}, "id": "27111"}, {"arcs": [[-3970, 6807, 6808, 6809]], "type": "Polygon", "properties": {"name": "22075"}, "id": "22075"}, {"arcs": [[-449, 6810, -2479, -666, 6811]], "type": "Polygon", "properties": {"name": "28115"}, "id": "28115"}, {"arcs": [[-265, 6812, 6813, 6814, -5125, 6815]], "type": "Polygon", "properties": {"name": "22067"}, "id": "22067"}, {"arcs": [[6816, 6817, 6818, 6819]], "type": "Polygon", "properties": {"name": "21029"}, "id": "21029"}, {"arcs": [[-200, -1390, 6820, -6108, -4658, -3078]], "type": "Polygon", "properties": {"name": "01047"}, "id": "01047"}, {"arcs": [[-1625, -3412, 6821, -2999, 6822]], "type": "Polygon", "properties": {"name": "48093"}, "id": "48093"}, {"arcs": [[-5576, -6770, -6327, 6823, 6824]], "type": "Polygon", "properties": {"name": "30053"}, "id": "30053"}, {"arcs": [[-36, -1457, 6825, 6826, 6827, 6828, -6372]], "type": "Polygon", "properties": {"name": "72129"}, "id": "72129"}, {"arcs": [[-1167, -6494, 6829, -2197, 6830, -5787]], "type": "Polygon", "properties": {"name": "72135"}, "id": "72135"}, {"arcs": [[-1263, 6831, -1760, -4484, -5158, -1599, 6832, 6833]], "type": "Polygon", "properties": {"name": "27021"}, "id": "27021"}, {"arcs": [[-1132, 6834, -5886, 6835, 6836, 6837, 6838]], "type": "Polygon", "properties": {"name": "08007"}, "id": "08007"}, {"arcs": [[-1631, -4855, 6839, -6481, 6840, 6841, -4368]], "type": "Polygon", "properties": {"name": "28163"}, "id": "28163"}, {"arcs": [[-4428, 6842, 6843, 6844, 6845]], "type": "Polygon", "properties": {"name": "55087"}, "id": "55087"}, {"arcs": [[-884, 6846, -4651, 6847, -4900, 6848]], "type": "Polygon", "properties": {"name": "29107"}, "id": "29107"}, {"arcs": [[6849, 6850, 6851, 6852, 6853, 6854]], "type": "Polygon", "properties": {"name": "37195"}, "id": "37195"}, {"arcs": [[-3432, -3816, 6855, -5207, 6856]], "type": "Polygon", "properties": {"name": "39117"}, "id": "39117"}, {"arcs": [[6857, 6858, 6859, 6860]], "type": "Polygon", "properties": {"name": "30039"}, "id": "30039"}, {"arcs": [[-5051, 6861, -5098, 6862]], "type": "Polygon", "properties": {"name": "38031"}, "id": "38031"}, {"arcs": [[-156, -6028, 6863, -6773, 6864, -269]], "type": "Polygon", "properties": {"name": "05033"}, "id": "05033"}, {"arcs": [[-1139, 6865, 6866, 6867, 6868, 6869, 6870]], "type": "Polygon", "properties": {"name": "48053"}, "id": "48053"}, {"arcs": [[6871, 6872, 6873, 6874, 6875]], "type": "Polygon", "properties": {"name": "29186"}, "id": "29186"}, {"arcs": [[-5225, 6876, 6877, 6878]], "type": "Polygon", "properties": {"name": "48179"}, "id": "48179"}, {"arcs": [[-503, 6879, 6880, -2368, -5069]], "type": "Polygon", "properties": {"name": "17109"}, "id": "17109"}, {"arcs": [[-5203, 6881, 6882, 6883, 6884]], "type": "Polygon", "properties": {"name": "19137"}, "id": "19137"}, {"arcs": [[-1090, 6885, -4895, 6886, -6583, 6887, 6888]], "type": "Polygon", "properties": {"name": "05067"}, "id": "05067"}, {"arcs": [[-187, 6889, 6890, 6891, 6892]], "type": "Polygon", "properties": {"name": "48229"}, "id": "48229"}, {"arcs": [[-2487, -6334, 6893, -5272, 6894, 6895, 6896]], "type": "Polygon", "properties": {"name": "22079"}, "id": "22079"}, {"arcs": [[-251, -6003, 6897, -3667, -6421, 6898, -6467, 6899]], "type": "Polygon", "properties": {"name": "31111"}, "id": "31111"}, {"arcs": [[-1285, 6900, 6901, 6902, -4623]], "type": "Polygon", "properties": {"name": "48067"}, "id": "48067"}, {"arcs": [[-4957, 6903, -5368, 6904, -5695, 6905]], "type": "Polygon", "properties": {"name": "47079"}, "id": "47079"}, {"arcs": [[6906]], "type": "Polygon", "properties": {"name": "51840"}, "id": "51840"}, {"arcs": [[-4569, 6907, -5853, 6908, 6909, 6910]], "type": "Polygon", "properties": {"name": "37061"}, "id": "37061"}, {"arcs": [[-1688, 6911, 6912, 6913, -4916, 6914, 6915]], "type": "Polygon", "properties": {"name": "37087"}, "id": "37087"}, {"arcs": [[-838, -4914, 6916, -3534, 6917, 6918, 6919]], "type": "Polygon", "properties": {"name": "27037"}, "id": "27037"}, {"arcs": [[-519, -4300, -5007, -700, 6920, -4435, 6921]], "type": "Polygon", "properties": {"name": "41025"}, "id": "41025"}, {"arcs": [[-1455, 6922, 6923]], "type": "Polygon", "properties": {"name": "72095"}, "id": "72095"}, {"arcs": [[-4039, 6924, 6925, 6926, 6927, -4958]], "type": "Polygon", "properties": {"name": "55001"}, "id": "55001"}, {"arcs": [[-507, 6928, -550, 6929, -6216, 6930]], "type": "Polygon", "properties": {"name": "29045"}, "id": "29045"}, {"arcs": [[-613, 6931, 6932, -3678, -5966, -1347, 6933]], "type": "Polygon", "properties": {"name": "21015"}, "id": "21015"}, {"arcs": [[-6704, 6934, 6935, 6936, 6937]], "type": "Polygon", "properties": {"name": "21229"}, "id": "21229"}, {"arcs": [[-5273, -6894, -6333, 6938, 6939, 6940, -6300, -5938]], "type": "Polygon", "properties": {"name": "22009"}, "id": "22009"}, {"arcs": [[-2483, 6941, -2792, 6942, 6943]], "type": "Polygon", "properties": {"name": "28137"}, "id": "28137"}, {"arcs": [[-1824, -2802, 6944, 6945, 6946]], "type": "Polygon", "properties": {"name": "29227"}, "id": "29227"}, {"arcs": [[-1844, 6947, 6948, -3664, 6949]], "type": "Polygon", "properties": {"name": "31163"}, "id": "31163"}, {"arcs": [[-3767, 6950, -3934, -5436, 6951]], "type": "Polygon", "properties": {"name": "46021"}, "id": "46021"}, {"arcs": [[-3253, 6952, -3731, -5686, 6953, 6954]], "type": "Polygon", "properties": {"name": "46063"}, "id": "46063"}, {"arcs": [[-2458, 6955, 6956, 6957, 6958, -5532]], "type": "Polygon", "properties": {"name": "26057"}, "id": "26057"}, {"arcs": [[-1566, -3466, -1826, 6959, -3506]], "type": "Polygon", "properties": {"name": "19175"}, "id": "19175"}, {"arcs": [[-1488, 6960, 6961, 6962, 6963]], "type": "Polygon", "properties": {"name": "17127"}, "id": "17127"}, {"arcs": [[-800, 6964, -3668, -6898, -6002]], "type": "Polygon", "properties": {"name": "31113"}, "id": "31113"}, {"arcs": [[-4100, 6965, 6966, 6967, 6968, -5437]], "type": "Polygon", "properties": {"name": "31121"}, "id": "31121"}, {"arcs": [[-4160, 6969, 6970, 6971, 6972, 6973, -5611]], "type": "Polygon", "properties": {"name": "31161"}, "id": "31161"}, {"arcs": [[-5691, 6974, 6975, 6976, 6977]], "type": "Polygon", "properties": {"name": "21039"}, "id": "21039"}, {"arcs": [[-607, -3132, 6978, -3884, -5239]], "type": "Polygon", "properties": {"name": "56025"}, "id": "56025"}, {"arcs": [[-3871, 6979, 6980, -6317, 6981, -5085, 6982]], "type": "Polygon", "properties": {"name": "13321"}, "id": "13321"}, {"arcs": [[-5174, -6695, 6983, -5381, 6984, 6985, 6986]], "type": "Polygon", "properties": {"name": "18109"}, "id": "18109"}, {"arcs": [[-4249, -6035, 6987, 6988, -4285, -6231, 6989]], "type": "Polygon", "properties": {"name": "48139"}, "id": "48139"}, {"arcs": [[-328, 6990, 6991, 6992, 6993]], "type": "Polygon", "properties": {"name": "13229"}, "id": "13229"}, {"arcs": [[6994, 6995]], "type": "Polygon", "properties": {"name": "60010"}, "id": "60010"}, {"arcs": [[-766, -1794, 6996, 6997, 6998, 6999, 7000, 7001, -780]], "type": "Polygon", "properties": {"name": "18053"}, "id": "18053"}, {"arcs": [[-467, 7002, -3304, 7003]], "type": "Polygon", "properties": {"name": "12035"}, "id": "12035"}, {"arcs": [[-2761, 7004, -5359, 7005, -5549, 7006]], "type": "Polygon", "properties": {"name": "28077"}, "id": "28077"}, {"arcs": [[-898, -6335, -2485, 7007, 7008, -2327]], "type": "Polygon", "properties": {"name": "22127"}, "id": "22127"}, {"arcs": [[-1677, -3750, 7009, -1938, -3102, 7010]], "type": "Polygon", "properties": {"name": "17073"}, "id": "17073"}, {"arcs": [[-2643, -5527, 7011, -5350, 7012]], "type": "Polygon", "properties": {"name": "41041"}, "id": "41041"}, {"arcs": [[7013, 7014, 7015, 7016, 7017, 7018]], "type": "Polygon", "properties": {"name": "23031"}, "id": "23031"}, {"arcs": [[-1547, 7019, -1973, 7020, 7021]], "type": "Polygon", "properties": {"name": "46029"}, "id": "46029"}, {"arcs": [[-334, -2421, -3496, 7022]], "type": "Polygon", "properties": {"name": "13231"}, "id": "13231"}, {"arcs": [[-3513, -5453, -6736, 7023, 7024, 7025, 7026]], "type": "Polygon", "properties": {"name": "13259"}, "id": "13259"}, {"arcs": [[-4521, 7027, -5014, 7028, 7029]], "type": "Polygon", "properties": {"name": "34025"}, "id": "34025"}, {"arcs": [[-3947, 7030, -4844, 7031, 7032]], "type": "Polygon", "properties": {"name": "05021"}, "id": "05021"}, {"arcs": [[-1093, 7033, -4590, 7034, -2715, -5030, 7035]], "type": "Polygon", "properties": {"name": "05045"}, "id": "05045"}, {"arcs": [[-153, 7036, -3221, 7037, -2448, -2377, 7038]], "type": "Polygon", "properties": {"name": "40041"}, "id": "40041"}, {"arcs": [[-1505, 7039, -5663, -3836, 7040, 7041]], "type": "Polygon", "properties": {"name": "19107"}, "id": "19107"}, {"arcs": [[-1211, 7042, 7043, -4235, 7044, 7045]], "type": "Polygon", "properties": {"name": "17061"}, "id": "17061"}, {"arcs": [[7046, 7047, 7048, 7049, 7050]], "type": "Polygon", "properties": {"name": "27075"}, "id": "27075"}, {"arcs": [[-2049, -2552, 7051, 7052, -5354, -3493]], "type": "Polygon", "properties": {"name": "13285"}, "id": "13285"}, {"arcs": [[-4672, -4715, 7053, 7054, 7055]], "type": "Polygon", "properties": {"name": "06023"}, "id": "06023"}, {"arcs": [[-2785, -6010, -5844, -6783, 7056, 7057]], "type": "Polygon", "properties": {"name": "47043"}, "id": "47043"}, {"arcs": [[-4132, 7058, 7059, 7060, 7061, 7062]], "type": "Polygon", "properties": {"name": "27003"}, "id": "27003"}, {"arcs": [[-512, -5493, 7063, 7064]], "type": "Polygon", "properties": {"name": "46009"}, "id": "46009"}, {"arcs": [[-1684, 7065, 7066, -3725, -4828, 7067]], "type": "Polygon", "properties": {"name": "47059"}, "id": "47059"}, {"arcs": [[-576, 7068, 7069, 7070, 7071]], "type": "Polygon", "properties": {"name": "51183"}, "id": "51183"}, {"arcs": [[-797, 7072, -2028, -4150, 7073, -5859]], "type": "Polygon", "properties": {"name": "18141"}, "id": "18141"}, {"arcs": [[-682, -6290, 7074, 7075, -4215]], "type": "Polygon", "properties": {"name": "38067"}, "id": "38067"}, {"arcs": [[-6401, 7076, 7077, 7078]], "type": "Polygon", "properties": {"name": "46007"}, "id": "46007"}, {"arcs": [[-6896, 7079, 7080, 7081, 7082, 7083]], "type": "Polygon", "properties": {"name": "22115"}, "id": "22115"}, {"arcs": [[-2624, 7084, -6337, 7085, 7086, 7087]], "type": "Polygon", "properties": {"name": "23019"}, "id": "23019"}, {"arcs": [[-4497, 7088, -6637, 7089]], "type": "Polygon", "properties": {"name": "24041"}, "id": "24041"}, {"arcs": [[-1102, 7090, -3416, 7091]], "type": "Polygon", "properties": {"name": "13257"}, "id": "13257"}, {"arcs": [[-2850, 7092, -5290, 7093, 7094]], "type": "Polygon", "properties": {"name": "06065"}, "id": "06065"}, {"arcs": [[-97, -2919, 7095, -4438, -1236, -4043]], "type": "Polygon", "properties": {"name": "05005"}, "id": "05005"}, {"arcs": [[-2637, -3085, -3312, 7096, 7097, 7098, -6480]], "type": "Polygon", "properties": {"name": "28007"}, "id": "28007"}, {"arcs": [[7099, 7100, 7101, 7102, 7103, 7104]], "type": "Polygon", "properties": {"name": "19169"}, "id": "19169"}, {"arcs": [[-4027, -6456, 7105, 7106, -6447]], "type": "Polygon", "properties": {"name": "20011"}, "id": "20011"}, {"arcs": [[-3029, 7107, -3805, -3544, 7108, 7109]], "type": "Polygon", "properties": {"name": "51049"}, "id": "51049"}, {"arcs": [[-6264, 7110, -6668, 7111, 7112, 7113]], "type": "Polygon", "properties": {"name": "45085"}, "id": "45085"}, {"arcs": [[-5798, 7114, 7115, 7116, 7117, 7118, 7119, 7120, 7121, -6727]], "type": "Polygon", "properties": {"name": "02164"}, "id": "02164"}, {"arcs": [[-1808, 7122, -6199, -5393, 7123, -5973]], "type": "Polygon", "properties": {"name": "54109"}, "id": "54109"}, {"arcs": [[-1801, 7124, -2845, 7125, -4784, -5292, -2145, -2129]], "type": "Polygon", "properties": {"name": "06029"}, "id": "06029"}, {"arcs": [[-1367, 7126, -6724, 7127, -6243]], "type": "Polygon", "properties": {"name": "48097"}, "id": "48097"}, {"arcs": [[-2950, 7128, -3596, 7129, -4708, -4963, 7130, 7131, -2981]], "type": "Polygon", "properties": {"name": "45075"}, "id": "45075"}, {"arcs": [[7132, 7133, 7134, 7135, 7136, 7137]], "type": "Polygon", "properties": {"name": "55119"}, "id": "55119"}, {"arcs": [[-816, -1715, 7138, -2246, -1877, 7139, -1873, -2523]], "type": "Polygon", "properties": {"name": "27099"}, "id": "27099"}, {"arcs": [[-1597, -2646, 7140, -4819, 7141, -3044]], "type": "Polygon", "properties": {"name": "27101"}, "id": "27101"}, {"arcs": [[-2835, 7142, -5044, 7143, 7144, 7145, -6349]], "type": "Polygon", "properties": {"name": "44007"}, "id": "44007"}, {"arcs": [[-1654, -6567, -6799, 7146, 7147, 7148]], "type": "Polygon", "properties": {"name": "29161"}, "id": "29161"}, {"arcs": [[-664, -3361, -2475, 7149, 7150, 7151]], "type": "Polygon", "properties": {"name": "28117"}, "id": "28117"}, {"arcs": [[-1031, 7152, 7153, 7154, 7155, 7156]], "type": "Polygon", "properties": {"name": "21235"}, "id": "21235"}, {"arcs": [[-319, -2029, -7073, -796, -6607]], "type": "Polygon", "properties": {"name": "18149"}, "id": "18149"}, {"arcs": [[-1138, 7157, 7158, 7159, 7160, -6866]], "type": "Polygon", "properties": {"name": "48491"}, "id": "48491"}, {"arcs": [[-1456, -6924, 7161, 7162, 7163, 7164, -6826]], "type": "Polygon", "properties": {"name": "72109"}, "id": "72109"}, {"arcs": [[-1714, 7165, 7166, -2247, -7139]], "type": "Polygon", "properties": {"name": "19131"}, "id": "19131"}, {"arcs": [[-1573, -4471, -5895, -6142, -5420, 7167, -6646, -4665]], "type": "Polygon", "properties": {"name": "13107"}, "id": "13107"}, {"arcs": [[-896, 7168, -1061, 7169, -6939, -6332]], "type": "Polygon", "properties": {"name": "22025"}, "id": "22025"}, {"arcs": [[-5047, 7170, -6282, 7171, 7172]], "type": "Polygon", "properties": {"name": "42025"}, "id": "42025"}, {"arcs": [[-3573, 7173, 7174, 7175, -6306, -6544]], "type": "Polygon", "properties": {"name": "31133"}, "id": "31133"}, {"arcs": [[-1685, -7068, -4827, -4815, 7176, 7177]], "type": "Polygon", "properties": {"name": "47171"}, "id": "47171"}, {"arcs": [[-4758, -6377, 7178, -6530, 7179, 7180]], "type": "Polygon", "properties": {"name": "45083"}, "id": "45083"}, {"arcs": [[-4960, 7181, 7182, -7136, 7183, -5190, 7184]], "type": "Polygon", "properties": {"name": "55073"}, "id": "55073"}, {"arcs": [[-703, 7185, 7186, 7187, -3357, 7188, -4907, -6464, 7189]], "type": "Polygon", "properties": {"name": "32007"}, "id": "32007"}, {"arcs": [[-4972, 7190, -5817, 7191, 7192, 7193]], "type": "Polygon", "properties": {"name": "54007"}, "id": "54007"}, {"arcs": [[-3319, 7194, 7195, 7196, 7197]], "type": "Polygon", "properties": {"name": "26165"}, "id": "26165"}, {"arcs": [[7198, 7199, 7200, 7201, 7202]], "type": "Polygon", "properties": {"name": "48079"}, "id": "48079"}, {"arcs": [[-2455, 7203, -4153, -4189, -5698]], "type": "Polygon", "properties": {"name": "42013"}, "id": "42013"}, {"arcs": [[-5904, 7204, 7205, 7206, 7207]], "type": "Polygon", "properties": {"name": "29085"}, "id": "29085"}, {"arcs": [[-1667, -3459, -1743, 7208, -2375, -2089]], "type": "Polygon", "properties": {"name": "29009"}, "id": "29009"}, {"arcs": [[-6919, 7209, -7060, 7210]], "type": "Polygon", "properties": {"name": "27123"}, "id": "27123"}, {"arcs": [[-1280, -4626, -3864, -3109, 7211, 7212]], "type": "Polygon", "properties": {"name": "05081"}, "id": "05081"}, {"arcs": [[-495, -2361, -5077, -4863, -5217, 7213, 7214]], "type": "Polygon", "properties": {"name": "32019"}, "id": "32019"}, {"arcs": [[-1107, 7215, 7216, 7217]], "type": "Polygon", "properties": {"name": "12071"}, "id": "12071"}, {"arcs": [[-1550, 7218, 7219, 7220, -6277]], "type": "Polygon", "properties": {"name": "41033"}, "id": "41033"}, {"arcs": [[-2301, 7221, 7222, 7223, -6092, 7224]], "type": "Polygon", "properties": {"name": "72091"}, "id": "72091"}, {"arcs": [[-297, 7225, -2763, 7226, 7227]], "type": "Polygon", "properties": {"name": "28113"}, "id": "28113"}, {"arcs": [[-1408, 7228, -2962, -1756, 7229, -4572, -1902]], "type": "Polygon", "properties": {"name": "47031"}, "id": "47031"}, {"arcs": [[-1443, -4546, -1709, -5323, -3018, 7230, 7231]], "type": "Polygon", "properties": {"name": "16059"}, "id": "16059"}, {"arcs": [[-1958, 7232, -5670, -5592, 7233, 7234, -6569]], "type": "Polygon", "properties": {"name": "21183"}, "id": "21183"}, {"arcs": [[-3875, 7235, -5305, 7236, -5201]], "type": "Polygon", "properties": {"name": "31153"}, "id": "31153"}, {"arcs": [[-1416, 7237, 7238, 7239, -6980, -3870]], "type": "Polygon", "properties": {"name": "13071"}, "id": "13071"}, {"arcs": [[-3347, -6806, 7240, 7241, 7242]], "type": "Polygon", "properties": {"name": "27167"}, "id": "27167"}, {"arcs": [[-4178, -4186, 7243, 7244, 7245, -6874, 7246]], "type": "Polygon", "properties": {"name": "17157"}, "id": "17157"}, {"arcs": [[-857, 7247, 7248, -6342, 7249, -1357]], "type": "Polygon", "properties": {"name": "23011"}, "id": "23011"}, {"arcs": [[-1318, 7250, 7251, -6014, -5867, 7252]], "type": "Polygon", "properties": {"name": "51173"}, "id": "51173"}, {"arcs": [[-16, 7253, -6602, 7254, -7200, 7255, 7256]], "type": "Polygon", "properties": {"name": "35041"}, "id": "35041"}, {"arcs": [[-961, -6503, 7257, 7258, -5699, -4187]], "type": "Polygon", "properties": {"name": "42111"}, "id": "42111"}, {"arcs": [[-1319, -7253, -5866, 7259, -4752, 7260, -4750, -6236]], "type": "Polygon", "properties": {"name": "51191"}, "id": "51191"}, {"arcs": [[-362, -1829, -537, -5215, 7261]], "type": "Polygon", "properties": {"name": "37081"}, "id": "37081"}, {"arcs": [[-1084, 7262, -3375, 7263, 7264]], "type": "Polygon", "properties": {"name": "16001"}, "id": "16001"}, {"arcs": [[-2693, -6606, 7265, 7266, 7267, -5634]], "type": "Polygon", "properties": {"name": "40039"}, "id": "40039"}, {"arcs": [[-3433, -6857, -5206, 7268, 7269, 7270]], "type": "Polygon", "properties": {"name": "39101"}, "id": "39101"}, {"arcs": [[-911, 7271, -4236, -7044, 7272, -3388, -4283, -4627, -3818]], "type": "Polygon", "properties": {"name": "17149"}, "id": "17149"}, {"arcs": [[-848, 7273, 7274, 7275, 7276, -6075]], "type": "Polygon", "properties": {"name": "17203"}, "id": "17203"}, {"arcs": [[-88, -618, 7277, -4711, -5422, -6141]], "type": "Polygon", "properties": {"name": "13245"}, "id": "13245"}, {"arcs": [[-1440, -5141, 7278, -2268, 7279, -2548, -3074]], "type": "Polygon", "properties": {"name": "01107"}, "id": "01107"}, {"arcs": [[-1424, 7280, 7281, 7282, -3756, -6662, 7283]], "type": "Polygon", "properties": {"name": "40045"}, "id": "40045"}, {"arcs": [[-2511, 7284, -7244, -4185, 7285]], "type": "Polygon", "properties": {"name": "17145"}, "id": "17145"}, {"arcs": [[-3064, 7286, 7287, 7288, 7289]], "type": "Polygon", "properties": {"name": "19075"}, "id": "19075"}, {"arcs": [[-2563, -5242, 7290, 7291, -3292, -4647, -5001]], "type": "Polygon", "properties": {"name": "08107"}, "id": "08107"}, {"arcs": [[-2531, -5016, 7292, 7293, 7294]], "type": "Polygon", "properties": {"name": "34035"}, "id": "34035"}, {"arcs": [[-6388, 7295, 7296, 7297, 7298]], "type": "Polygon", "properties": {"name": "06011"}, "id": "06011"}, {"arcs": [[-1484, -6964, 7299, -5426, -5570]], "type": "Polygon", "properties": {"name": "17087"}, "id": "17087"}, {"arcs": [[-129, -5887, -6835, -1131, -1294, -6600, 7300]], "type": "Polygon", "properties": {"name": "08053"}, "id": "08053"}, {"arcs": [[-1691, -5514, -3229, -3121, 7301, -3358, -7188, 7302]], "type": "Polygon", "properties": {"name": "16031"}, "id": "16031"}, {"arcs": [[-677, -6057, -4127, -7063, 7303]], "type": "Polygon", "properties": {"name": "27059"}, "id": "27059"}, {"arcs": [[-6059, 7304, 7305, 7306, 7307]], "type": "Polygon", "properties": {"name": "42049"}, "id": "42049"}, {"arcs": [[-2767, 7308, 7309, 7310, -5360, -7005]], "type": "Polygon", "properties": {"name": "28029"}, "id": "28029"}, {"arcs": [[-4247, 7311, 7312, 7313, 7314, -6029]], "type": "Polygon", "properties": {"name": "48467"}, "id": "48467"}, {"arcs": [[-167, -2740, 7315, -5829, -5631, -1795], [-164, -4617]], "type": "Polygon", "properties": {"name": "51161"}, "id": "51161"}, {"arcs": [[-6801, 7316, 7317, 7318, 7319, 7320, 7321], [-1745], [7322]], "type": "Polygon", "properties": {"name": "51015"}, "id": "51015"}, {"arcs": [[[-7119, 7323]], [[-7121, 7324, 7325]]], "type": "MultiPolygon", "properties": {"name": "02060"}, "id": "02060"}, {"arcs": [[-6407, 7326, -6460, 7327]], "type": "Polygon", "properties": {"name": "49031"}, "id": "49031"}, {"arcs": [[-2819, -3405, 7328, 7329, -2969, 7330]], "type": "Polygon", "properties": {"name": "21161"}, "id": "21161"}, {"arcs": [[-679, 7331, 7332, 7333]], "type": "Polygon", "properties": {"name": "27009"}, "id": "27009"}, {"arcs": [[-77, -6879, -6710, 7334, -2628]], "type": "Polygon", "properties": {"name": "48129"}, "id": "48129"}, {"arcs": [[-441, 7335, 7336, -3672, 7337, 7338]], "type": "Polygon", "properties": {"name": "12005"}, "id": "12005"}, {"arcs": [[-1394, 7339, 7340, -5605, -3550, -5943, -4088, 7341]], "type": "Polygon", "properties": {"name": "01077"}, "id": "01077"}, {"arcs": [[-1837, -1989, -3189, 7342, -3614]], "type": "Polygon", "properties": {"name": "18045"}, "id": "18045"}, {"arcs": [[-1915, -2106, -1965, 7343, -2471, 7344, -2496, 7345]], "type": "Polygon", "properties": {"name": "17173"}, "id": "17173"}, {"arcs": [[-543, 7346, -5510, -904, -2472, -7344, -1964]], "type": "Polygon", "properties": {"name": "17051"}, "id": "17051"}, {"arcs": [[-691, 7347, -4656, 7348, 7349, -3637]], "type": "Polygon", "properties": {"name": "39127"}, "id": "39127"}, {"arcs": [[-5771, -5908]], "type": "Polygon", "properties": {"name": "51590"}, "id": "51590"}, {"arcs": [[-1106, 7350, 7351, -4461, -3417, -7091]], "type": "Polygon", "properties": {"name": "13011"}, "id": "13011"}, {"arcs": [[-329, -6994, 7352, 7353, -2442, 7354, 7355]], "type": "Polygon", "properties": {"name": "13305"}, "id": "13305"}, {"arcs": [[-474, 7356, -2043, -5733, 7357]], "type": "Polygon", "properties": {"name": "40109"}, "id": "40109"}, {"arcs": [[-958, -3703, 7358, -5715, -3249, -4315, 7359]], "type": "Polygon", "properties": {"name": "40069"}, "id": "40069"}, {"arcs": [[-4917, -6914, 7360, 7361, 7362]], "type": "Polygon", "properties": {"name": "37099"}, "id": "37099"}, {"arcs": [[-149, -698, -4732, 7363, -1518, 7364, -6344, -4243]], "type": "Polygon", "properties": {"name": "49043"}, "id": "49043"}, {"arcs": [[-5317, 7365, -7205, -5903, 7366, 7367]], "type": "Polygon", "properties": {"name": "29167"}, "id": "29167"}, {"arcs": [[-492, 7368, -704, -7190, -6463, -3716]], "type": "Polygon", "properties": {"name": "32015"}, "id": "32015"}, {"arcs": [[-814, 7369, 7370, -3470, -3679, -1712]], "type": "Polygon", "properties": {"name": "19191"}, "id": "19191"}, {"arcs": [[-1353, 7371, 7372, -2820, -7331, -2968]], "type": "Polygon", "properties": {"name": "21023"}, "id": "21023"}, {"arcs": [[-2595, 7373, 7374, -6169]], "type": "Polygon", "properties": {"name": "55037"}, "id": "55037"}, {"arcs": [[-3369, 7375, 7376, -5820, 7377]], "type": "Polygon", "properties": {"name": "54087"}, "id": "54087"}, {"arcs": [[-1262, -6807, -3903, -1761, -6832]], "type": "Polygon", "properties": {"name": "27159"}, "id": "27159"}, {"arcs": [[7378, 7379]], "type": "Polygon", "properties": {"name": "51670"}, "id": "51670"}, {"arcs": [[-5248, -6750, -5495, 7380, 7381]], "type": "Polygon", "properties": {"name": "17201"}, "id": "17201"}, {"arcs": [[-2179, -4257, 7382, -6046, -2759, 7383]], "type": "Polygon", "properties": {"name": "04007"}, "id": "04007"}, {"arcs": [[-752, 7384, 7385, -4495, -5460]], "type": "Polygon", "properties": {"name": "24045"}, "id": "24045"}, {"arcs": [[-1949, -4991, 7386, 7387, -6452, 7388]], "type": "Polygon", "properties": {"name": "21043"}, "id": "21043"}, {"arcs": [[-1277, 7389, -4207, -4064, 7390, 7391, -2592, -3035, 7392]], "type": "Polygon", "properties": {"name": "37097"}, "id": "37097"}, {"arcs": [[-1611, -5773, -5907, 7393, -4823, 7394, -5403]], "type": "Polygon", "properties": {"name": "51083"}, "id": "51083"}, {"arcs": [[-2554, 7395, -6271, 7396, 7397, 7398]], "type": "Polygon", "properties": {"name": "37091"}, "id": "37091"}, {"arcs": [[-949, 7399, 7400, -2928, -3892, 7401]], "type": "Polygon", "properties": {"name": "36057"}, "id": "36057"}, {"arcs": [[-4219, -4480, 7402, 7403, 7404, 7405]], "type": "Polygon", "properties": {"name": "27113"}, "id": "27113"}, {"arcs": [[-6157, 7406, 7407]], "type": "Polygon", "properties": {"name": "53073"}, "id": "53073"}, {"arcs": [[-1261, -4840, 7408, 7409, 7410]], "type": "Polygon", "properties": {"name": "41021"}, "id": "41021"}, {"arcs": [[-4522, -7030, 7411, 7412]], "type": "Polygon", "properties": {"name": "34029"}, "id": "34029"}, {"arcs": [[-1739, 7413, 7414, -2917, -6285]], "type": "Polygon", "properties": {"name": "05009"}, "id": "05009"}, {"arcs": [[-2690, 7415, 7416, -3776, 7417, -5763]], "type": "Polygon", "properties": {"name": "40031"}, "id": "40031"}, {"arcs": [[-2070, 7418, -3789, 7419, 7420, 7421]], "type": "Polygon", "properties": {"name": "48253"}, "id": "48253"}, {"arcs": [[-953, 7422, -6044, 7423, -4443, -2876]], "type": "Polygon", "properties": {"name": "48185"}, "id": "48185"}, {"arcs": [[-5255, 7424, -5705, -5534, 7425, -5924]], "type": "Polygon", "properties": {"name": "26049"}, "id": "26049"}, {"arcs": [[-4851, 7426, -6590, 7427, 7428, 7429, -5136, 7430]], "type": "Polygon", "properties": {"name": "22007"}, "id": "22007"}, {"arcs": [[-448, 7431, 7432, -5260, -2480, -6811]], "type": "Polygon", "properties": {"name": "28013"}, "id": "28013"}, {"arcs": [[-2536, -5552, -3656, 7433, 7434]], "type": "Polygon", "properties": {"name": "28041"}, "id": "28041"}, {"arcs": [[-1183, -2517, 7435, 7436, -3251, 7437]], "type": "Polygon", "properties": {"name": "30017"}, "id": "30017"}, {"arcs": [[7438, 7439, 7440, 7441, 7442, 7443]], "type": "Polygon", "properties": {"name": "46109"}, "id": "46109"}, {"arcs": [[-3568, 7444, 7445, -5249, -7382, -3683]], "type": "Polygon", "properties": {"name": "17141"}, "id": "17141"}, {"arcs": [[-1765, 7446, -6433, -3348, -7243, 7447, -7439]], "type": "Polygon", "properties": {"name": "38077"}, "id": "38077"}, {"arcs": [[-919, -6745, 7448, -4351, 7449, 7450]], "type": "Polygon", "properties": {"name": "55005"}, "id": "55005"}, {"arcs": [[-3901, -4478, 7451, -3921, 7452]], "type": "Polygon", "properties": {"name": "55051"}, "id": "55051"}, {"arcs": [[-2525, -4912, 7453, 7454, -4363]], "type": "Polygon", "properties": {"name": "27157"}, "id": "27157"}, {"arcs": [[-7055, 7455, 7456, -7220, 7457]], "type": "Polygon", "properties": {"name": "06015"}, "id": "06015"}, {"arcs": [[-3868, 7458, -4312, 7459, 7460, 7461]], "type": "Polygon", "properties": {"name": "40127"}, "id": "40127"}, {"arcs": [[-5638, 7462, -5990, 7463, -6163, 7464]], "type": "Polygon", "properties": {"name": "53007"}, "id": "53007"}, {"arcs": [[-398, -4169, 7465, 7466]], "type": "Polygon", "properties": {"name": "26141"}, "id": "26141"}, {"arcs": [[-475, -7358, -5732, 7467]], "type": "Polygon", "properties": {"name": "40027"}, "id": "40027"}, {"arcs": [[-939, 7468, -1206, 7469, 7470]], "type": "Polygon", "properties": {"name": "36105"}, "id": "36105"}, {"arcs": [[-6376, 7471, -6531, -7179]], "type": "Polygon", "properties": {"name": "37149"}, "id": "37149"}, {"arcs": [[-1244, -3562, -2934, -2937]], "type": "Polygon", "properties": {"name": "37165"}, "id": "37165"}, {"arcs": [[-142, 7472, 7473, -4566, -2900, -5113, 7474]], "type": "Polygon", "properties": {"name": "37085"}, "id": "37085"}, {"arcs": [[-143, -7475, -5112]], "type": "Polygon", "properties": {"name": "37105"}, "id": "37105"}, {"arcs": [[-2037, -5508, 7475, -7000, 7476]], "type": "Polygon", "properties": {"name": "18159"}, "id": "18159"}, {"arcs": [[-1312, -4805, 7477, 7478, -4779, 7479]], "type": "Polygon", "properties": {"name": "20027"}, "id": "20027"}, {"arcs": [[-2294, -4330, 7480, -2672, -3223, 7481]], "type": "Polygon", "properties": {"name": "40145"}, "id": "40145"}, {"arcs": [[7482, 7483, 7484, 7485, 7486]], "type": "Polygon", "properties": {"name": "30083"}, "id": "30083"}, {"arcs": [[-6813, 7487, 7488, 7489, 7490]], "type": "Polygon", "properties": {"name": "05003"}, "id": "05003"}, {"arcs": [[-1660, -6587, -3712, 7491, 7492, -3148]], "type": "Polygon", "properties": {"name": "05041"}, "id": "05041"}, {"arcs": [[7493]], "type": "Polygon", "properties": {"name": "72147"}, "id": "72147"}, {"arcs": [[-2789, 7494, -5608, 7495, 7496, -6008]], "type": "Polygon", "properties": {"name": "47135"}, "id": "47135"}, {"arcs": [[-833, -6920, -7211, -7059, -4131, -6747, 7497]], "type": "Polygon", "properties": {"name": "27163"}, "id": "27163"}, {"arcs": [[-4720, 7498, 7499, 7500]], "type": "Polygon", "properties": {"name": "51740"}, "id": "51740"}, {"arcs": [[-1372, 7501, 7502, -7258, -6502, -4419, -3426]], "type": "Polygon", "properties": {"name": "42051"}, "id": "42051"}, {"arcs": [[-3919, -4741, 7503, 7504, -5652, -4421, -6501]], "type": "Polygon", "properties": {"name": "54023"}, "id": "54023"}, {"arcs": [[-4738, 7505, 7506, 7507, 7508]], "type": "Polygon", "properties": {"name": "51171"}, "id": "51171"}, {"arcs": [[-1315, 7509, -2711, 7510]], "type": "Polygon", "properties": {"name": "48235"}, "id": "48235"}, {"arcs": [[-559, 7511, -4649, 7512, 7513, 7514]], "type": "Polygon", "properties": {"name": "29025"}, "id": "29025"}, {"arcs": [[-466, 7515, 7516, -5544, 7517, -3305, -7003]], "type": "Polygon", "properties": {"name": "12107"}, "id": "12107"}, {"arcs": [[-657, -2228, -1005, 7518, -6323, 7519]], "type": "Polygon", "properties": {"name": "18025"}, "id": "18025"}, {"arcs": [[-506, -3820, -4630, 7520, -551, -6929]], "type": "Polygon", "properties": {"name": "29111"}, "id": "29111"}, {"arcs": [[-6439, 7521, -6972, 7522, 7523]], "type": "Polygon", "properties": {"name": "31075"}, "id": "31075"}, {"arcs": [[-2805, 7524, 7525, 7526]], "type": "Polygon", "properties": {"name": "72087"}, "id": "72087"}, {"arcs": [[-831, -3359, -7302, -3120, 7527, -1295]], "type": "Polygon", "properties": {"name": "16071"}, "id": "16071"}, {"arcs": [[-1429, -4032, -1916, -7346, -2495]], "type": "Polygon", "properties": {"name": "17139"}, "id": "17139"}, {"arcs": [[-1963, 7528, 7529, 7530, 7531]], "type": "Polygon", "properties": {"name": "21107"}, "id": "21107"}, {"arcs": [[-3015, 7532, -3763, 7533, 7534, 7535, 7536]], "type": "Polygon", "properties": {"name": "16035"}, "id": "16035"}, {"arcs": [[-4397, 7537, -4800, 7538, 7539, -7156, 7540]], "type": "Polygon", "properties": {"name": "21013"}, "id": "21013"}, {"arcs": [[-674, 7541, -6833, -1598]], "type": "Polygon", "properties": {"name": "27035"}, "id": "27035"}, {"arcs": [[-6995, 7542]], "type": "Polygon", "properties": {"name": "60050"}, "id": "60050"}, {"arcs": [[-2685, 7543, -5956, -4360, -6692, 7544, 7545]], "type": "Polygon", "properties": {"name": "72011"}, "id": "72011"}, {"arcs": [[-2180, -7384, -2758, 7546, -4253, -5282, -4510]], "type": "Polygon", "properties": {"name": "04009"}, "id": "04009"}, {"arcs": [[-5899, 7547, -6581, 7548, 7549]], "type": "Polygon", "properties": {"name": "05123"}, "id": "05123"}, {"arcs": [[7550, 7551, 7552, 7553, 7554]], "type": "Polygon", "properties": {"name": "13101"}, "id": "13101"}, {"arcs": [[[-6728, -7122, -7326, 7555]], [[-6730, 7556]], [[7557]]], "type": "MultiPolygon", "properties": {"name": "02070"}, "id": "02070"}, {"arcs": [[-5018, 7558, -5540, 7559, 7560, 7561]], "type": "Polygon", "properties": {"name": "20105"}, "id": "20105"}, {"arcs": [[-497, -5538, 7562, 7563, -872, 7564]], "type": "Polygon", "properties": {"name": "20183"}, "id": "20183"}, {"arcs": [[-432, 7565, 7566, 7567, 7568, 7569, 7570]], "type": "Polygon", "properties": {"name": "12065"}, "id": "12065"}, {"arcs": [[-4580, 7571, 7572, 7573, 7574, -5447]], "type": "Polygon", "properties": {"name": "72041"}, "id": "72041"}, {"arcs": [[-296, 7575, -3962, 7576, 7577, -2764, -7226]], "type": "Polygon", "properties": {"name": "28005"}, "id": "28005"}, {"arcs": [[-723, -4193, -5753, -2983, -5059, -1147, 7578]], "type": "Polygon", "properties": {"name": "05097"}, "id": "05097"}, {"arcs": [[-3454, 7579, -3590, -6508, 7580, 7581]], "type": "Polygon", "properties": {"name": "26025"}, "id": "26025"}, {"arcs": [[-71, -5185, 7582, -1173, -846, -4025, -1305, 7583]], "type": "Polygon", "properties": {"name": "01029"}, "id": "01029"}, {"arcs": [[-3213, 7584, 7585, -3266, 7586, -5006, -5708, -3546]], "type": "Polygon", "properties": {"name": "08123"}, "id": "08123"}, {"arcs": [[-3751, -5314, -6712, 7587, 7588, -7266, -6605, -5766]], "type": "Polygon", "properties": {"name": "40009"}, "id": "40009"}, {"arcs": [[-1159, -4437, 7589, -3629, -3940, 7590]], "type": "Polygon", "properties": {"name": "06049"}, "id": "06049"}, {"arcs": [[-3485, -5221, 7591, -7104, 7592, -5299]], "type": "Polygon", "properties": {"name": "19153"}, "id": "19153"}, {"arcs": [[-2440, 7593, -6721, 7594, 7595, 7596]], "type": "Polygon", "properties": {"name": "13179"}, "id": "13179"}, {"arcs": [[-6034, 7597, 7598, 7599, -6988]], "type": "Polygon", "properties": {"name": "48349"}, "id": "48349"}, {"arcs": [[-708, -4279, 7600, -4555, 7601, -1238, 7602]], "type": "Polygon", "properties": {"name": "48047"}, "id": "48047"}, {"arcs": [[-1411, 7603, 7604, -2786, -7058, 7605, 7606]], "type": "Polygon", "properties": {"name": "47187"}, "id": "47187"}, {"arcs": [[-1562, -3267, -7586, 7607, 7608, 7609, 7610]], "type": "Polygon", "properties": {"name": "56021"}, "id": "56021"}, {"arcs": [[-106, 7611, 7612, -3760]], "type": "Polygon", "properties": {"name": "53003"}, "id": "53003"}, {"arcs": [[-7242, 7613, 7614, 7615, -7440, -7448]], "type": "Polygon", "properties": {"name": "27155"}, "id": "27155"}, {"arcs": [[-909, -5071, -6013, -4319, 7616, 7617]], "type": "Polygon", "properties": {"name": "17017"}, "id": "17017"}, {"arcs": [[-1011, -6743, -2112, 7618, -5680]], "type": "Polygon", "properties": {"name": "13247"}, "id": "13247"}, {"arcs": [[-1991, -5613, -2656, 7619, -4156, 7620]], "type": "Polygon", "properties": {"name": "42067"}, "id": "42067"}, {"arcs": [[-994, 7621, -2944, -6683, 7622, 7623]], "type": "Polygon", "properties": {"name": "42083"}, "id": "42083"}, {"arcs": [[-3701, 7624, 7625, 7626, -5717, 7627]], "type": "Polygon", "properties": {"name": "40049"}, "id": "40049"}, {"arcs": [[-3, -5626, 7628, -1473, 7629, 7630]], "type": "Polygon", "properties": {"name": "31021"}, "id": "31021"}, {"arcs": [[-1133, -6839, 7631, -4391, 7632, 7633, -5293]], "type": "Polygon", "properties": {"name": "35045"}, "id": "35045"}, {"arcs": [[7634, 7635, 7636, 7637]], "type": "Polygon", "properties": {"name": "36073"}, "id": "36073"}, {"arcs": [[-6796, 7638, 7639, 7640, 7641, 7642]], "type": "Polygon", "properties": {"name": "22031"}, "id": "22031"}, {"arcs": [[-2848, -4049, -6634, 7643, 7644, -5073, -4786, 7645]], "type": "Polygon", "properties": {"name": "06019"}, "id": "06019"}, {"arcs": [[-1719, 7646, 7647, 7648, -2325, -5238, 7649, 7650]], "type": "Polygon", "properties": {"name": "13105"}, "id": "13105"}, {"arcs": [[-4290, 7651, 7652, -5032, -6074, 7653, -7026, 7654]], "type": "Polygon", "properties": {"name": "01005"}, "id": "01005"}, {"arcs": [[-1247, -2902, -4571, 7655, 7656]], "type": "Polygon", "properties": {"name": "37017"}, "id": "37017"}, {"arcs": [[-1191, 7657, 7658, 7659]], "type": "Polygon", "properties": {"name": "48111"}, "id": "48111"}, {"arcs": [[-2469, 7660, 7661, -7617, -4318, 7662, -2498, 7663]], "type": "Polygon", "properties": {"name": "17167"}, "id": "17167"}, {"arcs": [[-2449, -7038, -3220, -2670, 7664, -4197, -4381]], "type": "Polygon", "properties": {"name": "40035"}, "id": "40035"}, {"arcs": [[-406, -2825, 7665, -748, -6208, 7666, 7667, -5727]], "type": "Polygon", "properties": {"name": "47035"}, "id": "47035"}, {"arcs": [[-3553, 7668, 7669, -4167, 7670]], "type": "Polygon", "properties": {"name": "26137"}, "id": "26137"}, {"arcs": [[-1049, 7671, 7672, -5198, -2161]], "type": "Polygon", "properties": {"name": "19161"}, "id": "19161"}, {"arcs": [[-6405, 7673, 7674, 7675, 7676]], "type": "Polygon", "properties": {"name": "49015"}, "id": "49015"}, {"arcs": [[-6159, 7677, -6211, 7678]], "type": "Polygon", "properties": {"name": "53019"}, "id": "53019"}, {"arcs": [[-7486, 7679, 7680, 7681, 7682, 7683]], "type": "Polygon", "properties": {"name": "30109"}, "id": "30109"}, {"arcs": [[-13, 7684, -183, 7685, -5738, 7686, 7687]], "type": "Polygon", "properties": {"name": "35027"}, "id": "35027"}, {"arcs": [[-158, -274, -2295, -7482, -3222, -7037]], "type": "Polygon", "properties": {"name": "40021"}, "id": "40021"}, {"arcs": [[-826, 7688, 7689, 7690, -4817, -6717, -1543]], "type": "Polygon", "properties": {"name": "27173"}, "id": "27173"}, {"arcs": [[-413, -1532, -3165, 7691, -7312, -4246, -1583, 7692]], "type": "Polygon", "properties": {"name": "48231"}, "id": "48231"}, {"arcs": [[-934, 7693, -6392, 7694, 7695, 7696]], "type": "Polygon", "properties": {"name": "48335"}, "id": "48335"}, {"arcs": [[-3163, -4307, 7697, 7698, 7699, -7314, 7700]], "type": "Polygon", "properties": {"name": "48499"}, "id": "48499"}, {"arcs": [[-2726, 7701, -4415, 7702, 7703, -6291, -5339]], "type": "Polygon", "properties": {"name": "40113"}, "id": "40113"}, {"arcs": [[-1067, -5972, 7704, 7705, -3053, 7706, 7707]], "type": "Polygon", "properties": {"name": "37039"}, "id": "37039"}, {"arcs": [[-1250, 7708, 7709, 7710]], "type": "Polygon", "properties": {"name": "26107"}, "id": "26107"}, {"arcs": [[-1856, -6650, -4124, 7711, -2257, 7712, 7713, 7714]], "type": "Polygon", "properties": {"name": "21195"}, "id": "21195"}, {"arcs": [[-1979, -5923, 7715, 7716, 7717]], "type": "Polygon", "properties": {"name": "12067"}, "id": "12067"}, {"arcs": [[-1276, 7718, -1327, -4208, -7390]], "type": "Polygon", "properties": {"name": "37035"}, "id": "37035"}, {"arcs": [[-1538, -4135, -3194, -2608, 7719, -1853]], "type": "Polygon", "properties": {"name": "21025"}, "id": "21025"}, {"arcs": [[-5312, 7720, 7721, 7722, -6708]], "type": "Polygon", "properties": {"name": "48075"}, "id": "48075"}, {"arcs": [[-3946, -5841, 7723, -4845, -7031]], "type": "Polygon", "properties": {"name": "29181"}, "id": "29181"}, {"arcs": [[-855, 7724, -6011, -2365, 7725, -7274]], "type": "Polygon", "properties": {"name": "17179"}, "id": "17179"}, {"arcs": [[-5775, -6891, 7726, 7727, -6134, 7728]], "type": "Polygon", "properties": {"name": "48243"}, "id": "48243"}, {"arcs": [[7729]], "type": "Polygon", "properties": {"name": "51678"}, "id": "51678"}, {"arcs": [[-1088, -4044, -1234, -5842, -3950, 7730]], "type": "Polygon", "properties": {"name": "05135"}, "id": "05135"}, {"arcs": [[-3212, 7731, 7732, 7733, -7608, -7585]], "type": "Polygon", "properties": {"name": "08069"}, "id": "08069"}, {"arcs": [[-6548, 7734, 7735]], "type": "Polygon", "properties": {"name": "37177"}, "id": "37177"}, {"arcs": [[-1870, 7736, -2954, 7737, -3535, -6917, -4913]], "type": "Polygon", "properties": {"name": "27131"}, "id": "27131"}, {"arcs": [[-4376, 7738, -6628, -4934, -6565]], "type": "Polygon", "properties": {"name": "29219"}, "id": "29219"}, {"arcs": [[-360, 7739, -6512, -6568, -903, 7740]], "type": "Polygon", "properties": {"name": "21227"}, "id": "21227"}, {"arcs": [[-1284, 7741, 7742, -7640, 7743, -2664, 7744, -6901]], "type": "Polygon", "properties": {"name": "22017"}, "id": "22017"}, {"arcs": [[-7077, 7745, 7746, 7747]], "type": "Polygon", "properties": {"name": "46121"}, "id": "46121"}, {"arcs": [[-7102, 7748, -7288, 7749, 7750]], "type": "Polygon", "properties": {"name": "19127"}, "id": "19127"}, {"arcs": [[-3775, -5531, 7751, -6763, -5764, -7418]], "type": "Polygon", "properties": {"name": "40141"}, "id": "40141"}, {"arcs": [[-4918, -7363, 7752, 7753, -7705, -5971]], "type": "Polygon", "properties": {"name": "37113"}, "id": "37113"}, {"arcs": [[-2265, -2738, -5983, 7754, 7755]], "type": "Polygon", "properties": {"name": "54063"}, "id": "54063"}, {"arcs": [[-614, -6934, -1346, 7756, -5822, -2313]], "type": "Polygon", "properties": {"name": "18155"}, "id": "18155"}, {"arcs": [[-5697, 7757, 7758, 7759, 7760, -6975]], "type": "Polygon", "properties": {"name": "21105"}, "id": "21105"}, {"arcs": [[-438, 7761, 7762, 7763, 7764, 7765, 7766]], "type": "Polygon", "properties": {"name": "01061"}, "id": "01061"}, {"arcs": [[-1673, -3570, -3682, -3270, -6716, -6076, -7277, 7767, -5021]], "type": "Polygon", "properties": {"name": "17099"}, "id": "17099"}, {"arcs": [[-3803, 7768, -4668, 7769, -5106]], "type": "Polygon", "properties": {"name": "19055"}, "id": "19055"}, {"arcs": [[-1045, 7770, -3022, 7771, -4803, 7772]], "type": "Polygon", "properties": {"name": "20127"}, "id": "20127"}, {"arcs": [[-5809, 7773, -6218, 7774, 7775]], "type": "Polygon", "properties": {"name": "19051"}, "id": "19051"}, {"arcs": [[-1083, -5324, -1707, -3376, -7263]], "type": "Polygon", "properties": {"name": "16015"}, "id": "16015"}, {"arcs": [[-888, -982, 7776, -3155]], "type": "Polygon", "properties": {"name": "55081"}, "id": "55081"}, {"arcs": [[-3705, 7777, 7778, -6269]], "type": "Polygon", "properties": {"name": "37143"}, "id": "37143"}, {"arcs": [[-7555, 7779, 7780, 7781, 7782]], "type": "Polygon", "properties": {"name": "12047"}, "id": "12047"}, {"arcs": [[-2752, -5912, -5931, -6100, -3303, 7783, -5800, -6726]], "type": "Polygon", "properties": {"name": "02170"}, "id": "02170"}, {"arcs": [[-4089, 7784, -6998, 7785, 7786, -5643]], "type": "Polygon", "properties": {"name": "18035"}, "id": "18035"}, {"arcs": [[-1983, 7787, 7788, -2192, 7789, -5920]], "type": "Polygon", "properties": {"name": "12075"}, "id": "12075"}, {"arcs": [[-2534, 7790, -6373, -6829, 7791]], "type": "Polygon", "properties": {"name": "72063"}, "id": "72063"}, {"arcs": [[-4688, 7792, 7793, 7794, 7795]], "type": "Polygon", "properties": {"name": "72065"}, "id": "72065"}, {"arcs": [[-3651, 7796, 7797, 7798]], "type": "Polygon", "properties": {"name": "28045"}, "id": "28045"}, {"arcs": [[-5089, 7799, 7800, -6117, 7801, 7802, 7803]], "type": "Polygon", "properties": {"name": "13315"}, "id": "13315"}, {"arcs": [[-7641, -7743, 7804, 7805, 7806]], "type": "Polygon", "properties": {"name": "22081"}, "id": "22081"}, {"arcs": [[-1970, -6205, 7807, -3916, 7808, -3218, 7809, -4003]], "type": "Polygon", "properties": {"name": "47093"}, "id": "47093"}, {"arcs": [[-860, 7810, -7015, 7811, -4548, 7812, 7813]], "type": "Polygon", "properties": {"name": "23017"}, "id": "23017"}, {"arcs": [[-883, -2869, -4343, -5918, 7814, -4652, -6847]], "type": "Polygon", "properties": {"name": "29095"}, "id": "29095"}, {"arcs": [[-3055, 7815, 7816, -3413, -6139]], "type": "Polygon", "properties": {"name": "13281"}, "id": "13281"}, {"arcs": [[-122, 7817, -6688, -5356, -5521, -6313]], "type": "Polygon", "properties": {"name": "28129"}, "id": "28129"}, {"arcs": [[-1086, 7818, -5009, 7819]], "type": "Polygon", "properties": {"name": "16075"}, "id": "16075"}, {"arcs": [[-862, -6329, -6769, 7820, -7535, 7821, -3563]], "type": "Polygon", "properties": {"name": "16079"}, "id": "16079"}, {"arcs": [[-2575, -6549, -7736, 7822, 7823, 7824]], "type": "Polygon", "properties": {"name": "37095"}, "id": "37095"}, {"arcs": [[-3681, 7825, 7826, -7166]], "type": "Polygon", "properties": {"name": "19067"}, "id": "19067"}, {"arcs": [[-5692, -6978, 7827, 7828, -6962, 7829, 7830]], "type": "Polygon", "properties": {"name": "21145"}, "id": "21145"}, {"arcs": [[-1816, -6436, -3331, -2097, -6479, 7831]], "type": "Polygon", "properties": {"name": "21225"}, "id": "21225"}, {"arcs": [[-43, 7832, -5454, -5490, -510, -2542]], "type": "Polygon", "properties": {"name": "46125"}, "id": "46125"}, {"arcs": [[-1689, -6916, 7833, -3216, 7834, -7066]], "type": "Polygon", "properties": {"name": "47029"}, "id": "47029"}, {"arcs": [[-3728, 7835, 7836, 7837, -6237]], "type": "Polygon", "properties": {"name": "47067"}, "id": "47067"}, {"arcs": [[-2473, 7838, -4230, 7839, 7840, -5606, -7341, 7841]], "type": "Polygon", "properties": {"name": "47071"}, "id": "47071"}, {"arcs": [[-2235, -6671, 7842, 7843, 7844]], "type": "Polygon", "properties": {"name": "45067"}, "id": "45067"}, {"arcs": [[-2856, 7845, -7164, 7846, 7847]], "type": "Polygon", "properties": {"name": "72057"}, "id": "72057"}, {"arcs": [[-298, -7228, 7848, -5547, -3653, 7849]], "type": "Polygon", "properties": {"name": "22117"}, "id": "22117"}, {"arcs": [[-3402, 7850, 7851, -4842, -5232, -5391, 7852]], "type": "Polygon", "properties": {"name": "29207"}, "id": "29207"}, {"arcs": [[-731, 7853, 7854, -7800, -5088, -5229]], "type": "Polygon", "properties": {"name": "13093"}, "id": "13093"}, {"arcs": [[-1265, 7855, -7333, 7856, -3283, -5875, -2602, -2114, 7857]], "type": "Polygon", "properties": {"name": "27145"}, "id": "27145"}, {"arcs": [[-19, 7858, 7859, -5306, -7236, -3874]], "type": "Polygon", "properties": {"name": "31155"}, "id": "31155"}, {"arcs": [[-678, -7304, -7062, 7860, -3284, -7857, -7332]], "type": "Polygon", "properties": {"name": "27141"}, "id": "27141"}, {"arcs": [[-515, -751, 7861, 7862, -5156]], "type": "Polygon", "properties": {"name": "46035"}, "id": "46035"}, {"arcs": [[-1032, -7157, -7540, 7863, -7837, 7864, -3914]], "type": "Polygon", "properties": {"name": "47025"}, "id": "47025"}, {"arcs": [[-234, 7865, -6244, -7128, -6723, -3742]], "type": "Polygon", "properties": {"name": "48337"}, "id": "48337"}, {"arcs": [[-1626, -6823, -2998, 7866, 7867, -2743, 7868]], "type": "Polygon", "properties": {"name": "48049"}, "id": "48049"}, {"arcs": [[-2352, 7869, -3528, 7870, -3287]], "type": "Polygon", "properties": {"name": "55101"}, "id": "55101"}, {"arcs": [[-4427, -7185, -5189, 7871, -6149, 7872, -6843]], "type": "Polygon", "properties": {"name": "55115"}, "id": "55115"}, {"arcs": [[-1053, 7873, 7874, -4111]], "type": "Polygon", "properties": {"name": "19009"}, "id": "19009"}, {"arcs": [[-2069, -5326, 7875, -3790, -7419]], "type": "Polygon", "properties": {"name": "48207"}, "id": "48207"}, {"arcs": [[-2044, -7357, 7876, 7877, -6294, 7878]], "type": "Polygon", "properties": {"name": "40083"}, "id": "40083"}, {"arcs": [[-1162, -5815, -3893, -2926, -5166]], "type": "Polygon", "properties": {"name": "36065"}, "id": "36065"}, {"arcs": [[-2019, -3294, -2719, -2138, -3642]], "type": "Polygon", "properties": {"name": "08065"}, "id": "08065"}, {"arcs": [[-2252, 7879, 7880, 7881, -7460, -4311, -3247]], "type": "Polygon", "properties": {"name": "40121"}, "id": "40121"}, {"arcs": [[-974, -5401, 7882, 7883, 7884, 7885]], "type": "Polygon", "properties": {"name": "54017"}, "id": "54017"}, {"arcs": [[-3368, -4947, 7886, 7887, -7376]], "type": "Polygon", "properties": {"name": "54105"}, "id": "54105"}, {"arcs": [[-2083, -4549, -7812, -7014, 7888, 7889]], "type": "Polygon", "properties": {"name": "33003"}, "id": "33003"}, {"arcs": [[-975, -7886, 7890, -5977, 7891, -3175]], "type": "Polygon", "properties": {"name": "54095"}, "id": "54095"}, {"arcs": [[7892]], "type": "Polygon", "properties": {"name": "69085"}, "id": "69085"}, {"arcs": [[-2413, -3536, -7738, -2953, 7893, 7894]], "type": "Polygon", "properties": {"name": "27079"}, "id": "27079"}, {"arcs": [[-5639, -7465, -6162, 7895]], "type": "Polygon", "properties": {"name": "53017"}, "id": "53017"}, {"arcs": [[-995, -7624, 7896, 7897, -6615, 7898]], "type": "Polygon", "properties": {"name": "36009"}, "id": "36009"}, {"arcs": [[-2343, -4969, -4882, 7899, 7900, 7901, 7902]], "type": "Polygon", "properties": {"name": "55027"}, "id": "55027"}, {"arcs": [[-999, -4669, -7769, -3802, -4633, -1858]], "type": "Polygon", "properties": {"name": "19105"}, "id": "19105"}, {"arcs": [[-1399, 7903, 7904, -1522, -4987, -5756, 7905]], "type": "Polygon", "properties": {"name": "20007"}, "id": "20007"}, {"arcs": [[-1655, -7149, 7906, -4886, 7907, -4054]], "type": "Polygon", "properties": {"name": "29169"}, "id": "29169"}, {"arcs": [[-5033, -7653, 7908, 7909, -7764, 7910]], "type": "Polygon", "properties": {"name": "01045"}, "id": "01045"}, {"arcs": [[-1225, -3812, 7911, -6296, -5564, 7912]], "type": "Polygon", "properties": {"name": "20109"}, "id": "20109"}, {"arcs": [[-3517, -5079, -5074, -7645, 7913]], "type": "Polygon", "properties": {"name": "06039"}, "id": "06039"}, {"arcs": [[-2801, 7914, 7915, -4373, 7916, -6945]], "type": "Polygon", "properties": {"name": "29075"}, "id": "29075"}, {"arcs": [[-799, 7917, -1027, 7918, -3669, -6965]], "type": "Polygon", "properties": {"name": "31009"}, "id": "31009"}, {"arcs": [[-1519, -7364, -4731, -2560, 7919]], "type": "Polygon", "properties": {"name": "49009"}, "id": "49009"}, {"arcs": [[-3889, 7920, 7921, -7610, 7922]], "type": "Polygon", "properties": {"name": "56031"}, "id": "56031"}, {"arcs": [[-1279, 7923, 7924, -5054]], "type": "Polygon", "properties": {"name": "37071"}, "id": "37071"}, {"arcs": [[-14, -7688, 7925, -2386, 7926]], "type": "Polygon", "properties": {"name": "35019"}, "id": "35019"}, {"arcs": [[-628, 7927, 7928, -1362, 7929, -6495]], "type": "Polygon", "properties": {"name": "30037"}, "id": "30037"}, {"arcs": [[-4567, -7474, 7930, 7931, -6854, 7932]], "type": "Polygon", "properties": {"name": "37101"}, "id": "37101"}, {"arcs": [[-6632, 7933, 7934, 7935, 7936, 7937, 7938]], "type": "Polygon", "properties": {"name": "06085"}, "id": "06085"}, {"arcs": [[-2948, -2980, 7939, 7940, 7941]], "type": "Polygon", "properties": {"name": "45019"}, "id": "45019"}, {"arcs": [[-1257, 7942, -6023, 7943, 7944, 7945, 7946]], "type": "Polygon", "properties": {"name": "53005"}, "id": "53005"}, {"arcs": [[-554, 7947, 7948, 7949, 7950, 7951, 7952]], "type": "Polygon", "properties": {"name": "29001"}, "id": "29001"}, {"arcs": [[-4103, 7953, 7954, 7955, 7956]], "type": "Polygon", "properties": {"name": "39043"}, "id": "39043"}, {"arcs": [[-741, -1839, -3618, 7957, 7958, -3929, -3831]], "type": "Polygon", "properties": {"name": "17183"}, "id": "17183"}, {"arcs": [[-4180, 7959, 7960, -4936, -6627, 7961, 7962]], "type": "Polygon", "properties": {"name": "29189"}, "id": "29189"}, {"arcs": [[-2355, 7963, -3684, -7381, -5494]], "type": "Polygon", "properties": {"name": "17007"}, "id": "17007"}, {"arcs": [[-3937, 7964, 7965, 7966, -4716, -4670]], "type": "Polygon", "properties": {"name": "06103"}, "id": "06103"}, {"arcs": [[-94, 7967, -7902, 7968, -5497, -6749, 7969]], "type": "Polygon", "properties": {"name": "55025"}, "id": "55025"}, {"arcs": [[-935, 7970, 7971, -2071, -7422]], "type": "Polygon", "properties": {"name": "48151"}, "id": "48151"}, {"arcs": [[-3066, -6797, -7643, 7972, -7083, 7973]], "type": "Polygon", "properties": {"name": "22085"}, "id": "22085"}, {"arcs": [[-910, -7618, -7662, 7974, -7045, -4234, -7272]], "type": "Polygon", "properties": {"name": "17137"}, "id": "17137"}, {"arcs": [[-5416, -6118, -7801, -7855, 7975]], "type": "Polygon", "properties": {"name": "13235"}, "id": "13235"}, {"arcs": [[-2555, -7399, 7976, -6546, 7977, -4384]], "type": "Polygon", "properties": {"name": "37015"}, "id": "37015"}, {"arcs": [[-2590, 7978, -6554, 7979, -3032]], "type": "Polygon", "properties": {"name": "37167"}, "id": "37167"}, {"arcs": [[-173, 7980, -7667, -6207, 7981]], "type": "Polygon", "properties": {"name": "47143"}, "id": "47143"}, {"arcs": [[-5849, 7982, -6852, 7983]], "type": "Polygon", "properties": {"name": "37079"}, "id": "37079"}, {"arcs": [[-1542, -4801, -7538, -4396]], "type": "Polygon", "properties": {"name": "21131"}, "id": "21131"}, {"arcs": [[-756, 7984, 7985, -7385]], "type": "Polygon", "properties": {"name": "24039"}, "id": "24039"}, {"arcs": [[-1675, -5022, -7768, -7276, 7986, -3747]], "type": "Polygon", "properties": {"name": "17123"}, "id": "17123"}, {"arcs": [[-1819, 7987, 7988, 7989, 7990]], "type": "Polygon", "properties": {"name": "21143"}, "id": "21143"}, {"arcs": [[-49, 7991, 7992, -2745, 7993]], "type": "Polygon", "properties": {"name": "48095"}, "id": "48095"}, {"arcs": [[-933, 7994, 7995, -6393, -7694]], "type": "Polygon", "properties": {"name": "48081"}, "id": "48081"}, {"arcs": [[-1907, 7996, 7997, -2823, -4263]], "type": "Polygon", "properties": {"name": "47133"}, "id": "47133"}, {"arcs": [[-1578, -5928, 7998]], "type": "Polygon", "properties": {"name": "26063"}, "id": "26063"}, {"arcs": [[-2906, 7999, 8000, -4259]], "type": "Polygon", "properties": {"name": "26069"}, "id": "26069"}, {"arcs": [[-3610, 8001, 8002, 8003, 8004, 8005, 8006, -5740]], "type": "Polygon", "properties": {"name": "13069"}, "id": "13069"}, {"arcs": [[-327, -842, 8007, 8008, -5741, -8007, 8009, -6991]], "type": "Polygon", "properties": {"name": "13299"}, "id": "13299"}, {"arcs": [[-807, -5688, 8010, -3691, 8011]], "type": "Polygon", "properties": {"name": "38037"}, "id": "38037"}, {"arcs": [[-6809, 8012, 8013, 8014, 8015, 8016, 8017]], "type": "Polygon", "properties": {"name": "22051"}, "id": "22051"}, {"arcs": [[-299, -7850, -3652, -7799, 8018, -3967, 8019, -8017, 8020]], "type": "Polygon", "properties": {"name": "22103"}, "id": "22103"}, {"arcs": [[-7101, 8021, 8022, -7289, -7749]], "type": "Polygon", "properties": {"name": "19083"}, "id": "19083"}, {"arcs": [[-263, -3239, -3944, 8023, -1117, -340]], "type": "Polygon", "properties": {"name": "22023"}, "id": "22023"}, {"arcs": [[-349, -6363, -2816, 8024, 8025, -5778]], "type": "Polygon", "properties": {"name": "39027"}, "id": "39027"}, {"arcs": [[-1601, -5159, -3199, 8026, -7050, 8027, 8028, 8029]], "type": "Polygon", "properties": {"name": "27137"}, "id": "27137"}, {"arcs": [[-5877, 8030, -7955, 8031, 8032, 8033]], "type": "Polygon", "properties": {"name": "39093"}, "id": "39093"}, {"arcs": [[-2198, -6830, -6493, 8034, -6090, 8035]], "type": "Polygon", "properties": {"name": "72143"}, "id": "72143"}, {"arcs": [[-1481, 8036, -7105, -7592, -5220, 8037]], "type": "Polygon", "properties": {"name": "19015"}, "id": "19015"}, {"arcs": [[-1645, -5726, 8038, 8039, -3794, 8040]], "type": "Polygon", "properties": {"name": "48373"}, "id": "48373"}, {"arcs": [[-568, -5623, -4540, 8041, -5457, 8042]], "type": "Polygon", "properties": {"name": "31051"}, "id": "31051"}, {"arcs": [[-1833, 8043, -3381, -6526, 8044]], "type": "Polygon", "properties": {"name": "24025"}, "id": "24025"}, {"arcs": [[-617, 8045, -3335, -1650, -4712, -7278]], "type": "Polygon", "properties": {"name": "45037"}, "id": "45037"}, {"arcs": [[-755, 8046, 8047, 8048, -7985]], "type": "Polygon", "properties": {"name": "51001"}, "id": "51001"}, {"arcs": [[-4767, -4968, 8049, -6845, 8050, 8051]], "type": "Polygon", "properties": {"name": "55015"}, "id": "55015"}, {"arcs": [[-4398, -7541, -7155, 8052]], "type": "Polygon", "properties": {"name": "21121"}, "id": "21121"}, {"arcs": [[-2462, 8053, -3452, 8054, 8055]], "type": "Polygon", "properties": {"name": "26067"}, "id": "26067"}, {"arcs": [[8056, 8057, 8058]], "type": "Polygon", "properties": {"name": "37129"}, "id": "37129"}, {"arcs": [[-2975, 8059, -7759, 8060, 8061, 8062]], "type": "Polygon", "properties": {"name": "47131"}, "id": "47131"}, {"arcs": [[-4951, -6906, -5694, 8063, 8064]], "type": "Polygon", "properties": {"name": "21035"}, "id": "21035"}, {"arcs": [[-3027, 8065, -7320, 8066, -4033, -3861, 8067, 8068], [-1670]], "type": "Polygon", "properties": {"name": "51003"}, "id": "51003"}, {"arcs": [[-1730, 8069, 8070, -6781, 8071, -6514, 8072]], "type": "Polygon", "properties": {"name": "47147"}, "id": "47147"}, {"arcs": [[-4858, 8073, 8074, -6189, 8075]], "type": "Polygon", "properties": {"name": "51043"}, "id": "51043"}, {"arcs": [[-105, -5506, 8076, -7612]], "type": "Polygon", "properties": {"name": "53023"}, "id": "53023"}, {"arcs": [[-3196, -4134, -4400, 8077, 8078, -4000, -6706]], "type": "Polygon", "properties": {"name": "21109"}, "id": "21109"}, {"arcs": [[-7048, 8079]], "type": "Polygon", "properties": {"name": "27031"}, "id": "27031"}, {"arcs": [[-1103, -7092, -3415, 8080, -7362, 8081, -5499, -5234, -2323]], "type": "Polygon", "properties": {"name": "45073"}, "id": "45073"}, {"arcs": [[-3964, 8082, 8083, 8084, -4849, 8085]], "type": "Polygon", "properties": {"name": "22033"}, "id": "22033"}, {"arcs": [[-1057, -4370, 8086, -7310, 8087]], "type": "Polygon", "properties": {"name": "28021"}, "id": "28021"}, {"arcs": [[-4346, 8088, 8089]], "type": "Polygon", "properties": {"name": "24037"}, "id": "24037"}, {"arcs": [[-1252, 8090, -8055, -3457, 8091, -3321, 8092]], "type": "Polygon", "properties": {"name": "26081"}, "id": "26081"}, {"arcs": [[-2579, -6658, -5850, -7984, -6851, 8093, 8094]], "type": "Polygon", "properties": {"name": "37147"}, "id": "37147"}, {"arcs": [[-2778, 8095, 8096, 8097, 8098, -6680]], "type": "Polygon", "properties": {"name": "30009"}, "id": "30009"}, {"arcs": [[-6, 8099, -5441, -5881, -4537]], "type": "Polygon", "properties": {"name": "31167"}, "id": "31167"}, {"arcs": [[-1575, 8100, -7353, -6993, 8101, 8102]], "type": "Polygon", "properties": {"name": "13001"}, "id": "13001"}, {"arcs": [[-3838, -5666, -5300, -7593, -7103, -7751]], "type": "Polygon", "properties": {"name": "19099"}, "id": "19099"}, {"arcs": [[-120, -5298, -6414, 8103, -7434, -3655, 8104]], "type": "Polygon", "properties": {"name": "28153"}, "id": "28153"}, {"arcs": [[-5193, 8105, -5523, 8106, -7722, 8107]], "type": "Polygon", "properties": {"name": "48101"}, "id": "48101"}, {"arcs": [[-2559, 8108, 8109, -7070, 8110], [-2038]], "type": "Polygon", "properties": {"name": "51081"}, "id": "51081"}, {"arcs": [[-2163, 8111, 8112, -4921, -4925, -4323, 8113]], "type": "Polygon", "properties": {"name": "12105"}, "id": "12105"}, {"arcs": [[-3745, 8114, 8115, 8116, 8117]], "type": "Polygon", "properties": {"name": "48503"}, "id": "48503"}, {"arcs": [[-73, 8118, -2550, -2392, -6253, 8119, -4789]], "type": "Polygon", "properties": {"name": "01123"}, "id": "01123"}, {"arcs": [[-6523, 8120, -7018, 8121, 8122, 8123]], "type": "Polygon", "properties": {"name": "33015"}, "id": "33015"}, {"arcs": [[-136, -2190, 8124, -6836, -5885]], "type": "Polygon", "properties": {"name": "08105"}, "id": "08105"}, {"arcs": [[8125, 8126, 8127, 8128]], "type": "Polygon", "properties": {"name": "19149"}, "id": "19149"}, {"arcs": [[-282, -6099, 8129, -1928]], "type": "Polygon", "properties": {"name": "36123"}, "id": "36123"}, {"arcs": [[[-5642, 8130, 8131, -5991, -7463]], [[8132]]], "type": "MultiPolygon", "properties": {"name": "53033"}, "id": "53033"}, {"arcs": [[-520, -6922, -4434, -1157, -5528, -4407, 8133]], "type": "Polygon", "properties": {"name": "41017"}, "id": "41017"}, {"arcs": [[-1471, -4113, 8134, -6882, -5202, -7237, -5304, 8135]], "type": "Polygon", "properties": {"name": "19155"}, "id": "19155"}, {"arcs": [[-2888, -3039, -4888, 8136]], "type": "Polygon", "properties": {"name": "29229"}, "id": "29229"}, {"arcs": [[-2349, 8137, 8138, -4273]], "type": "Polygon", "properties": {"name": "30101"}, "id": "30101"}, {"arcs": [[-3142, -6122, 8139, 8140, -4137, 8141]], "type": "Polygon", "properties": {"name": "36107"}, "id": "36107"}, {"arcs": [[-2614, 8142, -7159, 8143, 8144, -2879]], "type": "Polygon", "properties": {"name": "48287"}, "id": "48287"}, {"arcs": [[-602, -3846, -5352, -1301, -6543, 8145, 8146, 8147, -6741, -1009]], "type": "Polygon", "properties": {"name": "13121"}, "id": "13121"}, {"arcs": [[-1640, -3174, 8148, -6031, 8149, -3482, -6151]], "type": "Polygon", "properties": {"name": "48073"}, "id": "48073"}, {"arcs": [[-2677, -5472, 8150, -4280, -3392, -4380, 8151]], "type": "Polygon", "properties": {"name": "29007"}, "id": "29007"}, {"arcs": [[-2949, -7942, 8152, -5487, 8153, -3597, -7129]], "type": "Polygon", "properties": {"name": "45029"}, "id": "45029"}, {"arcs": [[-2357, -5498, -7969, -7901, 8154]], "type": "Polygon", "properties": {"name": "55055"}, "id": "55055"}, {"arcs": [[-3948, -7033, 8155, -4897, 8156]], "type": "Polygon", "properties": {"name": "05055"}, "id": "05055"}, {"arcs": [[-2629, -7335, -6709, -7723, -8107, -5522]], "type": "Polygon", "properties": {"name": "48191"}, "id": "48191"}, {"arcs": [[-4129, 8157, 8158, -4352, -7449, -6744]], "type": "Polygon", "properties": {"name": "55013"}, "id": "55013"}, {"arcs": [[-2387, -7926, -7687, -5737, 8159, 8160, 8161]], "type": "Polygon", "properties": {"name": "35057"}, "id": "35057"}, {"arcs": [[-7, 8162, 8163, -986]], "type": "Polygon", "properties": {"name": "53049"}, "id": "53049"}, {"arcs": [[-4570, -6911, 8164, 8165, -8057, 8166, 8167, -7656]], "type": "Polygon", "properties": {"name": "37141"}, "id": "37141"}, {"arcs": [[-2398, -4289, 8168, -3408, 8169]], "type": "Polygon", "properties": {"name": "48221"}, "id": "48221"}, {"arcs": [[-3242, 8170, -6382, -6550, -5023, -5346]], "type": "Polygon", "properties": {"name": "46117"}, "id": "46117"}, {"arcs": [[-51, -3630, -7590, -4436, -6921, -699, 8171, -490, -7215, 8172, -5216, -2911, 8173]], "type": "Polygon", "properties": {"name": "32031"}, "id": "32031"}, {"arcs": [[-6977, 8174, 8175, 8176, -7828]], "type": "Polygon", "properties": {"name": "21007"}, "id": "21007"}, {"arcs": [[-236, -3746, -8118, 8177, -5529]], "type": "Polygon", "properties": {"name": "48009"}, "id": "48009"}, {"arcs": [[-5196, 8178, -8178, 8179, -5325]], "type": "Polygon", "properties": {"name": "48023"}, "id": "48023"}, {"arcs": [[-1642, -6153, -6794, -3069, 8180]], "type": "Polygon", "properties": {"name": "48405"}, "id": "48405"}, {"arcs": [[-7214, -8173]], "type": "Polygon", "properties": {"name": "32029"}, "id": "32029"}, {"arcs": [[-733, -5228, -5451, 8181]], "type": "Polygon", "properties": {"name": "13249"}, "id": "13249"}, {"arcs": [[-2873, 8182, -5407, 8183, -5384, -6754]], "type": "Polygon", "properties": {"name": "09001"}, "id": "09001"}, {"arcs": [[-952, -2012, -3172, -6045, -7423]], "type": "Polygon", "properties": {"name": "48313"}, "id": "48313"}, {"arcs": [[-1782, 8184, -1884, 8185, 8186, -5365]], "type": "Polygon", "properties": {"name": "06077"}, "id": "06077"}, {"arcs": [[-1142, 8187, -7097, -3311, -6485, 8188]], "type": "Polygon", "properties": {"name": "28159"}, "id": "28159"}, {"arcs": [[8189, 8190, 8191, 8192, 8193, 8194]], "type": "Polygon", "properties": {"name": "21103"}, "id": "21103"}, {"arcs": [[-5758, 8195, -6705, -6938, 8196, 8197]], "type": "Polygon", "properties": {"name": "21167"}, "id": "21167"}, {"arcs": [[-878, -6564, -5834, -1840, 8198, -5129]], "type": "Polygon", "properties": {"name": "31183"}, "id": "31183"}, {"arcs": [[-1681, -6453, -7388, 8199, 8200, -7329, -3404]], "type": "Polygon", "properties": {"name": "21135"}, "id": "21135"}, {"arcs": [[-6805, 8201, 8202, -7614, -7241]], "type": "Polygon", "properties": {"name": "27051"}, "id": "27051"}, {"arcs": [[-1618, 8203, 8204, -6482, -6840, -4854]], "type": "Polygon", "properties": {"name": "28053"}, "id": "28053"}, {"arcs": [[-202, -3081, -4448, -5805, 8205, -6412]], "type": "Polygon", "properties": {"name": "01025"}, "id": "01025"}, {"arcs": [[-372, -5476, -3023, -7771, -1044]], "type": "Polygon", "properties": {"name": "20017"}, "id": "20017"}, {"arcs": [[-4952, -8065, 8206, -7989, 8207, 8208]], "type": "Polygon", "properties": {"name": "21221"}, "id": "21221"}, {"arcs": [[-4531, 8209, 8210, -7765, -7910, 8211]], "type": "Polygon", "properties": {"name": "01069"}, "id": "01069"}, {"arcs": [[-750, 8212, -2956, -2213, 8213, -7862]], "type": "Polygon", "properties": {"name": "46003"}, "id": "46003"}, {"arcs": [[[-7117, 8214]], [[8215]], [[8216]], [[8217]], [[8218]], [[8219]], [[8220]], [[8221]], [[8222]], [[8223]], [[8224]]], "type": "MultiPolygon", "properties": {"name": "02013"}, "id": "02013"}, {"arcs": [[-498, -7565, -871, 8225, -3087]], "type": "Polygon", "properties": {"name": "31061"}, "id": "31061"}, {"arcs": [[-1831, -3098, 8226, -6639, 8227]], "type": "Polygon", "properties": {"name": "24029"}, "id": "24029"}, {"arcs": [[-215, -5678, -4382, -4195, -6448, -7107, 8228]], "type": "Polygon", "properties": {"name": "20037"}, "id": "20037"}, {"arcs": [[-825, 8229, -2605, 8230, -7689]], "type": "Polygon", "properties": {"name": "27023"}, "id": "27023"}, {"arcs": [[-2621, 8231, -5026, -6403, 8232, -6518, 8233]], "type": "Polygon", "properties": {"name": "46103"}, "id": "46103"}, {"arcs": [[-2055, 8234, -8154, -5486, 8235, 8236]], "type": "Polygon", "properties": {"name": "45049"}, "id": "45049"}, {"arcs": [[-381, -1445, 8237, 8238, -4010, 8239, -3099, -1330]], "type": "Polygon", "properties": {"name": "16043"}, "id": "16043"}, {"arcs": [[-6644, 8240, 8241, 8242, -7595, -6720]], "type": "Polygon", "properties": {"name": "13029"}, "id": "13029"}, {"arcs": [[-7071, -8110, 8243, 8244, 8245, 8246, 8247, 8248]], "type": "Polygon", "properties": {"name": "51053"}, "id": "51053"}, {"arcs": [[-3050, 8249, 8250, -5883]], "type": "Polygon", "properties": {"name": "12111"}, "id": "12111"}, {"arcs": [[-6096, 8251, 8252, -7635, 8253, 8254]], "type": "Polygon", "properties": {"name": "36055"}, "id": "36055"}, {"arcs": [[-42, 8255, 8256, 8257, -5455, -7833]], "type": "Polygon", "properties": {"name": "46083"}, "id": "46083"}, {"arcs": [[-920, -7451, 8258, -7138, 8259, -6036]], "type": "Polygon", "properties": {"name": "55017"}, "id": "55017"}, {"arcs": [[-368, 8260, -4029, 8261]], "type": "Polygon", "properties": {"name": "20207"}, "id": "20207"}, {"arcs": [[-5693, -7831, 8262, -7990, -8207, -8064]], "type": "Polygon", "properties": {"name": "21157"}, "id": "21157"}, {"arcs": [[-5742, -8009, 8263, 8264, -7553, 8265]], "type": "Polygon", "properties": {"name": "13065"}, "id": "13065"}, {"arcs": [[-1414, -3613, 8266, -7551, -7783, 8267, 8268]], "type": "Polygon", "properties": {"name": "13185"}, "id": "13185"}, {"arcs": [[8269, 8270]], "type": "Polygon", "properties": {"name": "15005"}, "id": "15005"}, {"arcs": [[[8271]], [[8272]]], "type": "MultiPolygon", "properties": {"name": "15007"}, "id": "15007"}, {"arcs": [[-1587, 8273, -5253, -5622, 8274]], "type": "Polygon", "properties": {"name": "26099"}, "id": "26099"}, {"arcs": [[-3872, -6983, -5090, -7804, 8275, 8276]], "type": "Polygon", "properties": {"name": "13287"}, "id": "13287"}, {"arcs": [[-545, -1967, -2105, -2967, -2137, -4264]], "type": "Polygon", "properties": {"name": "17079"}, "id": "17079"}, {"arcs": [[-1137, -5750, 8277, 8278, -8144, -7158]], "type": "Polygon", "properties": {"name": "48331"}, "id": "48331"}, {"arcs": [[-661, -5594, -5669, -1335, -2224]], "type": "Polygon", "properties": {"name": "18147"}, "id": "18147"}, {"arcs": [[-901, 8279, 8280, 8281, -2567, 8282, 8283]], "type": "Polygon", "properties": {"name": "21099"}, "id": "21099"}, {"arcs": [[-6701, 8284, 8285, 8286, 8287]], "type": "Polygon", "properties": {"name": "21137"}, "id": "21137"}, {"arcs": [[-1017, 8288, 8289, 8290, -6498]], "type": "Polygon", "properties": {"name": "30005"}, "id": "30005"}, {"arcs": [[-4721, -7501, 8291, 8292]], "type": "Polygon", "properties": {"name": "51710"}, "id": "51710"}, {"arcs": [[-5998, 8293, 8294, -6135, -7728, 8295]], "type": "Polygon", "properties": {"name": "48389"}, "id": "48389"}, {"arcs": [[-169, -1799, -6625, -6016, 8296, -5979, -171, -4861]], "type": "Polygon", "properties": {"name": "51155"}, "id": "51155"}, {"arcs": [[-3033, -7980, -6553, 8297, 8298, 8299]], "type": "Polygon", "properties": {"name": "37179"}, "id": "37179"}, {"arcs": [[-6430, -6674, 8300, -6561, 8301, -7680, -7485]], "type": "Polygon", "properties": {"name": "38053"}, "id": "38053"}, {"arcs": [[-443, 8302, 8303, -4021, 8304]], "type": "Polygon", "properties": {"name": "12091"}, "id": "12091"}, {"arcs": [[8305, -5366, -8187, -7937, 8306]], "type": "Polygon", "properties": {"name": "06001"}, "id": "06001"}, {"arcs": [[-1215, -6630, 8307, -3389, -7273, -7043]], "type": "Polygon", "properties": {"name": "17013"}, "id": "17013"}, {"arcs": [[-783, -4338, -794, -5863, 8308, 8309]], "type": "Polygon", "properties": {"name": "18085"}, "id": "18085"}, {"arcs": [[-1143, -8189, -6484, -2269, -7279, -5140]], "type": "Polygon", "properties": {"name": "28103"}, "id": "28103"}, {"arcs": [[-5898, 8310, 8311, -6888, -6582, -7548]], "type": "Polygon", "properties": {"name": "05147"}, "id": "05147"}, {"arcs": [[-1209, 8312, 8313, 8314, -3094, 8315, -3125]], "type": "Polygon", "properties": {"name": "34015"}, "id": "34015"}, {"arcs": [[-2832, -4214, -3827, -6524, -8124, 8316, -6088]], "type": "Polygon", "properties": {"name": "33011"}, "id": "33011"}, {"arcs": [[-1019, -6497, 8317, -1124, -5566]], "type": "Polygon", "properties": {"name": "30045"}, "id": "30045"}, {"arcs": [[-4814, -4940, 8318, 8319, -7177]], "type": "Polygon", "properties": {"name": "37121"}, "id": "37121"}, {"arcs": [[-1512, 8320, 8321, -6859, 8322, -5572]], "type": "Polygon", "properties": {"name": "30077"}, "id": "30077"}, {"arcs": [[-2644, -7013, -5349, 8323, -3526, -4405]], "type": "Polygon", "properties": {"name": "41053"}, "id": "41053"}, {"arcs": [[-718, -6790, 8324, 8325, -7409, -4839, 8326, -3523]], "type": "Polygon", "properties": {"name": "41065"}, "id": "41065"}, {"arcs": [[-2657, 8327, 8328, -6954, -5685, 8329]], "type": "Polygon", "properties": {"name": "46105"}, "id": "46105"}, {"arcs": [[-1825, -6947, 8330, 8331, 8332]], "type": "Polygon", "properties": {"name": "19173"}, "id": "19173"}, {"arcs": [[-2537, -7435, -8104, -6413, -8206, -5804]], "type": "Polygon", "properties": {"name": "01129"}, "id": "01129"}, {"arcs": [[-788, 8333, 8334, -2078, 8335, -1788]], "type": "Polygon", "properties": {"name": "39039"}, "id": "39039"}, {"arcs": [[-230, -6803, -2266, -7756, 8336, -5986, 8337, -4970]], "type": "Polygon", "properties": {"name": "54025"}, "id": "54025"}, {"arcs": [[-548, -6256, 8338, -4183, -5511, -7347]], "type": "Polygon", "properties": {"name": "17121"}, "id": "17121"}, {"arcs": [[-1322, 8339, -7713, -2256]], "type": "Polygon", "properties": {"name": "51051"}, "id": "51051"}, {"arcs": [[-3543, 8340, -8246, 8341, 8342, -7109]], "type": "Polygon", "properties": {"name": "51007"}, "id": "51007"}, {"arcs": [[-597, -4475, -4292, 8343, -7024, -6735]], "type": "Polygon", "properties": {"name": "13243"}, "id": "13243"}, {"arcs": [[-4051, 8344, -5083, 8345, -5283]], "type": "Polygon", "properties": {"name": "35029"}, "id": "35029"}, {"arcs": [[[-3601, 8346, -4557, 8347]], [[-3606, 8348, 8349]], [[-4552, 8350, 8351, 8352]], [[8353, 8354]]], "type": "MultiPolygon", "properties": {"name": "48355"}, "id": "48355"}, {"arcs": [[-2622, -8234, -6517, 8355, -3887, -6575, -4761]], "type": "Polygon", "properties": {"name": "56045"}, "id": "56045"}, {"arcs": [[-2060, 8356, -5788, -6831, -2196, 8357]], "type": "Polygon", "properties": {"name": "72137"}, "id": "72137"}, {"arcs": [[-1940, 8358, -2362, -6881, 8359]], "type": "Polygon", "properties": {"name": "17187"}, "id": "17187"}, {"arcs": [[-3912, 8360, -4085, 8361, 8362, -5660]], "type": "Polygon", "properties": {"name": "01089"}, "id": "01089"}, {"arcs": [[-1406, 8363, -1728, -1533, -1494, -2202, 8364]], "type": "Polygon", "properties": {"name": "47189"}, "id": "47189"}, {"arcs": [[-4306, -5109, 8365, 8366, -7698]], "type": "Polygon", "properties": {"name": "48063"}, "id": "48063"}, {"arcs": [[-233, -3778, 8367, -3699, -6245, -7866]], "type": "Polygon", "properties": {"name": "40067"}, "id": "40067"}, {"arcs": [[-4946, -5978, -7891, -7885, 8368, 8369, -7887]], "type": "Polygon", "properties": {"name": "54085"}, "id": "54085"}, {"arcs": [[-2491, 8370, -6885, -8332, 8371]], "type": "Polygon", "properties": {"name": "19145"}, "id": "19145"}, {"arcs": [[-4684, 8372, -5667, -5154, 8373]], "type": "Polygon", "properties": {"name": "20087"}, "id": "20087"}, {"arcs": [[[-3740, -5134, -4852, -7431, -5135, 8374, 8375, -3942]], [[8376]]], "type": "MultiPolygon", "properties": {"name": "22045"}, "id": "22045"}, {"arcs": [[-2754, -6732, 8377, 8378]], "type": "Polygon", "properties": {"name": "02158"}, "id": "02158"}, {"arcs": [[-3575, 8379, -8165, -6910, 8380]], "type": "Polygon", "properties": {"name": "37133"}, "id": "37133"}, {"arcs": [[-1448, 8381, 8382, -2951, -1880, 8383]], "type": "Polygon", "properties": {"name": "27043"}, "id": "27043"}, {"arcs": [[-3219, -7809, -3915, -7865, -7836, -3727, 8384]], "type": "Polygon", "properties": {"name": "47057"}, "id": "47057"}, {"arcs": [[-2015, 8385, -7598, -6033, 8386]], "type": "Polygon", "properties": {"name": "48161"}, "id": "48161"}, {"arcs": [[-1992, -7621, -4155, 8387, 8388]], "type": "Polygon", "properties": {"name": "42087"}, "id": "42087"}, {"arcs": [[-1724, -4661, 8389, -5035, 8390, 8391]], "type": "Polygon", "properties": {"name": "01041"}, "id": "01041"}, {"arcs": [[-4751, -7261]], "type": "Polygon", "properties": {"name": "51520"}, "id": "51520"}, {"arcs": [[-932, 8392, -2746, -7993, 8393, -7995]], "type": "Polygon", "properties": {"name": "48399"}, "id": "48399"}, {"arcs": [[-6132, 8394, 8395, 8396, 8397]], "type": "Polygon", "properties": {"name": "48443"}, "id": "48443"}, {"arcs": [[-655, 8398, -3810, -4593, -2006, -3091, -6004]], "type": "Polygon", "properties": {"name": "20153"}, "id": "20153"}, {"arcs": [[-654, 8399, -6297, -7912, -3811, -8399]], "type": "Polygon", "properties": {"name": "20193"}, "id": "20193"}, {"arcs": [[-1576, -8103, 8400, -8005, 8401, -6653, 8402]], "type": "Polygon", "properties": {"name": "13161"}, "id": "13161"}, {"arcs": [[-5199, 8403, 8404, -8127, 8405]], "type": "Polygon", "properties": {"name": "19035"}, "id": "19035"}, {"arcs": [[-1091, -6889, -8312, 8406, -1094, -7036, -5029]], "type": "Polygon", "properties": {"name": "05145"}, "id": "05145"}, {"arcs": [[-2639, -6483, -8205, 8407, -4679, 8408]], "type": "Polygon", "properties": {"name": "28083"}, "id": "28083"}, {"arcs": [[-2681, 8409, 8410, 8411, -4898, -3519]], "type": "Polygon", "properties": {"name": "29053"}, "id": "29053"}, {"arcs": [[-315, 8412, -7374, -2594, -527]], "type": "Polygon", "properties": {"name": "26043"}, "id": "26043"}, {"arcs": [[-1898, -5434, -6715, -3268, 8413, -3325]], "type": "Polygon", "properties": {"name": "17197"}, "id": "17197"}, {"arcs": [[-3005, -3477, 8414, -4981, -6604, 8415]], "type": "Polygon", "properties": {"name": "48117"}, "id": "48117"}, {"arcs": [[-637, -5768, -3879, 8416, -1545, -6719]], "type": "Polygon", "properties": {"name": "46011"}, "id": "46011"}, {"arcs": [[-4076, 8417, -4653, -7815, -5917]], "type": "Polygon", "properties": {"name": "29047"}, "id": "29047"}, {"arcs": [[-2795, 8418, -4681, 8419, -3714, -6586]], "type": "Polygon", "properties": {"name": "28027"}, "id": "28027"}, {"arcs": [[-2035, 8420, 8421, -3185, -5509]], "type": "Polygon", "properties": {"name": "18011"}, "id": "18011"}, {"arcs": [[-1942, 8422, 8423, 8424, 8425]], "type": "Polygon", "properties": {"name": "19057"}, "id": "19057"}, {"arcs": [[-1001, -1863, -3104, 8426]], "type": "Polygon", "properties": {"name": "19163"}, "id": "19163"}, {"arcs": [[-4780, -7479, 8427, 8428, -7560, -5539]], "type": "Polygon", "properties": {"name": "20143"}, "id": "20143"}, {"arcs": [[-1981, 8429, -7780, -7554, -8265, 8430, 8431, 8432]], "type": "Polygon", "properties": {"name": "12023"}, "id": "12023"}, {"arcs": [[-439, -7767, 8433, 8434]], "type": "Polygon", "properties": {"name": "12059"}, "id": "12059"}, {"arcs": [[-5364, 8435, 8436, -7797]], "type": "Polygon", "properties": {"name": "28047"}, "id": "28047"}, {"arcs": [[-2305, -2583, -5656, -4742, -4689, -7796, 8437]], "type": "Polygon", "properties": {"name": "72141"}, "id": "72141"}, {"arcs": [[-175, 8438, -5702, 8439, 8440, 8441]], "type": "Polygon", "properties": {"name": "47011"}, "id": "47011"}, {"arcs": [[-1602, -8030, 8442, 8443]], "type": "Polygon", "properties": {"name": "27017"}, "id": "27017"}, {"arcs": [[-2663, 8444, 8445, -6902, -7745]], "type": "Polygon", "properties": {"name": "48315"}, "id": "48315"}, {"arcs": [[-2929, -7401, 8446, -3168, -3856, 8447]], "type": "Polygon", "properties": {"name": "36095"}, "id": "36095"}, {"arcs": [[-5721, 8448, -6292, -7704, 8449]], "type": "Polygon", "properties": {"name": "40117"}, "id": "40117"}, {"arcs": [[-937, 8450, -8140, -6121, 8451, 8452]], "type": "Polygon", "properties": {"name": "36007"}, "id": "36007"}, {"arcs": [[-1120, 8453, -6083, 8454, -3795, -8040, 8455]], "type": "Polygon", "properties": {"name": "48291"}, "id": "48291"}, {"arcs": [[-690, 8456, -4943, 8457, -1696, -4657, -7348]], "type": "Polygon", "properties": {"name": "39009"}, "id": "39009"}, {"arcs": [[-4144, 8458, 8459, 8460, -4205, 8461, 8462]], "type": "Polygon", "properties": {"name": "39081"}, "id": "39081"}, {"arcs": [[-226, -4975, 8463, -5602, -5653, -7505, 8464]], "type": "Polygon", "properties": {"name": "54083"}, "id": "54083"}, {"arcs": [[-972, -3429, 8465, -5396]], "type": "Polygon", "properties": {"name": "54049"}, "id": "54049"}, {"arcs": [[-4209, 8466, 8467, -8314, 8468]], "type": "Polygon", "properties": {"name": "34011"}, "id": "34011"}, {"arcs": [[-52, -8174, -2910, -6592]], "type": "Polygon", "properties": {"name": "06057"}, "id": "06057"}, {"arcs": [[-4349, -8159, 8469, -8443, -8029, 8470, -4949]], "type": "Polygon", "properties": {"name": "55031"}, "id": "55031"}, {"arcs": [[-401, 8471, 8472, -8287, 8473, 8474, 8475]], "type": "Polygon", "properties": {"name": "21199"}, "id": "21199"}, {"arcs": [[-4386, 8476, -8094, -6850, 8477]], "type": "Polygon", "properties": {"name": "37065"}, "id": "37065"}, {"arcs": [[-343, 8478, -5724, -1643, -8181, -3068, 8479]], "type": "Polygon", "properties": {"name": "48241"}, "id": "48241"}, {"arcs": [[-4239, -6408, -7328, -6459, 8480, 8481]], "type": "Polygon", "properties": {"name": "49001"}, "id": "49001"}, {"arcs": [[-2158, 8482, -8441, 8483, 8484, 8485]], "type": "Polygon", "properties": {"name": "13213"}, "id": "13213"}, {"arcs": [[-1792, 8486, 8487, -5336, -5644, -7787, 8488]], "type": "Polygon", "properties": {"name": "18075"}, "id": "18075"}, {"arcs": [[-1251, -7711, 8489, -6956, -8056, -8091]], "type": "Polygon", "properties": {"name": "26117"}, "id": "26117"}, {"arcs": [[-946, -5172, 8490, -4994, 8491, -3166]], "type": "Polygon", "properties": {"name": "36083"}, "id": "36083"}, {"arcs": [[-1111, -1572, -2003, -6355, 8492, -7216]], "type": "Polygon", "properties": {"name": "12021"}, "id": "12021"}, {"arcs": [[-4390, -4515, 8493, -7633]], "type": "Polygon", "properties": {"name": "35031"}, "id": "35031"}, {"arcs": [[-7803, 8494, -8003, 8495, -8276]], "type": "Polygon", "properties": {"name": "13017"}, "id": "13017"}, {"arcs": [[-2797, -6585, -5900, -7550, 8496]], "type": "Polygon", "properties": {"name": "05077"}, "id": "05077"}, {"arcs": [[-841, 8497, -5745, 8498, -5542, 8499, -8431, -8264, -8008]], "type": "Polygon", "properties": {"name": "12003"}, "id": "12003"}, {"arcs": [[-3612, -5743, -8266, -7552, -8267]], "type": "Polygon", "properties": {"name": "13173"}, "id": "13173"}, {"arcs": [[-2178, 8500, 8501, -5116, 8502]], "type": "Polygon", "properties": {"name": "20159"}, "id": "20159"}, {"arcs": [[-1174, -7583, -5184, -6310, 8503]], "type": "Polygon", "properties": {"name": "01015"}, "id": "01015"}, {"arcs": [[-2540, 8504, -8436, -5363, -5551]], "type": "Polygon", "properties": {"name": "28059"}, "id": "28059"}, {"arcs": [[-3675, 8505, 8506, 8507]], "type": "Polygon", "properties": {"name": "21037"}, "id": "21037"}, {"arcs": [[-59, -1911, -5762, 8508, -1343, 8509]], "type": "Polygon", "properties": {"name": "21057"}, "id": "21057"}, {"arcs": [[-2482, -5262, -4676, 8510, -2793, -6942]], "type": "Polygon", "properties": {"name": "28107"}, "id": "28107"}, {"arcs": [[-2768, 8511, 8512, 8513, 8514]], "type": "Polygon", "properties": {"name": "48195"}, "id": "48195"}, {"arcs": [[-1119, 8515, -6067, 8516, -6084, -8454]], "type": "Polygon", "properties": {"name": "48071"}, "id": "48071"}, {"arcs": [[-4291, -7655, -7025, -8344]], "type": "Polygon", "properties": {"name": "13239"}, "id": "13239"}, {"arcs": [[-342, -1121, -8456, -8039, -5725, -8479]], "type": "Polygon", "properties": {"name": "48199"}, "id": "48199"}, {"arcs": [[-2872, -4992, -4772, -6348, -5408, -8183]], "type": "Polygon", "properties": {"name": "09005"}, "id": "09005"}, {"arcs": [[-4104, -7957, 8517, 8518, 8519]], "type": "Polygon", "properties": {"name": "39143"}, "id": "39143"}, {"arcs": [[-7087, 8520, 8521]], "type": "Polygon", "properties": {"name": "23021"}, "id": "23021"}, {"arcs": [[-5427, -7300, -6963, -7829, -8177, 8522]], "type": "Polygon", "properties": {"name": "17153"}, "id": "17153"}, {"arcs": [[-2041, -5723, -4327, 8523, -2250, -4706, -5730]], "type": "Polygon", "properties": {"name": "40107"}, "id": "40107"}, {"arcs": [[-5533, -6959, 8524, 8525, -5925, -7426]], "type": "Polygon", "properties": {"name": "26145"}, "id": "26145"}, {"arcs": [[-3709, -5833, 8526, -5793, -4392, -7632, -6838, 8527]], "type": "Polygon", "properties": {"name": "35039"}, "id": "35039"}, {"arcs": [[-2080, -2172, 8528, -5628, 8529, -4449]], "type": "Polygon", "properties": {"name": "50005"}, "id": "50005"}, {"arcs": [[-2263, 8530, -5830, -7316, -2739]], "type": "Polygon", "properties": {"name": "51023"}, "id": "51023"}, {"arcs": [[-906, -5512, -4175, 8531, -7962, -6626, -1213, 8532, -2467]], "type": "Polygon", "properties": {"name": "17119"}, "id": "17119"}, {"arcs": [[-414, -7693, -1586, 8533, 8534, -1365]], "type": "Polygon", "properties": {"name": "48085"}, "id": "48085"}, {"arcs": [[-3337, 8535, -7650, -5237, -4756]], "type": "Polygon", "properties": {"name": "45001"}, "id": "45001"}, {"arcs": [[-4, -7631, 8536, -5307, -7860, 8537, 8538]], "type": "Polygon", "properties": {"name": "31053"}, "id": "31053"}, {"arcs": [[-3437, 8539, 8540, -3633]], "type": "Polygon", "properties": {"name": "12115"}, "id": "12115"}, {"arcs": [[-2345, 8541, -6925, -4038]], "type": "Polygon", "properties": {"name": "55077"}, "id": "55077"}, {"arcs": [[-866, 8542, -6675, -5650, -6048, 8543, 8544, -5288]], "type": "Polygon", "properties": {"name": "04015"}, "id": "04015"}, {"arcs": [[-4256, 8545, -8544, -6047, -7383]], "type": "Polygon", "properties": {"name": "04025"}, "id": "04025"}, {"arcs": [[-7844, 8546, 8547, 8548, 8549, 8550]], "type": "Polygon", "properties": {"name": "45051"}, "id": "45051"}, {"arcs": [[-3127, 8551, -6197, -4807, 8552, 8553]], "type": "Polygon", "properties": {"name": "42091"}, "id": "42091"}, {"arcs": [[-3014, -3764, -7533]], "type": "Polygon", "properties": {"name": "16061"}, "id": "16061"}, {"arcs": [[-2306, -8438, -7795, 8554, 8555, 8556]], "type": "Polygon", "properties": {"name": "72013"}, "id": "72013"}, {"arcs": [[8557]], "type": "Polygon", "properties": {"name": "51720"}, "id": "51720"}, {"arcs": [[-648, 8558, 8559, -2532, -7295, 8560, 8561]], "type": "Polygon", "properties": {"name": "34027"}, "id": "34027"}, {"arcs": [[-3315, 8562, 8563, -7950, 8564]], "type": "Polygon", "properties": {"name": "29211"}, "id": "29211"}, {"arcs": [[-1382, -3183, -5916, 8565, 8566, -1417, -6299, -1613]], "type": "Polygon", "properties": {"name": "20135"}, "id": "20135"}, {"arcs": [[-2337, -6086, -6066, 8567, -6069, 8568, 8569, -3974]], "type": "Polygon", "properties": {"name": "48039"}, "id": "48039"}, {"arcs": [[-7323]], "type": "Polygon", "properties": {"name": "51790"}, "id": "51790"}, {"arcs": [[-2009, 8570, -6470, 8571, -6465]], "type": "Polygon", "properties": {"name": "31029"}, "id": "31029"}, {"arcs": [[-588, -6079, -5332, -4699, -4506, -5780, 8572]], "type": "Polygon", "properties": {"name": "39113"}, "id": "39113"}, {"arcs": [[-3791, -7876, -8180, -8117, 8573]], "type": "Polygon", "properties": {"name": "48447"}, "id": "48447"}, {"arcs": [[-1115, 8574, 8575, -5320, 8576, -7648, 8577]], "type": "Polygon", "properties": {"name": "13221"}, "id": "13221"}, {"arcs": [[-2716, -7035, -4589, -5752, 8578]], "type": "Polygon", "properties": {"name": "05029"}, "id": "05029"}, {"arcs": [[-2492, -8372, -8331, -6946, -7917, -4372, -6660]], "type": "Polygon", "properties": {"name": "29147"}, "id": "29147"}, {"arcs": [[-1764, -2404, -4544, -2408, -6434, -7447]], "type": "Polygon", "properties": {"name": "38073"}, "id": "38073"}, {"arcs": [[-5926, -8526, 8579, 8580, 8581, 8582]], "type": "Polygon", "properties": {"name": "26017"}, "id": "26017"}, {"arcs": [[-5949, 8583, 8584, 8585, 8586, 8587, 8588]], "type": "Polygon", "properties": {"name": "47157"}, "id": "47157"}, {"arcs": [[-6594, 8589, -7298, 8590, -7966, 8591]], "type": "Polygon", "properties": {"name": "06007"}, "id": "06007"}, {"arcs": [[-1603, -8444, -8470, -8158, -4128, -6056]], "type": "Polygon", "properties": {"name": "27115"}, "id": "27115"}, {"arcs": [[-2613, -4777, 8592, -7160, -8143]], "type": "Polygon", "properties": {"name": "48021"}, "id": "48021"}, {"arcs": [[-1256, -7411, 8593, -8325, -6789, 8594, -6024, -7943]], "type": "Polygon", "properties": {"name": "53039"}, "id": "53039"}, {"arcs": [[8595]], "type": "Polygon", "properties": {"name": "53055"}, "id": "53055"}, {"arcs": [[-4979, 8596, -8051, -6844, -7873, -6148, 8597]], "type": "Polygon", "properties": {"name": "55009"}, "id": "55009"}, {"arcs": [[-369, -8262, -6450, 8598, 8599]], "type": "Polygon", "properties": {"name": "20205"}, "id": "20205"}, {"arcs": [[-2488, -6897, -7084, -7973, -7642, -7807, 8600, -7008]], "type": "Polygon", "properties": {"name": "22069"}, "id": "22069"}, {"arcs": [[-7429, 8601, 8602, 8603]], "type": "Polygon", "properties": {"name": "22109"}, "id": "22109"}, {"arcs": [[-3609, -3873, -8277, -8496, -8002]], "type": "Polygon", "properties": {"name": "13155"}, "id": "13155"}, {"arcs": [[-1377, 8604, -2747]], "type": "Polygon", "properties": {"name": "02185"}, "id": "02185"}, {"arcs": [[-4260, -8001, 8605, -8582, 8606]], "type": "Polygon", "properties": {"name": "26011"}, "id": "26011"}, {"arcs": [[-508, -6931, -6215, 8607, -8424, 8608]], "type": "Polygon", "properties": {"name": "19111"}, "id": "19111"}, {"arcs": [[-1379, 8609, -7563, -5537, -5541, -7559, -5017]], "type": "Polygon", "properties": {"name": "20141"}, "id": "20141"}, {"arcs": [[8610, 8611, 8612]], "type": "Polygon", "properties": {"name": "26047"}, "id": "26047"}, {"arcs": [[-2490, -2940, -3877, -5204, -8371]], "type": "Polygon", "properties": {"name": "19071"}, "id": "19071"}, {"arcs": [[-1358, -7250, -6341, 8613, 8614]], "type": "Polygon", "properties": {"name": "23015"}, "id": "23015"}, {"arcs": [[-1929, -8130, -6098, 8615, -3785, -3139]], "type": "Polygon", "properties": {"name": "36099"}, "id": "36099"}, {"arcs": [[-4399, -8053, -7154, 8616, -8475, 8617, -8078]], "type": "Polygon", "properties": {"name": "21125"}, "id": "21125"}, {"arcs": [[-174, -7982, -6206, -5703, -8439]], "type": "Polygon", "properties": {"name": "47121"}, "id": "47121"}, {"arcs": [[-1738, -3458, -2299, -2892, -4440, 8618, -7414]], "type": "Polygon", "properties": {"name": "29213"}, "id": "29213"}, {"arcs": [[[-728, -737, -6137]], [[-734, -8182, -5450, -5814, -2418, -2861, -735]]], "type": "MultiPolygon", "properties": {"name": "13269"}, "id": "13269"}, {"arcs": [[-241, 8619]], "type": "Polygon", "properties": {"name": "51830"}, "id": "51830"}, {"arcs": [[-4734, 8620, -7971, -7697, 8621]], "type": "Polygon", "properties": {"name": "48415"}, "id": "48415"}, {"arcs": [[-2696, 8622, 8623, -3210]], "type": "Polygon", "properties": {"name": "08047"}, "id": "08047"}, {"arcs": [[-476, -7468, -5731, -5718, -7627, 8624]], "type": "Polygon", "properties": {"name": "40087"}, "id": "40087"}, {"arcs": [[-227, -8465, -7504, -4740, 8625, -7318, 8626]], "type": "Polygon", "properties": {"name": "54071"}, "id": "54071"}, {"arcs": [[-2121, -4310, -4035, 8627, -7508, 8628]], "type": "Polygon", "properties": {"name": "51139"}, "id": "51139"}, {"arcs": [[-271, 8629, -4190, -727, -3869, -7462, 8630, 8631]], "type": "Polygon", "properties": {"name": "40079"}, "id": "40079"}, {"arcs": [[-5982, -6201, 8632, -5987, -8337, -7755]], "type": "Polygon", "properties": {"name": "54089"}, "id": "54089"}, {"arcs": [[-1278, -7393, -3034, -8300, 8633, 8634, -7924]], "type": "Polygon", "properties": {"name": "37119"}, "id": "37119"}, {"arcs": [[-2527, -8560, 8635, 8636, -6173]], "type": "Polygon", "properties": {"name": "34013"}, "id": "34013"}, {"arcs": [[-556, -3316, -8565, -7949, 8637, -4997]], "type": "Polygon", "properties": {"name": "29115"}, "id": "29115"}, {"arcs": [[-1577, -8403, -6652, -4468]], "type": "Polygon", "properties": {"name": "13209"}, "id": "13209"}, {"arcs": [[-7410, -8326, -8594]], "type": "Polygon", "properties": {"name": "41055"}, "id": "41055"}, {"arcs": [[-1114, -3852, 8638, -6577, 8639, -8575]], "type": "Polygon", "properties": {"name": "13133"}, "id": "13133"}, {"arcs": [[-2215, -2959, -6385, 8640, 8641]], "type": "Polygon", "properties": {"name": "46017"}, "id": "46017"}, {"arcs": [[-6380, 8642, -7746, -6400, -6551]], "type": "Polygon", "properties": {"name": "46095"}, "id": "46095"}, {"arcs": [[-2773, 8643, -6395, -4696, -5559, -3258]], "type": "Polygon", "properties": {"name": "48135"}, "id": "48135"}, {"arcs": [[-1704, 8644, -7599, -8386, -2014, 8645, -5748]], "type": "Polygon", "properties": {"name": "48293"}, "id": "48293"}, {"arcs": [[-987, -8164, 8646, -4354, 8647, 8648]], "type": "Polygon", "properties": {"name": "53027"}, "id": "53027"}, {"arcs": [[-6190, 8649, 8650, 8651]], "type": "Polygon", "properties": {"name": "54003"}, "id": "54003"}, {"arcs": [[-4486, 8652, -6752]], "type": "Polygon", "properties": {"name": "72149"}, "id": "72149"}, {"arcs": [[-1127, -1364, 8653, -8097, 8654, -4007]], "type": "Polygon", "properties": {"name": "30067"}, "id": "30067"}, {"arcs": [[-1366, -8535, 8655, -6229, -6725, -7127]], "type": "Polygon", "properties": {"name": "48121"}, "id": "48121"}, {"arcs": [[-5056, 8656, 8657, -7180, -6529]], "type": "Polygon", "properties": {"name": "45021"}, "id": "45021"}, {"arcs": [[-1686, -7178, -8320, 8658, 8659]], "type": "Polygon", "properties": {"name": "37199"}, "id": "37199"}, {"arcs": [[-1529, -1996, 8660, -3866, -4625, 8661, -5107, -4304]], "type": "Polygon", "properties": {"name": "48387"}, "id": "48387"}, {"arcs": [[-217, -6242, -3975, -8570, 8662]], "type": "Polygon", "properties": {"name": "48321"}, "id": "48321"}, {"arcs": [[-2117, 8663, 8664, -7615, -8203]], "type": "Polygon", "properties": {"name": "27149"}, "id": "27149"}, {"arcs": [[-90, -6144, 8665, -3847, -1112, 8666]], "type": "Polygon", "properties": {"name": "13301"}, "id": "13301"}, {"arcs": [[-5194, -8108, -7721, -5311, -6765, 8667]], "type": "Polygon", "properties": {"name": "48197"}, "id": "48197"}, {"arcs": [[-4179, -7247, -6873, 8668, -7960]], "type": "Polygon", "properties": {"name": "17133"}, "id": "17133"}, {"arcs": [[-2058, -6647, -7168, -5419]], "type": "Polygon", "properties": {"name": "13165"}, "id": "13165"}, {"arcs": [[-900, -6570, -7235, 8669, 8670, -8280]], "type": "Polygon", "properties": {"name": "21085"}, "id": "21085"}, {"arcs": [[-1623, 8671, -8115, -3744, -2399, -8170, -3407]], "type": "Polygon", "properties": {"name": "48363"}, "id": "48363"}, {"arcs": [[-1303, -5355, -7053, 8672]], "type": "Polygon", "properties": {"name": "13149"}, "id": "13149"}, {"arcs": [[-1391, -7342, -4087, 8673, -6540, -5143, 8674]], "type": "Polygon", "properties": {"name": "01079"}, "id": "01079"}, {"arcs": [[-2066, 8675, -5790, 8676]], "type": "Polygon", "properties": {"name": "72061"}, "id": "72061"}, {"arcs": [[-668, -2484, -6944, 8677, -8586, 8678, -1811]], "type": "Polygon", "properties": {"name": "28093"}, "id": "28093"}, {"arcs": [[-1426, 8679, 8680, -6426, 8681, -5754]], "type": "Polygon", "properties": {"name": "20025"}, "id": "20025"}, {"arcs": [[-5584, 8682, 8683, 8684, 8685, 8686]], "type": "Polygon", "properties": {"name": "20081"}, "id": "20081"}, {"arcs": [[-2328, -7009, -8601, -7806, 8687, -6504, -5257, -2652]], "type": "Polygon", "properties": {"name": "22013"}, "id": "22013"}, {"arcs": [[-178, -6331, 8688, -2156, -484, 8689, -276, 8690]], "type": "Polygon", "properties": {"name": "13295"}, "id": "13295"}, {"arcs": [[-3835, -4120, -6446, 8691, -7041]], "type": "Polygon", "properties": {"name": "19095"}, "id": "19095"}, {"arcs": [[-254, -6422, -3665, -6949, 8692, 8693, -2519, -3086]], "type": "Polygon", "properties": {"name": "31019"}, "id": "31019"}, {"arcs": [[-1425, -7284, -6661, -2770, 8694, 8695, 8696, -8680]], "type": "Polygon", "properties": {"name": "40007"}, "id": "40007"}, {"arcs": [[-3059, -7290, 8697, -7826, 8698]], "type": "Polygon", "properties": {"name": "19023"}, "id": "19023"}, {"arcs": [[-6431, -7484, 8699, 8700, 8701, 8702]], "type": "Polygon", "properties": {"name": "30085"}, "id": "30085"}, {"arcs": [[-7223, 8703, -8556, 8704]], "type": "Polygon", "properties": {"name": "72017"}, "id": "72017"}, {"arcs": [[-9, -992, 8705, 8706, -6664]], "type": "Polygon", "properties": {"name": "53015"}, "id": "53015"}, {"arcs": [[-2101, 8707, -4226, 8708, 8709, 8710, -4277]], "type": "Polygon", "properties": {"name": "48297"}, "id": "48297"}, {"arcs": [[-2680, -4148, -4057, 8711, -8410]], "type": "Polygon", "properties": {"name": "29135"}, "id": "29135"}, {"arcs": [[-2231, 8712, 8713, 8714, -2331, 8715]], "type": "Polygon", "properties": {"name": "51193"}, "id": "51193"}, {"arcs": [[-4063, 8716, -5213, 8717, -7391]], "type": "Polygon", "properties": {"name": "37197"}, "id": "37197"}, {"arcs": [[-3518, -7914, -7644, -6633, -7939, 8718]], "type": "Polygon", "properties": {"name": "06047"}, "id": "06047"}, {"arcs": [[-5635, -7268, 8719, -7282, 8720, -6777]], "type": "Polygon", "properties": {"name": "40043"}, "id": "40043"}, {"arcs": [[-1275, -5058, -6535, 8721, -4938, -1328, -7719]], "type": "Polygon", "properties": {"name": "37023"}, "id": "37023"}, {"arcs": [[-4568, -7933, -6853, -7983, -5854, -6908]], "type": "Polygon", "properties": {"name": "37191"}, "id": "37191"}, {"arcs": [[-294, 8722, 8723, -7307, 8724, -7897, -7623]], "type": "Polygon", "properties": {"name": "42123"}, "id": "42123"}, {"arcs": [[-724, 8725, 8726, -7212, -3108]], "type": "Polygon", "properties": {"name": "05061"}, "id": "05061"}, {"arcs": [[-541, -2593, -7392, -8718, -5212]], "type": "Polygon", "properties": {"name": "37059"}, "id": "37059"}, {"arcs": [[-4939, -8722, -6534, 8727, -8659, -8319]], "type": "Polygon", "properties": {"name": "37111"}, "id": "37111"}, {"arcs": [[-1151, -5331, -5091, 8728, 8729, 8730]], "type": "Polygon", "properties": {"name": "05099"}, "id": "05099"}, {"arcs": [[-2008, -4595, 8731, 8732, 8733, -6471, -8571]], "type": "Polygon", "properties": {"name": "08125"}, "id": "08125"}, {"arcs": [[-7659, 8734, 8735, -8514, 8736]], "type": "Polygon", "properties": {"name": "48421"}, "id": "48421"}, {"arcs": [[-1179, -5482, -1556, -2445, -4431, -5205]], "type": "Polygon", "properties": {"name": "48463"}, "id": "48463"}, {"arcs": [[-82, 8737, -2842, 8738, 8739, -3488]], "type": "Polygon", "properties": {"name": "39011"}, "id": "39011"}, {"arcs": [[-1283, 8740, -6505, -8688, -7805, -7742]], "type": "Polygon", "properties": {"name": "22015"}, "id": "22015"}, {"arcs": [[-1446, -1822, -4794, -1867, 8741]], "type": "Polygon", "properties": {"name": "19063"}, "id": "19063"}, {"arcs": [[-2174, 8742, -7561, -8429, 8743]], "type": "Polygon", "properties": {"name": "20169"}, "id": "20169"}, {"arcs": [[-1854, -7720, -2607, -1952, 8744, -6648]], "type": "Polygon", "properties": {"name": "21153"}, "id": "21153"}, {"arcs": [[-4984, 8745, -7201, -7255, -6601]], "type": "Polygon", "properties": {"name": "48017"}, "id": "48017"}, {"arcs": [[-2678, -8152, -4379, -6258, -4146]], "type": "Polygon", "properties": {"name": "29027"}, "id": "29027"}, {"arcs": [[-3890, -7923, -7609, -7734, 8746, -5240]], "type": "Polygon", "properties": {"name": "56001"}, "id": "56001"}, {"arcs": [[-604, 8747, -4008, -8655, -8096, -2783, -3130, -2903]], "type": "Polygon", "properties": {"name": "56029"}, "id": "56029"}, {"arcs": [[-4502, -5616, 8748]], "type": "Polygon", "properties": {"name": "42093"}, "id": "42093"}, {"arcs": [[-4927, 8749, 8750, 8751, 8752, 8753]], "type": "Polygon", "properties": {"name": "36081"}, "id": "36081"}, {"arcs": [[-1980, -7718, 8754, -7781, -8430]], "type": "Polygon", "properties": {"name": "12121"}, "id": "12121"}, {"arcs": [[-4168, -7670, 8755, -8611, 8756, -7466]], "type": "Polygon", "properties": {"name": "26031"}, "id": "26031"}, {"arcs": [[-458, -3622, -4261, -8607, -8581, 8757]], "type": "Polygon", "properties": {"name": "26051"}, "id": "26051"}, {"arcs": [[-1402, 8758, 8759, -5675, 8760]], "type": "Polygon", "properties": {"name": "21173"}, "id": "21173"}, {"arcs": [[-819, 8761, -8634, -8299, 8762, -6267, 8763]], "type": "Polygon", "properties": {"name": "45057"}, "id": "45057"}, {"arcs": [[-2568, -8282, 8764, 8765, 8766, -5968]], "type": "Polygon", "properties": {"name": "21123"}, "id": "21123"}, {"arcs": [[-566, 8767, -8128, -8405, 8768, 8769, -5624]], "type": "Polygon", "properties": {"name": "19193"}, "id": "19193"}, {"arcs": [[-5922, 8770, -7570, 8771, -7716]], "type": "Polygon", "properties": {"name": "12123"}, "id": "12123"}, {"arcs": [[-3399, 8772, -5428, -8523, -8176, 8773]], "type": "Polygon", "properties": {"name": "17003"}, "id": "17003"}, {"arcs": [[-3781, -4937, -7961, -8669, -6872, 8774]], "type": "Polygon", "properties": {"name": "29099"}, "id": "29099"}, {"arcs": [[-3390, -8308, -6629, -7739, -4375]], "type": "Polygon", "properties": {"name": "29113"}, "id": "29113"}, {"arcs": [[-8242, 8775, 8776, 8777]], "type": "Polygon", "properties": {"name": "13051"}, "id": "13051"}, {"arcs": [[-5546, 8778, -8432, -8500]], "type": "Polygon", "properties": {"name": "12125"}, "id": "12125"}, {"arcs": [[-6613, 8779, -7636, -8253, 8780, 8781]], "type": "Polygon", "properties": {"name": "36037"}, "id": "36037"}, {"arcs": [[-1821, -5200, 8782, -4795]], "type": "Polygon", "properties": {"name": "19041"}, "id": "19041"}, {"arcs": [[-3252, -7437, 8783, -7682, 8784, -5121, -3732, -6953]], "type": "Polygon", "properties": {"name": "30025"}, "id": "30025"}, {"arcs": [[-3244, -5345, -3770, 8785, 8786, 8787]], "type": "Polygon", "properties": {"name": "46107"}, "id": "46107"}, {"arcs": [[-186, -5999, -8296, -7727, -6890]], "type": "Polygon", "properties": {"name": "48109"}, "id": "48109"}, {"arcs": [[-859, -1360, 8788, -7016, -7811]], "type": "Polygon", "properties": {"name": "23005"}, "id": "23005"}, {"arcs": [[-2100, -6441, -5480, -3208, 8789, -4227, -8708]], "type": "Polygon", "properties": {"name": "48013"}, "id": "48013"}, {"arcs": [[-1398, 8790, 8791, -6052, 8792, -7904]], "type": "Polygon", "properties": {"name": "20095"}, "id": "20095"}, {"arcs": [[-3414, -7817, 8793, -7753, -8081]], "type": "Polygon", "properties": {"name": "13241"}, "id": "13241"}, {"arcs": [[-4974, 8794, -5399, -5603, -8464]], "type": "Polygon", "properties": {"name": "54097"}, "id": "54097"}, {"arcs": [[-2889, -8137, -4887, -7907, -7148, 8795, 8796, 8797]], "type": "Polygon", "properties": {"name": "29215"}, "id": "29215"}, {"arcs": [[-1098, -3147, 8798, 8799, -4591, -7034]], "type": "Polygon", "properties": {"name": "05119"}, "id": "05119"}, {"arcs": [[-1054, -4110, -1469, 8800, 8801, -7672]], "type": "Polygon", "properties": {"name": "19047"}, "id": "19047"}, {"arcs": [[-1296, -7528, -3119, -6367, 8802]], "type": "Polygon", "properties": {"name": "16005"}, "id": "16005"}, {"arcs": [[-160, -6061, -2993, -692, 8803]], "type": "Polygon", "properties": {"name": "39055"}, "id": "39055"}, {"arcs": [[-2855, -5448, -7575, 8804, -6827, -7165, -7846]], "type": "Polygon", "properties": {"name": "72035"}, "id": "72035"}, {"arcs": [[-2844, -7646, -4785, -7126]], "type": "Polygon", "properties": {"name": "06107"}, "id": "06107"}, {"arcs": [[-7163, 8805, -7847]], "type": "Polygon", "properties": {"name": "72015"}, "id": "72015"}, {"arcs": [[-1553, -2688, -5263, -2290, 8806, -6368]], "type": "Polygon", "properties": {"name": "72125"}, "id": "72125"}, {"arcs": [[-3786, -8616, -6097, -8255, 8807]], "type": "Polygon", "properties": {"name": "36117"}, "id": "36117"}, {"arcs": [[-2128, -5831, -8531, -2262, -6802, -7322, 8808], [-5620], [-7730]], "type": "Polygon", "properties": {"name": "51163"}, "id": "51163"}, {"arcs": [[-1607, -3387, 8809, 8810, 8811, -6288]], "type": "Polygon", "properties": {"name": "38095"}, "id": "38095"}, {"arcs": [[-3093, -6198, -8552, -3126, -8316]], "type": "Polygon", "properties": {"name": "42045"}, "id": "42045"}, {"arcs": [[-6612, 8812, -7637, -8780]], "type": "Polygon", "properties": {"name": "36063"}, "id": "36063"}, {"arcs": [[-4526, 8813, 8814, 8815, -4995, -8491, -5171]], "type": "Polygon", "properties": {"name": "50003"}, "id": "50003"}, {"arcs": [[-3306, -7518, -5543, -8499, -5744]], "type": "Polygon", "properties": {"name": "12019"}, "id": "12019"}, {"arcs": [[-141, -1467, -5402, -1038, -7931, -7473]], "type": "Polygon", "properties": {"name": "37183"}, "id": "37183"}, {"arcs": [[-590, 8816, 8817, -8506, -3674, -6933, 8818]], "type": "Polygon", "properties": {"name": "39061"}, "id": "39061"}, {"arcs": [[-5387, 8819, 8820, -6174, -8637, 8821, 8822]], "type": "Polygon", "properties": {"name": "34003"}, "id": "34003"}, {"arcs": [[-865, -3719, -4910, -4240, -8482, 8823, -6676, -8543]], "type": "Polygon", "properties": {"name": "32017"}, "id": "32017"}, {"arcs": [[[-1375, -2755, -8379, 8824]], [[8825]], [[8826]]], "type": "MultiPolygon", "properties": {"name": "02180"}, "id": "02180"}, {"arcs": [[-2515, 8827, -8700, -7483, 8828, 8829]], "type": "Polygon", "properties": {"name": "30055"}, "id": "30055"}, {"arcs": [[-3061, -3472, -7770, -4667, -4118]], "type": "Polygon", "properties": {"name": "19019"}, "id": "19019"}, {"arcs": [[-6261, -3326, -8414]], "type": "Polygon", "properties": {"name": "17043"}, "id": "17043"}, {"arcs": [[-4158, -6686, 8830, -6520, 8831]], "type": "Polygon", "properties": {"name": "46047"}, "id": "46047"}, {"arcs": [[-4216, -7076, 8832, 8833]], "type": "Polygon", "properties": {"name": "27069"}, "id": "27069"}, {"arcs": [[-2109, -2438, -5321, -8576, -8640, -6576]], "type": "Polygon", "properties": {"name": "13219"}, "id": "13219"}, {"arcs": [[-388, -4228, -8790, -3207, -6184]], "type": "Polygon", "properties": {"name": "48493"}, "id": "48493"}, {"arcs": [[-26, 8834, 8835, -1851, 8836]], "type": "Polygon", "properties": {"name": "31059"}, "id": "31059"}, {"arcs": [[-7569, 8837, -8268, -7782, -8755, -7717, -8772]], "type": "Polygon", "properties": {"name": "12079"}, "id": "12079"}, {"arcs": [[-2062, 8838, -7525, -2804, -7791, -2533]], "type": "Polygon", "properties": {"name": "72031"}, "id": "72031"}, {"arcs": [[-2133, -2966, -5858, 8839, -4877, -6417]], "type": "Polygon", "properties": {"name": "18153"}, "id": "18153"}, {"arcs": [[-2152, 8840, -7094, -5289, -8545, -8546, -4255]], "type": "Polygon", "properties": {"name": "04012"}, "id": "04012"}, {"arcs": [[-1415, -8269, -8838, -7568, 8841, -7238]], "type": "Polygon", "properties": {"name": "13027"}, "id": "13027"}, {"arcs": [[[8842]], [[8843]], [[8844]], [[8845]], [[8846]], [[8847]], [[8848]], [[8849]], [[8850]], [[8851]], [[8852]], [[8853]], [[8854]], [[8855]], [[8856]], [[8857]], [[8858]], [[8859]], [[8860]], [[8861]], [[8862]]], "type": "MultiPolygon", "properties": {"name": "02016"}, "id": "02016"}, {"arcs": [[[-5797, 8863, -7115]], [[8864]], [[8865]], [[8866]], [[8867]], [[8868]]], "type": "MultiPolygon", "properties": {"name": "02150"}, "id": "02150"}, {"arcs": [[-1396, 8869, -5913, -5117, -8502, 8870]], "type": "Polygon", "properties": {"name": "20185"}, "id": "20185"}, {"arcs": [[-6116, -6654, -8402, -8004, -8495, -7802]], "type": "Polygon", "properties": {"name": "13271"}, "id": "13271"}, {"arcs": [[-1589, 8871, -5945, 8872, -6126]], "type": "Polygon", "properties": {"name": "26115"}, "id": "26115"}, {"arcs": [[-321, -6608, -3116, -3122, -1985, -738]], "type": "Polygon", "properties": {"name": "18181"}, "id": "18181"}, {"arcs": [[-786, 8873, -8309, -5862, -6129, 8874]], "type": "Polygon", "properties": {"name": "18113"}, "id": "18113"}, {"arcs": [[-1487, -6437, -1820, -7991, -8263, -7830, -6961]], "type": "Polygon", "properties": {"name": "21139"}, "id": "21139"}, {"arcs": [[-4529, 8875, 8876, 8877]], "type": "Polygon", "properties": {"name": "13201"}, "id": "13201"}, {"arcs": [[-1904, -4574, 8878, -8362, -4084, -5942, 8879]], "type": "Polygon", "properties": {"name": "47103"}, "id": "47103"}, {"arcs": [[-8193, 8880, 8881, 8882, 8883, 8884]], "type": "Polygon", "properties": {"name": "21211"}, "id": "21211"}, {"arcs": [[-4098, 8885, -8836, 8886]], "type": "Polygon", "properties": {"name": "31185"}, "id": "31185"}, {"arcs": [[-4116, -5068, 8887, 8888, -6527]], "type": "Polygon", "properties": {"name": "42001"}, "id": "42001"}, {"arcs": [[-2054, -5424, 8889, -3598, -8235]], "type": "Polygon", "properties": {"name": "45005"}, "id": "45005"}, {"arcs": [[-1405, -7607, 8890, -8070, -1729, -8364]], "type": "Polygon", "properties": {"name": "47037"}, "id": "47037"}, {"arcs": [[-1520, -7920, -2565, -5002, -4645, 8891, 8892]], "type": "Polygon", "properties": {"name": "49047"}, "id": "49047"}, {"arcs": [[-1516, 8893, 8894, 8895, 8896, -6346, 8897]], "type": "Polygon", "properties": {"name": "49049"}, "id": "49049"}, {"arcs": [[-4870, -8840, -5857, 8898, 8899, -5379]], "type": "Polygon", "properties": {"name": "18021"}, "id": "18021"}, {"arcs": [[-8751, 8900, 8901]], "type": "Polygon", "properties": {"name": "36047"}, "id": "36047"}, {"arcs": [[-4056, 8902, 8903, 8904, -8411, -8712]], "type": "Polygon", "properties": {"name": "29141"}, "id": "29141"}, {"arcs": [[-3842, -6182, -6359, 8905, 8906, -5879]], "type": "Polygon", "properties": {"name": "39075"}, "id": "39075"}, {"arcs": [[-1594, -1869, -4796, 8907, 8908]], "type": "Polygon", "properties": {"name": "19143"}, "id": "19143"}, {"arcs": [[-2220, -2315, -5821, -2277, 8909, -2807]], "type": "Polygon", "properties": {"name": "18079"}, "id": "18079"}, {"arcs": [[-1692, -7303, -7187, 8910, -3373, 8911]], "type": "Polygon", "properties": {"name": "16083"}, "id": "16083"}, {"arcs": [[-1485, -5569, -2508, -4587, -3333, -6435]], "type": "Polygon", "properties": {"name": "17165"}, "id": "17165"}, {"arcs": [[-1932, 8912, -3455, -7582, -2501]], "type": "Polygon", "properties": {"name": "26077"}, "id": "26077"}, {"arcs": [[-4015, -6669, -7111, -6263]], "type": "Polygon", "properties": {"name": "45061"}, "id": "45061"}, {"arcs": [[-2781, 8913, -6572, -3885, -6979, -3131]], "type": "Polygon", "properties": {"name": "56019"}, "id": "56019"}, {"arcs": [[-2226, 8914, -6418, -4875, 8915]], "type": "Polygon", "properties": {"name": "18027"}, "id": "18027"}, {"arcs": [[-571, 8916, -3555, -5267, -7196, -6609]], "type": "Polygon", "properties": {"name": "26055"}, "id": "26055"}, {"arcs": [[-3235, 8917, -7080, -6895, -5271]], "type": "Polygon", "properties": {"name": "22003"}, "id": "22003"}, {"arcs": [[-3241, 8918, -6383, -8171]], "type": "Polygon", "properties": {"name": "46065"}, "id": "46065"}, {"arcs": [[-3240, -8788, 8919, 8920, -8641, -6384, -8919]], "type": "Polygon", "properties": {"name": "46069"}, "id": "46069"}, {"arcs": [[-2238, -2982, -7132, 8921, -7112, -6667]], "type": "Polygon", "properties": {"name": "45027"}, "id": "45027"}, {"arcs": [[-1363, -7929, 8922, -8098, -8654]], "type": "Polygon", "properties": {"name": "30095"}, "id": "30095"}, {"arcs": [[-172, -6041, -5728, -7668, -7981]], "type": "Polygon", "properties": {"name": "47007"}, "id": "47007"}, {"arcs": [[-1961, -6515, -8072, -6780, 8923]], "type": "Polygon", "properties": {"name": "21219"}, "id": "21219"}, {"arcs": [[-5374, 8924, -8061, -7758, -5696, -6905]], "type": "Polygon", "properties": {"name": "47183"}, "id": "47183"}, {"arcs": [[-1664, 8925, -7367, -5902, -3036, -2296]], "type": "Polygon", "properties": {"name": "29077"}, "id": "29077"}, {"arcs": [[-4806, -5048, -7173, 8926, 8927, -8553]], "type": "Polygon", "properties": {"name": "42077"}, "id": "42077"}, {"arcs": [[-24, -1852, -8886, 8928]], "type": "Polygon", "properties": {"name": "31159"}, "id": "31159"}, {"arcs": [[-284, -1931, -3143, -8142, -4136, -561]], "type": "Polygon", "properties": {"name": "36015"}, "id": "36015"}, {"arcs": [[-996, -7899, -6614, -8782, 8929]], "type": "Polygon", "properties": {"name": "36121"}, "id": "36121"}, {"arcs": [[-1883, -5080, -3515, -8719, -7938, -8186]], "type": "Polygon", "properties": {"name": "06099"}, "id": "06099"}, {"arcs": [[-6281, 8930, 8931, -8927, -7172]], "type": "Polygon", "properties": {"name": "42095"}, "id": "42095"}, {"arcs": [[-3911, -6541, -8674, -4086, -8361]], "type": "Polygon", "properties": {"name": "01103"}, "id": "01103"}, {"arcs": [[-659, 8932, 8933, -8670, -7234, -5591]], "type": "Polygon", "properties": {"name": "21027"}, "id": "21027"}, {"arcs": [[-2640, -8409, -4678, -5261, -7433, 8934, -3082]], "type": "Polygon", "properties": {"name": "28043"}, "id": "28043"}, {"arcs": [[-359, -1731, -8073, -6513, -7740]], "type": "Polygon", "properties": {"name": "21213"}, "id": "21213"}, {"arcs": [[-526, 8935, -4641, 8936]], "type": "Polygon", "properties": {"name": "50013"}, "id": "50013"}, {"arcs": [[-117, -4145, -8463, 8937, -6179, -6249, -4200]], "type": "Polygon", "properties": {"name": "39029"}, "id": "39029"}, {"arcs": [[-2123, -8809, -7321, -8066, -3026, 8938]], "type": "Polygon", "properties": {"name": "51125"}, "id": "51125"}, {"arcs": [[-1289, 8939, 8940, -3048, -8114]], "type": "Polygon", "properties": {"name": "12097"}, "id": "12097"}, {"arcs": [[-3146, 8941, 8942, -5061, 8943, -8799]], "type": "Polygon", "properties": {"name": "05053"}, "id": "05053"}, {"arcs": [[-3424, -5896, -4470, -6655, -6114, -5414]], "type": "Polygon", "properties": {"name": "13175"}, "id": "13175"}, {"arcs": [[-6175, -8821, 8944, -8752, -8902, 8945]], "type": "Polygon", "properties": {"name": "36061"}, "id": "36061"}, {"arcs": [[-154, -7039, -2376, -7209, -1742, 8946, -6026]], "type": "Polygon", "properties": {"name": "05007"}, "id": "05007"}, {"arcs": [[-481, 8947, -6690, -5269, 8948]], "type": "Polygon", "properties": {"name": "72071"}, "id": "72071"}, {"arcs": [[-465, -4325, -4924, -2193, -7789, 8949, -7516]], "type": "Polygon", "properties": {"name": "12083"}, "id": "12083"}, {"arcs": [[-4453, 8950, -8342, -8245, 8951]], "type": "Polygon", "properties": {"name": "51135"}, "id": "51135"}, {"arcs": [[-649, -8562, 8952, 8953, -8931, -6280]], "type": "Polygon", "properties": {"name": "34041"}, "id": "34041"}, {"arcs": [[-1203, -3857, -8492, -4993, -2870]], "type": "Polygon", "properties": {"name": "36021"}, "id": "36021"}, {"arcs": [[-1500]], "type": "Polygon", "properties": {"name": "51690"}, "id": "51690"}, {"arcs": [[-1995, 8954, -4313, -7459, -3867, -8661]], "type": "Polygon", "properties": {"name": "40023"}, "id": "40023"}, {"arcs": [[-3021, -8744, -8428, -7478, -4804, -7772]], "type": "Polygon", "properties": {"name": "20041"}, "id": "20041"}, {"arcs": [[-709, -7603, -1237, 8955, 8956]], "type": "Polygon", "properties": {"name": "48427"}, "id": "48427"}, {"arcs": [[-2056, -8237, 8957, -8776, -8241, -6643]], "type": "Polygon", "properties": {"name": "13103"}, "id": "13103"}, {"arcs": [[-3757, -7283, -8720, -7267, -7589, 8958]], "type": "Polygon", "properties": {"name": "40129"}, "id": "40129"}, {"arcs": [[-96, 8959, 8960, -5657, -3151]], "type": "Polygon", "properties": {"name": "55103"}, "id": "55103"}, {"arcs": [[-4606, -4698, -6398, 8961, -5996, 8962, -7256, -7199, 8963]], "type": "Polygon", "properties": {"name": "35025"}, "id": "35025"}, {"arcs": [[-2267, -6224, -4608, -2549, -7280]], "type": "Polygon", "properties": {"name": "01075"}, "id": "01075"}, {"arcs": [[-2307, -8557, -8704, -7222]], "type": "Polygon", "properties": {"name": "72054"}, "id": "72054"}, {"arcs": [[-1410, -1905, -8880, -5941, 8964, -7604]], "type": "Polygon", "properties": {"name": "47117"}, "id": "47117"}, {"arcs": [[-2124, -8939, -3031, 8965, -4825, 8966]], "type": "Polygon", "properties": {"name": "51011"}, "id": "51011"}, {"arcs": [[-1741, -6287, -2730, -6774, -6864, -6027, -8947]], "type": "Polygon", "properties": {"name": "05087"}, "id": "05087"}, {"arcs": [[-2780, -6679, 8967, -6573, -8914]], "type": "Polygon", "properties": {"name": "56033"}, "id": "56033"}, {"arcs": [[-634, -6528, -8889, 8968, -2654]], "type": "Polygon", "properties": {"name": "42041"}, "id": "42041"}, {"arcs": [[-2655, -8969, -8888, -5067, 8969, -3735, -4157, -7620]], "type": "Polygon", "properties": {"name": "42055"}, "id": "42055"}, {"arcs": [[-4499, -5516, -5848, -5712, -6283, -7171, -5046]], "type": "Polygon", "properties": {"name": "42079"}, "id": "42079"}, {"arcs": [[-3620, -5265, -7671, -4171]], "type": "Polygon", "properties": {"name": "26039"}, "id": "26039"}, {"arcs": [[-2390, -4675, -3514, -7027, -7654, -6073, -6250]], "type": "Polygon", "properties": {"name": "01113"}, "id": "01113"}, {"arcs": [[-4204, -6360, -6180, -8938, -8462]], "type": "Polygon", "properties": {"name": "39019"}, "id": "39019"}, {"arcs": [[-3028, -8069, 8970, -3806, -7108]], "type": "Polygon", "properties": {"name": "51065"}, "id": "51065"}, {"arcs": [[-3289, 8971, -3329, 8972]], "type": "Polygon", "properties": {"name": "17097"}, "id": "17097"}, {"arcs": [[-1105, -2326, -7649, -8577, -5319, 8973, -7351]], "type": "Polygon", "properties": {"name": "13195"}, "id": "13195"}, {"arcs": [[-1149, -5062, -8943, 8974, -6473, -5328]], "type": "Polygon", "properties": {"name": "05039"}, "id": "05039"}, {"arcs": [[-5241, -8747, -7733, 8975, -7291]], "type": "Polygon", "properties": {"name": "08057"}, "id": "08057"}, {"arcs": [[-715, -5165, 8976, -8732, -4594, -3808, -1223]], "type": "Polygon", "properties": {"name": "08063"}, "id": "08063"}, {"arcs": [[-702, -5011, 8977, -7264, -3374, -8911, -7186]], "type": "Polygon", "properties": {"name": "16073"}, "id": "16073"}, {"arcs": [[-980, 8978, -7182, -4959, -6928, 8979]], "type": "Polygon", "properties": {"name": "55141"}, "id": "55141"}, {"arcs": [[-6616, -7898, -8725, -7306, 8980]], "type": "Polygon", "properties": {"name": "36013"}, "id": "36013"}, {"arcs": [[-2813, -4321, 8981, -8146, -6542]], "type": "Polygon", "properties": {"name": "13067"}, "id": "13067"}, {"arcs": [[-4615, -4941, -4812, -4753, -7260, -5865, 8982]], "type": "Polygon", "properties": {"name": "47091"}, "id": "47091"}, {"arcs": [[-3178, 8983, -3448, -4206, -8461, 8984, -3362]], "type": "Polygon", "properties": {"name": "39013"}, "id": "39013"}, {"arcs": [[-1321, -6239, 8985, -4798, 8986, -7714, -8340], [-8558]], "type": "Polygon", "properties": {"name": "51195"}, "id": "51195"}, {"arcs": [[-1778, -5233, -4846, -7724, -5840, 8987]], "type": "Polygon", "properties": {"name": "29035"}, "id": "29035"}, {"arcs": [[-410, -1369, -959, -7360, -4314, -8955, -1994]], "type": "Polygon", "properties": {"name": "40013"}, "id": "40013"}, {"arcs": [[-25, -501, -2522, 8988, -8835]], "type": "Polygon", "properties": {"name": "31035"}, "id": "31035"}, {"arcs": [[[-4347, -8090, 8991, 8992, -6234]], [[-8714, 8993, 8994]]], "type": "MultiPolygon", "properties": {"name": "24017"}, "id": "24017"}, {"arcs": [[-2248, -7167, -7827, 8995, -3688]], "type": "Polygon", "properties": {"name": "19033"}, "id": "19033"}, {"arcs": [[-1051, -2162, -1482, -8038, -5219, 8996]], "type": "Polygon", "properties": {"name": "19073"}, "id": "19073"}, {"arcs": [[-1955, 8997, 8998, 8999, -8200, -7387, -4990]], "type": "Polygon", "properties": {"name": "21205"}, "id": "21205"}, {"arcs": [[-6406, -7677, 9000, -6461, -7327]], "type": "Polygon", "properties": {"name": "49055"}, "id": "49055"}, {"arcs": [[-3403, -7853, -5390, 9001, -5429, -8773]], "type": "Polygon", "properties": {"name": "29031"}, "id": "29031"}, {"arcs": [[-5503, 9002, -7946, 9003]], "type": "Polygon", "properties": {"name": "53071"}, "id": "53071"}, {"arcs": [[-3400, -8774, -8175, -6976, -7761, 9004, 9005]], "type": "Polygon", "properties": {"name": "29133"}, "id": "29133"}, {"arcs": [[-3145, -3150, 9006, 9007, -6474, -8975, -8942]], "type": "Polygon", "properties": {"name": "05025"}, "id": "05025"}, {"arcs": [[-1585, -4250, -6990, -6230, -8656, -8534]], "type": "Polygon", "properties": {"name": "48113"}, "id": "48113"}, {"arcs": [[-2289, -4492, 9008, -6369, -8807]], "type": "Polygon", "properties": {"name": "72079"}, "id": "72079"}, {"arcs": [[-338, 9009, -8334, -787, -8875]], "type": "Polygon", "properties": {"name": "18033"}, "id": "18033"}, {"arcs": [[-266, -6816, -5124, -893, -2330, -2651]], "type": "Polygon", "properties": {"name": "22073"}, "id": "22073"}, {"arcs": [[-300, -8021, -8016, 9010, 9011, -6588, 9012, 9013]], "type": "Polygon", "properties": {"name": "22095"}, "id": "22095"}, {"arcs": [[-295, 9014, -8083, -3963, -7576]], "type": "Polygon", "properties": {"name": "22091"}, "id": "22091"}, {"arcs": [[-5810, -7776, 9015, -7952, 9016]], "type": "Polygon", "properties": {"name": "29197"}, "id": "29197"}, {"arcs": [[-1392, -8675, -5142, -4611, 9017, 9018]], "type": "Polygon", "properties": {"name": "01059"}, "id": "01059"}, {"arcs": [[-1350, 9019, -8190, 9020, -5823, -7757]], "type": "Polygon", "properties": {"name": "21041"}, "id": "21041"}, {"arcs": [[-2140, -2722, 9021, -8623, -2695]], "type": "Polygon", "properties": {"name": "08019"}, "id": "08019"}, {"arcs": [[-47, 9022, 9023, -424, -4433, -2282]], "type": "Polygon", "properties": {"name": "48267"}, "id": "48267"}, {"arcs": [[[-1197, -3697, -2429, 9024]], [[9025]]], "type": "MultiPolygon", "properties": {"name": "26097"}, "id": "26097"}, {"arcs": [[-45, -7994, -2744, -7868, 9026, 9027]], "type": "Polygon", "properties": {"name": "48307"}, "id": "48307"}, {"arcs": [[-1393, -9019, 9028, -7150, -2474, -7842, -7340]], "type": "Polygon", "properties": {"name": "28141"}, "id": "28141"}, {"arcs": [[-1314, -2285, 9029, -8395, -6131, -2775, -3257, -2712, -7510]], "type": "Polygon", "properties": {"name": "48105"}, "id": "48105"}, {"arcs": [[-1703, 9030, -4286, -6989, -7600, -8645]], "type": "Polygon", "properties": {"name": "48217"}, "id": "48217"}, {"arcs": [[-623, -6472, -8734, 9031, -5003, -7587, -3265, 9032]], "type": "Polygon", "properties": {"name": "08075"}, "id": "08075"}, {"arcs": [[-1418, -8567, 9033, 9034, -8684, 9035, -5561]], "type": "Polygon", "properties": {"name": "20055"}, "id": "20055"}, {"arcs": [[-4199, 9036, -4417, 9037, 9038, -8599, -6449]], "type": "Polygon", "properties": {"name": "20125"}, "id": "20125"}, {"arcs": [[-820, -8764, -6266, 9039, -4830, 9040]], "type": "Polygon", "properties": {"name": "45039"}, "id": "45039"}, {"arcs": [[-619, -9033, -3264, -1560, 9041, 9042, 9043]], "type": "Polygon", "properties": {"name": "31033"}, "id": "31033"}, {"arcs": [[-1447, -8742, -1866, -3226, 9044, -8382]], "type": "Polygon", "properties": {"name": "27091"}, "id": "27091"}, {"arcs": [[-3217, -7834, -6915, -4915, -4004, -7810]], "type": "Polygon", "properties": {"name": "47155"}, "id": "47155"}, {"arcs": [[-1068, -7708, 9045, -8484, -8440, -5701]], "type": "Polygon", "properties": {"name": "47139"}, "id": "47139"}, {"arcs": [[-2072, -7972, -8621, -4733, 9046]], "type": "Polygon", "properties": {"name": "48263"}, "id": "48263"}, {"arcs": [[-1021, -5567, -1514, -5579, -2346]], "type": "Polygon", "properties": {"name": "30099"}, "id": "30099"}, {"arcs": [[-248, 9047, -9043, 9048, -6973, -7522, -6438]], "type": "Polygon", "properties": {"name": "31069"}, "id": "31069"}, {"arcs": [[-1212, -7046, -7975, -7661, -2468, -8533]], "type": "Polygon", "properties": {"name": "17117"}, "id": "17117"}, {"arcs": [[-347, -3541, -4654, -1700, -6080, -3072, -6362]], "type": "Polygon", "properties": {"name": "39141"}, "id": "39141"}, {"arcs": [[-1671, -7011, -3101, -1861, 9049, -7445, -3567]], "type": "Polygon", "properties": {"name": "17195"}, "id": "17195"}, {"arcs": [[-188, -6893, 9050, -5081]], "type": "Polygon", "properties": {"name": "48141"}, "id": "48141"}, {"arcs": [[-5997, -8962, -6397, 9051, -8294]], "type": "Polygon", "properties": {"name": "48301"}, "id": "48301"}, {"arcs": [[-7461, -7882, 9052, -8631]], "type": "Polygon", "properties": {"name": "40077"}, "id": "40077"}, {"arcs": [[-689, 9053, -3176, -7892, -5976, -4944, -8457]], "type": "Polygon", "properties": {"name": "39167"}, "id": "39167"}, {"arcs": [[-1232, -4441, -2890, -8798, 9054, -5838]], "type": "Polygon", "properties": {"name": "29091"}, "id": "29091"}, {"arcs": [[-1395, 9055, -6424, 9056, -5914, -8870]], "type": "Polygon", "properties": {"name": "20047"}, "id": "20047"}, {"arcs": [[-5960, -6698, 9057, -8884, 9058, -6820, 9059, -6320]], "type": "Polygon", "properties": {"name": "21111"}, "id": "21111"}, {"arcs": [[-854, -4905, -2499, -7663, -4317, -6012, -7725]], "type": "Polygon", "properties": {"name": "17107"}, "id": "17107"}, {"arcs": [[-2341, -4042, -4429, -6846, -8050, -4967]], "type": "Polygon", "properties": {"name": "55139"}, "id": "55139"}, {"arcs": [[[-2972, 9060]], [[-2974, 9061, -9005, -7760, -8060]]], "type": "MultiPolygon", "properties": {"name": "21075"}, "id": "21075"}, {"arcs": [[-2176, -3025, -5475, 9062, 9063]], "type": "Polygon", "properties": {"name": "20079"}, "id": "20079"}, {"arcs": [[-7487, -7684, 9064, -8829]], "type": "Polygon", "properties": {"name": "30021"}, "id": "30021"}, {"arcs": [[-3428, -4424, -5604, -5397, -8466]], "type": "Polygon", "properties": {"name": "54091"}, "id": "54091"}, {"arcs": [[-6958, 9065, -8758, -8580, -8525]], "type": "Polygon", "properties": {"name": "26111"}, "id": "26111"}, {"arcs": [[-2794, -8511, -4682, -8419]], "type": "Polygon", "properties": {"name": "28119"}, "id": "28119"}, {"arcs": [[-6321, -9060, -6819, 9066, -8765, -8281, -8671, -8934, 9067]], "type": "Polygon", "properties": {"name": "21093"}, "id": "21093"}, {"arcs": [[-2506, -7286, -4184, -8339, -6255, -4584]], "type": "Polygon", "properties": {"name": "17081"}, "id": "17081"}, {"arcs": [[-1546, -8417, -3878, -1974, -7020]], "type": "Polygon", "properties": {"name": "46057"}, "id": "46057"}, {"arcs": [[-3955, -5191, -7184, -7135, 9068]], "type": "Polygon", "properties": {"name": "55069"}, "id": "55069"}, {"arcs": [[-1769, 9069, -4639, -2244, -2735]], "type": "Polygon", "properties": {"name": "36033"}, "id": "36033"}, {"arcs": [[-308, 9070]], "type": "Polygon", "properties": {"name": "51630"}, "id": "51630"}, {"arcs": [[-1807, 9071, -5988, -8633, -6200, -7123]], "type": "Polygon", "properties": {"name": "54081"}, "id": "54081"}, {"arcs": [[-17, -7257, -8963, -5995, -184, -7685]], "type": "Polygon", "properties": {"name": "35005"}, "id": "35005"}, {"arcs": [[-2388, -8162, 9072, -4394, -5794, -8527, -5832]], "type": "Polygon", "properties": {"name": "35049"}, "id": "35049"}, {"arcs": [[-2147, -5291, -7093, -2849, 9073]], "type": "Polygon", "properties": {"name": "06059"}, "id": "06059"}, {"arcs": [[-4512, -5281, 9074]], "type": "Polygon", "properties": {"name": "04023"}, "id": "04023"}, {"arcs": [[-3136, -4723, 9075, 9076, 9077, 9078]], "type": "Polygon", "properties": {"name": "37053"}, "id": "37053"}, {"arcs": [[-758, -4265, -2135, -6416]], "type": "Polygon", "properties": {"name": "17101"}, "id": "17101"}, {"arcs": [[-3114, 9079, -7001, -7476, -5507, -3123]], "type": "Polygon", "properties": {"name": "18067"}, "id": "18067"}, {"arcs": [[-1333, -3261, -6419, -8915, -2225]], "type": "Polygon", "properties": {"name": "18125"}, "id": "18125"}, {"arcs": [[-1962, -8924, -6779, -4953, -8209, 9080, -7529]], "type": "Polygon", "properties": {"name": "21047"}, "id": "21047"}, {"arcs": [[-2461, -5151, -3584, -7580, -3453, -8054]], "type": "Polygon", "properties": {"name": "26045"}, "id": "26045"}, {"arcs": [[-1509, -7774, 9081, -5664, -7040]], "type": "Polygon", "properties": {"name": "19179"}, "id": "19179"}, {"arcs": [[-2151, 9082, -2851, -7095, -8841]], "type": "Polygon", "properties": {"name": "06025"}, "id": "06025"}, {"arcs": [[-1933, -2505, -5860, -7074, -4149]], "type": "Polygon", "properties": {"name": "26027"}, "id": "26027"}, {"arcs": [[-3961, 9083, 9084, 9085, 9086, -7577]], "type": "Polygon", "properties": {"name": "28157"}, "id": "28157"}, {"arcs": [[-6102, 9087, 9088, 9089]], "type": "Polygon", "properties": {"name": "02282"}, "id": "02282"}, {"arcs": [[-653, 9090, -5935, -6298, -8400]], "type": "Polygon", "properties": {"name": "20179"}, "id": "20179"}, {"arcs": [[-4563, -6315, 9091, -7098, 9092]], "type": "Polygon", "properties": {"name": "28079"}, "id": "28079"}, {"arcs": [[-2064, -2535, -7792, -6828, -8805, -7574, 9093]], "type": "Polygon", "properties": {"name": "72025"}, "id": "72025"}, {"arcs": [[-479, 9094, -7793, -4687, 9095]], "type": "Polygon", "properties": {"name": "72027"}, "id": "72027"}, {"arcs": [[-446, -6225, -2271, -6487, 9096]], "type": "Polygon", "properties": {"name": "28025"}, "id": "28025"}, {"arcs": [[-2765, -7578, -9087, 9097, 9098]], "type": "Polygon", "properties": {"name": "28037"}, "id": "28037"}, {"arcs": [[-1146, -4564, -9093, -8188]], "type": "Polygon", "properties": {"name": "28099"}, "id": "28099"}, {"arcs": [[-3769, 9099, -5599, 9100, -8786]], "type": "Polygon", "properties": {"name": "46045"}, "id": "46045"}, {"arcs": [[-32, -2806, -7527, 9101, 9102, -6489, -2862]], "type": "Polygon", "properties": {"name": "72119"}, "id": "72119"}, {"arcs": [[-1726, 9103, -4019, -4446]], "type": "Polygon", "properties": {"name": "01035"}, "id": "01035"}, {"arcs": [[-612, -2317, -2570, -8819, -6932]], "type": "Polygon", "properties": {"name": "18029"}, "id": "18029"}, {"arcs": [[-2276, 9104, 9105, 9106, -6693, -2808, -8910]], "type": "Polygon", "properties": {"name": "18071"}, "id": "18071"}, {"arcs": [[-444, -6812, -665, -7152, 9107, -6222]], "type": "Polygon", "properties": {"name": "28081"}, "id": "28081"}, {"arcs": [[[-3966, 9108, -6303, 9109, -9084]], [[-6301, -6941, 9110]]], "type": "MultiPolygon", "properties": {"name": "22125"}, "id": "22125"}, {"arcs": [[-2790, -8497, -7549, -6580, 9111, -5951, 9112, -8588, 9113]], "type": "Polygon", "properties": {"name": "05035"}, "id": "05035"}, {"arcs": [[-3673, -7337, 9114, -8434, -7766, -8211, 9115, 9116]], "type": "Polygon", "properties": {"name": "12063"}, "id": "12063"}, {"arcs": [[-1432, -5524, 9117, -9047]], "type": "Polygon", "properties": {"name": "48125"}, "id": "48125"}, {"arcs": [[-1890, 9118, -3105]], "type": "Polygon", "properties": {"name": "51115"}, "id": "51115"}, {"arcs": [[-1459, 9119, -2897, -4534, -2826]], "type": "Polygon", "properties": {"name": "38075"}, "id": "38075"}, {"arcs": [[-809, -6442, -2103, 9120]], "type": "Polygon", "properties": {"name": "48283"}, "id": "48283"}, {"arcs": [[-1164, -5169, -6119, -3783]], "type": "Polygon", "properties": {"name": "36067"}, "id": "36067"}, {"arcs": [[-1507, 9121, 9122, -8425, -8608, -6214]], "type": "Polygon", "properties": {"name": "19087"}, "id": "19087"}, {"arcs": [[-256, -8226, -870, 9123, 9124]], "type": "Polygon", "properties": {"name": "31083"}, "id": "31083"}, {"arcs": [[-1184, -7438, -3256, -4763, -6574, -8968, -6678]], "type": "Polygon", "properties": {"name": "30075"}, "id": "30075"}, {"arcs": [[-2466, 9125, -5654, -2581, -6753, -8653, -4485]], "type": "Polygon", "properties": {"name": "72075"}, "id": "72075"}, {"arcs": [[-836, -922, -6040, 9126, -7454, -4911]], "type": "Polygon", "properties": {"name": "55091"}, "id": "55091"}, {"arcs": [[-195, -4254, -7547, -2757, 9127, -7634, -8494, -4514]], "type": "Polygon", "properties": {"name": "04001"}, "id": "04001"}, {"arcs": [[-553, 9128, 9129, -5470, -4998, -8638, -7948]], "type": "Polygon", "properties": {"name": "29121"}, "id": "29121"}, {"arcs": [[-70, 9130, -8746, -4983, 9131]], "type": "Polygon", "properties": {"name": "48279"}, "id": "48279"}, {"arcs": [[-1400, -7906, -5755, -8682, -6425, -9056]], "type": "Polygon", "properties": {"name": "20097"}, "id": "20097"}, {"arcs": [[-2339, -3978, -6713, -2616, -2878, -4442]], "type": "Polygon", "properties": {"name": "48015"}, "id": "48015"}, {"arcs": [[-560, -7515, 9132, -7915, -2800, -3313]], "type": "Polygon", "properties": {"name": "29061"}, "id": "29061"}, {"arcs": [[-4530, -8878, 9133, 9134, -9116, -8210]], "type": "Polygon", "properties": {"name": "13253"}, "id": "13253"}, {"arcs": [[-3318, -5485, 9135, -6610, -7195]], "type": "Polygon", "properties": {"name": "26101"}, "id": "26101"}, {"arcs": [[-41, -2647, -1595, -8909, 9136, -8256]], "type": "Polygon", "properties": {"name": "19119"}, "id": "19119"}, {"arcs": [[-5223, 9137, -8513, 9138]], "type": "Polygon", "properties": {"name": "48233"}, "id": "48233"}, {"arcs": [[-2769, -8515, -8736, 9139, -5962, -5586, 9140, -8695]], "type": "Polygon", "properties": {"name": "40139"}, "id": "40139"}, {"arcs": [[-1423, -4989, -6778, -8721, -7281]], "type": "Polygon", "properties": {"name": "40153"}, "id": "40153"}, {"arcs": [[-3507, -6960, -8333, -6884, 9141]], "type": "Polygon", "properties": {"name": "19003"}, "id": "19003"}, {"arcs": [[-1786, -6389, -7299, -8590, -6593, -2908]], "type": "Polygon", "properties": {"name": "06101"}, "id": "06101"}, {"arcs": [[-286, -564, 9142, -4401, -2945, -7622, -993]], "type": "Polygon", "properties": {"name": "42105"}, "id": "42105"}, {"arcs": [[-2284, -4432, -2443, 9143, -8396, -9030]], "type": "Polygon", "properties": {"name": "48465"}, "id": "48465"}, {"arcs": [[-1523, -7905, -8793, -6051, 9144]], "type": "Polygon", "properties": {"name": "20077"}, "id": "20077"}, {"arcs": [[-1468, -7629, -5625, -8770, -8801]], "type": "Polygon", "properties": {"name": "19133"}, "id": "19133"}, {"arcs": [[-4242, -4909, 9145, -8896, 9146]], "type": "Polygon", "properties": {"name": "49023"}, "id": "49023"}, {"arcs": [[-3700, -8368, -3777, -7417, 9147, -7625]], "type": "Polygon", "properties": {"name": "40137"}, "id": "40137"}, {"arcs": [[-2931, 9148, -8452, -6120, -5167]], "type": "Polygon", "properties": {"name": "36017"}, "id": "36017"}, {"arcs": [[-2364, 9149, -3748, -7987, -7275, -7726]], "type": "Polygon", "properties": {"name": "17143"}, "id": "17143"}, {"arcs": [[-1075, -1451, -6791, -1478]], "type": "Polygon", "properties": {"name": "19091"}, "id": "19091"}, {"arcs": [[-1472, -8136, -5308, -8537, -7630]], "type": "Polygon", "properties": {"name": "31177"}, "id": "31177"}, {"arcs": [[-95, -7970, -6748, -4409, 9150, -8960]], "type": "Polygon", "properties": {"name": "55049"}, "id": "55049"}, {"arcs": [[-680, -7334, -7856, -1264, -6834, -7542]], "type": "Polygon", "properties": {"name": "27097"}, "id": "27097"}, {"arcs": [[-114, -3012, 9151, 9152]], "type": "Polygon", "properties": {"name": "42003"}, "id": "42003"}, {"arcs": [[-552, -7521, -4629, 9153, -9129]], "type": "Polygon", "properties": {"name": "29205"}, "id": "29205"}, {"arcs": [[-345, -5781, -4504, -3822, 9154, 9155, -3537]], "type": "Polygon", "properties": {"name": "39097"}, "id": "39097"}, {"arcs": [[-462, -1848, -6308, 9156, -1307, -7480, -4778]], "type": "Polygon", "properties": {"name": "20201"}, "id": "20201"}, {"arcs": [[-851, -3930, -7959, -4030, -1427]], "type": "Polygon", "properties": {"name": "17019"}, "id": "17019"}, {"arcs": [[-1080, -7820, -5008, -1924, -5038]], "type": "Polygon", "properties": {"name": "16087"}, "id": "16087"}, {"arcs": [[-1912, -4031, -7958, -3617, -5855, -2964]], "type": "Polygon", "properties": {"name": "17045"}, "id": "17045"}, {"arcs": [[-5004, -9032, -8733, -8977, -5164, 9157, -5709]], "type": "Polygon", "properties": {"name": "08121"}, "id": "08121"}, {"arcs": [[-63, 9158, -7270, 9159, -2843, -8738, -81]], "type": "Polygon", "properties": {"name": "39065"}, "id": "39065"}, {"arcs": [[-456, 9160, -7197, -5266, -3619]], "type": "Polygon", "properties": {"name": "26113"}, "id": "26113"}, {"arcs": [[-2410, -4543, -3899, -4551, -5052, -6863, -5097]], "type": "Polygon", "properties": {"name": "38093"}, "id": "38093"}, {"arcs": [[-1779, -8988, -5839, -9055, -8797, 9161]], "type": "Polygon", "properties": {"name": "29203"}, "id": "29203"}, {"arcs": [[-3483, -8150, -6030, -7315, -7700, 9162, 9163]], "type": "Polygon", "properties": {"name": "48423"}, "id": "48423"}, {"arcs": [[-2673, -7481, -4329, -5722, -8450, -7703, -4414]], "type": "Polygon", "properties": {"name": "40143"}, "id": "40143"}, {"arcs": [[-2251, -8524, -4326, -2292, 9164, -7880]], "type": "Polygon", "properties": {"name": "40091"}, "id": "40091"}, {"arcs": [[-951, 9165, -8278, -5749, -8646, -2013]], "type": "Polygon", "properties": {"name": "48395"}, "id": "48395"}, {"arcs": [[-425, -9024, 9166, 9167, 9168, -3853]], "type": "Polygon", "properties": {"name": "48171"}, "id": "48171"}, {"arcs": [[-1591, -6128, -5706, -7425, -5254, -8274]], "type": "Polygon", "properties": {"name": "26125"}, "id": "26125"}, {"arcs": [[-5122, -8785, -7681, -8302, -6560]], "type": "Polygon", "properties": {"name": "38033"}, "id": "38033"}, {"arcs": [[-3888, -8356, -6516, -8831, -6685, 9169, -7921]], "type": "Polygon", "properties": {"name": "56027"}, "id": "56027"}, {"arcs": [[-638, -6718, -4820, -7141, -2645]], "type": "Polygon", "properties": {"name": "27117"}, "id": "27117"}, {"arcs": [[-305, -8991, 9170, -8994, -8713, -2230, 9171]], "type": "Polygon", "properties": {"name": "51099"}, "id": "51099"}, {"arcs": [[-5640, -7896, -6161, 9172, 9173, 9174, -7944, -6022]], "type": "Polygon", "properties": {"name": "53025"}, "id": "53025"}, {"arcs": [[-917, -2415, 9175, 9176, 9177, -7690, -8231, -2604, -5874]], "type": "Polygon", "properties": {"name": "27129"}, "id": "27129"}, {"arcs": [[-1982, -8433, -8779, -5545, -7517, -8950, -7788]], "type": "Polygon", "properties": {"name": "12001"}, "id": "12001"}, {"arcs": [[-802, -6001, -6440, -7524, 9178]], "type": "Polygon", "properties": {"name": "31091"}, "id": "31091"}, {"arcs": [[-3030, -7110, -8343, -8951, -4457, -4826, -8966]], "type": "Polygon", "properties": {"name": "51147"}, "id": "51147"}, {"arcs": [[-1521, -8893, -7675, 9179, -8894]], "type": "Polygon", "properties": {"name": "49007"}, "id": "49007"}, {"arcs": [[-3128, -8554, -8928, -8932, -8954, 9180, 9181, -4519]], "type": "Polygon", "properties": {"name": "42017"}, "id": "42017"}, {"arcs": [[-2216, -8642, -8921, 9182, 9183, -6537]], "type": "Polygon", "properties": {"name": "46059"}, "id": "46059"}, {"arcs": [[-563, -4141, -5517, -4503, -8749, -5615, 9184, -4402, -9143]], "type": "Polygon", "properties": {"name": "42081"}, "id": "42081"}, {"arcs": [[-3564, -7822, -7534, -3762, 9185]], "type": "Polygon", "properties": {"name": "16057"}, "id": "16057"}, {"arcs": [[-3851, 9186, -6739, -5465, -6578, -8639]], "type": "Polygon", "properties": {"name": "13237"}, "id": "13237"}, {"arcs": [[-5870, -6624]], "type": "Polygon", "properties": {"name": "51640"}, "id": "51640"}, {"arcs": [[-15, -7927, -2385, -5180, -1193, 9187, -3006, -8416, -6603, -7254]], "type": "Polygon", "properties": {"name": "35037"}, "id": "35037"}, {"arcs": [[-2068, -9118, -8106, -5192, -5327]], "type": "Polygon", "properties": {"name": "48269"}, "id": "48269"}, {"arcs": [[-1282, 9188, -8729, -5096, -6506, -8741]], "type": "Polygon", "properties": {"name": "05073"}, "id": "05073"}, {"arcs": [[-1316, -7511, -2710, -6394, -7996, -8394, -7992]], "type": "Polygon", "properties": {"name": "48451"}, "id": "48451"}, {"arcs": [[-2167, -3439, -3636, -8112]], "type": "Polygon", "properties": {"name": "12049"}, "id": "12049"}, {"arcs": [[-2821, -7373, 9189, -8507, -8818, 9190, -8025]], "type": "Polygon", "properties": {"name": "39025"}, "id": "39025"}, {"arcs": [[-4607, -8964, -7203, -5178]], "type": "Polygon", "properties": {"name": "48501"}, "id": "48501"}, {"arcs": [[-720, -3527, -8324, -5348, 9191]], "type": "Polygon", "properties": {"name": "41071"}, "id": "41071"}, {"arcs": [[-1943, -8426, -9123, 9192, -6444, 9193]], "type": "Polygon", "properties": {"name": "19115"}, "id": "19115"}, {"arcs": [[-370, -8600, -9039, 9194, -2724, -5473]], "type": "Polygon", "properties": {"name": "20049"}, "id": "20049"}, {"arcs": [[-688, -3640, -3449, -8984, -3177, -9054]], "type": "Polygon", "properties": {"name": "39121"}, "id": "39121"}, {"arcs": [[-65, -84, -3491, -1789, -8336, -2077]], "type": "Polygon", "properties": {"name": "39137"}, "id": "39137"}, {"arcs": [[-3409, -8169, -4288, 9195]], "type": "Polygon", "properties": {"name": "48425"}, "id": "48425"}, {"arcs": [[-631, -5049, -4810, 9196]], "type": "Polygon", "properties": {"name": "42075"}, "id": "42075"}, {"arcs": [[-2348, -5578, 9197, -8138]], "type": "Polygon", "properties": {"name": "30035"}, "id": "30035"}, {"arcs": [[-491, -8172, -705, -7369]], "type": "Polygon", "properties": {"name": "32027"}, "id": "32027"}, {"arcs": [[-3906, -4109, 9198, 9199]], "type": "Polygon", "properties": {"name": "27087"}, "id": "27087"}, {"arcs": [[-647, 9200, 9201, -8822, -8636, -8559]], "type": "Polygon", "properties": {"name": "34031"}, "id": "34031"}, {"arcs": [[-5574, 9202, -6766]], "type": "Polygon", "properties": {"name": "30047"}, "id": "30047"}, {"arcs": [[[-1239, -7602, -4554, 9203, -5782]], [[-4559, 9204, -5785, 9205]]], "type": "MultiPolygon", "properties": {"name": "48261"}, "id": "48261"}, {"arcs": [[-2921, -4735, -8622, -7696, 9206, -6094]], "type": "Polygon", "properties": {"name": "48033"}, "id": "48033"}, {"arcs": [[-927, 9207, -6875, -7246, 9208, -5430, -9002, -5389]], "type": "Polygon", "properties": {"name": "29157"}, "id": "29157"}, {"arcs": [[-3002, 9209, -6870, 9210, 9211, -9027, -7867]], "type": "Polygon", "properties": {"name": "48411"}, "id": "48411"}, {"arcs": [[-473, -5637, -6776, 9212, -7877]], "type": "Polygon", "properties": {"name": "40073"}, "id": "40073"}, {"arcs": [[-955, -2880, -8145, -8279, -9166]], "type": "Polygon", "properties": {"name": "48051"}, "id": "48051"}, {"arcs": [[-950, -7402, -3891, -2733]], "type": "Polygon", "properties": {"name": "36035"}, "id": "36035"}, {"arcs": [[-1617, -3715, -8420, -4680, -8408, -8204]], "type": "Polygon", "properties": {"name": "28133"}, "id": "28133"}, {"arcs": [[-3285, -7861, -7061, -7210, -6918, -3533, 9213]], "type": "Polygon", "properties": {"name": "27053"}, "id": "27053"}, {"arcs": [[-2454, -4404, 9214, -8388, -4154, -7204]], "type": "Polygon", "properties": {"name": "42027"}, "id": "42027"}, {"arcs": [[-583, 9215, -8709, -4225, 9216]], "type": "Polygon", "properties": {"name": "48025"}, "id": "48025"}, {"arcs": [[-4229, 9217, -5371, 9218, -7840]], "type": "Polygon", "properties": {"name": "47077"}, "id": "47077"}, {"arcs": [[-3063, -4121, -3834, -7750, -7287]], "type": "Polygon", "properties": {"name": "19171"}, "id": "19171"}, {"arcs": [[-5585, -8687, 9219, -8696, -9141]], "type": "Polygon", "properties": {"name": "20175"}, "id": "20175"}, {"arcs": [[-5302, -5665, -9082, -5808, 9220]], "type": "Polygon", "properties": {"name": "19135"}, "id": "19135"}, {"arcs": [[-416, -6642, 9221, -7174, -3572, -6659]], "type": "Polygon", "properties": {"name": "31147"}, "id": "31147"}, {"arcs": [[-2470, -7664, -2497, -7345]], "type": "Polygon", "properties": {"name": "17021"}, "id": "17021"}, {"arcs": [[-840, -6125, 9222, -5746, -8498]], "type": "Polygon", "properties": {"name": "12089"}, "id": "12089"}, {"arcs": [[-440, -8435, -9115, -7336]], "type": "Polygon", "properties": {"name": "12133"}, "id": "12133"}, {"arcs": [[-4473, -6319, 9223, 9224, -8876, -4528]], "type": "Polygon", "properties": {"name": "13007"}, "id": "13007"}, {"arcs": [[-7239, -8842, -7567, 9225, 9226, 9227]], "type": "Polygon", "properties": {"name": "13275"}, "id": "13275"}, {"arcs": [[-6937, 9228, 9229, -8882, 9230, 9231, -8197]], "type": "Polygon", "properties": {"name": "21005"}, "id": "21005"}, {"arcs": [[-6697, 9232, -8194, -8885, -9058]], "type": "Polygon", "properties": {"name": "21185"}, "id": "21185"}, {"arcs": [[-1014, -5892, 9233, -8147, -8982, -4320]], "type": "Polygon", "properties": {"name": "13057"}, "id": "13057"}, {"arcs": [[-2319, -6787, -2588, 9234]], "type": "Polygon", "properties": {"name": "38065"}, "id": "38065"}, {"arcs": [[-460, -7709, -3320, -7198, -9161]], "type": "Polygon", "properties": {"name": "26133"}, "id": "26133"}, {"arcs": [[-2478, -5278, -4231, -7839]], "type": "Polygon", "properties": {"name": "47109"}, "id": "47109"}, {"arcs": [[-9174, 9235, 9236, 9237]], "type": "Polygon", "properties": {"name": "53001"}, "id": "53001"}, {"arcs": [[-213, -5318, -7368, -8926, -1663, -5677]], "type": "Polygon", "properties": {"name": "29057"}, "id": "29057"}, {"arcs": [[-5137, -7430, -8604, 9238, -8375]], "type": "Polygon", "properties": {"name": "22101"}, "id": "22101"}, {"arcs": [[-525, -5630, 9239, 9240, -2239, -4642, -8936]], "type": "Polygon", "properties": {"name": "50007"}, "id": "50007"}, {"arcs": [[-1169, -5792, 9241, -7572, -4579]], "type": "Polygon", "properties": {"name": "72045"}, "id": "72045"}, {"arcs": [[[-8270, 9242]], [[9243]], [[9244]], [[9245]]], "type": "MultiPolygon", "properties": {"name": "15009"}, "id": "15009"}, {"arcs": [[-6589, -9012, 9246, -8014, 9247, -8602, -7428]], "type": "Polygon", "properties": {"name": "22057"}, "id": "22057"}, {"arcs": [[-1002, -8427, -3103, -9194, -6443]], "type": "Polygon", "properties": {"name": "19139"}, "id": "19139"}, {"arcs": [[-4022, -8304, 9248, -6226]], "type": "Polygon", "properties": {"name": "12113"}, "id": "12113"}, {"arcs": [[-1007, -2227, -8916, -4874, 9249]], "type": "Polygon", "properties": {"name": "18101"}, "id": "18101"}, {"arcs": [[-4001, -8079, -8618, -8474, -8286, 9250]], "type": "Polygon", "properties": {"name": "21203"}, "id": "21203"}, {"arcs": [[-5824, -9021, -8195, -9233, -6696]], "type": "Polygon", "properties": {"name": "21223"}, "id": "21223"}, {"arcs": [[-277, -8690, -489, -1172]], "type": "Polygon", "properties": {"name": "13055"}, "id": "13055"}, {"arcs": [[-1249, -8547, -7843, -6670, -3558]], "type": "Polygon", "properties": {"name": "45033"}, "id": "45033"}, {"arcs": [[-3576, -8381, -6909, -5852, -6657]], "type": "Polygon", "properties": {"name": "37103"}, "id": "37103"}, {"arcs": [[-549, -7953, -9016, -7775, -6217, -6930]], "type": "Polygon", "properties": {"name": "29199"}, "id": "29199"}, {"arcs": [[-3580, 9251, -7175, -9222, -6641, 9252]], "type": "Polygon", "properties": {"name": "20131"}, "id": "20131"}, {"arcs": [[-652, 9253, -9124, -875, -5936, -9091]], "type": "Polygon", "properties": {"name": "20137"}, "id": "20137"}, {"arcs": [[-2065, -9094, -7573, -9242, -5791, -8676]], "type": "Polygon", "properties": {"name": "72007"}, "id": "72007"}, {"arcs": [[-2067, -8677, -5789, -8357]], "type": "Polygon", "properties": {"name": "72033"}, "id": "72033"}, {"arcs": [[-257, -9125, -9254, -651, -6006, 9254, -6219]], "type": "Polygon", "properties": {"name": "31065"}, "id": "31065"}, {"arcs": [[-8877, -9225, 9255, 9256, 9257, -9134]], "type": "Polygon", "properties": {"name": "13087"}, "id": "13087"}, {"arcs": [[-2373, 9258, -4091, -5645, -5334, -6078]], "type": "Polygon", "properties": {"name": "18177"}, "id": "18177"}, {"arcs": [[-355, -7741, -902, -8284, 9259, -5760]], "type": "Polygon", "properties": {"name": "21009"}, "id": "21009"}, {"arcs": [[-1843, 9260, -6968, 9261, -8693, -6948]], "type": "Polygon", "properties": {"name": "31093"}, "id": "31093"}, {"arcs": [[-2322, -3695, -6562, -8301, -6673, -6786]], "type": "Polygon", "properties": {"name": "38025"}, "id": "38025"}, {"arcs": [[-1781, -6262, -6062, -1885, -8185]], "type": "Polygon", "properties": {"name": "06005"}, "id": "06005"}, {"arcs": [[-744, -7666, -2824, -7998, 9262, 9263]], "type": "Polygon", "properties": {"name": "47049"}, "id": "47049"}, {"arcs": [[-367, -1048, -2992, -3343, 9264, -8261]], "type": "Polygon", "properties": {"name": "20031"}, "id": "20031"}, {"arcs": [[-335, -6130, -2502, -7581, -6507]], "type": "Polygon", "properties": {"name": "26023"}, "id": "26023"}, {"arcs": [[-2125, -8967, -4824, -7394, -5906, -5827, 9265]], "type": "Polygon", "properties": {"name": "51031"}, "id": "51031"}, {"arcs": [[-1697, -8458, -4942, -3366, 9266, 9267]], "type": "Polygon", "properties": {"name": "39105"}, "id": "39105"}, {"arcs": [[-4971, -8338, -5985, -5818, -7191]], "type": "Polygon", "properties": {"name": "54067"}, "id": "54067"}, {"arcs": [[-1524, -9145, -6050, -5342, 9268]], "type": "Polygon", "properties": {"name": "40053"}, "id": "40053"}, {"arcs": [[-1977, -6538, -9184, 9269, -5597, 9270]], "type": "Polygon", "properties": {"name": "46115"}, "id": "46115"}, {"arcs": [[-2087, -3830, 9271, -8814, -4525, 9272, -2169]], "type": "Polygon", "properties": {"name": "50027"}, "id": "50027"}, {"arcs": [[-1646, -8041, -3793, -6042, -3170]], "type": "Polygon", "properties": {"name": "48455"}, "id": "48455"}, {"arcs": [[-4395, -9073, -8161, 9273, -4516]], "type": "Polygon", "properties": {"name": "35001"}, "id": "35001"}, {"arcs": [[-6318, -6981, -7240, -9228, 9274, -9256, -9224]], "type": "Polygon", "properties": {"name": "13205"}, "id": "13205"}, {"arcs": [[9275]], "type": "Polygon", "properties": {"name": "15001"}, "id": "15001"}, {"arcs": [[-402, -8476, -8617, -7153, -1030, 9276]], "type": "Polygon", "properties": {"name": "21147"}, "id": "21147"}, {"arcs": [[-1352, -5967, -3676, -8508, -9190, -7372]], "type": "Polygon", "properties": {"name": "21191"}, "id": "21191"}, {"arcs": [[-6817, -9059, -8883, -9230, 9277]], "type": "Polygon", "properties": {"name": "21215"}, "id": "21215"}, {"arcs": [[-1024, -4275, 9278, -8289]], "type": "Polygon", "properties": {"name": "30041"}, "id": "30041"}, {"arcs": [[-1845, -6950, -3663, -5130, -8199]], "type": "Polygon", "properties": {"name": "31175"}, "id": "31175"}, {"arcs": [[-66, -9132, -4982, -8415, -3476, -6257]], "type": "Polygon", "properties": {"name": "48069"}, "id": "48069"}, {"arcs": [[-964, -3736, -8970, -5066, 9279, -6187, -8652, 9280]], "type": "Polygon", "properties": {"name": "24043"}, "id": "24043"}, {"arcs": [[-1540, -1857, -7715, -8987, -4797]], "type": "Polygon", "properties": {"name": "21133"}, "id": "21133"}, {"arcs": [[-3095, -8315, -8468, 9281]], "type": "Polygon", "properties": {"name": "34033"}, "id": "34033"}, {"arcs": [[-2126, -9266, -5826]], "type": "Polygon", "properties": {"name": "51680"}, "id": "51680"}, {"arcs": [[-2986, -4592, -8800, -8944, -5060]], "type": "Polygon", "properties": {"name": "05125"}, "id": "05125"}, {"arcs": [[-639, -2707, 9282, -9267, -3365]], "type": "Polygon", "properties": {"name": "54053"}, "id": "54053"}, {"arcs": [[-7193, 9283, -8369, -7884, 9284]], "type": "Polygon", "properties": {"name": "54021"}, "id": "54021"}, {"arcs": [[-1058, -8088, -7309, -2766, -9099, 9285]], "type": "Polygon", "properties": {"name": "28063"}, "id": "28063"}, {"arcs": [[-2894, 9286, -8811, 9287]], "type": "Polygon", "properties": {"name": "38079"}, "id": "38079"}, {"arcs": [[-1186, -6682, 9288]], "type": "Polygon", "properties": {"name": "30103"}, "id": "30103"}, {"arcs": [[-1403, -8761, -5674, -6707, -3998, -5588]], "type": "Polygon", "properties": {"name": "21049"}, "id": "21049"}, {"arcs": [[-2302, -7225, -6091, -8035, -6492, -6751]], "type": "Polygon", "properties": {"name": "72101"}, "id": "72101"}, {"arcs": [[-1936, 9289, -3322, -8092, -3456, -8913]], "type": "Polygon", "properties": {"name": "26005"}, "id": "26005"}, {"arcs": [[-4956, -5846, -6009, -7497, 9290, -5369, -6904]], "type": "Polygon", "properties": {"name": "47005"}, "id": "47005"}, {"arcs": [[-3046, 9291, -9177, 9292, 9293, -3224]], "type": "Polygon", "properties": {"name": "27015"}, "id": "27015"}, {"arcs": [[-57, -404, 9294, -9263, -7997, -1906]], "type": "Polygon", "properties": {"name": "47137"}, "id": "47137"}, {"arcs": [[-1217, -3807, -8971, -8068, -3860, 9295]], "type": "Polygon", "properties": {"name": "51109"}, "id": "51109"}, {"arcs": [[-2222, -2811, -5176, 9296, -5556, -4878]], "type": "Polygon", "properties": {"name": "18145"}, "id": "18145"}, {"arcs": [[-3538, -9156, 9297, -5210, 9298, 9299]], "type": "Polygon", "properties": {"name": "39049"}, "id": "39049"}, {"arcs": [[-5646, -6677, -8824, -8481, -6458]], "type": "Polygon", "properties": {"name": "49021"}, "id": "49021"}, {"arcs": [[-2359, -3721, -4788, -5072]], "type": "Polygon", "properties": {"name": "32009"}, "id": "32009"}, {"arcs": [[[9300, 9301]], [[9302]]], "type": "MultiPolygon", "properties": {"name": "26083"}, "id": "26083"}, {"arcs": [[-4237, -9147, -8895, -9180, -7674, -6404]], "type": "Polygon", "properties": {"name": "49039"}, "id": "49039"}, {"arcs": [[-1072, 9303, -5562, -9036, 9304]], "type": "Polygon", "properties": {"name": "20093"}, "id": "20093"}, {"arcs": [[-469, 9305, 9306, -8940, -1288]], "type": "Polygon", "properties": {"name": "12009"}, "id": "12009"}, {"arcs": [[-4872, -5382, -6984, -6694, -9107, 9307]], "type": "Polygon", "properties": {"name": "18105"}, "id": "18105"}, {"arcs": [[-3468, -3487, -5303, -9221, -4598]], "type": "Polygon", "properties": {"name": "19117"}, "id": "19117"}, {"arcs": [[-772, -5590, -5759, -8198, -9232, 9308]], "type": "Polygon", "properties": {"name": "21239"}, "id": "21239"}, {"arcs": [[-5489, 9309, -8777, -8958, -8236]], "type": "Polygon", "properties": {"name": "45053"}, "id": "45053"}, {"arcs": [[-5776, -7729, -6133, -8398, 9310]], "type": "Polygon", "properties": {"name": "48043"}, "id": "48043"}, {"arcs": [[-616, -1720, -7651, -8536, -3336, -8046]], "type": "Polygon", "properties": {"name": "45065"}, "id": "45065"}, {"arcs": [[-821, -9041, -4829, -4759, -7181, -8658, 9311]], "type": "Polygon", "properties": {"name": "45087"}, "id": "45087"}, {"arcs": [[-2414, -7895, 9312, -9293, -9176]], "type": "Polygon", "properties": {"name": "27103"}, "id": "27103"}, {"arcs": [[-314, 9313, -6146, -6170, -7375, -8413]], "type": "Polygon", "properties": {"name": "55075"}, "id": "55075"}, {"arcs": [[-1752, -6665, -8707, 9314]], "type": "Polygon", "properties": {"name": "53011"}, "id": "53011"}, {"arcs": [[-3922, -7452, -4477, -3951, -9069, -7134, 9315, -6171]], "type": "Polygon", "properties": {"name": "55099"}, "id": "55099"}, {"arcs": [[-781, -7002, -9080, -3113, -4336]], "type": "Polygon", "properties": {"name": "18103"}, "id": "18103"}, {"arcs": [[-2173, -8503, -5115, -5019, -7562, -8743]], "type": "Polygon", "properties": {"name": "20053"}, "id": "20053"}, {"arcs": [[-3959, -5126, -6815, 9316]], "type": "Polygon", "properties": {"name": "22123"}, "id": "22123"}, {"arcs": [[-435, -4869, 9317, -3670, 9318, 9319]], "type": "Polygon", "properties": {"name": "12077"}, "id": "12077"}, {"arcs": [[-5915, -9057, -6423, 9320, -9034, -8566]], "type": "Polygon", "properties": {"name": "20083"}, "id": "20083"}, {"arcs": [[-6427, -8681, -8697, -9220, -8686, 9321]], "type": "Polygon", "properties": {"name": "20119"}, "id": "20119"}, {"arcs": [[-1957, -7532, 9322, -6477, -5671, -7233]], "type": "Polygon", "properties": {"name": "21149"}, "id": "21149"}, {"arcs": [[-1059, -9286, -9098, -9086, 9323]], "type": "Polygon", "properties": {"name": "28001"}, "id": "28001"}, {"arcs": [[-2686, -7546, 9324, -4693, -5264]], "type": "Polygon", "properties": {"name": "72083"}, "id": "72083"}, {"arcs": [[-4610, -6223, -9108, -7151, -9029, -9018]], "type": "Polygon", "properties": {"name": "28057"}, "id": "28057"}, {"arcs": [[-773, -9309, -9231, -8881, -8192, 9325]], "type": "Polygon", "properties": {"name": "21073"}, "id": "21073"}, {"arcs": [[-2627, 9326, -6338, -7085]], "type": "Polygon", "properties": {"name": "23009"}, "id": "23009"}, {"arcs": [[[-6340, 9327, -8614]], [[9328]]], "type": "MultiPolygon", "properties": {"name": "23013"}, "id": "23013"}, {"arcs": [[-2111, -6579, -5469, 9329, -5681, -7619]], "type": "Polygon", "properties": {"name": "13217"}, "id": "13217"}, {"arcs": [[-5598, -9270, -9183, -8920, -8787, -9101]], "type": "Polygon", "properties": {"name": "46049"}, "id": "46049"}, {"arcs": [[-2600, -2635, 9330, -9301, 9331, -2668]], "type": "Polygon", "properties": {"name": "26061"}, "id": "26061"}, {"arcs": [[-6768, 9332, -7536, -7821]], "type": "Polygon", "properties": {"name": "30061"}, "id": "30061"}, {"arcs": [[-392, -5661, -8363, -8879, -4573, -7230, -1755]], "type": "Polygon", "properties": {"name": "47051"}, "id": "47051"}, {"arcs": [[-1060, -9324, -9085, -9110, -6302, -9111, -6940, -7170]], "type": "Polygon", "properties": {"name": "22029"}, "id": "22029"}, {"arcs": [[-301, -9014, 9333, -8084, -9015]], "type": "Polygon", "properties": {"name": "22063"}, "id": "22063"}, {"arcs": [[-373, -6089, -8317, -8123, 9334]], "type": "Polygon", "properties": {"name": "25009"}, "id": "25009"}, {"arcs": [[-2619, -4764, -3254, -6955, -8329, 9335]], "type": "Polygon", "properties": {"name": "46019"}, "id": "46019"}, {"arcs": [[-2702, 9336, 9337, 9338, 9339]], "type": "Polygon", "properties": {"name": "08035"}, "id": "08035"}, {"arcs": [[-4831, -9040, -6265, -7114, 9340, -4961]], "type": "Polygon", "properties": {"name": "45079"}, "id": "45079"}, {"arcs": [[-2032, -7477, -6999, -7785, -4095, -5555]], "type": "Polygon", "properties": {"name": "18095"}, "id": "18095"}, {"arcs": [[-3702, -7628, -5716, -7359]], "type": "Polygon", "properties": {"name": "40099"}, "id": "40099"}, {"arcs": [[-4143, 9341, 9342, -8459]], "type": "Polygon", "properties": {"name": "54009"}, "id": "54009"}, {"arcs": [[-5816, -7377, -7888, -8370, -9284, -7192]], "type": "Polygon", "properties": {"name": "54013"}, "id": "54013"}, {"arcs": [[-5980, -8297, -6015, -7252, 9343, -6202]], "type": "Polygon", "properties": {"name": "51021"}, "id": "51021"}, {"arcs": [[-627, -1187, -9289, -6681, -8099, -8923, -7928]], "type": "Polygon", "properties": {"name": "30111"}, "id": "30111"}, {"arcs": [[-642, 9344, -1810, -5975, 9345, 9346, -2703]], "type": "Polygon", "properties": {"name": "54043"}, "id": "54043"}, {"arcs": [[-2423, -4718, 9347, -7296, -6387, -3771]], "type": "Polygon", "properties": {"name": "06033"}, "id": "06033"}, {"arcs": [[-9227, 9348, 9349, -9257, -9275]], "type": "Polygon", "properties": {"name": "13131"}, "id": "13131"}, {"arcs": [[-2189, -3502, -3710, -8528, -6837, -8125]], "type": "Polygon", "properties": {"name": "08021"}, "id": "08021"}, {"arcs": [[-2756, -6049, -5648, -6462, -9001, 9350, -3280, -3298, 9351, -5294, -9128]], "type": "Polygon", "properties": {"name": "49037"}, "id": "49037"}, {"arcs": [[-3187, 9352, -6985, -5380, -8900, 9353]], "type": "Polygon", "properties": {"name": "18133"}, "id": "18133"}, {"arcs": [[-1693, -8912, -3372, 9354, 9355]], "type": "Polygon", "properties": {"name": "16047"}, "id": "16047"}, {"arcs": [[[-1921, -3354, 9356, -8584, -5948]], [[-5950, -8589, -9113]]], "type": "MultiPolygon", "properties": {"name": "47167"}, "id": "47167"}, {"arcs": [[-3965, -8086, -4848, -6304, -9109]], "type": "Polygon", "properties": {"name": "22121"}, "id": "22121"}, {"arcs": [[-4600, -5811, -9017, -7951, -8564, 9357]], "type": "Polygon", "properties": {"name": "29171"}, "id": "29171"}, {"arcs": [[-207, -2435, -3100, -8240, -4009, -8748, -603, 9358]], "type": "Polygon", "properties": {"name": "56039"}, "id": "56039"}, {"arcs": [[-3799, -5105, -5658, -8961, -9151, -4413, -5553]], "type": "Polygon", "properties": {"name": "55043"}, "id": "55043"}, {"arcs": [[-803, -8012, -3690, -2320, -9235, -2587, -3931]], "type": "Polygon", "properties": {"name": "38059"}, "id": "38059"}, {"arcs": [[-6270, -7779, 9359, -7397]], "type": "Polygon", "properties": {"name": "37041"}, "id": "37041"}, {"arcs": [[-1687, -8660, -8728, -6533, 9360, -6912]], "type": "Polygon", "properties": {"name": "37021"}, "id": "37021"}, {"arcs": [[-54, -6595, -8592, -7965, -3936, -3627]], "type": "Polygon", "properties": {"name": "06063"}, "id": "06063"}, {"arcs": [[-8248, 9361, 9362, 9363, 9364]], "type": "Polygon", "properties": {"name": "51730"}, "id": "51730"}, {"arcs": [[-2171, 9365, -9240, -5629, -8529]], "type": "Polygon", "properties": {"name": "50023"}, "id": "50023"}, {"arcs": [[-2620, -9336, -8328, -2661, -5027, -8232]], "type": "Polygon", "properties": {"name": "46093"}, "id": "46093"}, {"arcs": [[-2034, -5557, -9297, -5175, -6987, 9366, -8421]], "type": "Polygon", "properties": {"name": "18097"}, "id": "18097"}, {"arcs": [[-1621, -1634, -3960, -9317, -6814, -7491, 9367, -7492, -3711]], "type": "Polygon", "properties": {"name": "05017"}, "id": "05017"}, {"arcs": [[-2859, 9368, -6737, -6247, 9369]], "type": "Polygon", "properties": {"name": "13021"}, "id": "13021"}, {"arcs": [[-4727, -4745, -5582, 9370]], "type": "Polygon", "properties": {"name": "72059"}, "id": "72059"}, {"arcs": [[-480, -9096, -4694, -9325, -7545, -6691, -8948]], "type": "Polygon", "properties": {"name": "72131"}, "id": "72131"}, {"arcs": [[-1269, -2732, -6286, -2915, -2717, -8579, -5751]], "type": "Polygon", "properties": {"name": "05115"}, "id": "05115"}, {"arcs": [[-575, -4837, -5558, -4835, 9371, -6272, -7396, -2553, -8111, -7069]], "type": "Polygon", "properties": {"name": "51175"}, "id": "51175"}, {"arcs": [[-2667, -3484, -9164, 9372]], "type": "Polygon", "properties": {"name": "48183"}, "id": "48183"}, {"arcs": [[-5388, -8823, -9202, 9373, -6755]], "type": "Polygon", "properties": {"name": "36087"}, "id": "36087"}, {"arcs": [[-2918, -7415, -8619, -4439, -7096]], "type": "Polygon", "properties": {"name": "05089"}, "id": "05089"}, {"arcs": [[-3134, -6273, -9372, -4834, 9374, -7499, -4719]], "type": "Polygon", "properties": {"name": "51800"}, "id": "51800"}, {"arcs": [[-2882, -3648, 9375, -9339, 9376, -5161]], "type": "Polygon", "properties": {"name": "08041"}, "id": "08041"}, {"arcs": [[-926, -3161, -3782, -8775, -6876, -9208]], "type": "Polygon", "properties": {"name": "29187"}, "id": "29187"}, {"arcs": [[-2777, -6136, -8295, -9052, -6396, -8644]], "type": "Polygon", "properties": {"name": "48475"}, "id": "48475"}, {"arcs": [[-713, -2047, -2281, -6762, -6274, -3645, -5160]], "type": "Polygon", "properties": {"name": "08061"}, "id": "08061"}, {"arcs": [[-5195, -8668, -6764, -7752, -5530, -8179]], "type": "Polygon", "properties": {"name": "48487"}, "id": "48487"}, {"arcs": [[-4302, -6278, -7221, -7457, 9377]], "type": "Polygon", "properties": {"name": "41015"}, "id": "41015"}, {"arcs": [[-2142, -9340, -9376, -3647]], "type": "Polygon", "properties": {"name": "08119"}, "id": "08119"}, {"arcs": [[-4075, -4081, 9378, -7513, -4648, -8418]], "type": "Polygon", "properties": {"name": "29049"}, "id": "29049"}, {"arcs": [[-1517, -8898, -6345, -7365]], "type": "Polygon", "properties": {"name": "49051"}, "id": "49051"}, {"arcs": [[-205, 9379, -1297, -8803, -6366, -2432]], "type": "Polygon", "properties": {"name": "16029"}, "id": "16029"}, {"arcs": [[-363, -7262, -3462, -1497, -5909, -5769]], "type": "Polygon", "properties": {"name": "37157"}, "id": "37157"}, {"arcs": [[-1095, -8407, -8311, -5897, -1657]], "type": "Polygon", "properties": {"name": "05117"}, "id": "05117"}, {"arcs": [[-6475, -9008, 9380, -7489, 9381]], "type": "Polygon", "properties": {"name": "05011"}, "id": "05011"}, {"arcs": [[-3000, -6822, -3411, 9382, -3504, 9383]], "type": "Polygon", "properties": {"name": "48193"}, "id": "48193"}, {"arcs": [[-4493, -7090, -6636, 9384, -5461]], "type": "Polygon", "properties": {"name": "24011"}, "id": "24011"}, {"arcs": [[-1266, -7858, -2113, -8202, -6804]], "type": "Polygon", "properties": {"name": "27041"}, "id": "27041"}, {"arcs": [[-1511, -6651, -4012, 9385, -5243, 9386, -8321]], "type": "Polygon", "properties": {"name": "30043"}, "id": "30043"}, {"arcs": [[-1504, -6235, -8993, 9387, -6192, 9388, -6618, -6622, -3632, -6621], [-5309]], "type": "Polygon", "properties": {"name": "51059"}, "id": "51059"}, {"arcs": [[-5246, 9389, 9390, -6860, -8322, -9387]], "type": "Polygon", "properties": {"name": "30023"}, "id": "30023"}, {"arcs": [[-746, 9391, -1034, -3917, -7808, -6204]], "type": "Polygon", "properties": {"name": "47001"}, "id": "47001"}, {"arcs": [[-3430, 9392, -8518, -7956, -8031, -5876, -3813]], "type": "Polygon", "properties": {"name": "39077"}, "id": "39077"}, {"arcs": [[-6992, -8010, -8006, -8401, -8102]], "type": "Polygon", "properties": {"name": "13005"}, "id": "13005"}, {"arcs": [[-3097, 9393, -5462, -9385, -6635, -8227]], "type": "Polygon", "properties": {"name": "10001"}, "id": "10001"}, {"arcs": [[-60, -2076, -5947, -4105, -8520, 9394]], "type": "Polygon", "properties": {"name": "39173"}, "id": "39173"}, {"arcs": [[-2437, -4462, -7352, -8974, -5322]], "type": "Polygon", "properties": {"name": "13157"}, "id": "13157"}, {"arcs": [[-3342, -6457, -4026, -9265]], "type": "Polygon", "properties": {"name": "20003"}, "id": "20003"}, {"arcs": [[-1939, -7010, -3749, -9150, -2363, -8359]], "type": "Polygon", "properties": {"name": "17095"}, "id": "17095"}, {"arcs": [[-1125, -8318, -6496, -7930, -1361]], "type": "Polygon", "properties": {"name": "30107"}, "id": "30107"}, {"arcs": [[-1407, -8365, -2201, -2963, -7229]], "type": "Polygon", "properties": {"name": "47015"}, "id": "47015"}, {"arcs": [[-856, -7814, 9395, 9396, -7248]], "type": "Polygon", "properties": {"name": "23007"}, "id": "23007"}, {"arcs": [[-1954, -2611, -5676, -8760, 9397, -8998]], "type": "Polygon", "properties": {"name": "21165"}, "id": "21165"}, {"arcs": [[-2401, -5600, -9100, -3768, -6952, -5435]], "type": "Polygon", "properties": {"name": "46089"}, "id": "46089"}, {"arcs": [[-130, -7301, -6599, -3277, -4597, 9398, -2021, -3641]], "type": "Polygon", "properties": {"name": "08051"}, "id": "08051"}, {"arcs": [[[-3557, 9399, -8612, -8756, -7669]], [[9400]]], "type": "MultiPolygon", "properties": {"name": "26029"}, "id": "26029"}, {"arcs": [[-824, 9401, -8664, -2116, -2606, -8230]], "type": "Polygon", "properties": {"name": "27151"}, "id": "27151"}, {"arcs": [[-61, -9395, -8519, -9393, -3435, 9402]], "type": "Polygon", "properties": {"name": "39147"}, "id": "39147"}, {"arcs": [[-1574, -4664, -6722, -7594, -2439, -7354, -8101]], "type": "Polygon", "properties": {"name": "13267"}, "id": "13267"}, {"arcs": [[-1629, -3792, -8574, -8116, -8672]], "type": "Polygon", "properties": {"name": "48429"}, "id": "48429"}, {"arcs": [[-2573, -8095, -8477, -4385, -7978, -6545]], "type": "Polygon", "properties": {"name": "37117"}, "id": "37117"}, {"arcs": [[-3017, 9403, -6861, -9391, 9404, -7231]], "type": "Polygon", "properties": {"name": "30081"}, "id": "30081"}, {"arcs": [[-85, -8667, -1116, -8578, -7647, -1718]], "type": "Polygon", "properties": {"name": "13317"}, "id": "13317"}, {"arcs": [[-6160, -7679, -6210, -6165, 9405, -9236, -9173]], "type": "Polygon", "properties": {"name": "53043"}, "id": "53043"}, {"arcs": [[-3295, 9406, -7935, 9407, 9408]], "type": "Polygon", "properties": {"name": "06081"}, "id": "06081"}, {"arcs": [[-337, -6510, -2183, -2073, -8335, -9010]], "type": "Polygon", "properties": {"name": "39171"}, "id": "39171"}, {"arcs": [[-1189, 9409, -6760, -2279, -3193, -5964, 9410]], "type": "Polygon", "properties": {"name": "08009"}, "id": "08009"}, {"arcs": [[-6326, -6785, 9411, -6824]], "type": "Polygon", "properties": {"name": "16021"}, "id": "16021"}, {"arcs": [[-146, -1298, -9380, -204]], "type": "Polygon", "properties": {"name": "16007"}, "id": "16007"}, {"arcs": [[-2839, -9160, -7269, -5211, -9298, -9155, -3821]], "type": "Polygon", "properties": {"name": "39159"}, "id": "39159"}, {"arcs": [[-161, -8804, 9412, 9413, -8033, 9414]], "type": "Polygon", "properties": {"name": "39035"}, "id": "39035"}, {"arcs": [[-385, -2618, -6714, -6240, -5618, -1635]], "type": "Polygon", "properties": {"name": "48285"}, "id": "48285"}, {"arcs": [[-2675, -4418, -9037, -4198, -7665]], "type": "Polygon", "properties": {"name": "40105"}, "id": "40105"}, {"arcs": [[-3848, -8666, -6143, -6019]], "type": "Polygon", "properties": {"name": "13125"}, "id": "13125"}, {"arcs": [[-103, -5679, -4297, -1258, -7947, -9003, -5502]], "type": "Polygon", "properties": {"name": "41059"}, "id": "41059"}, {"arcs": [[-4159, -8832, -6519, -8233, -6402, -7079, -6970]], "type": "Polygon", "properties": {"name": "46102"}, "id": "46102"}, {"arcs": [[-1308, -9157, -6307, -7176, -9252, -3579]], "type": "Polygon", "properties": {"name": "20117"}, "id": "20117"}, {"arcs": [[-1055, 9415, -5127, -3957, -4367]], "type": "Polygon", "properties": {"name": "22065"}, "id": "22065"}, {"arcs": [[-2514, 9416, 9417, 9418, -8701, -8828]], "type": "Polygon", "properties": {"name": "30105"}, "id": "30105"}, {"arcs": [[-176, -8442, -8483, -2157, -8689, -6330]], "type": "Polygon", "properties": {"name": "13313"}, "id": "13313"}, {"arcs": [[-1071, -2045, -1226, -7913, -5563, -9304]], "type": "Polygon", "properties": {"name": "20203"}, "id": "20203"}, {"arcs": [[-513, -7065, 9419, -669, 9420, -2957, -8213, -749]], "type": "Polygon", "properties": {"name": "46023"}, "id": "46023"}, {"arcs": [[-4539, -5413, 9421, -5491, -5458, -8042]], "type": "Polygon", "properties": {"name": "31027"}, "id": "31027"}, {"arcs": [[9422, 9423, 9424]], "type": "Polygon", "properties": {"name": "53035"}, "id": "53035"}, {"arcs": [[-2354, -3290, -8973, -3328, -6260, -3685, -7964]], "type": "Polygon", "properties": {"name": "17111"}, "id": "17111"}, {"arcs": [[-625, -6500, 9425, -2512, -1181]], "type": "Polygon", "properties": {"name": "30069"}, "id": "30069"}, {"arcs": [[-558, -5000, -4901, -6848, -4650, -7512]], "type": "Polygon", "properties": {"name": "29033"}, "id": "29033"}, {"arcs": [[-3565, -9186, -3761, -7613, -8077, -5505, 9426, -9237, -9406, -6164]], "type": "Polygon", "properties": {"name": "53075"}, "id": "53075"}, {"arcs": [[-1874, -7140, -1876, -2955, -7737]], "type": "Polygon", "properties": {"name": "27147"}, "id": "27147"}, {"arcs": [[-27, -8837, -1849, -461]], "type": "Polygon", "properties": {"name": "31169"}, "id": "31169"}, {"arcs": [[-1919, 9427, 9428, 9429, -3350]], "type": "Polygon", "properties": {"name": "47033"}, "id": "47033"}, {"arcs": [[-1480, -6793, -8022, -7100, -8037]], "type": "Polygon", "properties": {"name": "19079"}, "id": "19079"}, {"arcs": [[-589, -8573, -5779, -8026, -9191, -8817]], "type": "Polygon", "properties": {"name": "39165"}, "id": "39165"}, {"arcs": [[-330, -7023, -3495, -5353, -3844, -600, -5683, 9430]], "type": "Polygon", "properties": {"name": "13255"}, "id": "13255"}, {"arcs": [[-7294, 9431, -9181, -8953, -8561]], "type": "Polygon", "properties": {"name": "34019"}, "id": "34019"}, {"arcs": [[-211, -8229, -7106, -6455, 9432, 9433, -5315]], "type": "Polygon", "properties": {"name": "29217"}, "id": "29217"}, {"arcs": [[-3188, -9354, -8899, -5856, -3615, -7343]], "type": "Polygon", "properties": {"name": "18121"}, "id": "18121"}, {"arcs": [[-6792, -8996, -8698, -8023]], "type": "Polygon", "properties": {"name": "19069"}, "id": "19069"}, {"arcs": [[-331, -9431, -5682, -9330, -5468, 9434]], "type": "Polygon", "properties": {"name": "13035"}, "id": "13035"}, {"arcs": [[-5162, -9377, -9338, 9435]], "type": "Polygon", "properties": {"name": "08039"}, "id": "08039"}, {"arcs": [[-5043, 9436, -7144]], "type": "Polygon", "properties": {"name": "44001"}, "id": "44001"}, {"arcs": [[-1702, -3505, -9383, -3410, -9196, -4287, -9031]], "type": "Polygon", "properties": {"name": "48035"}, "id": "48035"}, {"arcs": [[-5042, 9437]], "type": "Polygon", "properties": {"name": "44005"}, "id": "44005"}, {"arcs": [[-3539, -9300, 9438, -7349, -4655]], "type": "Polygon", "properties": {"name": "39045"}, "id": "39045"}, {"arcs": [[-2895, -9288, -8810, -3386, -5053, -4333, -4535]], "type": "Polygon", "properties": {"name": "38069"}, "id": "38069"}, {"arcs": [[-1860, -4635, -5554, -5250, -7446, -9050]], "type": "Polygon", "properties": {"name": "17015"}, "id": "17015"}, {"arcs": [[-7405, 9439]], "type": "Polygon", "properties": {"name": "27125"}, "id": "27125"}, {"arcs": [[-521, -8134, -4406, -3524, -8327, -4838]], "type": "Polygon", "properties": {"name": "41031"}, "id": "41031"}, {"arcs": [[-6782, -8071, -8891, -7606, -7057]], "type": "Polygon", "properties": {"name": "47021"}, "id": "47021"}, {"arcs": [[-565, -8043, -5456, -8258, 9440, -8129, -8768]], "type": "Polygon", "properties": {"name": "46127"}, "id": "46127"}, {"arcs": [[-4790, -8120, -6252, 9441, -6110, 9442]], "type": "Polygon", "properties": {"name": "01051"}, "id": "01051"}, {"arcs": [[-3057, -6140, -4466, -5890, 9443]], "type": "Polygon", "properties": {"name": "13187"}, "id": "13187"}, {"arcs": [[-3815, -5880, -8907, 9444, 9445, -5208, -6856]], "type": "Polygon", "properties": {"name": "39083"}, "id": "39083"}, {"arcs": [[-3060, -8699, -3680, -3473]], "type": "Polygon", "properties": {"name": "19017"}, "id": "19017"}, {"arcs": [[-584, -9217, -4224, -1637, -5617]], "type": "Polygon", "properties": {"name": "48175"}, "id": "48175"}, {"arcs": [[-6375, 9446, -9361, -6532, -7472]], "type": "Polygon", "properties": {"name": "37089"}, "id": "37089"}, {"arcs": [[-3049, -8941, -9307, 9447, -8250]], "type": "Polygon", "properties": {"name": "12061"}, "id": "12061"}, {"arcs": [[-2772, -6663, -3759, -6877, -5224, -9139, -8512]], "type": "Polygon", "properties": {"name": "48393"}, "id": "48393"}, {"arcs": [[-247, 9448, -620, -9044, -9048]], "type": "Polygon", "properties": {"name": "31049"}, "id": "31049"}, {"arcs": [[-288, -997, -8930, -8781, -8252, -6095]], "type": "Polygon", "properties": {"name": "36051"}, "id": "36051"}, {"arcs": [[-8406, 9449, -8908, -8783]], "type": "Polygon", "properties": {"name": "19141"}, "id": "19141"}, {"arcs": [[-1627, -7869, -2742, 9450, -7420, -3788]], "type": "Polygon", "properties": {"name": "48059"}, "id": "48059"}, {"arcs": [[-3164, -7701, -7313, -7692]], "type": "Polygon", "properties": {"name": "48379"}, "id": "48379"}, {"arcs": [[-3190, -9305, -8683, -5583]], "type": "Polygon", "properties": {"name": "20067"}, "id": "20067"}, {"arcs": [[-4799, -8986, -6238, -7838, -7864, -7539]], "type": "Polygon", "properties": {"name": "51105"}, "id": "51105"}, {"arcs": [[-182, -5084, -8345, -4050, -192, -5739, -7686]], "type": "Polygon", "properties": {"name": "35051"}, "id": "35051"}, {"arcs": [[-3149, -7493, -9368, -7490, -9381, -9007]], "type": "Polygon", "properties": {"name": "05043"}, "id": "05043"}, {"arcs": [[-1559, -2382, -5612, -6974, -9049, -9042]], "type": "Polygon", "properties": {"name": "31123"}, "id": "31123"}, {"arcs": [[-125, 9451, -8904, 9452, -7207, 9453]], "type": "Polygon", "properties": {"name": "29015"}, "id": "29015"}, {"arcs": [[-1152, -8731, 9454, -8726, -7579]], "type": "Polygon", "properties": {"name": "05109"}, "id": "05109"}, {"arcs": [[-2016, -9399, -4596, -3281, 9455, -4643]], "type": "Polygon", "properties": {"name": "08077"}, "id": "08077"}, {"arcs": [[-1775, -9162, -8796, -7147, -6798, -3158]], "type": "Polygon", "properties": {"name": "29065"}, "id": "29065"}, {"arcs": [[-1317, -2260, -5395, -6203, -9344, -7251]], "type": "Polygon", "properties": {"name": "51185"}, "id": "51185"}, {"arcs": [[-645, -6284, -940, -7471, 9456]], "type": "Polygon", "properties": {"name": "42103"}, "id": "42103"}, {"arcs": [[-936, -5714, -5847, -4138, -8141, -8451]], "type": "Polygon", "properties": {"name": "42115"}, "id": "42115"}, {"arcs": [[-4624, -6903, -8446, 9457, -8366, -5108, -8662]], "type": "Polygon", "properties": {"name": "48343"}, "id": "48343"}, {"arcs": [[-115, -9153, 9458, -7502, -1371, -3364, 9459, -9342, -4142]], "type": "Polygon", "properties": {"name": "42125"}, "id": "42125"}, {"arcs": [[-2170, -9273, -4524, -5170, -2240, -9241, -9366]], "type": "Polygon", "properties": {"name": "50001"}, "id": "50001"}, {"arcs": [[-4078, -5919, -4341, -5668, -8373, -4683]], "type": "Polygon", "properties": {"name": "20103"}, "id": "20103"}, {"arcs": [[-1253, -8093, -3324, 9460, -6054]], "type": "Polygon", "properties": {"name": "26121"}, "id": "26121"}, {"arcs": [[-4369, -6842, 9461, -5518, -7311, -8087]], "type": "Polygon", "properties": {"name": "28049"}, "id": "28049"}, {"arcs": [[-1140, -6871, -9210, -3001, -9384, -3503]], "type": "Polygon", "properties": {"name": "48281"}, "id": "48281"}, {"arcs": [[-4859, -8076, -6188, -9280, -5065, -6619, -9389, -6191]], "type": "Polygon", "properties": {"name": "51107"}, "id": "51107"}, {"arcs": [[-126, -9454, -7206, -7366, -5316, -9434, 9462]], "type": "Polygon", "properties": {"name": "29185"}, "id": "29185"}, {"arcs": [[-938, -8453, -9149, -2930, -8448, -3855, -1201, -7469]], "type": "Polygon", "properties": {"name": "36025"}, "id": "36025"}, {"arcs": [[-2513, -9426, -6499, -8291, 9463, -9417]], "type": "Polygon", "properties": {"name": "30071"}, "id": "30071"}, {"arcs": [[-776, -4601, -9358, -8563, -3314, -2798]], "type": "Polygon", "properties": {"name": "29129"}, "id": "29129"}, {"arcs": [[-4353, 9464, -9424, 9465, 9466, 9467, -8648]], "type": "Polygon", "properties": {"name": "53045"}, "id": "53045"}, {"arcs": [[-1037, -4387, -8478, -6855, -7932]], "type": "Polygon", "properties": {"name": "37127"}, "id": "37127"}, {"arcs": [[-224, 9468, -6757, -242, -8620, -240, -3107, 9469]], "type": "Polygon", "properties": {"name": "51199"}, "id": "51199"}, {"arcs": [[-124, -885, -6849, -4899, -8412, -8905, -9452]], "type": "Polygon", "properties": {"name": "29159"}, "id": "29159"}, {"arcs": [[-3016, -7537, -9333, -6767, -9203, -5573, -8323, -6858, -9404]], "type": "Polygon", "properties": {"name": "30063"}, "id": "30063"}, {"arcs": [[-2725, -9195, -9038, -4416, -7702]], "type": "Polygon", "properties": {"name": "20019"}, "id": "20019"}, {"arcs": [[-2662, -9373, -9163, -7699, -8367, -9458, -8445]], "type": "Polygon", "properties": {"name": "48459"}, "id": "48459"}, {"arcs": [[-310, 9470, -3858, -4309, -2119, -4856]], "type": "Polygon", "properties": {"name": "51047"}, "id": "51047"}, {"arcs": [[-272, -8632, -9053, -7881, -9165, -2291]], "type": "Polygon", "properties": {"name": "40061"}, "id": "40061"}, {"arcs": [[-3363, -8985, -8460, -9343, -9460]], "type": "Polygon", "properties": {"name": "54069"}, "id": "54069"}, {"arcs": [[-965, -9281, -8651, 9471, -5110]], "type": "Polygon", "properties": {"name": "54065"}, "id": "54065"}, {"arcs": [[-4034, -8067, -7319, -8626, -4739, -7509, -8628], [-5568]], "type": "Polygon", "properties": {"name": "51165"}, "id": "51165"}, {"arcs": [[-763, -784, -8310, -8874, -785]], "type": "Polygon", "properties": {"name": "18183"}, "id": "18183"}, {"arcs": [[-1153, -7591, -3939, -4673, -7056, -7458, -7219, -1549]], "type": "Polygon", "properties": {"name": "06093"}, "id": "06093"}, {"arcs": [[-1972, -9271, -5596, 9472, -7443, 9473, -7021]], "type": "Polygon", "properties": {"name": "46037"}, "id": "46037"}, {"arcs": [[-3969, 9474, -3971, -6810, -8018, -8020]], "type": "Polygon", "properties": {"name": "22071"}, "id": "22071"}, {"arcs": [[-3076, 9475, -4270, -6312, -6598, 9476]], "type": "Polygon", "properties": {"name": "01073"}, "id": "01073"}, {"arcs": [[-2546, -4613, -5145, -6539, -4271, -9476, -3075]], "type": "Polygon", "properties": {"name": "01127"}, "id": "01127"}, {"arcs": [[-4080, -4374, -7916, -9133, -7514, -9379]], "type": "Polygon", "properties": {"name": "29063"}, "id": "29063"}, {"arcs": [[-9117, -9135, -9258, -9350, 9477, -9319]], "type": "Polygon", "properties": {"name": "12039"}, "id": "12039"}, {"arcs": [[-179, -8691, -275, -5662, -390]], "type": "Polygon", "properties": {"name": "13083"}, "id": "13083"}, {"arcs": [[-2791, -9114, -8587, -8678, -6943]], "type": "Polygon", "properties": {"name": "28033"}, "id": "28033"}, {"arcs": [[-2122, -8629, -7507, 9478, -8074, -4857]], "type": "Polygon", "properties": {"name": "51187"}, "id": "51187"}, {"arcs": [[-762, -4904, -6254, -4266]], "type": "Polygon", "properties": {"name": "17047"}, "id": "17047"}, {"arcs": [[-3351, -9430, 9479, -5372, -9218, -4233, -5277]], "type": "Polygon", "properties": {"name": "47113"}, "id": "47113"}, {"arcs": [[9480]], "type": "Polygon", "properties": {"name": "69110"}, "id": "69110"}, {"arcs": [[-72, -7584, -1304, -8673, -7052, -2551, -8119]], "type": "Polygon", "properties": {"name": "01111"}, "id": "01111"}, {"arcs": [[-3626, -4061, -4616, -8983, -5864]], "type": "Polygon", "properties": {"name": "37009"}, "id": "37009"}, {"arcs": [[-1291, -5295, -9352, -3297]], "type": "Polygon", "properties": {"name": "08033"}, "id": "08033"}, {"arcs": [[-3638, -7350, -9439, -9299, -5209, -9446, 9481]], "type": "Polygon", "properties": {"name": "39089"}, "id": "39089"}, {"arcs": [[-6195, -6620]], "type": "Polygon", "properties": {"name": "51683"}, "id": "51683"}, {"arcs": [[-264, -5259, -5093, -5330, -6476, -9382, -7488]], "type": "Polygon", "properties": {"name": "05139"}, "id": "05139"}, {"arcs": [[-502, -8609, -8423, -1941, -8360, -6880]], "type": "Polygon", "properties": {"name": "17071"}, "id": "17071"}, {"arcs": [[-4660, -6111, -9442, -6251, -6071, -5036, -8390]], "type": "Polygon", "properties": {"name": "01101"}, "id": "01101"}, {"arcs": [[-2701, -3246, -5710, -9158, -5163, -9436, -9337]], "type": "Polygon", "properties": {"name": "08005"}, "id": "08005"}, {"arcs": [[-5969, -8767, 9482, -6935, -6703, 9483]], "type": "Polygon", "properties": {"name": "21155"}, "id": "21155"}, {"arcs": [[-5989, 9484, -7407, -6156, -7464]], "type": "Polygon", "properties": {"name": "53057"}, "id": "53057"}, {"arcs": [[-121, -8105, -3660, -5147, -6689, -7818]], "type": "Polygon", "properties": {"name": "28067"}, "id": "28067"}, {"arcs": [[-93, -6926, -8542, -2344, -7903, -7968]], "type": "Polygon", "properties": {"name": "55021"}, "id": "55021"}, {"arcs": [[-8059, 9485, -8549, 9486, -8167]], "type": "Polygon", "properties": {"name": "37019"}, "id": "37019"}, {"arcs": [[-1763, -3907, -9200, 9487, -7403, -4479]], "type": "Polygon", "properties": {"name": "27029"}, "id": "27029"}, {"arcs": [[-8048, 9488]], "type": "Polygon", "properties": {"name": "51131"}, "id": "51131"}, {"arcs": [[-873, -7564, -8610, -1378, -1616, -5933]], "type": "Polygon", "properties": {"name": "20163"}, "id": "20163"}, {"arcs": [[-2372, -2572, -4880, -4092, -9259]], "type": "Polygon", "properties": {"name": "18041"}, "id": "18041"}, {"arcs": [[-2520, -8694, -9262, -6967, 9489]], "type": "Polygon", "properties": {"name": "31079"}, "id": "31079"}, {"arcs": [[-2521, -9490, -6966, -4099, -8887, -8989]], "type": "Polygon", "properties": {"name": "31081"}, "id": "31081"}, {"arcs": [[-880, -5131, -3661, -7919, -1026, -6007]], "type": "Polygon", "properties": {"name": "31115"}, "id": "31115"}, {"arcs": [[-5286, -6432, -8703, 9490, 9491]], "type": "Polygon", "properties": {"name": "30091"}, "id": "30091"}, {"arcs": [[-3089, -6468, -6899, -6420, -6220, -9255, -6005]], "type": "Polygon", "properties": {"name": "31063"}, "id": "31063"}, {"arcs": [[-1437, -6490, -9103, 9492]], "type": "Polygon", "properties": {"name": "72089"}, "id": "72089"}, {"arcs": [[-1386, -3077, -9477, -6597, 9493, -1388]], "type": "Polygon", "properties": {"name": "01007"}, "id": "01007"}, {"arcs": [[-1145, -5139, -6415, -5296, -4565]], "type": "Polygon", "properties": {"name": "28075"}, "id": "28075"}, {"arcs": [[-823, 9494, -7441, -7616, -8665, -9402]], "type": "Polygon", "properties": {"name": "27011"}, "id": "27011"}, {"arcs": [[-2952, -8383, -9045, -3225, -9294, -9313, -7894]], "type": "Polygon", "properties": {"name": "27013"}, "id": "27013"}, {"arcs": [[-228, -8627, -7317, -6800]], "type": "Polygon", "properties": {"name": "51091"}, "id": "51091"}, {"arcs": [[-307, 9495, -1218, -9296, -3859, -9471, -309, -9071]], "type": "Polygon", "properties": {"name": "51177"}, "id": "51177"}, {"arcs": [[-6522, 9496, -7889, -7019, -8121]], "type": "Polygon", "properties": {"name": "33017"}, "id": "33017"}, {"arcs": [[-730, -6138, -9370, -6246, -5417, -7976, -7854]], "type": "Polygon", "properties": {"name": "13153"}, "id": "13153"}, {"arcs": [[-312, -532, -1230, -1199, 9497]], "type": "Polygon", "properties": {"name": "26041"}, "id": "26041"}, {"arcs": [[-270, -6865, -6772, -1272, -4191, -8630]], "type": "Polygon", "properties": {"name": "05131"}, "id": "05131"}, {"arcs": [[-4047, 9498, -9408, -7934, -6631]], "type": "Polygon", "properties": {"name": "06087"}, "id": "06087"}, {"arcs": [[-2441, -7597, 9499, 9500, -7355]], "type": "Polygon", "properties": {"name": "13191"}, "id": "13191"}, {"arcs": [[-332, -9435, -5467, -6738, -9369, -2858, -2416]], "type": "Polygon", "properties": {"name": "13207"}, "id": "13207"}, {"arcs": [[-4843, -7852, 9501, 9502, -5953, -4892, -8156, -7032]], "type": "Polygon", "properties": {"name": "29069"}, "id": "29069"}, {"arcs": [[-3758, -8959, -7588, -6711, -6878]], "type": "Polygon", "properties": {"name": "48483"}, "id": "48483"}, {"arcs": [[-4464, -6742, -8148, -9234, -5891]], "type": "Polygon", "properties": {"name": "13117"}, "id": "13117"}, {"arcs": [[-582, -3607, -8350, 9503, -8355, 9504, -8352, 9505, -8710, -9216]], "type": "Polygon", "properties": {"name": "48409"}, "id": "48409"}, {"arcs": [[-2762, -7007, -5548, -7849, -7227]], "type": "Polygon", "properties": {"name": "28147"}, "id": "28147"}, {"arcs": [[-4281, -8151, -5471, -9130, -9154, -4628]], "type": "Polygon", "properties": {"name": "29137"}, "id": "29137"}, {"arcs": [[-459, -9066, -6957, -8490, -7710]], "type": "Polygon", "properties": {"name": "26073"}, "id": "26073"}, {"arcs": [[-3003, 9506, -8737, -9138, -5222, -4702]], "type": "Polygon", "properties": {"name": "48341"}, "id": "48341"}, {"arcs": [[-4962, -9341, -7113, -8922, -7131]], "type": "Polygon", "properties": {"name": "45017"}, "id": "45017"}, {"arcs": [[-208, -9359, -610, -4729]], "type": "Polygon", "properties": {"name": "56035"}, "id": "56035"}, {"arcs": [[-2970, -7330, -8201, -9000, 9507, 9508]], "type": "Polygon", "properties": {"name": "21069"}, "id": "21069"}, {"arcs": [[-979, -6037, -8260, -7137, -7183, -8979]], "type": "Polygon", "properties": {"name": "55019"}, "id": "55019"}, {"arcs": [[-822, -9312, -8657, -5055, -7925, -8635, -8762]], "type": "Polygon", "properties": {"name": "45091"}, "id": "45091"}, {"arcs": [[-791, -3490, 9509, -8487, -1791]], "type": "Polygon", "properties": {"name": "18001"}, "id": "18001"}, {"arcs": [[-4850, -8085, -9334, -9013, -6591, -7427]], "type": "Polygon", "properties": {"name": "22005"}, "id": "22005"}, {"arcs": [[-1993, -8389, -9215, -4403, -9185, -5614]], "type": "Polygon", "properties": {"name": "42119"}, "id": "42119"}, {"arcs": [[-3461, -5377, -6411, 9510, -7379, 9511, -9364, 9512, -9362, -8247, -8341, -3542, -5378]], "type": "Polygon", "properties": {"name": "51041"}, "id": "51041"}, {"arcs": [[-3237, -5275, -5937, -3737, -3941]], "type": "Polygon", "properties": {"name": "22001"}, "id": "22001"}, {"arcs": [[-2995, -6060, -7308, -8724, 9513, -4889]], "type": "Polygon", "properties": {"name": "42039"}, "id": "42039"}, {"arcs": [[-1476, -7747, -8643, -6379, 9514]], "type": "Polygon", "properties": {"name": "46123"}, "id": "46123"}, {"arcs": [[-1052, -8997, -5218, -3509, -7874]], "type": "Polygon", "properties": {"name": "19077"}, "id": "19077"}, {"arcs": [[-1506, -7042, -8692, -6445, -9193, -9122]], "type": "Polygon", "properties": {"name": "19183"}, "id": "19183"}, {"arcs": [[-2211, -5157, -7863, -8214, -2212, -6536, -3881]], "type": "Polygon", "properties": {"name": "46111"}, "id": "46111"}, {"arcs": [[-477, -8625, -7626, -9148, -7416, -2689]], "type": "Polygon", "properties": {"name": "40051"}, "id": "40051"}, {"arcs": [[-641, -3370, -7378, -5819, -5984, -9072, -1806, -9345]], "type": "Polygon", "properties": {"name": "54039"}, "id": "54039"}, {"arcs": [[-834, -7498, -6746, -918]], "type": "Polygon", "properties": {"name": "55109"}, "id": "55109"}, {"arcs": [[-293, -2206, -3010, -4890, -9514, -8723]], "type": "Polygon", "properties": {"name": "42121"}, "id": "42121"}, {"arcs": [[-696, -6183, -3840, 9515, -9413]], "type": "Polygon", "properties": {"name": "39153"}, "id": "39153"}, {"arcs": [[-324, -7356, -9501, 9516, -6123]], "type": "Polygon", "properties": {"name": "13127"}, "id": "13127"}, {"arcs": [[-706, 9517, 9518, -4508, -810, -9121, -4276]], "type": "Polygon", "properties": {"name": "48479"}, "id": "48479"}, {"arcs": [[-539, -1828, -5114, -2932, -7979]], "type": "Polygon", "properties": {"name": "37123"}, "id": "37123"}, {"arcs": [[-2625, -7088, -8522, 9519, 9520]], "type": "Polygon", "properties": {"name": "23003"}, "id": "23003"}, {"arcs": [[-2308, -5550, -7006, -5358, -6687]], "type": "Polygon", "properties": {"name": "28065"}, "id": "28065"}, {"arcs": [[-1004, 9521, -9105, -2275, -6699, -5958, -6324, -7519]], "type": "Polygon", "properties": {"name": "18175"}, "id": "18175"}, {"arcs": [[-3592, -3854, -9169, 9522, -6868, 9523, -5477]], "type": "Polygon", "properties": {"name": "48031"}, "id": "48031"}, {"arcs": [[-2558, -5446, 9524, -4454, -8952, -8244, -8109]], "type": "Polygon", "properties": {"name": "51025"}, "id": "51025"}, {"arcs": [[-1918, -5955, 9525, -2976, -8063, 9526, -9428]], "type": "Polygon", "properties": {"name": "47045"}, "id": "47045"}, {"arcs": [[-5373, -9480, -9429, -9527, -8062, -8925]], "type": "Polygon", "properties": {"name": "47053"}, "id": "47053"}, {"arcs": [[-577, -7072, -8249, -9365, -9512, -7380, -9511, -6410]], "type": "Polygon", "properties": {"name": "51149"}, "id": "51149"}, {"arcs": [[-1089, -7731, -3949, -8157, -4896, -6886]], "type": "Polygon", "properties": {"name": "05075"}, "id": "05075"}, {"arcs": [[-3384, -4638, -5099, -6862, -5050]], "type": "Polygon", "properties": {"name": "38027"}, "id": "38027"}, {"arcs": [[[-989, 9527, 9528, -8131, -6021]], [[-9423, 9529, -9466]]], "type": "MultiPolygon", "properties": {"name": "53053"}, "id": "53053"}, {"arcs": [[-1694, -9356, 9530, -3231, -5513]], "type": "Polygon", "properties": {"name": "16063"}, "id": "16063"}, {"arcs": [[-632, -9197, -4809, -6196, -1834, -8045, -6525]], "type": "Polygon", "properties": {"name": "42071"}, "id": "42071"}, {"arcs": [[-92, -3156, -7777, -981, -8980, -6927]], "type": "Polygon", "properties": {"name": "55057"}, "id": "55057"}, {"arcs": [[-403, -9277, -1035, -9392, -745, -9264, -9295]], "type": "Polygon", "properties": {"name": "47151"}, "id": "47151"}, {"arcs": [[-805, -3935, -6951, -3766, -5344, -2658, -8330, -5684]], "type": "Polygon", "properties": {"name": "46031"}, "id": "46031"}, {"arcs": [[-673, -1477, -9515, -6378, -9421]], "type": "Polygon", "properties": {"name": "46053"}, "id": "46053"}, {"arcs": [[-1040, -5405, 9531, -5444]], "type": "Polygon", "properties": {"name": "37181"}, "id": "37181"}, {"arcs": [[-1818, 9532, -7530, -9081, -8208, -7988]], "type": "Polygon", "properties": {"name": "21033"}, "id": "21033"}, {"arcs": [[-3599, -8890, -5423, -4709, -7130]], "type": "Polygon", "properties": {"name": "45011"}, "id": "45011"}, {"arcs": [[-5370, -9291, -7496, -5607, -7841, -9219]], "type": "Polygon", "properties": {"name": "47039"}, "id": "47039"}, {"arcs": [[-1793, -8489, -7786, -6997]], "type": "Polygon", "properties": {"name": "18009"}, "id": "18009"}, {"arcs": [[-279, -1175, -8504, -6309, -4268, -3908]], "type": "Polygon", "properties": {"name": "01055"}, "id": "01055"}, {"arcs": [[-3232, -9531, -9355, -3371]], "type": "Polygon", "properties": {"name": "16025"}, "id": "16025"}, {"arcs": [[-1397, -8871, -8501, -2177, -9064, 9533, -8791]], "type": "Polygon", "properties": {"name": "20155"}, "id": "20155"}, {"arcs": [[-2787, -7605, -8965, -5940, -3548, 9534]], "type": "Polygon", "properties": {"name": "47119"}, "id": "47119"}, {"arcs": [[-1563, -7611, -7922, -9170, -6684, -2379]], "type": "Polygon", "properties": {"name": "56015"}, "id": "56015"}, {"arcs": [[-6172, -9316, -7133, -8259, -7450]], "type": "Polygon", "properties": {"name": "55107"}, "id": "55107"}, {"arcs": [[-2351, -8155, -7900, -4881, -3529, -7870]], "type": "Polygon", "properties": {"name": "55133"}, "id": "55133"}, {"arcs": [[-4002, -9251, -8285, -6700, -8196, -5757]], "type": "Polygon", "properties": {"name": "21079"}, "id": "21079"}, {"arcs": [[-375, 9535, 9536, -5039, -7143, -2834, -6087]], "type": "Polygon", "properties": {"name": "25021"}, "id": "25021"}, {"arcs": [[-3186, -8422, -9367, -6986, -9353]], "type": "Polygon", "properties": {"name": "18063"}, "id": "18063"}, {"arcs": [[-2510, -5571, -5431, -9209, -7245, -7285]], "type": "Polygon", "properties": {"name": "17077"}, "id": "17077"}, {"arcs": [[-2236, -7845, -8551, 9537, -7940, -2979]], "type": "Polygon", "properties": {"name": "45043"}, "id": "45043"}, {"arcs": [[-3692, -8011, -5687, -5119]], "type": "Polygon", "properties": {"name": "38041"}, "id": "38041"}, {"arcs": [[-4644, -9456, -9351, -7676, -8892]], "type": "Polygon", "properties": {"name": "49019"}, "id": "49019"}, {"arcs": [[-3041, -6347, -8897, -9146, -4908, -7189, -3356]], "type": "Polygon", "properties": {"name": "49045"}, "id": "49045"}, {"arcs": [[-223, 9538, -6758, -9469]], "type": "Polygon", "properties": {"name": "51650"}, "id": "51650"}, {"arcs": [[-4364, -7455, -9127, -6039, -6386]], "type": "Polygon", "properties": {"name": "55011"}, "id": "55011"}, {"arcs": [[-4737, -5111, -9472, -8650, -8075, -9479, -7506], [-6907]], "type": "Polygon", "properties": {"name": "51069"}, "id": "51069"}, {"arcs": [[-4973, -7194, -9285, -7883, -5400, -8795]], "type": "Polygon", "properties": {"name": "54041"}, "id": "54041"}, {"arcs": [[-2023, -4220, -7406, -9440, -7404, -9488, -9199, -4108, -4458]], "type": "Polygon", "properties": {"name": "27119"}, "id": "27119"}, {"arcs": [[-3045, -7142, -4818, -7691, -9178, -9292]], "type": "Polygon", "properties": {"name": "27127"}, "id": "27127"}, {"arcs": [[-1812, -8679, -8585, -9357, -3353, -5276]], "type": "Polygon", "properties": {"name": "47047"}, "id": "47047"}, {"arcs": [[9539]], "type": "Polygon", "properties": {"name": "60040"}, "id": "60040"}, {"arcs": [[-8015, -9247, -9011]], "type": "Polygon", "properties": {"name": "22089"}, "id": "22089"}, {"arcs": [[-4894, -5952, -9112, -6584, -6887]], "type": "Polygon", "properties": {"name": "05111"}, "id": "05111"}, {"arcs": [[-3671, -9318, -4868, 9540, -7338]], "type": "Polygon", "properties": {"name": "12045"}, "id": "12045"}, {"arcs": [[-3215, -8385, -3726, -7067, -7835]], "type": "Polygon", "properties": {"name": "47063"}, "id": "47063"}, {"arcs": [[-1389, -9494, -6596, -4791, -9443, -6109, -6821]], "type": "Polygon", "properties": {"name": "01021"}, "id": "01021"}, {"arcs": [[-260, -344, -8480, -3067, -7974, -7082, 9541]], "type": "Polygon", "properties": {"name": "48351"}, "id": "48351"}, {"arcs": [[-5179, -7202, -9131, -5873]], "type": "Polygon", "properties": {"name": "48219"}, "id": "48219"}, {"arcs": [[-3421, -6740, -9187, -3850, -6018]], "type": "Polygon", "properties": {"name": "13009"}, "id": "13009"}, {"arcs": [[-5500, -8082, -7361, -6913, -9447, -6374]], "type": "Polygon", "properties": {"name": "37175"}, "id": "37175"}, {"arcs": [[-3464, -5214, -8717, -4062, -3624, -5872, -6623, -4163]], "type": "Polygon", "properties": {"name": "37171"}, "id": "37171"}, {"arcs": [[-5034, -7911, -7763, 9542, -8391]], "type": "Polygon", "properties": {"name": "01031"}, "id": "01031"}, {"arcs": [[-2841, -3825, -4701, -5338, -8739]], "type": "Polygon", "properties": {"name": "39149"}, "id": "39149"}, {"arcs": [[-1085, -7265, -8978, -5010, -7819]], "type": "Polygon", "properties": {"name": "16027"}, "id": "16027"}, {"arcs": [[-8702, -9419, 9543, -9491]], "type": "Polygon", "properties": {"name": "30019"}, "id": "30019"}, {"arcs": [[-436, -9320, -9478, -9349, -9226, -7566]], "type": "Polygon", "properties": {"name": "12073"}, "id": "12073"}, {"arcs": [[-2039, -7879, -6293, -8449, -5720]], "type": "Polygon", "properties": {"name": "40119"}, "id": "40119"}, {"arcs": [[-437, -8305, -4020, -9104, -1725, -8392, -9543, -7762]], "type": "Polygon", "properties": {"name": "01039"}, "id": "01039"}, {"arcs": [[-1008, -9250, -4873, -9308, -9106, -9522]], "type": "Polygon", "properties": {"name": "18093"}, "id": "18093"}, {"arcs": [[-6428, -9322, -8685, -9035, -9321]], "type": "Polygon", "properties": {"name": "20069"}, "id": "20069"}, {"arcs": [[-1341, -5970, -9484, -6702, -8288, -8473, 9544]], "type": "Polygon", "properties": {"name": "21045"}, "id": "21045"}, {"arcs": [[-1344, -8509, -5761, -9260, -8283, -2566]], "type": "Polygon", "properties": {"name": "21169"}, "id": "21169"}, {"arcs": [[-55, -8510, -1342, -9545, -8472, -400]], "type": "Polygon", "properties": {"name": "21207"}, "id": "21207"}, {"arcs": [[-261, -9542, -7081, -8918, -3234]], "type": "Polygon", "properties": {"name": "22011"}, "id": "22011"}, {"arcs": [[-6336, -7249, -9397, 9545, -9520, -8521, -7086]], "type": "Polygon", "properties": {"name": "23025"}, "id": "23025"}, {"arcs": [[-1190, -9411, -5963, -9140, -8735, -7658]], "type": "Polygon", "properties": {"name": "40025"}, "id": "40025"}, {"arcs": [[-658, -7520, -6322, -9068, -8933]], "type": "Polygon", "properties": {"name": "21163"}, "id": "21163"}, {"arcs": [[-6818, -9278, -9229, -6936, -9483, -8766, -9067]], "type": "Polygon", "properties": {"name": "21179"}, "id": "21179"}, {"arcs": [[-774, -9326, -8191, -9020, -1349, -5965]], "type": "Polygon", "properties": {"name": "21187"}, "id": "21187"}, {"arcs": [[-2977, -9526, -5954, -9503, 9546]], "type": "Polygon", "properties": {"name": "29155"}, "id": "29155"}, {"arcs": [[-1842, -5837, -5438, -6969, -9261]], "type": "Polygon", "properties": {"name": "31125"}, "id": "31125"}, {"arcs": [[-5188, -6150, -7872]], "type": "Polygon", "properties": {"name": "55078"}, "id": "55078"}, {"arcs": [[-2665, -7744, -7639, -6795, -3479]], "type": "Polygon", "properties": {"name": "48365"}, "id": "48365"}, {"arcs": [[-8759, 9547, -9508, -8999, -9398]], "type": "Polygon", "properties": {"name": "21011"}, "id": "21011"}, {"arcs": [[-2010, -8387, -6032, -8149, -3173]], "type": "Polygon", "properties": {"name": "48001"}, "id": "48001"}, {"arcs": [[-306, -9172, -2229, -1734, -4221, -1219, -9496]], "type": "Polygon", "properties": {"name": "51033"}, "id": "51033"}, {"arcs": [[-8126, -9441, -8257, -9137, -9450]], "type": "Polygon", "properties": {"name": "19167"}, "id": "19167"}, {"arcs": [[-4717, -7967, -8591, -7297, -9348]], "type": "Polygon", "properties": {"name": "06021"}, "id": "06021"}, {"arcs": [[-4181, -7963, -8532]], "type": "Polygon", "properties": {"name": "29510"}, "id": "29510"}, {"arcs": [[-3058, -9444, -5889, 9548, -8485, -9046, -7707]], "type": "Polygon", "properties": {"name": "13111"}, "id": "13111"}, {"arcs": [[-828, -1548, -7022, -9474, -7442, -9495]], "type": "Polygon", "properties": {"name": "46051"}, "id": "46051"}, {"arcs": [[-1766, -7444, -9473, -5595]], "type": "Polygon", "properties": {"name": "46091"}, "id": "46091"}, {"arcs": [[-988, -8649, -9468, 9549, -9528]], "type": "Polygon", "properties": {"name": "53067"}, "id": "53067"}, {"arcs": [[-670, -9420, -7064, -5492, -9422, -5412, -6563, -876]], "type": "Polygon", "properties": {"name": "31107"}, "id": "31107"}, {"arcs": [[-4517, -9274, -8160, -5736]], "type": "Polygon", "properties": {"name": "35061"}, "id": "35061"}, {"arcs": [[-2516, -8830, -9065, -7683, -8784, -7436]], "type": "Polygon", "properties": {"name": "30079"}, "id": "30079"}, {"arcs": [[-3153, -5659, -5103, -7371, 9550]], "type": "Polygon", "properties": {"name": "19005"}, "id": "19005"}, {"arcs": [[-1241, -5784, 9551]], "type": "Polygon", "properties": {"name": "48061"}, "id": "48061"}, {"arcs": [[-3796, -8455, -6082, -4444, -7424, -6043]], "type": "Polygon", "properties": {"name": "48339"}, "id": "48339"}, {"arcs": [[-1188, -4174, -3499, -4223, -2885, -6276, -6761, -9410]], "type": "Polygon", "properties": {"name": "08071"}, "id": "08071"}, {"arcs": [[-6869, -9523, -9168, 9552, -9211]], "type": "Polygon", "properties": {"name": "48299"}, "id": "48299"}, {"arcs": [[-46, -9028, -9212, -9553, -9167, -9023]], "type": "Polygon", "properties": {"name": "48319"}, "id": "48319"}, {"arcs": [[-3054, -7706, -7754, -8794, -7816]], "type": "Polygon", "properties": {"name": "37043"}, "id": "37043"}, {"arcs": [[-646, -9457, -7470, -1205, -2875, -6756, -9374, -9201]], "type": "Polygon", "properties": {"name": "36071"}, "id": "36071"}, {"arcs": [[-948, -3169, -8447, -7400]], "type": "Polygon", "properties": {"name": "36093"}, "id": "36093"}, {"arcs": [[-2258, -7712, -4123, 9553, -9346, -5974, -7124, -5392]], "type": "Polygon", "properties": {"name": "54059"}, "id": "54059"}, {"arcs": [[-1046, -7773, -4802, -1310, -3583, -5152, -2988]], "type": "Polygon", "properties": {"name": "20197"}, "id": "20197"}, {"arcs": [[-813, -4366, -890, -3154, -9551, -7370]], "type": "Polygon", "properties": {"name": "27055"}, "id": "27055"}, {"arcs": [[-1355, -2971, -9509, -9548, -1401]], "type": "Polygon", "properties": {"name": "21181"}, "id": "21181"}, {"arcs": [[-1886, 9554, -5040, -9537, 9555]], "type": "Polygon", "properties": {"name": "25023"}, "id": "25023"}, {"arcs": [[-5386, 9556, -8753, -8945, -8820]], "type": "Polygon", "properties": {"name": "36005"}, "id": "36005"}, {"arcs": [[[-7824, 9557]], [[9558]], [[-9078, 9559]]], "type": "MultiPolygon", "properties": {"name": "37055"}, "id": "37055"}, {"arcs": [[-3839, -5878, -8034, -9414, -9516]], "type": "Polygon", "properties": {"name": "39103"}, "id": "39103"}, {"arcs": [[-1895, -2650, 9560, -3011, -2204]], "type": "Polygon", "properties": {"name": "42005"}, "id": "42005"}, {"arcs": [[-1208, -4523, -7413, 9561, -4210, -8469, -8313]], "type": "Polygon", "properties": {"name": "34001"}, "id": "34001"}, {"arcs": [[-4768, -8052, -8597, -4978, 9562]], "type": "Polygon", "properties": {"name": "55071"}, "id": "55071"}, {"arcs": [[[-4976, 9563]], [[9564]]], "type": "MultiPolygon", "properties": {"name": "55029"}, "id": "55029"}, {"arcs": [[-1248, -7657, -8168, -9487, -8548]], "type": "Polygon", "properties": {"name": "37047"}, "id": "37047"}, {"arcs": [[-1698, -9268, -9283, -2706, -3395, -6081]], "type": "Polygon", "properties": {"name": "39053"}, "id": "39053"}, {"arcs": [[-931, -7421, -9451, -2741, -8393]], "type": "Polygon", "properties": {"name": "48441"}, "id": "48441"}, {"arcs": [[-9363, -9513]], "type": "Polygon", "properties": {"name": "51570"}, "id": "51570"}, {"arcs": [[-3451, -3639, -9482, -9445, -8906, -6358]], "type": "Polygon", "properties": {"name": "39031"}, "id": "39031"}, {"arcs": [[-252, -6900, -6466, -8572, -6469, -621, -9449]], "type": "Polygon", "properties": {"name": "31135"}, "id": "31135"}, {"arcs": [[-1192, -7660, -9507, -3007, -9188]], "type": "Polygon", "properties": {"name": "48205"}, "id": "48205"}, {"arcs": [[-2721, -3293, -7292, -8976, -7732, -3211, -8624, -9022]], "type": "Polygon", "properties": {"name": "08049"}, "id": "08049"}, {"arcs": [[-4278, -8711, -9506, -8351, -4556, -7601]], "type": "Polygon", "properties": {"name": "48249"}, "id": "48249"}, {"arcs": [[-1449, -8384, -1879, -2249, -3687]], "type": "Polygon", "properties": {"name": "19189"}, "id": "19189"}, {"arcs": [[-1800, 9565, -4045, -2846, -7125]], "type": "Polygon", "properties": {"name": "06079"}, "id": "06079"}, {"arcs": [[-4295, -4532, -8212, -7909, -7652]], "type": "Polygon", "properties": {"name": "01067"}, "id": "01067"}, {"arcs": [[-62, -9403, -3434, -7271, -9159]], "type": "Polygon", "properties": {"name": "39175"}, "id": "39175"}, {"arcs": [[-710, -8957, 9566, -9518]], "type": "Polygon", "properties": {"name": "48505"}, "id": "48505"}, {"arcs": [[-594, -5230, -5086, -6982, -6316]], "type": "Polygon", "properties": {"name": "13177"}, "id": "13177"}, {"arcs": [[-1950, -7389, -6451, -3397, 9567]], "type": "Polygon", "properties": {"name": "21019"}, "id": "21019"}, {"arcs": [[-915, -3286, -9214, -3532, -2411]], "type": "Polygon", "properties": {"name": "27019"}, "id": "27019"}, {"arcs": [[-5, -8539, 9568, -5442, -8100]], "type": "Polygon", "properties": {"name": "31037"}, "id": "31037"}, {"arcs": [[-3561, -4017, -6268, -8763, -8298, -6552]], "type": "Polygon", "properties": {"name": "45025"}, "id": "45025"}, {"arcs": [[-2788, -9535, -3552, -5609, -7495]], "type": "Polygon", "properties": {"name": "47101"}, "id": "47101"}, {"arcs": [[-721, -9192, -5347, -6666, -1750]], "type": "Polygon", "properties": {"name": "41067"}, "id": "41067"}, {"arcs": [[-4722, -8293, 9569, -9076]], "type": "Polygon", "properties": {"name": "51810"}, "id": "51810"}, {"arcs": [[-4011, -8239, 9570, -5244, -9386]], "type": "Polygon", "properties": {"name": "30057"}, "id": "30057"}, {"arcs": [[-2333, 9571, 9572]], "type": "Polygon", "properties": {"name": "51103"}, "id": "51103"}, {"arcs": [[-127, -9463, -9433, -6454, -6112, -2866]], "type": "Polygon", "properties": {"name": "29013"}, "id": "29013"}, {"arcs": [[-2084, -7890, -9497, -6521]], "type": "Polygon", "properties": {"name": "33001"}, "id": "33001"}, {"arcs": [[-2232, -8716, -2334, -9573, 9573]], "type": "Polygon", "properties": {"name": "51159"}, "id": "51159"}, {"arcs": [[-6558, 9574]], "type": "Polygon", "properties": {"name": "02230"}, "id": "02230"}, {"arcs": [[[-1746, 9575]], [[-3986, 9576, -4067, 9577]], [[-4071, 9578]], [[-6556, 9579, -9089, 9580]]], "type": "MultiPolygon", "properties": {"name": "02105"}, "id": "02105"}, {"arcs": [[-5504, -9004, -7945, -9175, -9238, -9427]], "type": "Polygon", "properties": {"name": "53021"}, "id": "53021"}, {"arcs": [[-7673, -8802, -8769, -8404]], "type": "Polygon", "properties": {"name": "19093"}, "id": "19093"}, {"arcs": [[-5474, -6053, -8792, -9534, -9063]], "type": "Polygon", "properties": {"name": "20173"}, "id": "20173"}, {"arcs": [[-4776, -5478, -9524, -6867, -7161, -8593]], "type": "Polygon", "properties": {"name": "48453"}, "id": "48453"}, {"arcs": [[-3635, 9581, -4577, -4922, -8113]], "type": "Polygon", "properties": {"name": "12057"}, "id": "12057"}, {"arcs": [[-4520, -9182, -9432, -7293, -5015, -7028]], "type": "Polygon", "properties": {"name": "34021"}, "id": "34021"}, {"arcs": [[-18, -8929, -4097, -5443, -9569, -8538, -7859]], "type": "Polygon", "properties": {"name": "31023"}, "id": "31023"}, {"arcs": [[-2649, -5700, -7259, -7503, -9459, -9152, -9561]], "type": "Polygon", "properties": {"name": "42129"}, "id": "42129"}, {"arcs": [[-3492, -7218, 9582, -8540, -3436]], "type": "Polygon", "properties": {"name": "12015"}, "id": "12015"}, {"arcs": [[-3508, -9142, -6883, -8135, -4112, -7875]], "type": "Polygon", "properties": {"name": "19029"}, "id": "19029"}, {"arcs": [[-3489, -8740, -5337, -8488, -9510]], "type": "Polygon", "properties": {"name": "39107"}, "id": "39107"}, {"arcs": [[9583]], "type": "Polygon", "properties": {"name": "60030"}, "id": "60030"}, {"arcs": [[-1946, -4126, -6649, -8745, -1951]], "type": "Polygon", "properties": {"name": "21115"}, "id": "21115"}, {"arcs": [[-3443, -6350, -7146, 9584, -6154]], "type": "Polygon", "properties": {"name": "44003"}, "id": "44003"}, {"arcs": [[-3829, -4213, 9585, -8815, -9272]], "type": "Polygon", "properties": {"name": "50025"}, "id": "50025"}, {"arcs": [[-523, 9586, -4450, -8530, -5627]], "type": "Polygon", "properties": {"name": "50019"}, "id": "50019"}, {"arcs": [[-3581, -9253, -6640, -4685, -8374, -5153]], "type": "Polygon", "properties": {"name": "20085"}, "id": "20085"}, {"arcs": [[-895, -5128, -9416, -1062, -7169]], "type": "Polygon", "properties": {"name": "22041"}, "id": "22041"}, {"arcs": [[-447, -9097, -6486, -3309, -3083, -8935, -7432]], "type": "Polygon", "properties": {"name": "28155"}, "id": "28155"}, {"arcs": [[-351, -4996, -8816, -9586, -4212, -2830]], "type": "Polygon", "properties": {"name": "25011"}, "id": "25011"}, {"arcs": [[-798, -9179, -7523, -6971, -7078, -7748, -1475, -1028, -7918]], "type": "Polygon", "properties": {"name": "31031"}, "id": "31031"}, {"arcs": [[-1444, -7232, -9405, -9390, -5245, -9571, -8238]], "type": "Polygon", "properties": {"name": "30001"}, "id": "30001"}, {"arcs": [[-2973, -9061, -2978, -9547, -9502, -7851, -3401, -9006, -9062]], "type": "Polygon", "properties": {"name": "29143"}, "id": "29143"}, {"arcs": [[-1281, -7213, -8727, -9455, -8730, -9189]], "type": "Polygon", "properties": {"name": "05057"}, "id": "05057"}, {"arcs": [[-4055, -7908, -4885, -5905, -7208, -9453, -8903]], "type": "Polygon", "properties": {"name": "29029"}, "id": "29029"}, {"arcs": [[-4455, -9525, -5445, -9532, -5404, -7395, -4822]], "type": "Polygon", "properties": {"name": "51117"}, "id": "51117"}, {"arcs": [[-1817, -7832, -6478, -9323, -7531, -9533]], "type": "Polygon", "properties": {"name": "21233"}, "id": "21233"}, {"arcs": [[-1525, -9269, -5341, -6295, -7878, -9213, -6775]], "type": "Polygon", "properties": {"name": "40047"}, "id": "40047"}, {"arcs": [[-991, -6025, -8595, -6788, -1753, -9315, -8706]], "type": "Polygon", "properties": {"name": "53059"}, "id": "53059"}, {"arcs": [[-2185, -6509, -3588, -6127, -8873, -5944]], "type": "Polygon", "properties": {"name": "26091"}, "id": "26091"}, {"arcs": [[-1016, -2159, -8486, -9549, -5888]], "type": "Polygon", "properties": {"name": "13123"}, "id": "13123"}, {"arcs": [[-4217, -8834, 9587, -6364, -4481]], "type": "Polygon", "properties": {"name": "27135"}, "id": "27135"}, {"arcs": [[-5519, -9462, -6841, -7099, -9092, -6314]], "type": "Polygon", "properties": {"name": "28089"}, "id": "28089"}, {"arcs": [[-4619, -9207, -7695, -6391, -6771]], "type": "Polygon", "properties": {"name": "48227"}, "id": "48227"}, {"arcs": [[-1944, -9568, -3396, -2704, -9347, -9554, -4122]], "type": "Polygon", "properties": {"name": "54099"}, "id": "54099"}]}, "states": {"type": "GeometryCollection", "geometries": [{"arcs": [[27, 28, 495, 496, -7565, -871, -870, 9123, -9254, -651, -650, 6003, 3090, 2005, 2006, 2007, 8570, -6470, -6469, -621, -620, -619, -9033, 3264, 3265, 3266, 1561, 1562, 2378, 6683, 6684, 6685, 4157, 4158, 6969, -7078, -7748, 1475, 1476, 672, 668, -9420, -7064, -5492, -5491, -5458, -5457, 8042, 564, 565, 5623, 5624, 7628, -1473, -1472, -8136, 5303, 7236, -5201, 3875, 3876, 2939, -2489, -2494, 3570, -6659, -416, -6642, 9221, 7174, 7175, 6306, 6307, 1847, -461]], "type": "Polygon", "properties": {"name": "Nebraska"}, "id": "31"}, {"arcs": [[[9, 10, 11, 8162, 8646, 4354, 6208, 4356, 9464, 9424, 9529, 9466, 9549, 9528, 8131, 5991, 6184, 5993, 9484, 7407, 6157, 7677, 6211, 6783, 6784, -6325, 6167, -864, -3566, -3565, -9186, -3761, -3760, -106, -105, -104, 5501, 9002, 7946, -1257, -1256, -7411, 8593, -8325, -6789, -6788, -1753, -1752, -6665, -6664]], [[6185]], [[8132]], [[8595]]], "type": "MultiPolygon", "properties": {"name": "Washington"}, "id": "53"}, {"arcs": [[185, 186, 187, 5080, 5081, 8345, 5283, -5279, -4251, 4052, 193, 194, 4513, 8493, 7633, -5293, -1133, -6839, -6838, 8527, 3709, -3501, -3500, 4173, 1187, 1188, 1189, 1190, 1191, 9187, -3006, -8416, 6603, -4985, 6600, 7254, -7200, -7199, 8963, -4606, -4698, -6398, 8961, 5996, 5997, 5998]], "type": "Polygon", "properties": {"name": "New Mexico"}, "id": "35"}, {"arcs": [[[481, 9094, 7793, 8554, 8704, 7223, 6092, 8035, 2198, 8357, 2060, 8838, 7525, 9101, 9492, 1437, 6487, 2863, 6370, 1453, 6922, 7161, 8805, 7847, 2856, 2464, 9125, 5654, 5580, 9370, 4727, 4490, 9008, 6369, 2683, 7543, 5956, 4361, 5267, 8948]], [[2194]], [[7493]]], "type": "MultiPolygon", "properties": {"name": "unknown"}, "id": "72"}, {"arcs": [[39, 40, 8255, 8256, 9440, -8129, -8768, -565, -8043, 5456, 5457, 5490, 5491, 7063, 9419, -669, -673, -1477, -1476, 7747, 7077, -6970, -4159, -4158, -6686, 8830, 6515, 6516, 8233, 2621, 2622, -4764, -3254, -3253, 6952, -3731, -5686, -5685, -5684, -805, -3935, -3934, -5436, -5435, -2401, -2400, -1767, -1766, 7438, 7439, 7440, -9495, -828, -827, 1542, 1543, -6719, 637]], "type": "Polygon", "properties": {"name": "South Dakota"}, "id": "46"}, {"arcs": [[217, 3599, 8346, 4557, 9204, 5785, 9205, 4559, 8347, 3601, 219, 577, 3603, 3602, 579, 3604, 8348, 9503, 8353, 9504, 8352, 4552, 9203, 5782, 9551, 1241, 8955, 9566, 9518, 4508, 2446, 9143, 8396, 9310, 5776, 6891, 9050, -5081, -188, -187, -186, -5999, -5998, -5997, -8962, 6397, 4697, 4605, -8964, 7198, 7199, -7255, -6601, 4984, -6604, 8415, 3005, -9188, -1192, -1191, 7657, 8734, 8735, 8514, 2768, 2769, 6660, 6661, 3755, 3756, -8959, -7588, 6711, -5313, -5312, -5311, -6765, -6764, -7752, 5530, -3774, 231, 232, 7865, -6244, -6243, 1367, -960, 1368, 409, 1993, 1994, 8660, -3866, -3865, 4625, -1286, -1285, 6900, -7745, 2663, -7744, -7639, 6795, 6796, 3065, -7974, -7082, 9541, -260, -259, 339, 1116, 1117, 8515, 6067, 8516, 6084, 6064, 8567, 6069, 8568, 8662]], "type": "Polygon", "properties": {"name": "Texas"}, "id": "48"}, {"arcs": [[[50, -8174, 2910, 2911, 2912, -4866, -4865, -4864, 5076, -2360, 5071, 4787, -3720, -868, -867, 5287, 5288, 7093, -8841, -2151, 9082, 2851, 9073, 2147, 2130, 1802, 9565, 4045, 9498, 9408, 3295, 9406, 7935, 8306, 8305, 5366, 5100, 2425, 3473, 2427, 4713, 7053, 7455, 7456, -7220, -7219, -1549, -1153, -1159, -4437, 7589, 3629]], [[1803]], [[1804]], [[2148]], [[2149]]], "type": "MultiPolygon", "properties": {"name": "unknown"}, "id": "06"}, {"arcs": [[[56, 57, -1911, -1910, -5028, 356, 357, -1731, -8073, 6513, -8072, -6780, -6779, -4953, -4952, -4951, -6906, 5694, 5695, 7757, 7758, -8060, -2974, 9061, -9005, 7760, 6975, 8174, 8175, 8176, 7828, -6962, -6961, -1487, -6437, 1814, -6436, -3331, -2097, -2096, -4931, -1337, -1336, 5668, 5593, -660, -659, -658, -7520, -6322, -6321, -6320, -5960, -6698, -6697, -6696, -5824, -5823, -7757, 1345, 6933, -613, 6931, 6932, 3673, 8505, 8506, -9190, 7372, -2820, -2819, -3405, -3404, -1681, -1680, -3398, -3397, 9567, 1943, 4121, 4122, 7711, -2257, 7712, 7713, -8987, 4797, 4798, 7538, 7539, 7156, -1031, -1030, 9276, 402, 403]], [[-2972, 9060]]], "type": "MultiPolygon", "properties": {"name": "Kentucky"}, "id": "21"}, {"arcs": [[161, 6057, 6058, 6059, 2994, 2995, -4891, -4201, -4200, -117, -4145, -4144, 8458, 8459, 8984, -3362, 3178, -976, 3174, -7892, -5976, -4944, -4943, -4942, -3366, 9266, -9283, -2706, -2705, 3395, 3396, 3397, 1679, 1680, 3403, 3404, 2818, 2819, -7373, 9189, -8507, -8506, -3674, -6933, 8818, 590, 585, -2374, 6077, 5333, 5334, 5335, -8488, -9510, 3489, -790, -789, -788, 8333, -9010, -337, -6510, 2183, 2184, 5943, 5944, 5945, 4101, 7953, 8031, 9414]], "type": "Polygon", "properties": {"name": "Ohio"}, "id": "39"}, {"arcs": [[274, 275, 276, 1171, -488, -847, -846, -4025, -1305, -1304, -8673, -7052, 2551, -2048, -2053, 2388, -4675, -3514, -7027, -7026, 7654, -4290, -4295, -4532, -4531, 8209, 8210, 7765, 7766, -438, -437, -8305, 4020, 4021, 4022, 5805, 5806, 2538, 2539, 2540, 2535, -7435, -8104, 6413, -5297, 6414, 5138, -1144, 5139, 7278, -2268, -2267, -6224, 4608, 4609, 9017, 9018, 1392, 7339, 7340, -5605, -3550, -5943, 4082, 4083, 8361, 8362, 5660, -391, 5661]], "type": "Polygon", "properties": {"name": "unknown"}, "id": "01"}, {"arcs": [[487, -1172, -277, -276, -275, -5662, -390, -179, -178, -177, -176, -8442, -8441, 8483, -9046, -7707, 3052, 3053, 7815, 8793, -7753, -8081, 3414, 7091, 1102, 2322, 2323, -5238, 7649, 7650, 1719, 615, 616, 7277, -4711, -4710, 5422, 5423, 2053, 2054, -8237, 8957, 8776, 8777, 8242, 7595, 9499, 9516, 6123, 6124, 839, 840, 8007, 8263, 8264, 7553, 7554, -7783, 8267, -8838, -7568, -7567, 9225, 9348, 9349, 9257, 9134, -9116, -8210, 4530, 4531, 4294, 4289, -7655, 7025, 7026, 3513, 4674, -2389, 2052, 2047, -2552, 7051, 8672, 1303, 1304, 4024, 845, 846]], "type": "Polygon", "properties": {"name": "Georgia"}, "id": "13"}, {"arcs": [[[832, -7498, 6746, -4130, -4129, 8157, 8469, -8443, -8029, 8470, 4949, 3924, 7452, -3901, -3900, -2597, -2596, -2595, 7373, -8413, -314, 9313, 6146, 8597, 4979, 9563, 4976, 9562, 4768, 4747, 3530, 7870, 3287, 3288, 3289, 2353, 2354, 5493, 5494, 6749, -5247, 4410, 4411, -5553, -3799, -5105, -5104, 5658, 3152, 3153, 889, 890, -4365, -4364, -7455, -7454, -4911, 836, 837]], [[3925]], [[9564]]], "type": "MultiPolygon", "properties": {"name": "Wisconsin"}, "id": "55"}, {"arcs": [[725, 726, 4189, -8630, -270, -269, -156, -155, -154, -7039, -2376, -7209, 1742, 1743, 1737, 7413, -8619, -4439, -4438, 1230, 1231, 1232, -5842, 3944, 3945, 7030, -4844, 7031, 8155, 4891, 5952, 5953, 5954, -1922, 5947, 5948, 5949, 9112, -8588, 9113, -2790, -2797, -2796, 6585, -3713, -3712, -3711, -1621, -1634, -3960, -9317, -6814, -6813, -264, -5259, 5093, 5094, -6506, -8741, 1282, 1283, 1284, 1285, -4626, -3864, 3109]], "type": "Polygon", "properties": {"name": "unknown"}, "id": "05"}, {"arcs": [[103, 104, 105, 106, 107, 108, 1922, 1923, 5007, 5008, 5009, 5010, -701, -700, 6920, 4435, 4436, 1158, 1152, 1548, 7218, 7219, -7457, 9377, 4302, 6278, 5525, 7011, 5350, 984, -11, -10, 6663, 6664, 1751, 1752, 6787, 6788, 8324, -8594, 7410, 1255, 1256, -7947, -9003, -5502]], "type": "Polygon", "properties": {"name": "Oregon"}, "id": "41"}, {"arcs": [[115, 116, 4199, 4200, 4890, -2996, -2995, -6060, -6059, 7304, 7305, 8724, -7897, 7623, -994, -993, -286, -285, 560, 4135, 4136, -8141, -8451, 936, 937, 938, -7471, 9456, -645, -644, 6279, 8930, -8954, 9180, 9181, -4519, 3128, -1210, 3124, -8316, -3093, -3092, -1835, -1834, -8045, 6525, -3380, -4117, -4116, -5068, -5067, 8969, 3735, -963, -962, -961, -6503, -6502, -4419, -3426, 1372, -970, 1369, -3364, 9459, -9342, -4142]], "type": "Polygon", "properties": {"name": "Pennsylvania"}, "id": "42"}, {"arcs": [[1143, -5139, -6415, 5296, -6414, 8103, 7434, -2536, -2541, -2540, 8504, 8436, 7797, 7798, 3651, 3652, 5546, -7849, 7227, -297, -296, 7575, -3962, -3961, 9083, 9084, 9323, -1059, -1058, -1057, -1056, 4366, -3956, 1632, 1633, 1620, 3710, 3711, 3712, -6586, 2795, 2796, 2789, -9114, -8587, -8586, 8678, 1811, 1812, 3359, 2476, 2477, 2472, -7842, -7340, -1393, -9019, -9018, -4610, -4609, 6223, 2266, 2267, -7279, -5140]], "type": "Polygon", "properties": {"name": "Mississippi"}, "id": "28"}, {"arcs": [[214, -8229, -7106, -6455, -6454, -6112, 2866, 2867, -4343, -5918, -5917, 4076, 4077, 4072, 4081, -419, -418, -417, 6658, -3571, 2493, 2488, 2489, 2490, -8372, -8331, 6946, -1824, -1823, -777, -776, -4601, -4600, -5811, -5810, -7776, -7775, -6217, -6216, 6930, -507, -506, -3820, -3819, 4626, 4282, 3387, 3388, -8308, 6629, -1214, 6625, 7961, -8532, -4181, -4180, 7959, -8669, 6872, 6873, -7246, 9208, -5430, -5429, -8773, 3398, -8774, -8175, -6976, -7761, 9004, -9062, -2973, -9061, -2978, -2977, -9526, -5954, -5953, -4892, -8156, -7032, 4843, -7031, -3946, -3945, 5841, -1233, -1232, -1231, 4437, 4438, 8618, -7414, -1738, -1744, -1743, 7208, 2375, 2376, 2377, 2090, 2091, -4383, 5677]], "type": "Polygon", "properties": {"name": "Missouri"}, "id": "29"}, {"arcs": [[618, 619, 620, 6468, 6469, -8571, -2008, -4595, -4594, -3808, -1223, 710, 711, -2047, -2046, -1074, 2277, -3193, -5964, 9410, -1189, -1188, -4174, 3499, 3500, -3710, -8528, 6837, 6838, 1132, 5292, 5293, -9352, 3297, 3279, 9455, 4643, 4644, 5001, 2564, 2559, 2560, 2561, -5242, -5241, -8747, 7733, -7608, 7585, -3266, -3265, 9032]], "type": "Polygon", "properties": {"name": "unknown"}, "id": "08"}, {"arcs": [[[1242, -3562, 2934, 6551, 8297, 8298, 8633, 8634, 7924, 5054, 5055, 6528, 6529, -7179, -6376, -6375, -6374, -5500, -8082, 7361, 7752, -8794, -7816, -3054, -3053, 7706, 7707, -1067, -1066, -4006, -4005, 4914, 6914, 6915, 1688, 1683, 1684, -7178, -7177, -4814, -4813, 4940, 4614, -8983, -5864, 3622, -5872, -6623, -4163, 3464, -1498, -1497, -5909, 5769, 5770, 5771, 5772, 1610, 5402, 5403, 9531, 5444, 5445, 2557, 2558, 2552, 7395, 6271, 6272, 3133, 3134, -4723, 9075, 9076, 9559, 9078, 3136, 3703, 7777, 9359, 7397, 7976, 6546, 7734, 7822, 9557, 7824, 2575, 5688, 6655, 3577, 8379, 8165, 8057, 9485, -8549, -8548, 1248]], [[9558]]], "type": "MultiPolygon", "properties": {"name": "North Carolina"}, "id": "37"}, {"arcs": [[145, 146, 147, -698, -4732, -4731, -2560, -2565, -5002, -4645, -4644, -9456, -3280, -3298, 9351, -5294, -9128, -2756, -6049, 5648, 5649, 6674, 6675, -8824, 8481, 4239, 4240, -4909, -4908, -7189, 3356, 3357, 3358, 830, 831]], "type": "Polygon", "properties": {"name": "Utah"}, "id": "49"}, {"arcs": [[153, 154, 155, 268, 269, 8629, -4190, -727, -726, -3110, 3863, 3864, 3865, -8661, -1995, -1994, -410, -1369, 959, -1368, 6242, 6243, -7866, -233, -232, 3773, -5531, 7751, 6763, 6764, 5310, 5311, 5312, -6712, 7587, 8958, -3757, -3756, -6662, -6661, -2770, -2769, -8515, -8736, -8735, -7658, -1190, -9411, -5963, -5962, -5586, 9140, 8695, 8696, -8680, 1425, 1420, 4985, 4986, 1521, 1522, -9145, -6050, 5342, -2727, -2726, 7701, 4415, 4416, -9037, -4198, -4197, -4381, 2449, -2091, -2378, -2377, 7038]], "type": "Polygon", "properties": {"name": "Oklahoma"}, "id": "40"}, {"arcs": [[[224, 9538, 6758, 243, 6408, 572, 4832, 9374, 7499, 8291, 9569, -9076, 4722, -3135, -3134, -6273, -6272, -7396, -2553, -2559, -2558, -5446, -5445, -9532, -5404, -5403, -1611, -5773, -5772, -5771, -5770, 5908, 1496, 1497, -3465, 4162, 6622, 5871, -3623, 5863, 5864, 7259, -4752, -4751, -4750, -4749, -3722, 6236, -7838, -7864, -7539, -4799, -4798, 8986, -7714, -7713, 2256, 2257, 2258, -5395, -6203, -6202, 5980, 5981, 5982, 2737, 2264, 2265, 6802, -229, -228, -8627, 7317, -8626, -4739, -4738, -4737, -5111, -9472, -8650, -6189, -6188, -9280, -5065, -6619, -6618, -3273, 1501, 1502, -6235, -8993, 9387, 6192, 302, 303, -8991, 9170, -8994, 8713, 8714, 2331, 9571, 9573, 2232, 1888, 9118, 3105, 9469]], [[-755, 8046, 9488, 8048, -7985]]], "type": "MultiPolygon", "properties": {"name": "Virginia"}, "id": "51"}, {"arcs": [[175, 176, 177, 178, 389, 390, -5661, -8363, -8362, -4084, -4083, 5942, 3549, 5604, -7341, 7841, -2473, -2478, -2477, -3360, -1813, -1812, -8679, 8585, 8586, 8587, -9113, -5950, -5949, -5948, 1921, -5955, 9525, 2976, 2977, 2971, 2972, 2973, 8059, -7759, -7758, -5696, -5695, 6905, 4950, 4951, 4952, 6778, 6779, 8071, -6514, 8072, 1730, -358, -357, 5027, 1909, 1910, -58, -57, -404, -403, -9277, 1029, 1030, -7157, -7540, 7863, 7837, -6237, 3721, 4748, 4749, 4750, 4751, -7260, -5865, 8982, -4615, -4941, 4812, 4813, 7176, 7177, -1685, -1684, -1689, -6916, -6915, -4915, 4004, 4005, 1065, 1066, -7708, 9045, -8484, 8440, 8441]], "type": "Polygon", "properties": {"name": "Tennessee"}, "id": "47"}, {"arcs": [[-147, 203, 204, 205, -2435, -3100, -8240, -4009, -4008, -8655, -8096, 2777, 2778, -6679, 8967, 6573, 4762, -3255, 4763, -2623, -2622, -8234, -6517, -6516, -8831, -6685, -6684, -2379, -1563, -1562, -3267, -7586, 7607, -7734, 8746, 5240, 5241, -2562, -2561, 4730, 4731, 697, -148]], "type": "Polygon", "properties": {"name": "Wyoming"}, "id": "56"}, {"arcs": [[227, 228, -6803, -2266, -2265, -2738, -5983, -5982, -5981, 6201, 6202, 5394, -2259, -2258, -7712, -4123, -4122, -1944, -9568, -3396, 2704, 2705, 9282, -9267, 3365, 4941, 4942, 4943, 5975, 7891, -3175, 975, -3179, 3361, -8985, -8460, -8459, 4143, 4144, -116, 4141, 9341, -9460, 3363, -1370, 969, -1373, 3425, 4418, 4419, -6501, 3919, -967, -966, -965, -9281, 8651, 6186, 6187, 6188, 8649, 9471, 5110, 4736, 4737, 4738, 8625, -7318, 8626]], "type": "Polygon", "properties": {"name": "West Virginia"}, "id": "54"}, {"arcs": [[[258, 259, -9542, 7081, 7973, -3066, -6797, -6796, 7638, 7743, -2664, 7744, -6901, -1284, -1283, 8740, 6505, -5095, -5094, 5258, 263, 6812, 6813, 9316, 3959, -1633, 3955, -4367, 1055, 1056, 1057, 1058, -9324, -9085, -9084, 3960, 3961, -7576, 295, 296, -7228, 7848, -5547, -3653, -3652, -7799, 8018, 3967, 9474, 3971, 6807, 8012, 9247, 8602, 9238, 8375, 3942, 8023, -1117, -340]], [[3972]], [[8376]]], "type": "MultiPolygon", "properties": {"name": "Louisiana"}, "id": "22"}, {"arcs": [[[284, 285, 992, 993, -7624, 7896, -8725, -7306, 8980, 6616, 8812, 7637, 8253, 8807, 3786, 1165, 4630, 1773, 9069, 4639, 4640, 4641, 2238, 2239, 5169, -4527, 5170, 8490, -4994, -4993, 2870, 2871, 2872, 6753, 5383, 5384, 9556, 8753, 4927, 2369, 4925, 8749, 8900, 8945, -6175, -8821, -8820, 5386, -8823, -9202, -9201, -646, -9457, 7470, -939, -938, -937, 8450, 8140, -4137, -4136, -561]], [[-2529, -6177, 6360, -5012]]], "type": "MultiPolygon", "properties": {"name": "New York"}, "id": "36"}, {"arcs": [[[312, 313, 8412, -7374, 2594, 2595, 2596, 3899, 3900, 3901, 2633, 9330, 9301, 9331, 2668, 529, 1227, 3695, 2430, 9024, 1197, 9497]], [[398, 2904, 7999, 8605, 8582, 5926, 7998, 1578, 5620, 8274, 1587, 8871, -5945, -5944, -2185, -2184, 6509, -336, -335, -6130, 2502, 2503, -5860, -7074, 4149, -2027, 4150, 1934, 9289, 3322, 9460, 6054, 5483, 9135, 6610, 569, 8916, 3555, 9399, 8612, 8756, 7466]], [[9025]], [[9302]], [[9400]]], "type": "MultiPolygon", "properties": {"name": "Michigan"}, "id": "26"}, {"arcs": [[334, 335, 336, 9009, -8334, 787, 788, 789, -3490, 9509, 8487, -5336, -5335, -5334, -6078, 2373, -586, -591, -8819, -6932, 612, -6934, -1346, 7756, 5822, 5823, 6695, 6696, 6697, 5959, 6319, 6320, 6321, 7519, 657, 658, 659, -5594, -5669, 1335, 1336, 4930, 2095, 2096, 2097, 2098, 3262, -760, -759, 6415, -2134, -2133, -2966, -2965, 5854, 3616, 3617, 1838, 740, 741, 1098, 1099, 1896, 1897, 1898, 1899, 4560, 2030, 2026, -4150, 7073, 5859, -2504, -2503, 6129]], "type": "Polygon", "properties": {"name": "Indiana"}, "id": "18"}, {"arcs": [[[373, 9535, 9555, 1886, 9554, 5040, 5041, 5042, 5043, -7143, 2834, 2835, 2836, 4769, 4770, 4771, 4991, -2871, 4992, 4993, 4994, -8816, -9586, -4212, 2830, 2831, 6087, -8317, -8123, 9334]], [[3594]], [[4532]]], "type": "MultiPolygon", "properties": {"name": "Massachusetts"}, "id": "25"}, {"arcs": [[415, 416, 417, 418, -4082, -4073, -4078, -4077, 5916, 5917, 4342, -2868, -2867, 6111, 6453, 6454, 7105, 8228, -215, -5678, 4382, -2092, -2450, 4380, 4196, 4197, 9036, -4417, -4416, -7702, 2725, 2726, -5343, 6049, 9144, -1523, -1522, -4987, -4986, -1421, -1426, 8679, -8697, -8696, -9141, 5585, 5961, 5962, 5963, 3192, -2278, 1073, 2045, 2046, -712, -711, 1222, 3807, 4593, 4594, -2007, -2006, -3091, -6004, 649, 650, 9253, -9124, 869, 870, 7564, -497, -496, -29, -28, 460, -1848, -6308, -6307, -7176, -7175, -9222, 6641]], "type": "Polygon", "properties": {"name": "Kansas"}, "id": "20"}, {"arcs": [[863, -6168, 6324, -6785, 9411, -6824, 6326, 6327, -6769, 7820, 7535, 7536, 3015, 3016, 7230, 7231, 1443, 8237, 8238, -4010, 8239, 3099, 2434, -206, -205, -204, -146, -832, -831, -3359, -3358, -7188, -7187, -7186, -702, -5011, -5010, -5009, -5008, -1924, -1923, -109, -108, -107, 3759, 3760, 9185, 3564, 3565]], "type": "Polygon", "properties": {"name": "Idaho"}, "id": "16"}, {"arcs": [[[430, 2190, 7789, 5920, 8770, 7570, 432, 4866, 9540, 7338, 441, 8302, 9248, 6226, -5806, -4023, -4022, -4021, 8304, 436, 437, -7767, -7766, -8211, 9115, -9135, -9258, -9350, -9349, -9226, 7566, 7567, 8837, -8268, 7782, -7555, -7554, -8265, -8264, -8008, -841, -840, -6125, 9222, 5746, 3307, 7003, 467, 9305, 9447, 8250, 5883, 1716, 1569, 1996, 6351, 6350, 1998, 6352, 2000, 6353, 8492, 7216, 9582, 8540, 3633, 9581, 4577, 4574, 4922]], [[6355]], [[6356]]], "type": "MultiPolygon", "properties": {"name": "Florida"}, "id": "12"}, {"arcs": [[[450, 3978, 452, 3991, 3988, 9576, 4067, 6554, 9579, 9089, 6102, 5795, 3301, 7783, 5800, 8863, 7115, 8214, 7117, 7323, 7119, 7324, 7555, 6728, 7556, 6730, 8377, 8824, 1375, 8604, 2747, 5928, 6100, 9087, 9580, 6556, 9574, 6558, 4069, 4065, 9577, 3986, 3992]], [[453]], [[454]], [[1746, 9575]], [[1747]], [[1748]], [[3980, 3984]], [[3981]], [[3982]], [[3983]], [[3993]], [[3994]], [[4071, 9578]], [[5801]], [[5802]], [[6103]], [[6104]], [[6105]], [[6106]], [[6732]], [[6733]], [[7557]], [[8215]], [[8216]], [[8217]], [[8218]], [[8219]], [[8220]], [[8221]], [[8222]], [[8223]], [[8224]], [[8825]], [[8826]], [[8842]], [[8843]], [[8844]], [[8845]], [[8846]], [[8847]], [[8848]], [[8849]], [[8850]], [[8851]], [[8852]], [[8853]], [[8854]], [[8855]], [[8856]], [[8857]], [[8858]], [[8859]], [[8860]], [[8861]], [[8862]], [[8864]], [[8865]], [[8866]], [[8867]], [[8868]]], "type": "MultiPolygon", "properties": {"name": "unknown"}, "id": "02"}, {"arcs": [[[482]], [[5811]], [[6570]]], "type": "MultiPolygon", "properties": {"name": "unknown"}, "id": "78"}, {"arcs": [[699, 700, 701, 7185, 7186, 7187, -3357, 7188, 4907, 4908, -4241, -4240, -8482, 8823, -6676, -8543, 865, 866, 867, 3719, -4788, -5072, 2359, -5077, 4863, 4864, 4865, -2913, -2912, -2911, 8173, -51, -3630, -7590, -4436, -6921]], "type": "Polygon", "properties": {"name": "Nevada"}, "id": "32"}, {"arcs": [[505, 506, 507, -8609, -8423, 1941, 1942, 3102, 3103, -1862, -1861, -1860, -4635, -4634, -3800, 5552, -4412, -4411, 5246, -6750, -5495, -5494, -2355, -2354, -3290, -3289, 8971, 3329, -1899, -1898, -1897, -1100, -1099, -742, -741, -1839, -3618, -3617, -5855, 2964, 2965, 2132, 2133, -6416, 758, 759, -3263, -2099, -2098, 3330, 6435, -1815, 6436, 1486, 6960, 6961, -7829, -8177, -8176, 8773, -3399, 8772, 5428, 5429, -9209, 7245, -6874, -6873, 8668, -7960, 4179, 4180, 8531, -7962, -6626, 1213, -6630, 8307, -3389, -3388, -4283, -4627, 3818, 3819]], "type": "Polygon", "properties": {"name": "Illinois"}, "id": "17"}, {"arcs": [[521, 9586, 4450, 4451, -2081, -2080, -2079, -2088, -2087, -3830, -3829, -4213, 9585, 8815, -4995, -8491, -5171, 4526, -5170, -2240, -2239, -4642, -4641, 8936]], "type": "Polygon", "properties": {"name": "Vermont"}, "id": "50"}, {"arcs": [[534, 5405, 8183, -5384, -6754, -2873, -2872, -4992, -4772, -4771, -4770, -2837, -2836, 6348, 6349, 3442, 3443, 3444]], "type": "Polygon", "properties": {"name": "unknown"}, "id": "09"}, {"arcs": [[3252, 3253, 3254, -4763, -6574, -8968, 6678, -2779, -2778, 8095, 8654, 4007, 4008, 4009, -8239, -8238, -1444, -7232, -7231, -3017, -3016, -7537, -7536, -7821, 6768, -6328, -6327, 6823, 6824, 5576, 9197, 8138, 4273, 9278, 8289, 9463, 9417, 9543, 9491, -5286, -6432, -6431, 7484, 7679, 7680, 8784, -5121, -3732, -6953]], "type": "Polygon", "properties": {"name": "Montana"}, "id": "30"}, {"arcs": [[643, 644, 645, 9200, 9201, 8822, -5387, 8819, 8820, 6174, 6175, 6176, 2528, 5011, 5012, 7028, 7411, 9561, 4210, 8466, 9281, -3095, -3094, 8315, -3125, 1209, -3129, 4518, -9182, -9181, 8953, -8931, -6280]], "type": "Polygon", "properties": {"name": "New Jersey"}, "id": "34"}, {"arcs": [[813, 814, -1715, 7138, -2246, 1877, 1878, 8383, -1448, -1447, -8742, 1866, 1867, 1868, 1593, 1594, 2646, -40, -638, 6718, -1544, -1543, 826, 827, 9494, -7441, -7440, -7448, 7242, 3347, 3348, 4105, 4106, -4458, -2023, -2022, -683, 4214, -7076, 8832, 9587, 6364, 3202, 8026, 7050, 7046, 8079, 7048, 8027, 8028, 8442, -8470, -8158, 4128, 4129, -6747, 7497, -833, -838, -837, 4910, 7453, 7454, 4363, 4364, -891, -890, -3154, -9551, -7370]], "type": "Polygon", "properties": {"name": "Minnesota"}, "id": "27"}, {"arcs": [[682, 2021, 2022, 4457, -4107, -4106, -3349, -3348, -7243, 7447, -7439, 1765, 1766, 2399, 2400, 5434, 5435, 3933, 3934, 804, 5683, 5684, 5685, 3730, 3731, 5120, -8785, -7681, -7680, -7485, 6430, 6431, 5285, 5286, 1457, 9119, 2892, 9286, 8811, 6288, 7074, 7075, -4215]], "type": "Polygon", "properties": {"name": "North Dakota"}, "id": "38"}, {"arcs": [[[752, 753, 754, 7984, 7985, 7385, 4495, 7088, 6637, 8227, 1831, 8043, 3381, 1042, 4963, 4344, 8088, 8991, 8992, 6234, -1503, -3275, -3274, 6617, 6618, 5064, 9279, -6187, -8652, 9280, 964, 965, 966, -3920, 6500, -4420, 6501, 6502, 960, 961, 962, -3736, -8970, 5066, 5067, 4115, 4116, 3379, -6526, 8044, 1833, 1834, 1829, -3098, 8226, 6634, 9384, -5461, 4493, -5460], [-304, 8989, 8990]], [[-8714, 8993, 8994]]], "type": "MultiPolygon", "properties": {"name": "Maryland"}, "id": "24"}, {"arcs": [[775, 776, 1822, 1823, -6947, 8330, 8371, -2491, -2490, -2940, -3877, -3876, 5200, -7237, -5304, 8135, 1471, 1472, -7629, -5625, -5624, -566, 8767, 8128, -9441, -8257, -8256, -41, -2647, -1595, -1594, -1869, -1868, -1867, 8741, 1446, 1447, -8384, -1879, -1878, 2245, -7139, 1714, -815, -814, 7369, 9550, -3153, -5659, 5103, 5104, 3798, 3799, 4633, 4634, 1859, 1860, 1861, -3104, -3103, -1943, -1942, 8422, 8608, -508, -6931, 6215, 6216, 7774, 7775, 5809, 5810, 4599, 4600]], "type": "Polygon", "properties": {"name": "Iowa"}, "id": "19"}, {"arcs": [[-1243, -1249, 8547, 8548, 8549, 9537, 7940, 8152, 5487, 9309, -8777, -8958, 8236, -2055, -2054, -5424, -5423, 4709, 4710, -7278, -617, -616, -1720, -7651, -7650, 5237, -2324, -2323, -1103, -7092, -3415, 8080, -7362, 8081, 5499, 6373, 6374, 6375, 7178, -6530, -6529, -5056, -5055, -7925, -8635, -8634, -8299, -8298, -6552, -2935, 3561]], "type": "Polygon", "properties": {"name": "South Carolina"}, "id": "45"}, {"arcs": [[[1358, 8788, 7016, 7017, 7018, 7013, 7811, -4548, 7812, 9395, 9545, 9520, 2625, 9326, 6338, 9327, 8614]], [[9328]]], "type": "MultiPolygon", "properties": {"name": "Maine"}, "id": "23"}, {"arcs": [[[1977]], [[8270, 9242]], [[8271]], [[8272]], [[9243]], [[9244]], [[9245]], [[9275]]], "type": "MultiPolygon", "properties": {"name": "Hawaii"}, "id": "15"}, {"arcs": [[2078, 2079, 2080, -4452, 4546, 4547, -7812, -7014, -7019, -7018, 8121, 8122, 8316, -6088, -2832, -2831, 4211, 4212, 3828, 3829, 2086, 2087]], "type": "Polygon", "properties": {"name": "New Hampshire"}, "id": "33"}, {"arcs": [[2150, 8840, -7094, -5289, -5288, -866, 8542, -6675, -5650, -5649, 6048, 2755, 9127, -7634, -8494, -4514, -195, -194, -4053, 4250, 5278, 5279, 9074, 4512, 2154]], "type": "Polygon", "properties": {"name": "unknown"}, "id": "04"}, {"arcs": [[-1830, 3091, 3092, 3093, 3094, 3095, 9393, 5462, -753, 5459, -4494, 5460, -9385, -6635, -8227, 3097]], "type": "Polygon", "properties": {"name": "Delaware"}, "id": "10"}, {"arcs": [[-1502, 3272, 3273, 3274]], "type": "Polygon", "properties": {"name": "District of Columbia"}, "id": "11"}, {"arcs": [[4036]], "type": "Polygon", "properties": {"name": "unknown"}, "id": "66"}, {"arcs": [[[4424]], [[4723]], [[7892]], [[9480]]], "type": "MultiPolygon", "properties": {"name": "unknown"}, "id": "69"}, {"arcs": [[[4712]], [[6995, 7542]], [[9539]], [[9583]]], "type": "MultiPolygon", "properties": {"name": "unknown"}, "id": "60"}, {"arcs": [[-3444, -3443, -6350, -6349, -2835, 7142, -5044, -5043, -5042, 9437, 9436, 7144, 9584, 6154]], "type": "Polygon", "properties": {"name": "Rhode Island"}, "id": "44"}]}}}