@cdc/map 4.23.11 → 4.24.1

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 (51) hide show
  1. package/dist/cdcmap.js +41327 -40764
  2. package/examples/default-patterns.json +581 -0
  3. package/examples/default-usa.json +159 -57
  4. package/examples/private/map-text-wrap.json +574 -0
  5. package/examples/private/map-world-data.json +1046 -0
  6. package/examples/private/new-world.json +38337 -0
  7. package/examples/private/zika-issue.json +1198 -0
  8. package/index.html +10 -4
  9. package/package.json +3 -3
  10. package/src/CdcMap.tsx +10 -15
  11. package/src/components/{EditorPanel.jsx → EditorPanel/components/EditorPanel.tsx} +30 -62
  12. package/src/components/{HexShapeSettings.jsx → EditorPanel/components/HexShapeSettings.tsx} +0 -49
  13. package/src/components/EditorPanel/components/Inputs.tsx +59 -0
  14. package/src/components/EditorPanel/components/Panel.PatternSettings.tsx +140 -0
  15. package/src/components/EditorPanel/components/Panels.tsx +7 -0
  16. package/src/components/EditorPanel/index.tsx +3 -0
  17. package/src/components/Legend/components/Legend.tsx +183 -0
  18. package/src/components/Legend/components/LegendItem.Hex.tsx +53 -0
  19. package/src/components/Legend/components/index.scss +235 -0
  20. package/src/components/Legend/index.tsx +3 -0
  21. package/src/components/UsaMap/components/Territory/Territory.Hexagon.tsx +129 -0
  22. package/src/components/UsaMap/components/Territory/Territory.Rectangle.tsx +66 -0
  23. package/src/components/UsaMap/components/Territory/index.tsx +9 -0
  24. package/src/components/{CountyMap.jsx → UsaMap/components/UsaMap.County.tsx} +9 -9
  25. package/src/components/{UsaRegionMap.jsx → UsaMap/components/UsaMap.Region.tsx} +1 -3
  26. package/src/components/{SingleStateMap.jsx → UsaMap/components/UsaMap.SingleState.tsx} +8 -9
  27. package/src/components/{UsaMap.jsx → UsaMap/components/UsaMap.State.tsx} +52 -123
  28. package/src/components/UsaMap/index.tsx +13 -0
  29. package/src/components/{WorldMap.jsx → WorldMap/components/WorldMap.jsx} +6 -6
  30. package/src/components/WorldMap/data/world-topo.json +1 -0
  31. package/src/components/WorldMap/index.tsx +3 -0
  32. package/src/context.ts +2 -1
  33. package/src/data/initial-state.js +3 -1
  34. package/src/scss/main.scss +11 -1
  35. package/src/types/MapConfig.ts +149 -0
  36. package/src/types/MapContext.ts +45 -0
  37. package/src/types/runtimeLegend.ts +1 -0
  38. package/src/components/Sidebar.tsx +0 -142
  39. package/src/data/abbreviations.js +0 -57
  40. package/src/data/feature-test.json +0 -73
  41. package/src/data/newtest.json +0 -1
  42. package/src/data/state-abbreviations.js +0 -60
  43. package/src/data/supported-cities.csv +0 -165
  44. package/src/data/test.json +0 -1
  45. package/src/data/world-topo.json +0 -1
  46. package/src/scss/sidebar.scss +0 -230
  47. /package/src/{data → components/UsaMap/data}/cb_2019_us_county_20m.json +0 -0
  48. /package/src/{data → components/UsaMap/data}/us-hex-topo.json +0 -0
  49. /package/src/{data → components/UsaMap/data}/us-regions-topo-2.json +0 -0
  50. /package/src/{data → components/UsaMap/data}/us-regions-topo.json +0 -0
  51. /package/src/{data → components/UsaMap/data}/us-topo.json +0 -0
@@ -1,4 +1,4 @@
1
- import React, { useEffect, useState, memo, useRef, useContext } from 'react'
1
+ import { useEffect, useState, useRef, useContext } from 'react'
2
2
 
3
3
  import { geoCentroid, geoPath, geoContains } from 'd3-geo'
4
4
  import { feature } from 'topojson-client'
@@ -8,11 +8,11 @@ import debounce from 'lodash.debounce'
8
8
  import Loading from '@cdc/core/components/Loading'
9
9
  import ErrorBoundary from '@cdc/core/components/ErrorBoundary'
10
10
 
11
- import useMapLayers from '../hooks/useMapLayers'
12
- import ConfigContext from '../context'
11
+ import useMapLayers from '../../../hooks/useMapLayers'
12
+ import ConfigContext from '../../../context'
13
13
 
14
- const getCountyTopoURL = (year) => {
15
- return `https://www.cdc.gov/TemplatePackage/contrib/data/county-topography/cb_${year}_us_county_20m.json`;
14
+ const getCountyTopoURL = year => {
15
+ return `https://www.cdc.gov/TemplatePackage/contrib/data/county-topography/cb_${year}_us_county_20m.json`
16
16
  }
17
17
 
18
18
  const sortById = (a, b) => {
@@ -23,11 +23,11 @@ const sortById = (a, b) => {
23
23
 
24
24
  const getTopoData = year => {
25
25
  return new Promise((resolve, reject) => {
26
- const resolveWithTopo = async (response) => {
27
- if(response.status !== 200){
28
- response = await import('../data/cb_2019_us_county_20m.json');
26
+ const resolveWithTopo = async response => {
27
+ if (response.status !== 200) {
28
+ response = await import('./../data/cb_2019_us_county_20m.json')
29
29
  } else {
30
- response = await response.json();
30
+ response = await response.json()
31
31
  }
32
32
 
33
33
  let topoData = {}
@@ -7,7 +7,7 @@ import { feature } from 'topojson-client'
7
7
  import topoJSON from '../data/us-regions-topo-2.json'
8
8
  import { Mercator } from '@visx/geo'
9
9
  import chroma from 'chroma-js'
10
- import ConfigContext from '../context'
10
+ import ConfigContext from '../../../context'
11
11
 
12
12
  const { features: unitedStates } = feature(topoJSON, topoJSON.objects.regions)
13
13
 
@@ -36,11 +36,9 @@ const UsaRegionMap = props => {
36
36
  data,
37
37
  displayGeoName,
38
38
  geoClickHandler,
39
- handleCircleClick,
40
39
  handleMapAriaLabels,
41
40
  state,
42
41
  supportedTerritories,
43
- titleCase,
44
42
  } = useContext(ConfigContext)
45
43
 
46
44
  // "Choose State" options
@@ -6,28 +6,27 @@ import { geoPath } from 'd3-geo'
6
6
  import { feature, mesh } from 'topojson-client'
7
7
  import { CustomProjection } from '@visx/geo'
8
8
  import Loading from '@cdc/core/components/Loading'
9
- import colorPalettes from '../../../core/data/colorPalettes'
9
+ import colorPalettes from '@cdc/core/data/colorPalettes'
10
10
  import { geoAlbersUsaTerritories } from 'd3-composite-projections'
11
- import CityList from './CityList'
12
- import ConfigContext from '../context'
11
+ import CityList from '../../CityList'
12
+ import ConfigContext from '../../../context'
13
13
 
14
14
  // SVG ITEMS
15
15
  const WIDTH = 880
16
16
  const HEIGHT = 500
17
17
  const PADDING = 25
18
18
 
19
-
20
- const getCountyTopoURL = (year) => {
21
- return `https://www.cdc.gov/TemplatePackage/contrib/data/county-topography/cb_${year}_us_county_20m.json`;
19
+ const getCountyTopoURL = year => {
20
+ return `https://www.cdc.gov/TemplatePackage/contrib/data/county-topography/cb_${year}_us_county_20m.json`
22
21
  }
23
22
 
24
23
  const getTopoData = year => {
25
24
  return new Promise((resolve, reject) => {
26
25
  const resolveWithTopo = async response => {
27
- if(response.status !== 200){
28
- response = await import('../data/cb_2019_us_county_20m.json');
26
+ if (response.status !== 200) {
27
+ response = await import('./../data/cb_2019_us_county_20m.json')
29
28
  } else {
30
- response = await response.json();
29
+ response = await response.json()
31
30
  }
32
31
  let topoData = {}
33
32
 
@@ -1,138 +1,33 @@
1
1
  import React, { useState, useEffect, memo, useContext } from 'react'
2
2
 
3
3
  import ErrorBoundary from '@cdc/core/components/ErrorBoundary'
4
- import { geoCentroid, geoPath } from 'd3-geo'
5
- import { feature } from 'topojson-client'
4
+
5
+ // United States Topojson resources
6
6
  import topoJSON from '../data/us-topo.json'
7
7
  import hexTopoJSON from '../data/us-hex-topo.json'
8
+
9
+ import { geoCentroid, geoPath } from 'd3-geo'
10
+ import { feature } from 'topojson-client'
8
11
  import { AlbersUsa, Mercator } from '@visx/geo'
9
12
  import chroma from 'chroma-js'
10
- import CityList from './CityList'
11
- import BubbleList from './BubbleList'
12
- import { supportedCities, supportedStates } from '../data/supported-geos'
13
+ import CityList from '../../CityList'
14
+ import BubbleList from '../../BubbleList'
15
+ import { supportedCities, supportedStates } from '../../../data/supported-geos'
13
16
  import { geoAlbersUsa } from 'd3-composite-projections'
14
17
  import { Group } from '@visx/group'
15
18
  import { Text } from '@visx/text'
16
-
19
+ import { PatternLines, PatternCircles, PatternWaves } from '@visx/pattern'
17
20
  import { AiOutlineArrowUp, AiOutlineArrowDown, AiOutlineArrowRight } from 'react-icons/ai'
18
21
 
19
- import useMapLayers from '../hooks/useMapLayers'
20
- import ConfigContext from '../context'
22
+ import Territory from './Territory'
23
+
24
+ import useMapLayers from '../../../hooks/useMapLayers'
25
+ import ConfigContext from '../../../context'
26
+ import { MapContext } from '../../../types/MapContext'
21
27
 
22
28
  const { features: unitedStates } = feature(topoJSON, topoJSON.objects.states)
23
29
  const { features: unitedStatesHex } = feature(hexTopoJSON, hexTopoJSON.objects.states)
24
30
 
25
- // todo: combine hexagonLabel & geoLabel functions
26
- // todo: move geoLabel functions outside of components for reusability
27
- const Hexagon = ({ label, text, stroke, strokeWidth, textColor, territory, territoryData, ...props }) => {
28
- const { state } = useContext(ConfigContext)
29
-
30
- // Labels
31
- const hexagonLabel = (geo, bgColor = '#FFFFFF', projection) => {
32
- let centroid = projection ? projection(geoCentroid(geo)) : [22, 17.5]
33
-
34
- let abbr = geo?.properties?.iso ? geo.properties.iso : geo.uid
35
-
36
- const getArrowDirection = (geoData, geo, isTerritory = false) => {
37
- if (!isTerritory) {
38
- centroid = projection(geoCentroid(geo))
39
- }
40
-
41
- return (
42
- <>
43
- {state.hexMap.shapeGroups.map((group, groupIndex) => {
44
- return group.items.map((item, itemIndex) => {
45
- if (item.operator === '=') {
46
- if (geoData[item.key] === item.value) {
47
- return (
48
- <Group style={{ transform: `translate(36%, 50%)`, fill: 'currentColor' }}>
49
- {item.shape === 'Arrow Down' && <AiOutlineArrowDown size={12} stroke='none' fontWeight={100} />}
50
- {item.shape === 'Arrow Up' && <AiOutlineArrowUp size={12} stroke='none' fontWeight={100} />}
51
- {item.shape === 'Arrow Right' && <AiOutlineArrowRight size={12} stroke='none' fontWeight={100} />}
52
- </Group>
53
- )
54
- }
55
- }
56
- })
57
- })}
58
- </>
59
- )
60
- }
61
-
62
- if (undefined === abbr) return null
63
-
64
- let textColor = '#FFF'
65
-
66
- // Dynamic text color
67
- if (chroma.contrast(textColor, bgColor) < 3.5) {
68
- textColor = '#202020' // dark gray
69
- }
70
-
71
- // always make HI black since it is off to the side
72
- if (abbr === 'US-HI') {
73
- textColor = '#000'
74
- }
75
-
76
- let x = 0,
77
- y = state.hexMap.type === 'shapes' ? -10 : 5
78
-
79
- // used to nudge/move some of the labels for better readability
80
- if (nudges[abbr] && false === isHex) {
81
- x += nudges[abbr][0]
82
- y += nudges[abbr][1]
83
- }
84
-
85
- if (undefined === offsets[abbr] || isHex) {
86
- let y = state.hexMap.type === 'shapes' ? '30%' : '50%'
87
- return (
88
- <>
89
- <Text fontSize={14} x={'50%'} y={y} style={{ fill: 'currentColor', stroke: 'initial', fontWeight: 400, opacity: 1, fillOpacity: 1 }} textAnchor='middle' verticalAnchor='middle'>
90
- {abbr.substring(3)}
91
- </Text>
92
- {state.general.displayAsHex && state.hexMap.type === 'shapes' && getArrowDirection(territoryData, geo, true)}
93
- </>
94
- )
95
- }
96
-
97
- let [dx, dy] = offsets[abbr]
98
-
99
- return (
100
- <g>
101
- <line x1={centroid[0]} y1={centroid[1]} x2={centroid[0] + dx} y2={centroid[1] + dy} stroke='rgba(0,0,0,.5)' strokeWidth={1} />
102
- <text x={4} strokeWidth='0' fontSize={13} style={{ fill: '#202020' }} alignmentBaseline='middle' transform={`translate(${centroid[0] + dx}, ${centroid[1] + dy})`}>
103
- {abbr.substring(3)}
104
- </text>
105
- </g>
106
- )
107
- }
108
-
109
- return (
110
- <svg viewBox='0 0 45 51' className='territory-wrapper--hex'>
111
- <g {...props}>
112
- <polygon stroke={stroke} strokeWidth={strokeWidth} points='22 0 44 12.702 44 38.105 22 50.807 0 38.105 0 12.702' />
113
- {state.general.displayAsHex && hexagonLabel(territoryData ? territoryData : geo, stroke, false)}
114
- </g>
115
- </svg>
116
- )
117
- }
118
-
119
- const Rect = ({ label, text, stroke, strokeWidth, textColor, ...props }) => {
120
- return (
121
- <svg viewBox='0 0 45 28'>
122
- <g {...props} strokeLinejoin='round'>
123
- <path
124
- stroke={stroke}
125
- strokeWidth={strokeWidth}
126
- d='M40,0.5 C41.2426407,0.5 42.3676407,1.00367966 43.1819805,1.81801948 C43.9963203,2.63235931 44.5,3.75735931 44.5,5 L44.5,5 L44.5,23 C44.5,24.2426407 43.9963203,25.3676407 43.1819805,26.1819805 C42.3676407,26.9963203 41.2426407,27.5 40,27.5 L40,27.5 L5,27.5 C3.75735931,27.5 2.63235931,26.9963203 1.81801948,26.1819805 C1.00367966,25.3676407 0.5,24.2426407 0.5,23 L0.5,23 L0.5,5 C0.5,3.75735931 1.00367966,2.63235931 1.81801948,1.81801948 C2.63235931,1.00367966 3.75735931,0.5 5,0.5 L5,0.5 Z'
127
- />
128
- <text textAnchor='middle' dominantBaseline='middle' x='50%' y='54%' fill={text} stroke={textColor}>
129
- {label}
130
- </text>
131
- </g>
132
- </svg>
133
- )
134
- }
135
-
136
31
  const offsets = {
137
32
  'US-VT': [50, -8],
138
33
  'US-NH': [34, 2],
@@ -156,7 +51,7 @@ const nudges = {
156
51
  'US-WV': [-2, 2]
157
52
  }
158
53
 
159
- const UsaMap = props => {
54
+ const UsaMap = () => {
160
55
  // prettier-ignore
161
56
  const {
162
57
  applyLegendToRow,
@@ -170,7 +65,7 @@ const UsaMap = props => {
170
65
  state,
171
66
  supportedTerritories,
172
67
  titleCase,
173
- } = useContext(ConfigContext)
68
+ } = useContext<MapContext>(ConfigContext)
174
69
 
175
70
  let isFilterValueSupported = false
176
71
 
@@ -224,7 +119,7 @@ const UsaMap = props => {
224
119
  const geoStrokeColor = state.general.geoBorderColor === 'darkGray' ? 'rgba(0, 0, 0, 0.2)' : 'rgba(255,255,255,0.7)'
225
120
 
226
121
  const territories = territoriesData.map(territory => {
227
- const Shape = isHex ? Hexagon : Rect
122
+ const Shape = isHex ? Territory.Hexagon : Territory.Rectangle
228
123
 
229
124
  const territoryData = data[territory]
230
125
 
@@ -271,11 +166,18 @@ const UsaMap = props => {
271
166
  fill: legendColors[2]
272
167
  }
273
168
  }
274
- return <Shape key={label} label={label} css={styles} text={styles.color} strokeWidth={1.5} textColor={textColor} onClick={() => geoClickHandler(territory, territoryData)} data-tooltip-id='tooltip' data-tooltip-html={toolTip} territory={territory} territoryData={territoryData} />
169
+
170
+ return (
171
+ <>
172
+ <Shape key={label} label={label} style={styles} text={styles.color} strokeWidth={1.5} textColor={textColor} onClick={() => geoClickHandler(territory, territoryData)} data-tooltip-id='tooltip' data-tooltip-html={toolTip} territory={territory} territoryData={territoryData} />
173
+ </>
174
+ )
275
175
  }
276
176
  })
277
177
 
278
178
  let pathGenerator = geoPath().projection(geoAlbersUsa().translate(translate))
179
+
180
+ // Note: Layers are different than patterns
279
181
  const { pathArray } = useMapLayers(state, '', pathGenerator)
280
182
 
281
183
  // Constructs and displays markup for all geos on the map (except territories right now)
@@ -384,10 +286,37 @@ const UsaMap = props => {
384
286
  )
385
287
  }
386
288
 
289
+ const sizes = {
290
+ small: '8',
291
+ medium: '10',
292
+ large: '12'
293
+ }
294
+
387
295
  return (
388
296
  <g data-name={geoName} key={key}>
389
297
  <g className='geo-group' style={styles} onClick={() => geoClickHandler(geoDisplayName, geoData)} id={geoName} data-tooltip-id='tooltip' data-tooltip-html={tooltip}>
390
298
  <path tabIndex={-1} className='single-geo' strokeWidth={1.3} d={path} />
299
+ {state.map.patterns.map((patternData, patternIndex) => {
300
+ let { pattern, dataKey, size } = patternData
301
+ let defaultPatternColor = 'black'
302
+
303
+ const hasMatchingValues = patternData.dataValue === geoData[patternData.dataKey]
304
+
305
+ if (chroma.contrast(defaultPatternColor, legendColors[0]) < 3.5) {
306
+ defaultPatternColor = 'white'
307
+ }
308
+
309
+ return (
310
+ hasMatchingValues && (
311
+ <>
312
+ {pattern === 'waves' && <PatternWaves id={`${dataKey}--${patternIndex}`} height={sizes[size] ?? 10} width={sizes[size] ?? 10} fill={defaultPatternColor} />}
313
+ {pattern === 'circles' && <PatternCircles id={`${dataKey}--${patternIndex}`} height={sizes[size] ?? 10} width={sizes[size] ?? 10} fill={defaultPatternColor} />}
314
+ {pattern === 'lines' && <PatternLines id={`${dataKey}--${patternIndex}`} height={sizes[size] ?? 6} width={sizes[size] ?? 6} stroke={defaultPatternColor} strokeWidth={1} orientation={['diagonalRightToLeft']} />}
315
+ <path className={`pattern-geoKey--${dataKey}`} tabIndex={-1} stroke='transparent' d={path} fill={`url(#${dataKey}--${patternIndex})`} />
316
+ </>
317
+ )
318
+ )
319
+ })}
391
320
  {(isHex || showLabel) && geoLabel(geo, legendColors[0], projection)}
392
321
  {isHex && state.hexMap.type === 'shapes' && getArrowDirection(geoData, geo, legendColors[0])}
393
322
  </g>
@@ -0,0 +1,13 @@
1
+ import UsaStateMap from './components/UsaMap.State'
2
+ import UsaRegionMap from './components/UsaMap.Region.jsx'
3
+ import UsaCountyMap from './components/UsaMap.County'
4
+ import UsaSingleStateMap from './components/UsaMap.SingleState.jsx'
5
+
6
+ const UsaMap = {
7
+ State: UsaStateMap,
8
+ Region: UsaRegionMap,
9
+ County: UsaCountyMap,
10
+ SingleState: UsaSingleStateMap
11
+ }
12
+
13
+ export default UsaMap
@@ -5,12 +5,12 @@ import ErrorBoundary from '@cdc/core/components/ErrorBoundary'
5
5
  import { geoMercator } from 'd3-geo'
6
6
  import { Mercator } from '@visx/geo'
7
7
  import { feature } from 'topojson-client'
8
- import topoJSON from '../data/world-topo.json'
9
- import ZoomableGroup from './ZoomableGroup'
10
- import Geo from './Geo'
11
- import CityList from './CityList'
12
- import BubbleList from './BubbleList'
13
- import ConfigContext from '../context'
8
+ import topoJSON from './../data/world-topo.json'
9
+ import ZoomableGroup from '../../ZoomableGroup'
10
+ import Geo from '../../Geo'
11
+ import CityList from '../../CityList'
12
+ import BubbleList from '../../BubbleList'
13
+ import ConfigContext from '../../../context'
14
14
 
15
15
  const { features: world } = feature(topoJSON, topoJSON.objects.countries)
16
16
 
@@ -0,0 +1 @@
1
+ {"type":"Topology","arcs":[[[28100,4615],[0,-57],[-50,-29],[-49,-24],[-10,43],[39,23],[24,7],[46,37]],[[27954,4447],[19,19],[27,-34],[-12,-61],[-49,-15],[-44,13],[-7,53],[31,39],[35,-14]],[[16,4620],[-9,-56],[-7,-6],[0,57],[16,5]],[[16697,6379],[12,-14],[284,-237],[4,-67],[113,-117]],[[17110,5944],[-36,-144],[5,-66],[50,-43],[2,-30],[-21,-70],[4,-36],[-5,-56],[28,-73],[32,-115],[28,-26]],[[17197,5285],[0,0],[-63,-68],[-84,-44],[-47,2],[-28,-36],[-54,-3],[-20,-14],[-95,33],[-58,-10]],[[16748,5145],[-22,159],[-27,55],[-16,32],[-76,21]],[[16607,5412],[-44,36],[-50,19],[-31,19],[-32,30]],[[16450,5516],[0,0],[-43,147],[-45,66],[-16,67],[8,61],[-13,107]],[[16341,5964],[32,6],[28,42],[30,61],[20,24],[-1,38],[-17,26],[-5,47]],[[16428,6208],[0,0],[23,14],[4,69],[-31,66]],[[16424,6357],[28,14],[86,-2],[159,10]],[[13374,9716],[0,-7],[-1,-23]],[[13373,9686],[-2,-177],[-256,6],[4,-298],[-74,-10],[-19,-60],[15,-169],[-306,0],[-17,-38]],[[12718,8940],[3,49]],[[12721,8989],[1,0],[176,10],[10,41],[32,53],[26,161],[108,126],[37,147],[24,8],[26,91],[66,13],[28,-15],[35,0],[26,27],[48,3],[-3,62],[13,0]],[[4462,12208],[-11,0],[-150,114],[-57,51],[-142,48],[-43,103],[11,71],[-99,51],[-14,93],[-94,86],[-2,60]],[[3861,12885],[0,0],[43,56],[-2,73],[-132,75],[-81,133],[-49,83],[-71,53],[-52,48],[-41,60],[-79,-38],[-76,-65],[-69,77],[-55,51],[-75,32],[-77,4],[0,664],[0,433],[0,0]],[[3045,14624],[146,-28],[123,-56],[81,-10],[68,48],[95,37],[116,-15],[117,51],[128,29],[53,-48],[59,27],[17,55],[54,-12],[132,-105],[104,80],[10,-89],[96,19],[30,34],[95,-7],[119,-49],[183,-43],[106,-19],[77,8],[106,-60],[-110,-58],[141,-25],[211,14],[66,20],[83,-69],[85,59],[-80,49],[50,40],[96,5],[63,12],[63,-28],[78,-64],[87,10],[138,-52],[121,18],[114,-3],[-9,73],[70,20],[120,-40],[0,-110],[49,93],[64,-3],[34,117],[-83,72],[-91,47],[6,129],[92,85],[104,-19],[78,-51],[107,-132],[-70,-58],[145,-23],[0,-119],[104,91],[93,-75],[-23,-86],[76,-79],[81,84],[57,101],[4,128],[112,-9],[115,-17],[105,-58],[4,-58],[-57,-62],[54,-62],[-10,-57],[-152,-82],[-109,-18],[-81,35],[-23,-58],[-76,-99],[-22,-51],[-90,-78],[-113,-8],[-61,-49],[-5,-77],[-91,-14],[-95,-95],[-85,-132],[-30,-92],[-4,-135],[114,-19],[35,-110],[36,-89],[110,24],[145,-51],[78,-44],[56,-55],[98,-32],[82,-49],[130,-7],[84,-11],[-12,-101],[23,-117],[57,-131],[116,-111],[60,38],[42,119],[-40,185],[-56,62],[126,54],[88,82],[44,82],[-7,77],[-52,100],[-96,88],[92,121],[-33,106],[-27,183],[55,27],[133,-32],[80,-12],[65,31],[74,-39],[95,-68],[24,-46],[139,-8],[-2,-98],[25,-148],[71,-18],[57,-69],[114,65],[74,128],[52,55],[61,-104],[101,-149],[87,-140],[-31,-74],[103,-65],[70,-67],[125,-30],[50,-37],[30,-99],[62,-16],[31,-43],[5,-132],[-57,-43],[-55,-41],[-128,-42],[-99,-95],[-132,-20],[-167,24],[-117,1],[-81,-7],[-66,-84],[-99,-52],[-112,-154],[-90,-108],[67,20],[124,152],[164,98],[117,12],[69,-57],[-74,-79],[25,-126],[25,-88],[102,-58],[129,17],[78,130],[5,-84],[51,-42],[-96,-77],[-174,-69],[-77,-48],[-87,-84],[-60,9],[-2,99],[135,96],[-125,-4],[-87,-13]],[[8809,11757],[-51,66],[0,158],[-34,34],[-53,-19],[-25,30],[-59,-88],[-25,-91],[-28,-52],[-33,-19],[-25,-6],[-7,-29],[-144,0],[-119,-1],[-35,-21],[-82,-84],[-10,-9],[-26,-45],[-71,0],[-77,-1],[-35,-18],[13,-24],[7,-35],[-1,-12],[-103,-58],[-80,-18],[-91,-62],[-19,0],[-27,18],[-9,16],[2,13],[17,41],[37,63],[23,70],[-16,101],[-16,106],[-82,55],[10,21],[-12,14],[-21,0],[-16,18],[-4,27],[-15,-11],[-20,4],[4,11],[-19,12],[-7,30],[-61,38],[-63,38],[-76,46],[-73,42],[-71,-34],[-25,0],[-96,30],[-63,-15],[-76,36],[-79,19],[-55,7],[-24,19],[-15,65],[-25,-1],[0,-44],[-163,0],[-266,0],[-266,0],[-234,0],[-235,0],[-229,0],[-238,0],[-77,0],[-231,0],[-222,0]],[[7493,13777],[58,54],[108,-2],[-2,-22],[-91,-65],[-55,3],[-18,32]],[[7823,14985],[-86,62],[4,42],[37,7],[179,-12],[134,-64],[7,-32],[-82,3],[-85,3],[-86,-17],[-22,8]],[[7781,13735],[30,34],[32,-2],[20,-25],[-31,-61],[-35,10],[-20,35],[4,9]],[[6743,15238],[-42,-44],[-114,9],[-94,30],[41,52],[112,32],[68,-41],[29,-38]],[[6725,15535],[-35,-4],[-146,8],[-21,33],[157,-2],[54,-21],[-9,-14]],[[6498,15680],[93,-40],[-22,-42],[-114,-24],[-64,27],[-33,44],[-7,48],[102,-5],[45,-8]],[[7169,15171],[-125,13],[-209,38],[-26,65],[-9,57],[-79,51],[-162,15],[-90,35],[29,49],[162,-8],[86,-38],[154,0],[67,-37],[-18,-45],[90,-26],[49,-28],[106,-5],[113,-10],[125,26],[158,9],[127,-8],[84,-43],[17,-48],[-49,-31],[-115,-25],[-100,13],[-224,-17],[-161,-2]],[[5365,15609],[110,-19],[-26,-34],[-145,-33],[-116,37],[63,37],[114,12]],[[5388,15685],[103,-24],[-96,-22],[-129,0],[1,16],[80,35],[41,-5]],[[9710,12477],[-41,-73],[-53,-102],[52,39],[52,-24],[-27,-42],[69,-32],[36,29],[78,-35],[-25,-86],[55,20],[10,-62],[24,-73],[-32,-102],[-36,-5],[-51,22],[17,96],[-22,15],[-90,-102],[-47,5],[55,54],[-74,29],[-85,-8],[-151,4],[-12,35],[49,41],[-34,31],[65,71],[81,186],[48,66],[68,40],[37,-5],[-16,-32]],[[7502,14087],[86,-40],[89,-36],[7,-56],[58,10],[55,-39],[-69,-37],[-121,28],[-45,53],[-76,-62],[-112,-61],[-26,68],[-106,-11],[68,58],[10,92],[26,106],[57,-9],[15,-52],[39,19],[45,-31]],[[7902,14932],[73,46],[173,-59],[108,-55],[10,-51],[145,26],[81,-73],[189,-47],[68,-47],[74,-110],[-144,-54],[184,-76],[124,-25],[113,-108],[122,-7],[-24,-83],[-137,-135],[-96,50],[-123,113],[-101,-15],[-10,-68],[83,-67],[106,-54],[32,-31],[50,-116],[-27,-83],[-98,31],[-196,94],[110,-101],[82,-70],[12,-41],[-212,47],[-167,67],[-94,57],[27,33],[-116,60],[-114,57],[1,-34],[-226,-19],[-65,41],[51,86],[147,2],[160,14],[-27,42],[28,58],[102,114],[-23,51],[-30,41],[-119,56],[-158,40],[50,30],[-82,72],[-69,7],[-61,40],[-43,-35],[-141,-15],[-284,26],[-166,34],[-126,18],[-65,41],[82,53],[-111,0],[-25,118],[60,105],[80,47],[202,32],[-58,-75],[62,-74],[72,95],[198,47],[133,-121],[-11,-76],[155,34]],[[6673,15140],[164,-4],[149,-28],[-117,-105],[-94,-22],[-83,-87],[-89,4],[-49,103],[1,58],[41,50],[77,31]],[[4461,15372],[0,0],[132,87],[161,75],[119,-2],[107,18],[-10,-90],[-60,-41],[-74,-5],[-145,-50],[-124,-18],[-106,26]],[[3692,12796],[74,8],[-23,-132],[68,-94],[-31,1],[-47,53],[-29,53],[-39,37],[-15,51],[5,37],[37,-14]],[[5816,15743],[153,-16],[211,-43],[60,-55],[30,-48],[-127,12],[-129,38],[-174,5],[76,35],[-95,28],[-5,44]],[[4410,12151],[-40,-17],[-128,53],[-24,41],[-69,41],[-14,33],[-80,22],[-31,62],[7,28],[81,-26],[48,-17],[74,-13],[26,-40],[39,-55],[78,-49],[33,-63]],[[4563,15177],[112,-25],[199,-5],[76,-34],[84,-50],[-99,-30],[-190,-81],[-97,-82],[0,-50],[-206,-57],[-41,51],[-181,62],[34,49],[54,85],[68,78],[-77,71],[264,18]],[[5634,15340],[69,19],[83,-5],[13,-57],[-48,-56],[-264,-17],[-197,-50],[-119,-3],[-9,37],[162,52],[-353,-14],[-109,21],[107,115],[73,31],[219,-38],[139,-70],[136,-9],[-111,112],[71,42],[81,-13],[26,-55],[31,-42]],[[5736,15017],[86,-47],[49,-115],[25,-82],[131,-57],[141,-56],[-8,-51],[-128,-9],[49,-45],[-26,-43],[-141,19],[-135,31],[-90,-7],[-147,-40],[-198,-17],[-138,-11],[-43,55],[-107,32],[-69,-14],[-96,93],[52,13],[120,19],[110,-5],[103,21],[-152,27],[-167,-10],[-110,3],[-41,43],[180,47],[-120,-2],[-136,31],[66,87],[53,46],[210,71],[80,-22],[-39,-54],[174,34],[108,-59],[89,60],[71,-38],[63,-114],[39,48],[-55,119],[69,17],[78,-18]],[[6210,14973],[-86,77],[92,56],[94,-24],[139,14],[20,-34],[-72,-56],[118,-50],[-15,-104],[-128,-46],[-74,10],[-55,44],[-194,90],[2,38],[159,-15]],[[5729,15078],[105,5],[60,-26],[-69,-77],[-122,81],[26,17]],[[6361,15442],[60,-55],[3,-59],[-36,-87],[-128,-12],[-85,19],[3,68],[-129,-9],[-5,90],[85,-4],[116,41],[111,-7],[5,15]],[[6555,15895],[54,36],[81,8],[-35,27],[182,5],[100,-62],[131,-25],[128,-22],[61,-77],[95,-38],[-108,-35],[-144,-87],[-138,-8],[-161,14],[-85,47],[1,43],[63,31],[-143,-1],[-87,40],[-49,52],[54,52]],[[6901,16046],[116,22],[91,4],[154,18],[115,44],[96,-6],[84,-33],[60,63],[102,19],[141,13],[238,5],[42,-13],[225,20],[169,-7],[170,-8],[208,-9],[168,-15],[142,-32],[-3,-31],[-190,-50],[-190,-24],[-70,-26],[169,0],[-183,-70],[-127,-33],[-134,-96],[-161,-19],[-50,-24],[-236,-13],[108,-14],[-55,-21],[65,-58],[-74,-39],[-121,-33],[-37,-46],[-109,-35],[11,-27],[134,5],[1,-29],[-208,-69],[-204,32],[-229,-18],[-116,14],[-148,6],[-10,56],[145,27],[-39,84],[47,8],[209,-51],[-106,76],[-127,22],[63,44],[138,28],[23,41],[-111,46],[-33,60],[214,-5],[61,-13],[123,43],[-176,13],[-273,-8],[-138,40],[-66,47],[-91,35],[-17,40]],[[8179,14359],[-51,-34],[-87,-6],[-20,58],[33,65],[72,16],[61,-33],[1,-49],[-9,-17]],[[6537,14598],[47,-44],[-48,-41],[-106,35],[-63,-13],[-107,53],[69,36],[54,51],[83,-33],[47,-22],[24,-22]],[[9014,12309],[27,10],[102,-29],[80,-50],[3,-21],[-38,-2],[-102,37],[-72,55]],[[9053,11978],[28,-57],[57,-15],[72,3],[-39,-48],[-29,-7],[-99,49],[-19,39],[29,36]],[[8809,11757],[14,-39],[-84,-56],[-80,-40],[-82,-35],[-42,-69],[-13,-27],[0,-62],[26,-62],[32,-3],[-8,44],[24,-26],[-7,-34],[-52,-19],[-38,2],[-58,-20],[-34,-6],[-45,-6],[-66,-33],[115,22],[23,-22],[-109,-35],[-50,-1],[2,14],[-23,-32],[23,-5],[-17,-84],[-56,-89],[-7,30],[-17,5],[-25,29],[16,-63],[19,-20],[1,-44],[-25,-46],[-44,-93],[-6,5],[23,80],[-39,44],[-10,97],[-14,-51],[16,-74],[-52,18],[55,-37],[3,-111],[22,-8],[8,-40],[11,-117],[-50,-87],[-80,-34],[-51,-69],[-39,-7],[-40,-43],[-12,-40],[-85,-75],[-44,-56],[-36,-69],[-13,-83],[14,-81],[26,-100],[35,-82],[0,-50],[37,-136],[-3,-79],[-3,-45],[-19,-71],[-23,-15],[-39,14],[-12,51],[-30,27],[-42,101],[-35,89],[-13,45],[17,78],[-22,64],[-61,97],[-30,19],[-79,-54],[-14,6],[-38,54],[-49,29],[-89,-14],[-69,13],[-59,-8],[-32,-19],[13,-31],[-1,-47],[17,-22],[-15,-16],[-28,17],[-31,-21],[-55,2],[-59,62],[-68,-14],[-57,27],[-49,-8],[-66,-28],[-70,-86],[-78,-50],[-42,-56],[-18,-53],[-1,-80],[4,-56],[15,-40],[-31,-3]],[[6437,9505],[-55,26],[-61,35],[-22,56],[-17,81],[-47,67],[-26,68],[-39,79],[-55,47],[-64,-2],[-49,-92],[-65,35],[-40,35],[-20,65],[-26,60],[-46,52],[-40,36],[-28,42],[-136,0],[0,-48],[-61,0],[-156,-1],[-178,82],[-118,57],[7,22],[-99,-12],[-89,-9]],[[4907,10286],[-13,60],[-50,67],[-37,13],[-8,34],[-44,6],[-28,32],[-72,11],[-20,19],[-9,64],[-76,118],[-66,161],[4,27],[-35,39],[-60,97],[-11,96],[-42,63],[17,97],[-3,100],[-25,89],[31,111],[10,106],[8,105],[-13,157],[-24,100],[-24,54],[10,23],[113,-40],[41,-110],[20,31],[-12,96],[-27,96]],[[1920,8832],[14,-9],[12,-17],[20,-40],[-1,-7],[-31,-24],[-25,-19],[-11,-19],[-20,16],[2,33],[-12,43],[3,12],[14,20],[-6,22],[5,12],[6,-3],[30,-20]],[[1874,8913],[-7,-15],[-26,-8],[-13,25],[-9,9],[-1,7],[8,11],[28,-12],[20,-17]],[[1815,8960],[-4,-12],[-41,3],[6,15],[39,-6]],[[1716,9024],[6,-8],[22,-39],[-4,-6],[-6,2],[-26,4],[-10,26],[-4,4],[22,17]],[[1611,9082],[1,-27],[-9,-12],[-27,22],[5,7],[12,12],[18,-2]],[[1056,13535],[62,-10],[8,-45],[-48,-18],[-52,22],[-46,32],[76,19]],[[2090,13254],[52,-8],[32,-37],[-67,-55],[-78,-44],[-40,30],[-12,55],[71,41],[42,18]],[[3861,12885],[0,0],[-42,43],[-70,38],[-22,101],[-100,95],[-42,109],[-76,8],[-124,3],[-91,34],[-161,121],[-75,22],[-137,42],[-108,-10],[-153,53],[-93,50],[-87,-25],[16,-81],[-42,-7],[-92,-25],[-68,-39],[-86,-25],[-12,69],[36,115],[82,36],[-21,29],[-100,-65],[-52,-78],[-113,-83],[57,-57],[-73,-84],[-85,-48],[-78,-36],[-19,-51],[-122,-61],[-25,-54],[-91,-50],[-53,8],[-73,-32],[-80,-39],[-65,-40],[-133,-33],[-12,19],[84,55],[77,36],[84,64],[96,13],[38,48],[109,70],[17,23],[58,42],[13,88],[40,68],[-90,-35],[-25,21],[-43,-43],[-51,59],[-20,-41],[-30,58],[-78,-47],[-48,0],[-7,69],[15,43],[-50,42],[-101,-22],[-67,54],[-54,28],[0,67],[-60,49],[30,67],[64,65],[28,60],[63,8],[53,-18],[64,56],[57,-10],[59,36],[-15,53],[-43,21],[58,46],[-48,-2],[-84,-25],[-23,-26],[-61,26],[-112,-13],[-113,27],[-34,48],[-98,67],[110,50],[174,56],[64,0],[-10,-58],[165,5],[-64,72],[-97,45],[-54,58],[-76,49],[-107,38],[44,61],[139,3],[98,54],[19,56],[79,56],[76,13],[149,52],[71,-8],[120,62],[118,-24],[57,-53],[34,23],[132,-7],[-5,-27],[120,-21],[79,13],[165,-38],[151,-10],[60,-16],[103,20],[118,-35],[85,-17],[0,0]],[[646,13932],[48,-22],[49,12],[62,-31],[78,-15],[-7,-13],[-59,-25],[-59,25],[-30,21],[-69,-6],[-18,10],[5,44]],[[20869,12233],[-60,-79],[-64,-10],[-4,-117],[-43,-53],[-155,38],[-57,-209],[-40,-26],[-154,-46],[70,-203],[-54,-30],[7,-67]],[[20315,11431],[-48,17],[-40,42],[-116,13],[-129,2],[-28,-12],[-111,49],[-45,-24],[-12,-70],[-128,41],[-51,-16],[-18,-52]],[[19589,11421],[-44,-21],[-104,-81],[-33,-84],[-30,0],[-22,55],[-99,4],[-15,95],[-38,0],[5,117],[-93,86],[-134,-9],[-92,-17],[-74,105],[-64,44],[-121,83],[-15,11],[-200,-69],[3,-430]],[[18419,11310],[-40,-6],[-55,91],[-53,33],[-88,-24],[-35,-39]],[[18148,11365],[-4,28],[19,50],[-15,40],[-91,40],[-34,104],[-44,30],[-2,38],[76,-12],[3,86],[66,19],[68,-18],[14,115],[-13,72],[-79,-6],[-66,28],[-90,-51],[-74,-24]],[[17882,11904],[-39,18],[8,60],[-50,79],[-58,-3],[-67,79],[46,88],[-23,24],[62,128],[80,-68],[10,85],[162,128],[121,3],[173,-81],[92,-48],[82,49],[125,3],[99,-61],[24,35],[109,-5],[20,56],[-127,80],[74,57],[-14,32],[76,30],[-57,80],[35,40],[292,40],[39,29],[195,43],[70,48],[140,-25],[25,-121],[81,28],[100,-39],[-5,-64],[74,7],[196,110],[-29,-37],[99,-90],[175,-296],[41,61],[108,-68],[113,30],[43,-20],[37,-68],[54,-23],[34,-49],[100,15],[42,-70]],[[19589,11421],[23,-11],[-65,-76],[58,-43],[55,29],[93,-62],[-100,-84],[-59,11]],[[19594,11185],[-33,-3],[-11,33],[16,54],[-105,-27],[-24,-75],[-37,-65],[-66,6],[-20,-51],[58,-28],[17,-87],[-45,-118]],[[19344,10824],[-59,25],[-43,0]],[[19242,10849],[2,71],[-104,51],[-81,57],[-51,55],[-89,80],[-39,121],[-26,21],[-84,-6],[-30,25],[-8,92],[-106,62],[-66,-67],[-66,-41],[13,-59],[-88,-1]],[[25056,6186],[135,-81],[145,-66],[53,-60],[44,-58],[12,-69],[130,-73],[19,-62],[-72,-12],[17,-78],[70,-76],[51,-124],[44,4],[-3,-52],[60,-19],[-23,-23],[83,-49],[-9,-34],[-51,-8],[-20,30],[-67,14],[-79,17],[-60,75],[-45,64],[-40,102],[-102,51],[-66,-33],[-48,-39],[10,-86],[-61,-40],[-44,20],[-80,4]],[[25059,5425],[-2,380],[-1,381]],[[25965,6063],[29,-38],[10,-61],[-25,-31],[-14,69],[-19,45],[-35,38],[-44,50],[-57,34],[21,29],[42,-33],[27,-26],[34,-28],[31,-48]],[[25860,5807],[-43,-28],[-40,-27],[-42,0],[-63,34],[-45,33],[7,36],[69,-18],[44,10],[11,56],[11,3],[8,-62],[44,9],[22,39],[44,42],[-9,69],[47,3],[16,-20],[-2,-65],[-25,-71],[-42,-10],[-12,-33]],[[26130,5866],[24,-26],[38,-74],[37,-40],[-12,-33],[-22,-11],[-33,45],[-35,74],[-16,89],[11,11],[8,-35]],[[25059,5425],[-71,96],[-79,23],[-19,-33],[-99,-3],[34,94],[49,33],[-20,127],[-38,98],[-152,99],[-64,10],[-117,107],[-23,-56],[-29,-11],[-18,43],[-1,51],[-59,57],[83,42],[56,-2],[-7,31],[-113,0],[-32,70],[-70,21],[-32,58],[105,28],[40,39],[126,-49],[12,-43],[21,-189],[81,-69],[66,123],[89,71],[69,0],[67,-41],[58,-41],[84,-23]],[[23805,5451],[8,-23],[1,-35]],[[23814,5393],[-51,-87],[-67,-26],[-9,15],[7,39],[33,71],[78,46]],[[24525,5685],[-6,88],[13,41],[17,40],[17,-34],[0,-56],[-41,-79]],[[23252,6972],[-45,-106],[57,-110],[-13,-53],[88,-108],[-93,-14],[-27,-79],[4,-107],[-75,-79],[-2,-116],[-30,-179],[-11,42],[-89,-53],[-31,71],[-56,7],[-39,38],[-92,-42],[-29,56],[-51,-7],[-64,14],[-12,156],[-39,33],[-38,100],[-10,102],[9,108],[45,77]],[[22609,6723],[14,-77],[53,-66],[50,23],[50,-8],[46,59],[38,10],[73,-33],[64,25],[40,163],[30,41],[27,132],[90,0],[68,-20]],[[24148,6162],[86,-34],[29,-89],[-66,48],[-66,10],[-44,-7],[-54,4],[19,63],[96,5]],[[23953,6047],[-53,21],[-16,51],[79,6],[19,-39],[-29,-39]],[[24035,6744],[6,-64],[47,-11],[6,-47],[-3,-103],[-40,12],[-12,-71],[32,-62],[-22,-13],[-31,73],[-24,149],[16,94],[25,43]],[[23645,6592],[90,5],[77,85],[14,-26],[-63,-117],[-58,-22],[-76,22],[-130,-5],[-68,-17],[-11,-88],[70,-104],[42,53],[145,40],[-6,-55],[-34,18],[-33,-69],[-70,-45],[74,-149],[-15,-41],[71,-134],[0,-77],[-43,-34],[-30,41],[38,96],[-77,-46],[-19,32],[10,46],[-56,68],[5,114],[-51,-36],[7,-136],[2,-167],[-49,-16],[-34,34],[23,107],[-12,113],[-33,0],[-24,80],[32,77],[11,93],[39,176],[17,48],[66,86],[61,-34],[98,-16]],[[23440,5292],[-104,82],[73,23],[41,-35],[28,-36],[-6,-31],[-32,-3]],[[23521,5493],[52,9],[71,43],[-13,-65],[-117,-33],[-103,14],[0,43],[61,24],[49,-35]],[[23281,5513],[49,10],[19,-49],[-91,-23],[-54,-17],[-41,1],[26,68],[43,1],[21,40],[28,-31]],[[22518,5740],[11,-42],[149,-12],[17,49],[145,-56],[29,-76],[117,-21],[95,-70],[-89,-44],[-85,47],[-72,-3],[-80,8],[-73,21],[-90,45],[-58,12],[-33,-15],[-142,48],[-13,51],[-72,8],[54,112],[94,-7],[64,-46],[32,-9]],[[22196,6362],[14,-81],[28,-65],[56,-10],[38,-74],[-19,-145],[-3,-181],[-87,-2],[-66,97],[-100,96],[-33,71],[-59,94],[-39,88],[-59,164],[-69,96],[-22,101],[-29,91],[-71,73],[-41,100],[-59,66],[-81,128],[-7,59],[50,-3],[122,-24],[69,-114],[60,-79],[42,-48],[75,-125],[79,-2],[66,-80],[45,-98],[59,-53],[-31,-96],[45,-41],[27,-3]],[[8692,347],[30,-54],[39,-87],[102,-71],[110,-29],[-36,-58],[-74,-5],[-39,40]],[[8824,83],[-48,4],[-84,0],[0,260]],[[9552,2963],[-19,-93],[-21,-120],[1,-117],[-18,-25],[-6,-75]],[[9489,2533],[-5,-61],[99,-101],[-10,-80],[48,-50],[-3,-57],[-76,-150],[-115,-63],[-157,-24],[-86,11],[17,-69],[-17,-87],[15,-59],[-47,-41],[-80,-16],[-75,42],[-30,-31],[12,-116],[52,-35],[42,37],[24,-61],[-72,-36],[-63,-72],[-11,-117],[-19,-63],[-74,0],[-61,-60],[-22,-88],[77,-85],[74,-23],[-27,-106],[-92,-65],[-50,-137],[-71,-46],[-33,-54],[26,-122],[51,-67],[-32,6]],[[8698,387],[-72,18],[-190,16],[-32,67],[2,87],[-52,-6],[-28,41],[-7,124],[61,51],[24,75],[-9,59],[41,99],[29,155],[-9,69],[35,21],[-9,45],[-36,23],[26,49],[-36,44],[-17,135],[31,23],[-14,142],[19,120],[20,105],[47,41],[-23,114],[0,108],[59,76],[-3,98],[45,113],[1,107],[-21,22],[-36,202],[48,120],[-6,113],[27,105],[52,109],[54,74],[-23,45],[16,38],[-3,195],[86,57],[27,121],[-10,29]],[[8812,3836],[65,106],[103,-28],[45,-85],[30,94],[89,-5],[13,-24]],[[9157,3894],[143,-191],[65,-18],[94,-86],[82,-46],[11,-51],[-77,-178],[78,-31],[88,-18],[61,19],[71,89],[14,102]],[[9787,3485],[38,24],[39,-68],[-2,-93],[-65,-65],[-53,-47],[-88,-113],[-104,-160]],[[8824,83],[-27,-47],[-67,-36],[-38,4],[-46,10],[-57,34],[-81,17],[-98,66],[-81,62],[-106,131],[63,-25],[110,-78],[104,-41],[40,53],[25,79],[72,49],[55,-14]],[[8618,4438],[39,-79],[10,-84],[41,-50],[-25,-113],[42,-130],[31,-162],[56,16]],[[8698,387],[-70,1],[-37,-29],[-71,-43],[-12,-108],[-34,-3],[-88,38],[-89,81],[0,0],[-97,67],[-24,74],[22,68],[-40,77],[-10,199],[33,113],[83,90],[-118,34],[74,103],[26,194],[87,-41],[41,241],[-52,31],[-25,-145],[-49,17],[25,166],[26,217],[36,79],[-22,114],[-7,132],[32,4],[49,188],[54,187],[33,174],[-18,174],[23,97],[-9,144],[45,142],[15,226],[24,242],[25,261],[-6,191],[-16,164]],[[8557,4348],[40,30],[21,60]],[[16450,5516],[-32,12],[-104,-19],[-21,-15],[-23,-74],[18,-52],[-14,-138],[-9,-117],[21,-20],[55,-46],[21,22],[6,-126],[-60,1],[-32,64],[-28,49],[-60,16],[-18,61],[-48,-36],[-62,16],[-26,53],[-50,11],[-36,-3],[-5,37],[-27,3]],[[15916,5215],[-35,6],[-48,-17],[-35,3],[-19,-11],[5,138],[-27,44],[-5,72],[11,70],[-16,46],[-1,72],[-95,-1],[7,43],[-40,-1],[-4,-20],[-48,-4],[-20,-68],[-11,-30],[-44,16],[-25,-16],[-52,-9],[-30,61],[-18,38],[-22,69],[-20,88],[-230,1],[-27,-14],[-23,2],[-33,-16]],[[15011,5777],[-10,37]],[[15001,5814],[19,12],[4,51],[12,30],[29,24]],[[15065,5931],[20,-11],[27,44],[42,-1],[5,-33],[29,-20],[46,72],[46,57],[20,38],[-4,96],[35,113],[35,60],[52,56],[9,38],[2,42],[12,41],[-3,66],[9,103],[15,74],[24,62],[4,70]],[[15490,6898],[8,81],[30,59],[41,38],[65,-39],[50,-43],[56,-12],[58,-23],[24,71],[11,9],[36,-12],[86,59],[32,-25],[24,4],[12,28],[29,9],[59,-11],[50,-3],[26,12]],[[16187,7100],[47,-96],[35,-14],[21,19],[36,-7],[43,24],[19,-49],[68,-78]],[[16456,6899],[0,0],[-4,-136],[31,-17],[-24,-41],[-31,-31],[-30,-61],[-16,-54],[-5,-94],[-18,-44],[-1,-88]],[[16358,6333],[-22,-32],[-2,-70],[-11,-9],[-7,-64]],[[16316,6158],[19,-53],[6,-141]],[[17296,6293],[-46,97],[-1,424],[68,133]],[[17317,6947],[21,36],[50,2],[70,82],[102,6],[220,350]],[[17780,7423],[55,98],[35,72],[0,61],[0,117],[0,48],[0,2],[0,0]],[[17870,7821],[26,2],[35,17],[42,13],[37,39],[29,0],[3,-31],[-8,-68],[0,-62],[-16,-42],[-22,-126],[-38,-131],[-48,-149],[-67,-171],[-66,-131],[-93,-158],[-78,-95],[-117,-116],[-72,-89],[-86,-141],[-17,-61],[-18,-28]],[[16697,6379],[-1,123],[22,47],[38,77],[29,86],[-35,134],[-9,58],[-36,81]],[[16705,6985],[47,70],[53,77]],[[16805,7132],[41,-20],[0,-65],[27,-39],[54,0],[98,-99],[25,-1],[19,4],[16,-14],[53,-9],[23,48],[71,49],[31,-39],[54,0]],[[17296,6293],[-55,-47],[-19,-48],[-30,-9],[-10,-82],[-25,-47],[-16,-78],[-31,-38]],[[15968,7449],[-59,52],[-28,34],[-5,35],[13,49],[0,48],[-45,73],[-9,50]],[[15835,7790],[0,28],[-28,34],[-1,68],[-17,45],[-26,-7],[8,43],[20,49],[-9,48],[25,36],[-16,27],[21,72],[35,86],[67,-8],[-3,463]],[[15911,8774],[1,49],[89,1],[0,233]],[[16001,9057],[314,0],[303,0],[309,0]],[[16927,9057],[26,-115],[-17,-21],[11,-120],[28,-140],[30,-28],[44,-43]],[[17049,8590],[-40,-67],[-58,-19],[-25,-36],[-8,-78],[-33,-171],[9,-47]],[[16894,8172],[-12,-100],[-33,-115],[-46,-58],[-34,-89],[-8,-47],[-37,-33],[-23,-122],[1,-105]],[[16702,7503],[-1,91],[-11,2],[1,59],[-9,39],[-40,47],[-10,84],[10,86],[-36,8],[-6,-27],[-47,-5],[19,-34],[7,-71],[-43,-64],[-38,-84],[-41,-11],[-65,67],[-30,-24],[-8,-34],[-40,-22],[-4,-24],[-76,0],[-11,24],[-57,4],[-28,-19],[-21,9],[-40,68],[-14,32],[-56,-16],[-22,-54],[-20,-104],[-26,-22],[-25,-13],[54,-46]],[[15835,7790],[-50,-20],[-39,-48],[-57,-126],[-73,-55],[-76,7],[-22,-11],[8,-40],[-40,-42],[-34,-45],[-98,-45],[-20,27],[-12,2],[-15,-30],[-64,-8]],[[15243,7356],[12,31],[-24,81],[-12,48],[-34,20],[-46,67],[17,55],[36,-11],[22,8],[43,0],[-42,105],[2,78],[-4,78],[-31,74]],[[15182,7990],[7,55],[-50,2],[0,76],[-32,43],[33,154],[101,110],[3,151],[30,237],[18,50],[-34,41],[-1,37],[-29,30],[-19,181]],[[15209,9157],[80,64],[310,-223],[312,-224]],[[8452,8790],[8,-64],[-7,-44],[-19,-20],[20,-36],[-1,-31]],[[8453,8595],[-52,20],[-37,-8],[-48,8],[-36,-21],[-42,35],[7,38],[72,-15],[59,-10],[28,26],[-36,50],[0,45],[-49,18],[18,32],[48,-5],[67,-18]],[[8452,8790],[10,20],[61,-1],[46,-30],[21,3],[14,-41],[43,2],[-2,-34],[34,-5],[38,-43],[-29,-47],[-37,25],[-35,-5],[-26,6],[-14,-21],[-31,-8],[-11,29],[-26,-17],[-32,-80],[-20,19],[-3,33]],[[28001,14786],[99,48],[0,-79],[-86,-6],[-13,37]],[[17882,11904],[-35,-70],[-76,-19],[-77,-120],[70,-111],[-7,-79],[85,-137],[0,0]],[[17842,11368],[-46,-47],[-14,-29],[-34,7],[-54,71],[-22,4]],[[17672,11374],[-49,27],[-23,48],[-74,25],[-47,-19],[-14,21],[-106,57],[-114,19],[-67,19],[-9,-13]],[[17169,11558],[-99,98],[-89,45],[-68,68],[57,19],[64,98],[-43,45],[114,48],[-2,25],[-69,-18]],[[17034,11986],[2,51],[40,33],[76,9],[12,39],[-17,64],[32,61],[-1,34],[-115,38],[-46,-1],[-49,55],[-59,-18],[-100,40],[2,24],[-27,50],[-63,6],[-6,35],[20,25],[-50,65],[-82,-11],[-23,6],[-20,-27],[-29,5]],[[16531,12569],[0,0],[-19,75],[-19,38],[16,12],[62,-5],[31,26],[-22,31],[-54,21],[6,21],[-32,21],[-49,76],[16,31],[-7,56],[-76,28],[-41,-15],[-11,29],[-83,30]],[[16249,13044],[-24,69],[-7,56],[-38,27]],[[16180,13196],[34,38],[-24,108],[56,68],[-12,20],[0,0]],[[16234,13430],[89,64],[-82,56]],[[16241,13550],[0,0],[167,149],[73,67],[29,60],[-116,80],[32,75],[-70,87],[52,100],[-90,133],[72,88],[-120,78],[12,82]],[[16282,14549],[63,11],[132,46]],[[16477,14606],[0,0],[81,41],[129,-71],[214,-27],[295,-133],[59,-55],[5,-78],[-87,-61],[-127,-31],[-348,89],[-58,-15],[127,-86],[5,-54],[6,-119],[100,-35],[61,-31],[11,57],[-48,50],[50,44],[189,-73],[66,29],[-54,85],[183,114],[72,-7],[73,-40],[45,80],[-66,70],[39,69],[-57,73],[218,-38],[44,-65],[-98,-14],[0,-65],[62,-41],[121,27],[19,74],[162,55],[273,101],[59,-6],[-77,-71],[97,-12],[56,39],[146,3],[115,50],[90,-71],[89,77],[-83,68],[41,38],[231,-35],[108,-37],[283,-133],[52,62],[-79,61],[-2,25],[-95,11],[26,55],[-42,91],[-2,38],[144,106],[51,106],[58,22],[207,-30],[17,-66],[-75,-93],[49,-38],[25,-81],[-18,-161],[87,-71],[-34,-78],[-153,-165],[89,-18],[31,42],[86,30],[21,58],[68,55],[-46,67],[37,77],[-86,10],[-19,65],[62,117],[-101,94],[139,80],[-18,82],[39,3],[42,-65],[-32,-112],[84,-21],[-36,84],[132,45],[161,7],[145,-67],[-70,97],[-8,125],[136,23],[188,-5],[169,16],[-63,60],[90,77],[90,3],[151,58],[206,15],[27,32],[205,11],[63,-26],[175,62],[144,-2],[21,51],[74,49],[185,48],[134,-38],[-106,-28],[177,-19],[21,-58],[71,29],[229,-1],[176,-58],[62,-43],[-20,-61],[-86,-34],[-205,-65],[-59,-34],[97,-17],[116,-29],[70,21],[40,-74],[34,30],[124,18],[251,-19],[19,-54],[327,-18],[4,89],[165,-20],[125,1],[127,-62],[35,-74],[-46,-50],[98,-91],[123,-47],[75,122],[126,-52],[132,31],[151,-36],[58,33],[127,-17],[-55,109],[102,50],[706,-76],[66,-69],[204,-89],[315,22],[155,-19],[66,-49],[-10,-85],[97,-33],[104,24],[138,3],[147,-23],[148,13],[136,-104],[97,38],[-63,75],[35,51],[248,-32],[163,7],[225,-56],[109,-51],[0,-465],[-1,-1],[-100,-51],[-102,9],[72,-62],[45,-97],[37,-31],[9,-48],[-20,-31],[-146,25],[-218,-88],[-69,-14],[-119,-81],[-114,-72],[-29,-53],[-111,81],[-204,-92],[-35,43],[-75,-49],[-105,15],[-25,-76],[-94,-113],[4,-48],[89,-26],[-12,-169],[-72,-5],[-33,-97],[32,-51],[-136,-59],[-28,-133],[-115,-29],[-24,-118],[-112,-109],[-29,80],[-34,170],[-43,260],[37,162],[65,69],[5,55],[121,26],[139,147],[135,120],[140,93],[63,165],[-95,-10],[-47,-97],[-198,-127],[-63,143],[-202,-40],[-196,-195],[65,-72],[-174,-31],[-121,-11],[5,84],[-121,17],[-96,-57],[-239,21],[-256,-35],[-254,-228],[-298,-275],[122,-15],[39,-73],[76,-26],[50,59],[86,-8],[112,-129],[2,-99],[-61,-116],[-7,-140],[-34,-186],[-118,-169],[-26,-81],[-107,-136],[-104,-135],[-50,-68],[-105,-69],[-49,-2],[-49,57],[-105,-85],[-12,-39]],[[24258,11416],[-11,21],[0,0]],[[24247,11437],[0,59],[40,3],[11,138],[-21,100],[67,41],[94,-21],[54,114],[27,128],[30,42],[41,106],[-129,-35],[-68,-46],[-118,0],[-32,110],[-93,83],[-136,37],[-29,115],[-26,71],[-30,51],[-48,117],[-68,43],[-117,35],[-104,-4],[-98,-20],[-63,-58],[42,-28],[1,-65],[-43,-37],[-70,-124],[0,-51],[-110,-74],[-94,44]],[[23157,12311],[-92,-10],[-42,39],[-46,13],[-115,-83],[-102,-19],[-73,-29],[-98,19],[-72,-1],[-47,59],[-77,57],[-78,15],[-99,-15],[-73,-22],[-111,50],[-15,87],[-92,30],[-70,13],[-88,48],[-82,-120],[33,-69],[-76,-81],[-114,30],[-78,4],[-51,54],[-82,2],[-68,35],[-118,-55],[-149,-100],[-83,-20]],[[20899,12242],[-30,-9]],[[21370,15944],[168,27],[153,-59],[179,-113],[-19,-105],[-170,-15],[-218,34],[-129,45],[-61,84],[-105,22],[202,80]],[[22077,15740],[198,-65],[-23,-48],[-441,-45],[144,154],[63,12],[59,-8]],[[24886,15374],[207,-5],[282,-62],[-62,-87],[-288,3],[-129,-27],[-155,75],[43,81],[102,22]],[[25620,15282],[196,-31],[-91,-46],[-124,10],[-146,47],[19,37],[146,-17]],[[24967,15051],[74,46],[98,11],[111,-45],[9,-31],[-118,-1],[-160,14],[-14,6]],[[17551,15893],[152,21],[118,2],[17,-32],[44,28],[74,20],[116,-25],[-30,-19],[-105,-15],[-70,-9],[-11,-19],[-92,-20],[-84,28],[44,37],[-173,3]],[[15824,12828],[-144,-1],[-95,13]],[[15585,12840],[17,51],[108,39]],[[15710,12930],[82,-21],[34,-19],[-8,-32],[6,-30]],[[18226,15095],[187,103],[-21,53],[175,61],[257,75],[261,23],[133,42],[152,16],[54,-47],[-52,-36],[-277,-58],[-238,-56],[-242,-111],[-117,-113],[-122,-112],[15,-98],[150,-96],[-46,-9],[-255,15],[-21,51],[-141,32],[-12,63],[80,25],[-2,63],[155,100],[-73,14]],[[25206,12756],[26,-112],[-2,-115],[32,-117],[79,-207],[-115,38],[-48,-169],[75,-119],[-2,-82],[-59,71],[-51,-90],[-15,97],[9,113],[-9,127],[18,88],[4,156],[-46,115],[7,159],[72,54],[-31,54],[35,16],[21,-77]],[[396,14331],[-6,-72],[52,-29],[-18,85],[212,-18],[152,-109],[-77,-50],[-128,-13],[-2,-114],[-31,-24],[-74,4],[-59,40],[-103,34],[-18,51],[-79,19],[-89,-15],[-42,41],[16,43],[-93,-27],[36,-56],[-45,-49],[0,465],[191,-90],[205,-116]],[[102,14762],[-102,-7],[0,79],[10,5],[66,0],[113,-33],[-6,-16],[-81,-28]],[[7885,9616],[37,8],[51,-2],[2,-31],[-84,-19],[-6,44]],[[7978,9645],[62,-52],[-13,-84],[-15,15],[1,61],[-35,46],[0,14]],[[7947,9431],[23,-5],[28,-96],[0,-68],[-19,-6],[-20,68],[-29,34],[17,73]],[[9274,439],[93,70],[66,-29],[46,46],[63,-52],[-24,-41],[-104,-35],[-36,41],[-66,-52],[-38,52]],[[15232,15787],[30,39],[114,4],[98,-40],[258,-87],[-196,-46],[-44,-86],[-69,-22],[-37,-97],[-94,-5],[-168,72],[71,41],[-117,34],[-152,99],[-61,91],[213,41],[42,-40],[112,2]],[[16282,14549],[33,81],[-100,47],[-122,-40],[-37,-85],[-75,-51],[-84,28],[-102,-6],[-87,62],[-47,-31]],[[15661,14554],[-47,-5],[-13,-77],[-147,19],[-20,-65],[-75,0],[-52,-83],[-77,-130],[-122,-163],[28,-41],[-27,-45],[-77,2],[-51,-111],[5,-154],[50,-59],[-26,-138],[-64,-80],[-35,-67]],[[14911,13357],[-52,72],[-155,-135],[-103,-27],[-108,59],[-28,125],[-25,270],[71,75],[206,98],[155,120],[143,163],[187,225],[131,88],[215,147],[170,50],[129,-6],[119,97],[142,-5],[140,23],[245,-86],[-101,-31],[85,-73]],[[16189,15831],[-116,-63],[-226,-13],[-230,19],[-13,32],[-113,2],[-86,54],[242,32],[114,-28],[77,35],[199,-29],[152,-41]],[[15980,15574],[-175,-47],[-137,27],[54,30],[-47,37],[161,24],[31,-45],[113,-26]],[[10400,16131],[262,70],[274,-5],[100,42],[275,12],[623,-15],[489,-92],[-145,-45],[-298,-6],[-420,-10],[39,-22],[276,13],[236,-40],[152,36],[64,-42],[-86,-68],[199,43],[379,46],[234,-22],[45,-51],[-319,-83],[-44,-27],[-250,-19],[181,-6],[-92,-85],[-62,-77],[2,-129],[94,-77],[-122,-4],[-129,-37],[145,-62],[18,-99],[-84,-10],[102,-101],[-174,-9],[91,-47],[-25,-41],[-111,-18],[-109,0],[98,-79],[1,-52],[-154,48],[-40,-31],[105,-29],[103,-72],[29,-93],[-139,-24],[-61,46],[-95,67],[26,-80],[-91,-61],[206,-5],[108,-6],[-209,-102],[-213,-92],[-228,-40],[-86,0],[-81,-46],[-109,-123],[-167,-82],[-55,-5],[-103,-28],[-113,-27],[-66,-72],[-2,-83],[-39,-76],[-128,-93],[33,-92],[-36,-95],[-40,-115],[-110,-7],[-115,96],[-156,0],[-75,64],[-53,114],[-136,145],[-39,76],[-11,105],[-108,108],[28,86],[-51,40],[77,137],[117,43],[31,50],[17,90],[-90,-41],[-43,-18],[-70,-16],[-96,38],[-4,79],[30,63],[72,1],[159,-31],[-133,74],[-70,40],[-78,-16],[-65,29],[87,109],[-48,43],[-61,81],[-95,123],[-99,46],[1,48],[-209,69],[-166,9],[-209,-5],[-191,-9],[-90,37],[-136,73],[205,37],[157,7],[-334,30],[-176,47],[11,46],[296,56],[286,56],[30,42],[-211,42],[68,46],[271,83],[113,12],[-32,52],[185,31],[239,19],[241,1],[84,-37],[207,64],[187,-44],[109,-8],[163,-38],[-186,63],[11,49]],[[19431,815],[50,-36],[74,-15],[3,-22],[-22,-53],[-121,-8],[-1,63],[11,47],[6,24]],[[23805,5451],[9,29],[67,26],[54,4],[25,14],[30,-14],[-29,-32],[-81,-52],[-66,-33]],[[15326,3155],[37,58],[31,-32],[14,-51],[34,-8],[49,-22],[42,8],[69,60],[0,432]],[[15602,3600],[22,-18],[46,-111],[-6,-72],[16,-40],[56,11],[39,53],[38,34],[19,56],[38,28],[33,-14],[37,-33],[63,-6],[50,27],[8,37],[13,55],[44,10],[23,43],[26,79],[70,87],[110,86]],[[16347,3912],[33,-2],[37,-19],[26,13],[41,-11]],[[16484,3893],[38,-165],[20,-82],[-13,-131],[6,-41]],[[16535,3474],[-40,21],[-22,-9],[-7,-33],[-22,-44],[1,-41],[47,-62],[46,12],[15,51]],[[16553,3369],[59,-1]],[[16612,3368],[-19,-84],[-9,-97],[-21,-53],[-52,-59],[-16,-16],[-33,-60],[-21,-60],[-45,-83],[-88,-121],[-55,-70],[-59,-53],[-82,-45],[-40,-6],[-10,-33],[-48,17],[-37,-22],[-85,23],[-48,-14],[-32,6],[-80,-47],[-67,-18],[-48,-44],[-36,-3],[-33,42],[-26,2],[-34,52],[-4,-16],[-10,32],[0,67],[-25,79],[25,21],[-2,90],[-51,109],[-39,99],[0,0],[-56,152]],[[16312,3110],[-34,37],[-37,-24],[-42,-46],[-41,-74],[58,-89],[28,11],[14,37],[44,19],[13,37],[24,57],[-27,35]],[[6437,9505],[31,3],[-31,-102],[-13,-84],[-6,-157],[-8,-57],[14,-63],[24,-57],[16,-91],[52,-87],[18,-67],[31,-57],[82,-31],[33,-48],[68,32],[60,12],[58,21],[50,20],[49,48],[19,67],[6,99],[14,34],[52,31],[82,27],[69,-5],[48,11],[19,-26],[-3,-56],[-41,-69],[-19,-71],[14,-20],[-12,-50],[-19,-92],[-20,30],[-17,-2]],[[7157,8648],[-14,-1],[-28,-71],[-15,14],[-8,-5],[0,-18]],[[7092,8567],[-73,1],[-72,0],[0,-65],[-36,0],[29,-39],[29,-27],[9,-25],[12,-8],[-1,-40],[-100,0],[-38,-95],[11,-22],[-9,-27],[-2,-34]],[[6851,8186],[-88,125],[-40,39],[-65,30],[-43,-9],[-62,-43],[-40,-12],[-55,31],[-59,22],[-72,53],[-59,17],[-88,54],[-66,56],[-19,31],[-44,7],[-79,37],[-34,53],[-83,66],[-39,74],[-19,57],[27,12],[-9,32],[19,30],[0,41],[-27,52],[-7,47],[-27,59],[-68,116],[-79,91],[-37,73],[-67,48],[-15,28],[13,72],[-40,27],[-46,57],[-20,82],[-42,9],[-45,61],[-37,57],[-3,37],[-42,88],[-28,89],[1,44],[-57,47],[-25,-5],[-45,32],[-12,-47],[12,-57],[8,-87],[26,-48],[58,-80],[14,-28],[12,-8],[10,-41],[13,2],[16,-75],[24,-29],[17,-42],[49,-60],[26,-108],[23,-51],[21,-54],[5,-62],[38,-4],[31,-53],[28,-53],[-2,-20],[-33,-42],[-13,0],[-21,70],[-52,67],[-55,57],[-40,29],[2,85],[-11,64],[-38,36],[-54,52],[-10,-15],[-20,30],[-48,28],[-45,68],[5,9],[33,-6],[29,44],[2,52],[-60,83],[-46,33],[-29,72],[-29,77],[-35,93],[-33,105]],[[9552,2963],[51,13],[78,-90],[29,3],[80,-75],[61,-65],[46,-79],[-35,-55],[22,-66]],[[9884,2549],[-34,-73],[-88,-65],[-58,23],[-42,-12],[-72,50],[-53,-4],[-48,65]],[[9787,3485],[14,68],[11,69],[0,65],[-27,21],[-31,-20],[-28,6],[-9,45],[-8,107],[-15,35],[-52,31],[-32,-22],[-83,22],[6,158],[-23,65]],[[9510,4135],[24,24],[-8,66],[23,51],[13,92],[-18,73],[-43,33],[-8,46],[11,67],[-149,5],[-30,136],[22,2],[-1,50],[-16,34],[-3,68],[-45,35],[-49,-1],[-32,34],[-53,23],[-30,43],[-88,20],[-85,104],[7,78],[-10,45],[8,87],[-102,-19],[-41,-44],[-69,-47],[-17,-36],[-40,-2],[-58,10]],[[8623,5212],[-44,-21],[-36,14],[6,177],[-65,-69],[-69,3],[-29,63],[-52,6],[17,50],[-44,72],[-32,104],[20,21],[0,50],[48,33],[-8,63],[20,41],[6,55],[89,79],[63,23],[11,17],[70,-5]],[[8594,5988],[36,319],[1,52],[-12,66],[-35,43],[0,85],[45,18],[16,-11],[2,44],[-46,13],[-1,72],[153,-3],[25,41],[22,-37],[15,-68],[15,13]],[[8830,6635],[43,-61],[61,7],[14,36],[58,28],[33,18],[9,50],[55,33],[-3,25],[-67,10],[-10,74],[2,77],[-34,31],[14,11],[58,-16],[62,-29],[23,28],[55,18],[88,44],[29,45],[-11,33]],[[9309,7097],[41,4],[18,-27],[-10,-51],[27,-17],[18,-55],[-21,-41],[-14,-99],[20,-59],[6,-54],[49,-55],[38,-6],[8,23],[25,5],[36,20],[24,31],[44,-9],[18,4]],[[9636,6711],[43,-9],[8,23],[-14,23],[8,34],[31,-10],[37,12],[46,-25]],[[9795,6759],[33,-24],[24,32],[18,-5],[10,-33],[38,9],[30,43],[24,86],[46,108]],[[10018,6975],[26,4],[20,-63],[43,-204],[43,-20],[2,-81],[-59,-96],[24,-35],[138,-18],[3,-117],[59,76],[99,-41],[129,-72],[38,-68],[-13,-65],[91,37],[152,-62],[116,5],[116,-97],[100,-131],[60,-34],[67,-4],[28,-37],[26,-149],[13,-71],[-30,-192],[-41,-77],[-110,-162],[-50,-132],[-58,-101],[-19,-2],[-22,-86],[6,-219],[-21,-180],[-9,-77],[-25,-45],[-13,-157],[-79,-152],[-14,-121],[-63,-50],[-18,-70],[-86,0],[-122,-44],[-55,-52],[-88,-34],[-91,-93],[-67,-116],[-11,-87],[14,-65],[-15,-118],[-18,-57],[-54,-64],[-87,-205],[-69,-93],[-52,-55],[-36,-110],[-52,-67]],[[9510,4135],[-2,36],[-72,60],[-72,1],[-137,-34],[-37,-102],[-2,-63],[-31,-139]],[[8618,4438],[49,126],[-34,98],[18,39],[-13,44],[30,58],[2,99],[3,82],[17,40],[-67,188]],[[8557,4348],[-78,68],[-7,47],[-155,117],[-140,128],[-60,72],[-32,96],[13,34],[-67,153],[-77,215],[-73,232],[-32,54],[-25,86],[-60,76],[-56,48],[25,52],[-38,111],[24,81],[63,74]],[[7782,6092],[9,-49],[-23,-28],[3,-42],[32,9],[32,-12],[32,-59],[45,47],[14,80],[48,101],[94,46],[86,122],[24,76],[-11,89]],[[8167,6472],[20,10],[52,-55],[25,-55],[37,-30],[45,-122],[58,-14],[43,30],[28,-20],[47,10],[60,-55],[-50,-118],[23,-3],[39,-62]],[[8167,6472],[-33,27],[-39,39],[-23,-19],[-65,17],[-19,50],[-15,-2],[-78,67]],[[7895,6651],[-11,35],[29,9],[-3,59],[19,43],[38,7],[33,73],[30,62],[-29,27],[15,68],[-18,107],[16,31],[-12,99],[-31,61]],[[7971,7332],[10,58],[26,-9],[14,35],[-19,68],[10,17]],[[8012,7501],[40,-3],[59,81],[33,13],[0,38],[14,99],[45,54],[50,2],[5,24],[61,-9],[62,59],[31,26],[38,56],[26,-7],[22,-31],[-16,-40]],[[8482,7863],[-50,-19],[-20,-58],[-30,-34],[-22,-43],[-10,-84],[-22,-67],[40,-9],[10,-53],[17,-26],[7,-47],[-9,-43],[2,-24],[19,-10],[19,-41],[100,11],[46,-14],[54,-101],[33,13],[55,-6],[45,12],[28,-19],[-15,-63],[-16,-40],[-7,-83],[15,-77],[23,-35],[3,-26],[-40,-58],[29,-26],[20,-41],[24,-117]],[[7971,7332],[-26,34],[-16,63],[19,31],[-20,8],[-15,39],[-39,32],[-34,-7],[-16,-41],[-31,-29],[-17,-4],[-8,-25],[37,-63],[-21,-14],[-11,-18],[-37,-6],[-13,70],[-10,-20],[-26,7],[-15,47],[-33,8],[-20,13],[-33,0],[-4,-26],[-8,18]],[[7574,7449],[4,24],[7,23],[-4,21],[13,14],[-17,17],[0,48],[30,9]],[[7607,7605],[28,-41],[-1,-25],[31,-5],[7,9],[21,-29],[39,9],[33,30],[47,23],[27,35],[43,-7],[-3,-11],[43,-4],[36,-21],[25,-34],[29,-33]],[[7574,7449],[-43,26],[-15,25],[9,20],[-3,25],[-22,28],[-30,23],[-27,15],[-5,35],[-20,20],[4,-34],[-15,-28],[-18,33],[-26,12],[-10,23],[0,36],[11,36],[-22,17],[18,22]],[[7360,7783],[11,16],[52,-31],[18,14],[25,-10],[13,-23],[22,-7],[19,24]],[[7520,7766],[20,-63],[30,-48],[37,-50]],[[7360,7783],[-27,37],[-37,47],[-17,40],[-33,36],[-39,53],[9,18],[12,-18],[6,9]],[[7234,8005],[25,4],[10,28],[11,0],[-1,58],[17,2],[17,-1],[17,31],[23,-23],[8,15],[14,13],[27,32],[1,24],[8,-1],[10,28],[8,3],[13,-17],[16,-6],[18,16],[20,0],[26,15],[11,16],[27,-2]],[[7560,8240],[-6,-12],[-5,-26],[8,-43],[-18,-39],[-8,-48],[-3,-51],[4,-30],[3,-52],[-13,-12],[-6,-50],[4,-31],[-15,-29],[3,-32],[12,-19]],[[7234,8005],[-13,36],[-24,10]],[[7197,8051],[6,47],[-11,13],[-16,8],[-34,-14],[-3,16],[-24,18],[-17,24],[-22,10]],[[7076,8173],[16,29],[-6,23],[6,22],[36,33],[36,45]],[[7164,8325],[8,-5],[16,20],[23,2],[7,-10],[13,6],[35,-10],[37,3],[25,13],[10,13],[24,-6],[19,-8],[20,3],[16,10],[35,-16],[12,-3],[25,-22],[22,-26],[28,-17],[21,-32]],[[7197,8051],[-9,-27],[-44,2],[-29,11],[-32,23],[-44,7],[-21,26]],[[7018,8093],[2,16],[27,30],[14,13],[-4,13],[19,8]],[[7092,8567],[0,-92],[-7,-132],[23,0]],[[7108,8343],[26,-21],[7,17],[23,-14]],[[7018,8093],[-40,20],[-49,2],[-36,23],[-42,48]],[[7157,8648],[1,-17],[15,-1],[-1,-32],[-14,-50],[8,-17],[-9,-43],[6,-10],[-9,-59],[-16,-31],[-14,-4],[-16,-41]],[[8482,7863],[-2,-27],[-46,-13],[26,-53],[-1,-61],[-35,-68],[30,-93],[34,8],[17,84],[-24,41],[-5,89],[98,47],[-11,55],[28,37],[28,-82],[54,-2],[51,-65],[3,-39],[70,-1],[84,12],[44,-52],[60,-15],[44,37],[1,29],[97,8],[93,1],[-67,-34],[27,-55],[62,-9],[59,-58],[14,-93],[40,2],[31,-27]],[[9386,7466],[-62,-69],[-7,-42],[27,-44],[-19,-21],[-49,-19],[2,-55],[-21,-31],[52,-88]],[[9386,7466],[51,-44],[48,-75],[2,-60],[29,-3],[43,-57],[31,-41]],[[9590,7186],[-14,-105],[-46,-30],[4,-28],[-14,-60],[34,-84],[25,-1],[10,-66],[47,-101]],[[9590,7186],[93,-23],[8,22],[63,7],[84,-31]],[[9838,7161],[-40,-100],[5,-80],[32,-69],[-14,-51],[-8,-53],[-18,-49]],[[7782,6092],[41,88],[-17,50],[-29,-54],[-46,51],[15,33],[-13,106],[26,18],[15,72],[30,76],[-6,47],[43,25],[54,47]],[[8876,8650],[40,-10],[15,-23],[-20,-30],[-59,1],[-46,-4],[-5,49],[12,18],[63,-1]],[[7995,8647],[53,-10],[41,-28],[13,-33],[-54,-2],[-25,-19],[-43,18],[-45,43],[9,27],[34,8],[17,-4]],[[7628,9195],[68,-8],[61,-2],[74,-39],[31,-43],[72,14],[28,-28],[66,-72],[49,-53],[25,2],[47,-24],[-5,-33],[57,-5],[59,-47],[-10,-27],[-51,-16],[-53,-6],[-54,10],[-111,-12],[52,65],[-32,31],[-50,8],[-27,34],[-19,65],[-43,-3],[-74,30],[-23,25],[-101,18],[-28,22],[30,30],[-77,6],[-57,-61],[-32,-2],[-11,-28],[-38,-12],[-33,10],[41,37],[17,42],[34,26],[40,22],[59,12],[19,12]],[[16347,3912],[-50,52],[-60,18],[-22,74],[-1,42],[-34,12],[-88,128],[-24,67],[-16,22],[-30,93]],[[16022,4420],[87,-13],[26,-14],[26,3],[44,76],[67,96],[28,9],[9,40],[45,47],[59,16]],[[16413,4680],[5,-44],[65,2],[37,-24],[16,-29],[37,-9],[41,-36],[0,-148],[-15,-82],[-4,-87],[13,-35],[-9,-68],[-11,-11],[-21,-84],[-83,-132]],[[15602,3600],[0,340],[78,4],[3,416],[57,4],[121,40],[30,-48],[49,46],[24,0],[44,26]],[[16008,4428],[14,-8]],[[15326,3155],[-59,88],[-30,85],[-18,114],[-18,84],[-26,180],[-2,139],[-10,64],[-30,48],[-40,97],[-42,139],[-16,74],[-65,114],[-4,90]],[[14966,4471],[38,22],[46,19],[50,-3],[47,-53],[12,8],[317,6],[54,-56],[188,-17],[144,48]],[[15862,4445],[64,26],[51,-7],[31,-26],[0,-10]],[[12746,8076],[-32,91],[-39,42],[34,21],[38,82],[18,60]],[[12765,8372],[26,38],[39,-11],[38,26],[44,1],[38,-34],[51,-31],[48,-86],[51,-80]],[[13100,8195],[3,-72],[16,-67],[29,-33],[6,-45],[-3,-36]],[[13151,7942],[-11,-7],[-42,9],[-6,-13],[-18,-3],[-55,29],[-38,1]],[[12981,7958],[-145,5],[-20,-14],[-27,4],[-41,-18]],[[12748,7935],[-12,89]],[[12736,8024],[70,-2],[19,15],[14,1],[29,28],[34,-25],[33,-2],[35,27],[-16,33],[-27,-20],[-23,1],[-31,29],[-25,-2],[-18,-28],[-84,-3]],[[13100,8195],[27,21],[13,69],[24,3],[55,-33],[43,23],[30,-7],[13,26],[312,2],[18,81],[-13,14],[-38,504],[-38,504],[119,2]],[[13665,9404],[264,-255],[263,-255],[19,-54],[49,-34],[35,-19],[2,-74],[86,12]],[[14383,8725],[0,-269],[-42,-78],[-7,-72],[-70,-18],[-105,-11],[-29,-41],[-50,-4]],[[14080,8232],[-51,-1],[-20,22],[-42,-16],[-73,-49],[-15,-36],[-61,-53],[-10,-30],[-32,-23],[-38,16],[-23,-29],[-11,-80],[-62,-96],[2,-40],[-21,-49],[6,-68]],[[13629,7700],[-33,-17],[-19,-16],[-12,50],[-22,-13],[-13,3],[-15,-34],[-60,1],[-21,17],[-11,-10]],[[13423,7681],[-24,33],[5,34],[-10,15],[-17,-12],[3,38],[16,30],[-32,49],[-9,32],[-17,25],[-16,4],[-18,-16],[-26,-17],[-21,-25],[-34,10],[-22,30],[-12,4],[-21,-16],[-13,-1],[-4,44]],[[13373,9686],[292,-282]],[[12765,8372],[-7,63],[22,58],[9,109],[-8,115],[-10,58],[8,59],[-20,55],[-41,51]],[[14260,7219],[-65,-13]],[[14195,7206],[-19,81],[4,268],[-16,24],[-3,57],[-27,41],[-23,35],[10,60]],[[14121,7772],[26,14],[16,51],[38,11],[18,35]],[[14219,7883],[25,34],[28,1],[60,-68]],[[14332,7850],[-3,-39],[18,-69],[-16,-47],[8,-32],[-38,-71],[-23,-36],[-16,-74],[2,-74],[-4,-189]],[[15182,7990],[-23,-7],[-2,-36]],[[15157,7947],[-14,-3],[-54,127],[-18,5],[-61,-66],[-60,35],[-42,7],[-22,-16],[-46,2],[-47,-49],[-39,-3],[-94,60],[-38,-28],[-39,2],[-30,44],[-78,43],[-84,-13],[-20,-26],[-11,-66],[-22,-48],[-6,-104]],[[14219,7883],[1,80],[-90,26],[-3,56],[-43,77],[-11,53],[7,57]],[[14383,8725],[111,51],[226,230],[267,222]],[[14987,9228],[123,-50],[44,-64],[55,43]],[[15157,7947],[31,-48],[-9,-20],[-4,-39],[-66,-91],[-20,-74],[-11,-61],[-17,-25],[-15,-82],[-42,-49],[-13,-59],[-16,-46],[-8,-49],[-54,-39],[-43,48],[-30,-2],[-47,-68],[-22,-1],[-37,-114],[-21,-82]],[[14713,7046],[-80,-41],[-30,5],[-30,-26],[-63,3],[-41,73],[-27,84],[-54,77],[-59,-2],[-69,0]],[[15243,7356],[-39,-119],[-19,-21],[-7,-90],[8,-50],[-5,-35],[36,-61],[7,-41],[29,-60],[36,-38],[3,-53],[8,-34]],[[15300,6754],[-6,-63],[-62,27],[-63,31],[-99,5]],[[15070,6754],[-9,6],[-46,-15],[-48,16],[-37,-8]],[[14930,6753],[-127,3]],[[14803,6756],[11,92],[-30,77],[-35,20],[-16,52],[-20,17],[0,32]],[[14195,7206],[-62,-24]],[[14133,7182],[-18,40],[-21,75],[-6,58],[17,104],[-19,43],[-8,92],[0,85],[-32,60],[6,36]],[[14052,7775],[69,-3]],[[14133,7182],[-123,-69],[-43,-40],[-70,-34],[-70,33]],[[13827,7072],[3,46],[-33,100],[20,133],[33,98],[-21,166]],[[13829,7615],[-10,88],[1,66],[136,5],[34,-8],[26,18],[36,-9]],[[13629,7700],[34,-26],[13,-39],[36,-24],[27,29],[37,5],[53,-30]],[[13827,7072],[-36,-1],[-54,23],[-50,-1],[-93,-21],[-53,-34],[-78,-42],[-15,3]],[[13448,6999],[6,96],[8,14],[-3,46],[-33,49],[-24,8],[-24,32],[18,52],[-8,57],[4,34]],[[13392,7387],[12,0],[4,50],[-5,23],[6,16],[29,14],[-19,94],[-17,47],[6,40],[15,10]],[[13392,7387],[-23,3],[-15,-48],[-23,1],[-15,24],[5,48],[-32,71],[-21,-13],[-17,-2]],[[13251,7471],[-21,-7],[1,43],[-13,30],[3,34],[-17,49],[-22,41],[-62,1],[-18,-22],[-22,-3],[-14,-25],[-8,-32],[-42,-52]],[[13016,7528],[-34,69],[-30,46],[-20,15],[-20,24],[-9,51],[-11,26],[-23,18]],[[12869,7777],[35,57],[23,-2],[20,20],[18,0],[12,15],[-6,39],[9,13],[1,39]],[[12869,7777],[-42,50],[-32,7],[-18,33],[0,18],[-23,25],[-6,25]],[[13448,6999],[-21,-1],[-80,55],[-71,89],[-66,64],[-53,75]],[[13157,7281],[19,38],[4,34],[36,63],[35,55]],[[13157,7281],[-20,9],[-57,47],[-40,62],[-15,43],[-9,86]],[[15490,6898],[-50,7],[-52,19],[-47,-62],[-41,-108]],[[15968,7449],[42,-47],[1,-38],[52,-61],[33,-50],[20,-69],[59,-47],[12,-37]],[[15065,5931],[-30,41],[-24,-21],[-31,-50]],[[14980,5901],[-64,124]],[[14916,6025],[60,65],[-30,77],[26,29],[54,15],[5,51],[43,-56],[69,-5],[23,55],[10,77],[-9,92],[-37,69],[34,135],[-19,24],[-58,-10],[-22,60],[5,51]],[[14916,6025],[-81,118],[-51,96],[-48,121],[4,38],[16,38],[19,85],[16,86]],[[14791,6607],[27,7],[113,-1],[-1,140]],[[14791,6607],[-15,18],[27,131]],[[16607,5412],[36,-51],[20,-100],[-13,-32],[-16,-94],[16,-96],[-24,-41],[-25,-108],[41,-31]],[[16642,4859],[-236,-96],[7,-83]],[[15862,4445],[-51,72],[-53,96],[4,371],[162,-2],[-6,41],[12,44],[-14,55],[8,56],[-8,37]],[[16748,5145],[-22,-89],[22,-151],[27,1],[28,-38],[33,-84],[7,-150],[-35,-24],[-23,-81],[-51,71],[-6,84],[17,54],[-5,46],[-31,30],[-21,-11],[-46,56]],[[17197,5285],[0,0],[13,-52],[-3,-116],[9,-103],[3,-181],[13,-58],[-22,-84],[-31,-81],[-49,-71],[-71,-45],[-88,-57],[-89,-125],[-30,-21],[-55,-83],[-31,-27],[-7,-83],[37,-88],[15,-69],[2,-35],[13,6],[-2,-115],[-13,-54],[18,-20],[-11,-48],[-33,-42],[-64,-39],[-94,-63],[-35,-44],[7,-49],[20,-8],[-7,-62]],[[16553,3369],[-6,53],[-12,52]],[[15001,5814],[-21,87]],[[14966,4471],[-7,72],[10,104],[28,106],[3,51],[26,105],[19,47],[44,77],[25,52],[9,86],[-5,66],[-23,42],[-21,71],[-19,70],[4,24],[25,46],[-25,113],[-15,78],[-39,74],[6,22]],[[16316,6158],[47,-9],[24,66],[41,-7]],[[16846,10373],[-21,-2],[-7,-20],[-27,0]],[[16791,10351],[28,95],[39,82],[1,5]],[[16859,10533],[36,-7],[12,-46],[-42,-43],[-19,-64]],[[17917,5035],[21,-51],[19,-76],[12,-141],[21,-54],[-7,-56],[-15,-34],[-27,67],[-14,-33],[16,-88],[-8,-49],[-21,-27],[-5,-99],[-31,-136],[-39,-160],[-48,-222],[-30,-161],[-34,-136],[-64,-28],[-69,-49],[-44,30],[-63,41],[-21,62],[-6,104],[-26,93],[-8,84],[14,84],[36,20],[0,39],[38,88],[7,74],[-18,55],[-15,74],[-6,108],[26,65],[12,75],[38,3],[44,25],[29,21],[34,1],[45,67],[63,71],[24,59],[-10,50],[33,-14],[42,81],[3,70],[25,52],[27,-49]],[[12736,8024],[10,52]],[[14790,10026],[-34,210],[-48,46],[0,29],[-64,70],[-7,87],[48,66],[19,95],[-12,111],[15,60]],[[14707,10800],[85,48],[55,-15],[-3,-59],[67,44],[6,-22],[-39,-57],[-1,-55],[27,-29],[-11,-101],[-51,-58],[15,-64],[41,-2],[19,-56],[30,-17]],[[14947,10357],[-5,-90],[-38,-34],[-24,-37],[-53,-45],[8,-49],[-6,-49],[-39,-27]],[[13374,9716],[-1,139],[126,86],[78,18],[64,31],[30,59],[91,45],[4,88],[44,9],[36,44],[102,19],[15,46],[-22,25],[-26,122],[-5,71],[-30,75]],[[13880,10593],[76,64],[85,21],[49,47],[74,36],[133,21],[129,9],[40,-17],[73,46],[83,1],[32,-27],[53,6]],[[14790,10026],[25,-103],[5,-54],[-15,-96],[7,-53],[-10,-64],[7,-73],[-31,-48],[45,-86],[4,-50],[27,-65],[37,22],[61,-55],[35,-73]],[[16825,10270],[13,36]],[[16838,10306],[87,-46],[153,125]],[[17078,10385],[32,-143]],[[17110,10242],[-16,-17],[-156,-59],[78,-117],[-25,-19],[-14,-39],[-59,-16],[-19,-43],[-34,-36],[-87,19]],[[16778,9915],[-2,17]],[[16776,9932],[39,187],[-2,45],[12,34],[0,72]],[[18076,9319],[13,6],[4,-32],[61,18],[65,-4],[46,-3],[54,79],[59,75],[49,72]],[[18427,9530],[14,-40]],[[18441,9490],[11,-92]],[[18452,9398],[-40,-1],[-6,-75],[14,-17],[-35,-23],[0,-47],[-24,-49],[-2,-47]],[[18359,9139],[-16,-24],[-235,59],[-29,118],[-3,27]],[[18016,9378],[-6,85],[22,61],[21,12],[24,-36],[1,-68],[-16,-69]],[[18062,9363],[-23,-8],[-23,23]],[[17794,9987],[17,-51],[-7,-27],[25,-88]],[[17829,9821],[-55,-3],[-20,56],[-69,11]],[[17685,9885],[57,112],[52,-10]],[[17078,10385],[173,120],[29,142],[-8,85],[44,29],[40,72]],[[17356,10833],[33,19],[90,-15],[28,-30],[38,20]],[[17545,10827],[50,-140],[51,-35],[6,-67],[-39,-41],[-18,-91],[54,-111],[95,-64],[40,-89],[-12,-84],[25,0],[1,-62],[43,-62]],[[17841,9981],[-47,6]],[[17685,9885],[-145,9],[-220,235],[-117,82],[-93,31]],[[18452,9398],[35,-80],[43,-43],[58,-14],[46,-21],[36,-67],[21,-40],[27,-14],[0,-26],[-28,-70],[-13,-33],[-33,-37],[-29,-80],[-35,7],[-16,-28],[-13,-59],[9,-79],[-6,-14],[-37,1],[-48,-45],[-8,-56],[-17,-25],[-49,1],[-31,-29],[0,-47],[-37,-32],[-44,10],[-51,-39],[-37,-7]],[[18195,8432],[-25,82],[-62,193]],[[18108,8707],[235,116],[53,234],[-37,82]],[[18427,9530],[22,39],[10,-9],[-8,-49],[-10,-21]],[[27103,4635],[48,-67],[-25,-16],[-27,51],[4,32]],[[27069,4661],[-11,32],[-1,89],[37,-36],[12,-93],[-20,14],[-17,-6]],[[22057,7912],[-18,140],[49,98],[102,22],[73,-18]],[[22263,8154],[65,-45],[34,80],[70,-42]],[[22432,8147],[18,-79],[-10,-139],[-131,-90],[34,-70],[-82,-9],[-67,-46]],[[22194,7714],[-66,16],[-31,61],[-40,121]],[[22057,7912],[-70,53],[-67,-2],[11,92],[-68,-1],[-6,-129],[-43,-170],[-24,-103],[4,-85],[52,-3],[31,-107],[14,-100],[44,-67],[48,-14],[40,-61]],[[22023,7215],[-26,-48],[-51,-13],[-7,60],[-63,51],[-14,-22]],[[21862,7243],[-31,46],[-13,57],[-41,66],[-38,56],[-14,-69],[-14,65],[9,73],[22,112]],[[21742,7649],[38,120],[43,108],[-30,106],[1,54],[-8,66],[-53,93],[-19,58],[27,21],[29,102],[-32,77],[-49,85],[-38,103],[32,21],[36,126],[55,6],[46,50],[45,27]],[[21865,8872],[33,-36],[4,-70],[54,-5],[-19,-124],[1,-104],[82,69],[24,-20],[45,4],[16,39],[59,-7],[60,-95],[5,-115],[63,-102],[-3,-98],[-26,-54]],[[21865,8872],[16,43],[67,76]],[[21948,8991],[7,-28],[41,-3],[-11,134],[40,17]],[[22025,9111],[46,-92],[35,-106],[96,-1],[30,-102],[-50,-31],[-22,-41],[93,-70],[65,-138],[50,-103],[59,-81],[19,-82],[-14,-117]],[[21742,7649],[-7,86],[24,90],[-26,68],[6,128],[-31,60],[-26,140],[-14,147],[-34,97],[-51,-59],[-89,-83],[-44,10],[-49,27],[28,146],[-16,109],[-62,134],[10,43],[-45,14],[-56,95]],[[21260,8901],[-5,94],[27,-18],[1,85]],[[21283,9062],[39,27],[-8,50],[17,40],[4,121],[61,-28],[34,97],[5,56],[42,99],[-2,67],[101,80],[56,-21],[-7,71],[28,22],[-7,44]],[[21646,9787],[46,9],[27,-69],[34,-28],[2,-89],[-3,-96],[-74,-97],[-9,-139],[82,20],[19,-108],[49,-23],[-22,-97],[58,-43],[33,-21],[58,33],[2,-48]],[[22025,9111],[42,28],[63,0],[75,14],[67,61],[37,-43],[71,-21],[-12,-68],[38,-47],[78,-30]],[[22484,9005],[-104,-100],[-66,-110],[-16,-82],[59,-122],[73,-153],[71,-73],[47,-93],[36,-216],[-10,-205],[-66,-77],[-89,-75],[-63,-98],[-97,-108],[-29,74],[22,80],[-58,67]],[[24258,11416],[-30,7],[-33,-39],[-24,-40],[4,-84],[-42,-25],[-13,-22],[-30,-33],[-51,-20],[-35,-32],[-2,-50],[-9,-13],[31,-19],[45,-51]],[[24069,10995],[-11,-28],[-34,-8],[-55,-6],[-30,-52],[-36,4],[-4,-11]],[[23899,10894],[-38,23],[-9,-23],[-24,-9],[-2,22],[-21,10],[-20,19],[21,52],[18,14],[-7,21],[20,63],[-5,19],[-46,13],[-37,31]],[[23749,11149],[64,74],[87,63],[53,83],[37,-37],[68,-4],[-13,61],[121,51],[31,65],[50,-68]],[[24069,10995],[67,-137],[19,-76],[1,-134],[-29,-65],[-72,-22],[-62,-49],[-70,-9],[-9,62],[15,88],[-35,122],[58,20],[-53,99]],[[23157,12311],[-38,-88],[-54,-117],[20,-47],[43,14],[78,-17],[59,42],[64,-37],[70,-82],[-8,-41],[-62,13],[-114,-15],[-55,-33],[-56,-77],[-119,-46],[-78,-62],[-81,23],[-44,11],[-40,-74],[24,-46],[13,-39],[-55,-38],[-56,-63],[-91,-41],[-117,-5],[-126,-40],[-91,-63],[-34,37],[-95,0],[-116,70],[-77,18],[-103,-17],[-162,26],[-85,-2],[-46,69],[-36,107],[-47,14],[-95,73],[-106,16],[-92,20],[-28,51],[30,136],[-55,94],[-111,43],[-66,62],[-20,82]],[[21283,9062],[-41,184],[-21,0],[-13,-74],[-43,60],[25,67],[34,6],[36,99],[-44,20],[-73,-2],[-74,16],[-7,81],[-37,6],[-62,50],[-28,-79],[57,-61],[-49,-44],[-18,-42],[49,-32],[-13,-70],[26,-88],[13,-95]],[[21000,9064],[-12,-44],[-53,2],[-96,-24],[5,-88],[-43,-69],[-112,-78],[-87,-138],[-59,-74],[-78,-76],[0,-54],[-39,-29],[-70,-41],[-37,-6],[-23,-89],[17,-152],[4,-97],[-33,-111],[0,-198],[-41,-6],[-36,-89],[24,-38],[-71,-33],[-27,-80],[-31,-33],[-73,109],[-37,163],[-30,118],[-27,55],[-41,113],[-20,146],[-13,72],[-72,161],[-32,226],[-23,149],[1,141],[-16,109],[-113,-69],[-56,13],[-101,142],[38,42],[-24,46],[-91,99]],[[19372,9254],[51,77],[173,0],[-16,101],[-44,59],[-9,90],[-51,52],[86,122],[91,-9],[81,123],[49,118],[75,117],[-1,83],[67,68],[-62,58],[-28,78],[-28,103],[39,50],[118,-28],[87,18],[76,97]],[[20126,10631],[83,-136],[-8,-96],[32,-60],[-3,-59],[-55,16],[21,-129],[77,-73],[109,-83]],[[20382,10011],[-50,-53],[-30,-108],[75,-45],[74,-57],[101,-66],[107,-15],[46,-59],[60,-11],[93,-28],[66,2],[9,47],[-10,74],[5,50]],[[20928,9742],[48,25],[7,-92]],[[20983,9675],[1,-23],[71,-45],[49,18],[66,-7],[63,4],[6,71],[-31,37]],[[21208,9730],[62,14],[71,87],[91,75],[65,-29],[56,49],[37,-72],[-27,-50],[83,-17]],[[21260,8901],[-22,61],[-5,60],[-15,56],[-33,68],[-71,5],[7,-49],[-25,-65],[-33,25],[-11,-22],[-22,13],[-30,11]],[[20983,9675],[51,87],[42,30],[56,-27],[41,-3],[35,-32]],[[20382,10011],[32,28],[62,-35],[79,-77],[44,-16],[27,-56],[60,-24],[63,-51],[88,-26],[91,-12]],[[19372,9254],[-58,29],[-23,84],[-60,89],[-144,-22],[-127,-2],[-110,-16]],[[18850,9416],[30,135],[112,61],[-6,53],[-37,19],[-2,103],[-75,51],[-32,71],[-38,61]],[[18802,9970],[130,-59],[78,17],[47,-14],[16,25],[54,-11],[101,49],[4,99],[43,67],[58,-1],[9,33],[59,15],[29,-10],[31,32],[-4,70],[33,71],[49,29],[-30,77],[73,-4],[23,43],[-4,44],[39,50],[-9,58],[-19,49],[46,51],[84,24],[90,14],[39,21],[45,14]],[[19916,10823],[58,-54],[24,-90],[128,-48]],[[19344,10824],[25,-14],[56,37],[26,-22],[26,53],[46,-2],[12,16],[8,48],[34,40],[42,-26],[-9,-36],[25,-5],[-8,-98],[31,-39],[27,24],[34,12],[49,52],[54,-7],[81,-1]],[[19903,10856],[13,-33]],[[18802,9970],[70,106],[-7,76],[-59,19],[-5,73],[-26,94],[34,64],[-35,17],[22,85],[32,146]],[[18828,10650],[80,-45],[59,16],[15,53],[63,17],[43,36],[16,93],[65,23],[13,41],[36,-31],[24,-4]],[[19594,11185],[-29,-35],[-85,19],[-8,-67],[85,9],[97,-38],[147,18]],[[19801,11091],[20,-109],[25,13],[48,-27],[-3,-46],[12,-66]],[[20315,11431],[-11,-26],[-123,-63],[-28,-46],[-100,-15],[-30,-74],[-82,16],[-55,-23],[-74,-55],[11,-27],[-22,-27]],[[18828,10650],[-7,97],[-58,5],[-89,104],[-62,12],[-87,59],[-56,11],[-33,-21],[-53,2],[-55,-66],[-69,-23]],[[18259,10830],[-15,83],[11,121],[-60,40],[20,80],[-52,7],[18,98],[73,-28],[68,37],[-57,70],[-22,67],[-62,-30],[-8,-85],[-25,75]],[[17545,10827],[0,0],[-43,93],[15,36],[-24,135],[53,32]],[[17546,11123],[12,-43],[41,-54],[53,-16]],[[17652,11010],[28,3]],[[17680,11013],[92,86],[29,9],[24,-34],[-27,-58],[48,-61],[20,6]],[[17866,10961],[24,-86],[75,-24],[53,-59],[112,-20],[121,30],[8,28]],[[18850,9416],[-147,35],[-85,26],[-88,16],[-33,143],[-38,20],[-59,-20],[-79,-57],[-96,39],[-79,90],[-74,33],[-53,111],[-58,155],[-41,-19],[-50,39],[-29,-46]],[[16838,10306],[-1,1],[10,18],[-1,48]],[[16859,10533],[-6,89],[19,48]],[[16872,10670],[21,25],[21,25],[3,66],[26,-23],[87,33],[41,-23],[64,0],[89,45],[43,-2],[89,17]],[[17652,11010],[-32,68],[1,17],[-35,0],[-23,31],[-17,-3]],[[17546,11123],[-30,34],[-59,29],[8,57],[-13,41]],[[17452,11284],[109,18]],[[17561,11302],[15,-30],[30,-20],[-15,-30],[41,-40],[-22,-36],[33,-32],[36,-20],[1,-81]],[[15661,14554],[105,-57],[121,-80],[3,-180],[25,-45]],[[15915,14192],[-133,-33],[-76,-82],[12,-72],[-124,-93],[-151,-100],[-57,-164],[56,-83],[75,-64],[-73,-132],[-81,-28],[-29,-195],[-44,-110],[-95,12],[-45,-93],[-90,-6],[-24,111],[-66,132],[-59,165]],[[16531,12569],[-67,-7],[-24,-26],[-5,-58],[-31,11],[-70,-6],[-21,28],[-29,-20],[-29,16],[-63,2],[-86,28],[-79,10],[-61,-3],[-42,-32],[-38,-4]],[[15886,12508],[-1,52],[-24,54],[46,24],[2,46],[-23,45],[-3,51]],[[15883,12780],[76,0],[84,44],[18,65],[65,38],[-8,52]],[[16118,12979],[48,20],[83,45]],[[17034,11986],[-62,-10],[-53,-37],[-73,-6],[-67,-44],[4,-62]],[[16660,11854],[-11,12],[-121,30],[-6,44],[-72,-15],[-29,-64],[-60,-87]],[[16361,11774],[-36,21],[-37,-19],[-34,22]],[[16254,11798],[20,12],[13,40],[21,37],[-5,22],[16,8],[8,-16],[46,-3],[21,9],[-14,11],[5,18],[-28,30],[-11,48],[-29,19],[6,40],[-35,31],[-32,5],[-58,36],[-51,-12],[-19,-16]],[[16128,12117],[-33,0],[-19,-28],[-58,-11],[-27,-18],[-37,29],[-50,0],[-48,13],[-33,-25]],[[15823,12077],[-6,31],[-43,32]],[[15774,12140],[15,47],[22,30]],[[15811,12217],[16,-7],[-20,53],[72,97],[39,14],[7,32],[-39,102]],[[16660,11854],[11,-14],[-74,-39],[-14,-22],[86,-35],[-18,-54],[44,-24],[105,68],[86,20],[16,42],[-81,-8],[-37,29],[-1,10]],[[16783,11827],[-12,3],[-10,24],[-25,3],[-56,26],[-20,-29]],[[15811,12217],[-74,45],[-57,-17],[-36,13],[-46,-25],[-40,41],[-32,-16],[-5,8]],[[15521,12266],[-35,57],[-58,6],[-8,37],[-54,14],[-11,-31],[-42,24],[4,33],[-57,9],[-38,38]],[[15222,12453],[-31,75],[5,39],[-19,63],[-29,42],[23,31],[-19,60]],[[15152,12763],[53,34],[122,54],[98,39],[78,-20],[6,-28],[76,-2]],[[15824,12828],[40,-11],[19,-37]],[[15375,12105],[-5,-47],[-45,-1],[16,-25],[-26,-75]],[[15315,11957],[-15,-20],[-68,-3],[-40,-26],[-64,8]],[[15128,11916],[-112,30],[-17,41],[-78,-20],[-9,-22],[-47,16]],[[14865,11961],[-40,4],[-35,21],[12,28],[-3,21]],[[14799,12035],[23,6],[40,-32],[11,31],[69,-5],[56,21],[37,-4],[24,-23],[8,19],[-11,76],[28,15],[28,54]],[[15112,12193],[57,-38],[44,48],[28,8],[60,-34],[36,5],[37,-22]],[[15374,12160],[-6,-14],[7,-41]],[[15823,12077],[-48,-25],[-37,-78],[-48,-80],[-62,-22]],[[15628,11872],[-49,5],[-59,-30],[0,0]],[[15520,11847],[-29,-18],[-64,23],[-59,50],[-25,14]],[[15343,11916],[-16,39],[-12,2]],[[15375,12105],[40,-30],[29,-12],[65,14],[7,23],[31,3],[38,18],[9,-7],[36,15],[18,27],[26,7],[83,-35],[17,12]],[[16254,11798],[-14,53],[8,50],[-2,50],[-46,70],[-24,49],[-25,35],[-23,12]],[[16361,11774],[2,-30],[-38,-25],[-25,12],[-21,-141]],[[16279,11590],[-45,12],[-57,43],[-93,-27],[-38,-30],[-115,5],[-60,19],[-30,-9],[-23,48]],[[15818,11651],[-14,21],[18,19],[-19,15],[-25,-26],[-45,33],[-6,49],[-48,27],[-9,38],[-42,45]],[[15710,12930],[-16,98]],[[15694,13028],[89,35],[131,-7],[77,11],[10,-24],[42,-8],[75,-56]],[[15694,13028],[2,88],[39,73],[73,40],[62,-87],[63,2],[15,90]],[[15948,13234],[66,20],[35,-15],[67,-43],[64,0]],[[15948,13234],[8,68],[-27,-14],[-50,41],[-7,67],[99,32],[98,17],[85,-19],[80,4],[0,0]],[[15222,12453],[-35,-12],[-20,13],[-20,-22],[-56,-22],[-28,-29],[-57,-26],[13,-34],[8,-50],[40,-28],[45,-50]],[[14799,12035],[-84,36],[-15,-26],[-67,1]],[[14633,12046],[10,83],[39,81],[-113,21],[-36,31]],[[14533,12262],[4,51],[-16,26]],[[14521,12339],[9,78]],[[14530,12417],[-13,123],[48,0],[19,44],[20,107],[-15,39]],[[14589,12730],[15,25],[66,7],[14,-26],[53,57],[-17,44],[-5,66]],[[14715,12903],[59,-16],[50,19]],[[14824,12906],[1,-46],[79,-27],[0,-41],[79,22],[44,32],[88,-47],[37,-36]],[[16279,11590],[-41,-49],[-28,-83],[25,-67]],[[16235,11391],[-67,16],[-79,-37]],[[16089,11370],[-1,-58],[-71,-11],[-55,41],[-62,-32],[-58,3]],[[15842,11313],[-6,77],[-39,38]],[[15797,11428],[13,17],[-8,13],[12,37],[30,37],[-38,50],[-6,42],[18,27]],[[16102,10609],[-10,-35],[-112,-10],[1,20],[-96,22],[15,49],[43,-38],[60,6],[58,-8],[-1,-21],[42,15]],[[16089,11370],[38,-31],[-25,-72],[-19,-14]],[[16083,11253],[-46,4],[-42,11],[-94,-30],[54,-66],[-40,-20],[-43,0],[-41,60],[-15,-25],[18,-69],[39,-55],[-30,-26],[43,-54],[39,-34],[1,-65],[-72,31],[23,-60],[-50,-12],[30,-103],[-52,-1],[-63,50],[-29,94],[-15,77],[-30,53],[-40,67],[-6,33]],[[15622,11113],[37,57],[5,38],[25,17],[1,30]],[[15690,11255],[52,11],[30,25],[42,-2],[12,20],[16,4]],[[16872,10670],[-29,52],[30,45],[-48,-11],[-66,27],[-53,-67],[-118,-13],[-64,63],[-83,4],[-19,-49],[-54,-14],[-75,63],[-85,-2],[-47,116],[-56,63],[37,91],[-50,56],[87,112],[120,4],[34,89],[148,-15],[94,75],[91,33],[129,3],[137,-82],[111,-45],[91,18],[67,-11],[93,61]],[[17294,11336],[83,6],[75,-58]],[[16235,11391],[10,-44],[68,-38],[-15,-29],[-92,-7],[-34,-35],[-64,-63],[-25,54],[0,24]],[[15622,11113],[-13,9],[-1,25],[-43,39],[-7,55],[7,81],[11,35],[-14,19],[0,0]],[[15562,11376],[-5,38],[33,57],[6,-23],[21,11]],[[15617,11459],[17,-31],[17,-12],[6,-42]],[[15657,11374],[0,0],[-10,-40],[11,-50],[32,-29]],[[15520,11847],[19,-46],[24,-32],[-30,-45]],[[15533,11724],[-35,26],[-54,-2],[-66,20],[-37,-2],[-17,-25],[-29,27],[-15,-49],[37,-54],[17,-37],[37,-43],[29,-25],[30,-50],[69,-44]],[[15499,11466],[-9,-20]],[[15490,11446],[0,0],[-73,44],[-45,42],[-72,34],[-66,86],[17,9],[-36,49],[-2,39],[-50,19],[-24,-51],[-23,40],[2,40],[2,1]],[[15120,11798],[55,-3],[14,20],[27,-19],[30,-2],[0,32],[27,12],[8,47],[62,31]],[[14865,11961],[-6,-47],[-35,-20],[-58,15],[-16,-48],[-37,-4],[-13,19],[-45,-40],[-38,-5],[-33,26]],[[14584,11857],[-27,51],[-37,-19],[1,53],[57,65],[-2,30],[36,-10],[21,19]],[[14533,12262],[-23,-3],[-17,10]],[[14493,12269],[8,65],[20,5]],[[14493,12269],[-68,54],[-40,-10],[-55,55],[-37,47],[-35,1],[-12,42]],[[14246,12458],[63,23],[0,0]],[[14309,12481],[0,0],[57,-9],[72,24],[50,-51],[42,-28]],[[14309,12481],[40,32],[68,171],[107,50],[65,-4]],[[13345,11377],[28,29],[32,17],[20,-57],[46,0],[13,15],[46,-4],[22,-59],[-37,-31],[-1,-91],[-12,-17],[-4,-56],[-33,-9],[31,-70],[-22,-77],[28,-34],[-11,-32],[-29,-44],[6,-38]],[[13468,10819],[-31,-31],[-41,16],[-40,-12],[11,91],[-7,72],[-35,11],[-18,43],[5,77],[32,42],[5,48],[17,69],[-2,51],[-16,41],[-3,40]],[[13345,11377],[4,83],[-32,50],[110,84],[96,-21],[105,1],[83,-20],[65,7],[125,-4]],[[13901,11557],[32,-46],[143,-53],[29,25],[88,-53],[90,16]],[[14283,11446],[5,-68],[-75,-78],[-100,-25],[-7,-38],[-48,-65],[-30,-96],[30,-67],[-44,-51],[-17,-76],[-59,-24],[-56,-89],[-99,-1],[-74,2],[-49,-42],[-30,-44],[-38,10],[-29,39],[-22,67],[-73,19]],[[13566,12775],[14,-83],[-59,-104],[-140,-69],[-110,17],[64,122],[-41,119],[106,91],[59,55]],[[13459,12923],[16,-63],[-16,-63],[48,2],[59,-24]],[[26990,4030],[64,-73],[41,-54],[-30,-28],[-43,32],[-55,52],[-52,62],[-51,82],[-11,40],[34,-1],[44,-41],[35,-39],[24,-32]],[[26704,5266],[22,-40],[-54,1],[-30,72],[46,-28],[16,-5]],[[26671,5369],[-13,-21],[-58,101],[-16,69],[26,0],[28,-93],[33,-56]],[[26605,5337],[-30,-3],[-48,12],[-17,18],[6,47],[51,-19],[26,-24],[12,-31]],[[26510,5554],[19,-38],[4,-23],[-62,49],[-42,43],[-30,39],[12,11],[36,-28],[63,-53]],[[26315,5670],[32,-38],[-16,-6],[-33,26],[-33,48],[4,19],[46,-49]],[[27857,1814],[-30,-63],[-39,-80],[-60,-46],[-13,31],[-32,16],[44,96],[-26,65],[-83,46],[2,43],[57,40],[12,90],[-3,76],[-31,78],[2,20],[-38,49],[-61,102],[-32,83],[28,9],[43,-65],[60,-30],[22,-103],[57,-123],[2,79],[35,-32],[12,-88],[62,-38],[53,-9],[44,44],[40,-13],[-19,-104],[-23,-68],[-60,3],[-21,-36],[7,-50],[-11,-22]],[[27294,1407],[67,61],[47,61],[34,86],[29,30],[12,65],[55,54],[18,-49],[17,-49],[55,48],[23,-50],[0,-49],[-29,-54],[-51,-86],[-40,-47],[29,-56],[-60,-2],[-67,-43],[-21,-77],[-45,-118],[-61,-52],[-39,-34],[-72,3],[-50,39],[-85,8],[-13,43],[42,86],[98,115],[50,23],[57,44]],[[25578,1727],[47,-8],[6,-138],[-27,-40],[-9,-94],[-27,32],[-54,-82],[-16,7],[-48,3],[-49,101],[-10,76],[-45,102],[2,54],[51,-11],[76,-40],[42,16],[61,22]],[[23896,2730],[-82,-60],[-68,-27],[-14,-61],[-29,-47],[-67,-3],[-49,-11],[-69,21],[-56,-12],[-53,-5],[-47,-63],[-22,6],[-40,-33],[-37,-38],[-57,5],[-52,0],[-84,75],[-42,22],[2,67],[39,16],[14,26],[-4,42],[10,81],[-9,70],[-41,118],[-13,66],[3,66],[-31,77],[-1,33],[-35,47],[-10,92],[-44,92],[-11,50],[34,-50],[-27,108],[39,-34],[24,-45],[-1,60],[-39,91],[-8,37],[-18,35],[9,68],[16,28],[11,59],[-9,67],[32,85],[6,-89],[33,80],[63,40],[38,49],[60,42],[35,10],[22,-14],[61,43],[48,13],[11,26],[22,10],[43,-3],[81,34],[43,53],[20,61],[45,59],[4,48],[2,63],[54,99],[34,-100],[33,23],[-28,55],[25,56],[34,-25],[9,89],[44,57],[17,46],[41,20],[1,33],[34,-14],[1,29],[35,18],[38,15],[56,-53],[44,-70],[49,-1],[50,-10],[-17,63],[37,94],[36,30],[-13,30],[35,67],[47,41],[40,-14],[65,22],[-1,59],[-58,39],[43,16],[51,-28],[41,-48],[66,-30],[22,12],[49,-36],[46,34],[29,-11],[19,23],[35,-58],[-21,-63],[-30,-47],[-27,-4],[9,-46],[-22,-58],[-28,-57],[6,-33],[62,-65],[60,-38],[40,-39],[56,-70],[22,0],[41,-30],[13,-36],[74,-40],[51,40],[16,63],[15,52],[9,64],[25,93],[-11,56],[5,34],[-9,67],[10,88],[16,24],[-12,38],[19,62],[14,64],[2,34],[29,44],[23,-58],[4,-73],[20,-14],[3,-49],[28,-59],[7,-67],[-3,-42],[27,-91],[51,43],[26,-49],[37,-45],[-8,-52],[17,-100],[12,-58],[19,-15],[21,-99],[-6,-60],[24,-80],[85,-60],[55,-57],[53,-50],[-10,-28],[44,-73],[30,-127],[31,26],[32,-50],[20,17],[13,-124],[54,-71],[37,-45],[61,-94],[22,-94],[2,-66],[-6,-73],[38,-99],[-4,-103],[-14,-54],[-21,-104],[1,-67],[-15,-84],[-35,-106],[-58,-58],[-28,-90],[-26,-58],[-23,-100],[-30,-58],[-20,-87],[-10,-80],[4,-38],[-45,-40],[-87,-5],[-72,-47],[-36,-46],[-48,-50],[-64,51],[-48,22],[12,61],[-42,-23],[-68,-85],[-68,32],[-44,19],[-45,8],[-76,34],[-50,72],[-14,89],[-18,59],[-39,47],[-75,14],[26,57],[-19,86],[-38,-81],[-70,-21],[41,64],[11,68],[32,57],[-7,86],[-64,-99],[-48,-40],[-31,-93],[-61,48],[4,62],[-49,85],[-42,44],[15,27],[-100,70],[-55,3],[-76,57],[-139,-11],[-101,-42],[-89,-39],[-75,8]],[[20434,7367],[-12,-122],[-32,-32],[-68,-28],[-37,93],[-15,169],[36,189],[53,-65],[37,-82],[38,-122]],[[22595,8613],[-64,36],[-2,100],[38,53],[86,33],[44,-3],[18,-44],[-34,-51],[-18,-68],[-68,-56]],[[23749,11149],[-109,-34],[-57,-54],[-84,-32],[41,54],[-16,45],[62,79],[-41,61],[-68,-42],[-88,-81],[-48,-76],[-77,-5],[-40,-55],[41,-78],[65,-19],[2,-53],[61,-33],[88,83],[69,-46],[50,-3],[14,-61],[-111,-32],[-36,-64],[-76,-58],[-40,-81],[83,-65],[31,-114],[47,-108],[54,-90],[-1,-86],[-49,-32],[18,-63],[46,-35],[-12,-95],[-20,-93],[-44,-11],[-56,-125],[-64,-154],[-72,-139],[-107,-108],[-109,-98],[-88,-14],[-48,-51],[-27,38],[-44,-58],[-109,-58],[-83,-19],[-26,-123],[-44,-6],[-20,84],[19,45],[-106,37],[-36,-18]],[[23556,9336],[-47,-187],[-34,-96],[-41,99],[-9,87],[46,114],[62,88],[36,-35],[-13,-70]],[[15128,11916],[-9,-57],[19,-50]],[[15138,11809],[-62,18],[-64,-42],[5,-58],[-10,-33],[25,-60],[74,-58],[39,-97],[87,-93],[61,0],[19,-26],[-21,-23],[69,-42],[58,-35],[66,-61],[8,-22],[-14,-42],[-44,54],[-68,20],[-32,-76],[56,-43],[-9,-61],[-32,-7],[-43,-100],[-32,-9],[0,35],[17,63],[16,25],[-30,68],[-24,59],[-32,15],[-24,50],[-50,21],[-33,47],[-58,7],[-61,53],[-72,76],[-52,67],[-24,116],[-39,13],[-64,39],[-37,-16],[-44,-55],[-32,-8]],[[14631,11588],[8,51],[-42,14],[-20,90],[27,36],[-24,45],[4,33]],[[15202,10941],[60,9],[-29,-92],[12,-35],[-17,-60],[-59,43],[-40,13],[-109,60],[11,60],[92,-11],[79,13]],[[14730,11262],[39,37],[46,-84],[-11,-154],[-34,7],[-33,-38],[-30,31],[-2,140],[-18,67],[43,-6]],[[14715,12903],[-31,65],[-2,119],[12,32],[23,34],[68,8],[28,32],[62,33],[-2,-60],[-23,-38],[10,-33],[42,-17],[-20,-45],[-22,13],[-57,-84],[21,-56]],[[15016,13037],[24,-59],[-47,-94],[-81,66],[-11,49],[115,38]],[[13459,12923],[65,4],[85,-71],[-43,-81]],[[13809,12721],[0,0],[11,68],[-52,71],[-1,2],[-95,21],[-19,32],[29,52],[-26,32],[-42,-55],[-4,112],[-40,60],[29,121],[60,94],[62,-9],[95,9],[-84,-125],[79,15],[86,0],[-20,-96],[-70,-104],[80,-8],[7,-11],[69,-139],[53,-18],[48,-133],[22,-46],[95,-22],[-9,-75],[-40,-35],[31,-60],[-70,-60],[-105,1],[-132,-32],[-37,22],[-51,-54],[-73,13],[-54,-45],[-42,24],[114,122],[70,25],[0,0],[-122,20],[-22,47],[81,35],[-42,63],[14,77],[117,-11]],[[12917,14244],[-18,-75],[88,-79],[-101,-89],[-225,-81],[-68,-21],[-102,17],[-218,37],[78,51],[-171,57],[138,23],[-3,35],[-164,27],[53,76],[119,16],[121,-78],[118,63],[99,-33],[127,62],[129,-8]],[[17842,11368],[42,-62],[39,-82],[36,-6],[25,-31],[-65,-9],[-13,-91],[-14,-41],[-29,-27],[3,-58]],[[17561,11302],[19,20],[58,-34],[42,-7],[10,14],[-38,63],[20,16]],[[17294,11336],[11,51],[-19,79],[-46,42],[-42,14],[-29,36]],[[23482,7972],[-40,89],[67,-4],[27,-43],[-20,-100],[-34,58]],[[23618,7655],[20,31],[9,73],[42,7],[-12,-79],[58,114],[-8,-113],[-28,-37],[-24,-74],[-25,-35],[-48,81],[16,32]],[[23914,7472],[8,-79],[5,-64],[-26,-108],[-29,119],[-37,-59],[26,-86],[-23,-54],[-92,68],[-22,84],[24,55],[-50,55],[-24,-48],[-37,5],[-58,-65],[-12,34],[30,98],[49,33],[43,44],[27,-53],[60,32],[12,52],[56,3],[-4,90],[62,-55],[7,-59],[5,-42]],[[23300,7576],[-104,-110],[38,81],[57,73],[46,80],[42,116],[13,-95],[-51,-65],[-41,-80]],[[23599,8616],[-12,-49],[27,-83],[-22,-97],[-45,-39],[-13,-94],[17,-93],[42,-12],[35,13],[97,-65],[-8,-62],[26,-28],[-8,-55],[-61,57],[-28,62],[-21,-43],[-49,69],[-72,-16],[-39,25],[5,48],[24,30],[-23,28],[-10,-43],[-39,68],[-11,50],[-3,112],[31,-39],[9,183],[24,106],[48,0],[48,-33],[24,30],[7,-30]],[[23576,7822],[-13,55],[47,-36],[50,0],[-1,-48],[-37,-50],[-49,-35],[-3,54],[6,60]],[[23846,7909],[22,-131],[-60,31],[1,-38],[19,-73],[-36,-26],[-4,82],[-23,6],[-12,71],[45,-9],[-1,43],[-48,89],[76,-2],[21,-43]],[[22023,7215],[17,-10],[47,-71],[33,-78],[4,-78],[-8,-54],[7,-40],[5,-69],[28,-32],[31,-103],[-2,-40],[-54,-8],[-75,87],[-92,92],[-9,60],[-45,79],[-11,95],[-28,64],[8,85],[-17,49]],[[22609,6723],[58,-39],[60,22],[16,98],[33,22],[94,26],[56,92],[38,73]],[[22964,7017],[36,-60],[16,40],[38,-4],[4,74],[3,59]],[[23061,7126],[60,80],[41,92],[31,0],[40,-59],[3,-51],[51,-33],[66,-34],[-6,-47],[-52,-6],[13,-56],[-56,-40]],[[22964,7017],[32,44],[65,65]],[[15120,11798],[18,11]],[[16241,13550],[0,0],[-142,-10],[-137,-42],[-127,-25],[-46,63],[-75,39],[18,115],[-38,106],[36,67],[72,74],[178,125],[52,26],[-8,49],[-109,55]],[[15374,12160],[11,26],[35,-2],[27,12],[1,11],[15,5],[6,27],[18,5],[11,21],[23,1]],[[17049,8590],[44,-136],[22,-107],[43,-56],[107,-110],[43,-67],[42,-68],[25,-39],[38,-35]],[[17413,7972],[-24,-29],[-33,10]],[[17356,7953],[-27,38],[-32,68],[-35,37],[-20,41],[-68,47],[-53,1],[-19,25],[-46,-28],[-47,53],[-25,-87],[-90,24]],[[25125,11062],[-72,-118],[1,-120],[-30,-93],[15,-59],[-42,-82],[-99,-55],[-138,-7],[-111,-134],[-52,46],[-4,87],[-134,-26],[-93,-55],[-92,-2],[80,-86],[-52,-199],[-52,-49],[-38,45],[21,106],[-51,34],[-31,80],[74,36],[41,73],[78,60],[58,80],[154,35],[84,-24],[82,208],[52,-56],[114,117],[45,44],[49,144],[-14,131],[34,74],[82,21],[44,-162],[-3,-94]],[[25338,11620],[56,49],[16,-132],[-115,-32],[-68,-116],[-124,81],[-42,-128],[-87,-2],[-10,116],[38,90],[83,7],[24,161],[22,91],[92,-122],[60,-39],[55,-24]],[[24383,10394],[42,70],[45,-14],[32,50],[58,-25],[9,-41],[-44,-71],[-32,38],[-40,-27],[-20,-69],[-51,34],[1,55]],[[18195,8432],[-57,-31],[-14,-52],[-2,-40],[-78,-49],[-125,-54],[-69,-82],[-34,-7],[-24,7],[-45,-49],[-50,-22],[-66,-6],[-20,-7],[-17,-31],[-20,-8],[-12,-29],[-39,2],[-25,-16],[-54,6],[-20,68],[2,64],[-12,34],[-16,86],[-22,49],[15,6],[-7,53],[9,22],[-4,51]],[[17389,8397],[35,37],[-8,49],[20,57],[32,-30],[21,11],[91,3],[14,-12],[75,-11],[30,6],[20,-40],[37,20],[55,122],[73,53],[224,45]],[[17829,9821],[31,-101],[38,-26],[13,-41],[54,-49],[4,-48],[-8,-39],[10,-40],[23,-32],[11,-38],[11,-29]],[[18062,9363],[14,-44]],[[17389,8397],[-10,50],[-23,35],[-7,47],[-40,41],[-41,98],[-22,96],[-55,80],[-34,18],[-52,112],[-9,81],[4,69],[-46,130],[-35,46],[-43,24],[-25,66],[3,27],[-21,60],[-24,26],[-30,87],[-47,94],[-39,80],[-39,0],[12,64],[3,40],[9,47]],[[16604,10590],[6,1],[12,28],[56,-2],[71,35],[-53,-50],[6,-22]],[[16702,10580],[-9,5],[-14,-9],[-12,2],[-4,-5],[-2,13],[-5,7],[-15,0],[-21,-9],[-16,6]],[[16702,10580],[3,-9],[-81,-47],[-37,14],[-19,48],[36,4]],[[12721,8989],[4,54],[30,32],[25,61],[-4,40],[27,82],[43,73],[27,20],[20,67],[2,63],[28,72],[52,42],[49,119],[1,2],[40,45],[73,13],[61,80],[39,31],[66,97],[-20,145],[30,101],[10,62],[50,78],[79,53],[58,49],[52,121],[24,71],[57,0],[48,-50],[74,9],[81,-27],[33,-1]],[[16001,9057],[0,429],[0,415],[-23,94],[20,72],[-11,51],[27,55]],[[16014,10173],[104,2],[76,-30],[76,-35],[37,-18],[60,36],[33,34],[67,10],[56,-15],[21,-58],[19,38],[63,-27],[60,-7],[39,29]],[[16725,10132],[0,0],[43,-170]],[[16768,9962],[8,-30],[-22,-47],[-17,-88],[-21,-61],[-18,-21],[-27,38],[-34,52],[-56,168],[-8,-11],[33,-123],[47,-117],[59,-182],[29,-63],[25,-66],[70,-130],[-16,-20],[3,-76],[91,-104],[13,-24]],[[14947,10357],[91,-41],[33,10],[65,-20],[104,-52],[36,-103],[70,-23],[111,-49],[83,-58],[38,31],[38,53],[-19,89],[24,57],[57,55],[54,16],[105,-24],[27,-52],[29,-1],[25,-20],[77,-14],[19,-38]],[[16805,7132],[-46,127],[-35,27],[-14,46],[-40,58],[-48,8],[27,66],[41,3],[12,36]],[[17356,7953],[-28,-52],[-26,-54],[6,-33],[1,-35],[44,-2],[18,8],[18,-20]],[[17389,7765],[-18,-42],[29,-65],[29,-56],[30,-41],[255,-139],[66,1]],[[17413,7972],[19,-37],[-4,-48],[-44,-28],[34,-32]],[[17418,7827],[-29,-62]],[[17418,7827],[25,-22],[15,-48],[36,-48],[39,-1],[73,30],[85,13],[69,37],[38,8],[29,21],[43,4],[0,0]],[[16424,6357],[-47,-36],[-19,12]],[[16456,6899],[33,32],[50,-26],[62,27],[56,0],[48,53]],[[15533,11724],[0,0],[28,0],[-19,-51],[38,-45],[-12,-55],[-18,-5]],[[15550,11568],[-14,-10],[-26,-27],[-11,-65]],[[15657,11374],[10,-1],[3,23],[47,19],[17,4]],[[15734,11419],[27,7],[36,2]],[[15734,11419],[-2,9],[8,14],[9,28],[-11,0],[-14,21],[-14,6],[-10,18],[-14,7],[-11,17],[-15,-6],[-10,-39],[-19,-9]],[[15631,11485],[7,10],[-30,24],[-26,13],[-11,16],[-21,20]],[[15562,11376],[-16,10],[-23,37],[-33,23]],[[15631,11485],[-14,-26]],[[9236,7745],[44,15],[17,-4],[-3,-87],[-65,-13],[-14,11],[22,32],[-1,46]],[[16776,9932],[-8,30]],[[16725,10132],[0,0],[22,39],[-5,7],[20,54],[16,88],[11,30],[2,1]],[[9838,7161],[27,-12],[58,-28],[82,-99],[13,-47]],[[14631,11588],[-72,-66],[-153,32],[-114,-38],[-9,-70]],[[13901,11557],[40,69],[16,232],[-81,123],[-57,59],[-119,46],[-8,85],[100,25],[132,-30],[-25,132],[74,-50],[181,91],[23,96],[69,23]],[[14733,11464],[50,44],[13,-100],[-25,-90],[-36,24],[-18,78],[16,44]]],"transform":{"scale":[0.012811387900355874,0.008569659076923076],"translate":[-180,-55.61183]},"objects":{"countries":{"type":"GeometryCollection","geometries":[{"arcs":[[[0]],[[1]],[[2]]],"type":"MultiPolygon","properties":{"iso":"FJI"}},{"arcs":[[3,4,5,6,7,8,9,10,11]],"type":"Polygon","properties":{"iso":"TZA"}},{"arcs":[[12,13,14,15]],"type":"Polygon","properties":{"iso":"SAH"}},{"arcs":[[[16,17,18,19]],[[20]],[[21]],[[22]],[[23]],[[24]],[[25]],[[26]],[[27]],[[28]],[[29]],[[30]],[[31]],[[32]],[[33]],[[34]],[[35]],[[36]],[[37]],[[38]],[[39]],[[40]],[[41]],[[42]],[[43]],[[44]],[[45]],[[46]],[[47]],[[48]]],"type":"MultiPolygon","properties":{"iso":"CAN"}},{"arcs":[[[-20,49,50,51]],[[52]],[[53]],[[54]],[[55]],[[56]],[[57]],[[58]],[[-18,59]],[[60]]],"type":"MultiPolygon","properties":{"iso":"USA"}},{"arcs":[[61,62,63,64,65,66]],"type":"Polygon","properties":{"iso":"KAZ"}},{"arcs":[[-64,67,68,69,70]],"type":"Polygon","properties":{"iso":"UZB"}},{"arcs":[[[71,72]],[[73]],[[74]],[[75]]],"type":"MultiPolygon","properties":{"iso":"PNG"}},{"arcs":[[[-73,76]],[[77,78]],[[79]],[[80,81]],[[82]],[[83]],[[84]],[[85]],[[86]],[[87]],[[88]],[[89]],[[90]]],"type":"MultiPolygon","properties":{"iso":"IDN"}},{"arcs":[[[91,92]],[[93,94,95,96,97,98]]],"type":"MultiPolygon","properties":{"iso":"ARG"}},{"arcs":[[[-93,99]],[[100,-96,101,102]]],"type":"MultiPolygon","properties":{"iso":"CHL"}},{"arcs":[[-9,103,104,105,106,107,108,109,110,111,112]],"type":"Polygon","properties":{"iso":"COD"}},{"arcs":[[113,114,115,116]],"type":"Polygon","properties":{"iso":"SOM"}},{"arcs":[[-4,117,118,119,-114,120]],"type":"Polygon","properties":{"iso":"KEN"}},{"arcs":[[121,122,123,124,125,126,127,128]],"type":"Polygon","properties":{"iso":"SDN"}},{"arcs":[[-123,129,130,131,132]],"type":"Polygon","properties":{"iso":"TCD"}},{"arcs":[[133,134]],"type":"Polygon","properties":{"iso":"HTI"}},{"arcs":[[-134,135]],"type":"Polygon","properties":{"iso":"DOM"}},{"arcs":[[[136]],[[137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,-67]],[[153]],[[154]],[[155]],[[156]],[[157]],[[158]],[[159,160,161]],[[162]],[[163]],[[164]],[[165]]],"type":"MultiPolygon","properties":{"iso":"RUS"}},{"arcs":[[[166]],[[167]],[[168]]],"type":"MultiPolygon","properties":{"iso":"BHS"}},{"arcs":[[169]],"type":"Polygon","properties":{"iso":"FLK"}},{"arcs":[[[170]],[[-148,171,172,173]],[[174]],[[175]]],"type":"MultiPolygon","properties":{"iso":"NOR"}},{"arcs":[[176]],"type":"Polygon","properties":{"iso":"GRL"}},{"arcs":[[177]],"type":"Polygon","properties":{"iso":"ATF"}},{"arcs":[[178,-78]],"type":"Polygon","properties":{"iso":"TLS"}},{"arcs":[[179,180,181,182,183,184,185],[186]],"type":"Polygon","properties":{"iso":"ZAF"}},{"arcs":[[-187]],"type":"Polygon","properties":{"iso":"LSO"}},{"arcs":[[-51,187,188,189,190]],"type":"Polygon","properties":{"iso":"MEX"}},{"arcs":[[191,192,-94]],"type":"Polygon","properties":{"iso":"URY"}},{"arcs":[[-192,-99,193,194,195,196,197,198,199,200,201]],"type":"Polygon","properties":{"iso":"BRA"}},{"arcs":[[-195,202,-97,-101,203]],"type":"Polygon","properties":{"iso":"BOL"}},{"arcs":[[-196,-204,-103,204,205,206]],"type":"Polygon","properties":{"iso":"PER"}},{"arcs":[[-197,-207,207,208,209,210,211]],"type":"Polygon","properties":{"iso":"COL"}},{"arcs":[[-210,212,213,214]],"type":"Polygon","properties":{"iso":"PAN"}},{"arcs":[[-214,215,216,217]],"type":"Polygon","properties":{"iso":"CRI"}},{"arcs":[[-217,218,219,220]],"type":"Polygon","properties":{"iso":"NIC"}},{"arcs":[[-220,221,222,223,224]],"type":"Polygon","properties":{"iso":"HND"}},{"arcs":[[-223,225,226]],"type":"Polygon","properties":{"iso":"SLV"}},{"arcs":[[-190,227,228,-224,-227,229]],"type":"Polygon","properties":{"iso":"GTM"}},{"arcs":[[-189,230,-228]],"type":"Polygon","properties":{"iso":"BLZ"}},{"arcs":[[-198,-212,231,232]],"type":"Polygon","properties":{"iso":"VEN"}},{"arcs":[[-199,-233,233,234]],"type":"Polygon","properties":{"iso":"GUY"}},{"arcs":[[-200,-235,235,236]],"type":"Polygon","properties":{"iso":"SUR"}},{"arcs":[[-206,237,-208]],"type":"Polygon","properties":{"iso":"ECU"}},{"arcs":[[238]],"type":"Polygon","properties":{"iso":"PRI"}},{"arcs":[[239]],"type":"Polygon","properties":{"iso":"JAM"}},{"arcs":[[240]],"type":"Polygon","properties":{"iso":"CUB"}},{"arcs":[[-182,241,242,243]],"type":"Polygon","properties":{"iso":"ZWE"}},{"arcs":[[-181,244,245,-242]],"type":"Polygon","properties":{"iso":"BWA"}},{"arcs":[[-180,246,247,248,-245]],"type":"Polygon","properties":{"iso":"NAM"}},{"arcs":[[249,250,251,252,253,254,255]],"type":"Polygon","properties":{"iso":"SEN"}},{"arcs":[[-252,256,257,258,259,260,261]],"type":"Polygon","properties":{"iso":"MLI"}},{"arcs":[[-14,262,-257,-251,263]],"type":"Polygon","properties":{"iso":"MRT"}},{"arcs":[[264,265,266,267,268]],"type":"Polygon","properties":{"iso":"BEN"}},{"arcs":[[-132,269,270,-268,271,-259,272,273]],"type":"Polygon","properties":{"iso":"NER"}},{"arcs":[[-269,-271,274,275]],"type":"Polygon","properties":{"iso":"NGA"}},{"arcs":[[-131,276,277,278,279,280,-275,-270]],"type":"Polygon","properties":{"iso":"CMR"}},{"arcs":[[-266,281,282,283]],"type":"Polygon","properties":{"iso":"TGO"}},{"arcs":[[-283,284,285,286]],"type":"Polygon","properties":{"iso":"GHA"}},{"arcs":[[-261,287,-286,288,289,290]],"type":"Polygon","properties":{"iso":"CIV"}},{"arcs":[[-253,-262,-291,291,292,293,294]],"type":"Polygon","properties":{"iso":"GIN"}},{"arcs":[[-254,-295,295]],"type":"Polygon","properties":{"iso":"GNB"}},{"arcs":[[-290,296,297,-292]],"type":"Polygon","properties":{"iso":"LBR"}},{"arcs":[[-293,-298,298]],"type":"Polygon","properties":{"iso":"SLE"}},{"arcs":[[-260,-272,-267,-284,-287,-288]],"type":"Polygon","properties":{"iso":"BFA"}},{"arcs":[[-109,299,-277,-130,-122,300]],"type":"Polygon","properties":{"iso":"CAF"}},{"arcs":[[-108,301,302,303,-278,-300]],"type":"Polygon","properties":{"iso":"COG"}},{"arcs":[[-279,-304,304,305]],"type":"Polygon","properties":{"iso":"GAB"}},{"arcs":[[-280,-306,306]],"type":"Polygon","properties":{"iso":"GNQ"}},{"arcs":[[-8,307,308,-243,-246,-249,309,-104]],"type":"Polygon","properties":{"iso":"ZMB"}},{"arcs":[[-7,310,-308]],"type":"Polygon","properties":{"iso":"MWI"}},{"arcs":[[-6,311,-185,312,-183,-244,-309,-311]],"type":"Polygon","properties":{"iso":"MOZ"}},{"arcs":[[-184,-313]],"type":"Polygon","properties":{"iso":"SWZ"}},{"arcs":[[[-107,313,-302]],[[-105,-310,-248,314]]],"type":"MultiPolygon","properties":{"iso":"AGO"}},{"arcs":[[-10,-113,315]],"type":"Polygon","properties":{"iso":"BDI"}},{"arcs":[[316,317,318]],"type":"Polygon","properties":{"iso":"LBN"}},{"arcs":[[319]],"type":"Polygon","properties":{"iso":"MDG"}},{"arcs":[[-256,320]],"type":"Polygon","properties":{"iso":"GMB"}},{"arcs":[[321,322,323]],"type":"Polygon","properties":{"iso":"TUN"}},{"arcs":[[-13,324,325,-322,326,-273,-258,-263]],"type":"Polygon","properties":{"iso":"DZA"}},{"arcs":[[327,328,329,330,331,332]],"type":"Polygon","properties":{"iso":"JOR"}},{"arcs":[[333,334,335,336,337]],"type":"Polygon","properties":{"iso":"ARE"}},{"arcs":[[338,339]],"type":"Polygon","properties":{"iso":"QAT"}},{"arcs":[[340,341,342]],"type":"Polygon","properties":{"iso":"KWT"}},{"arcs":[[-330,343,344,345,346,-343,347]],"type":"Polygon","properties":{"iso":"IRQ"}},{"arcs":[[[-337,348,349,350]],[[-335,351]]],"type":"MultiPolygon","properties":{"iso":"OMN"}},{"arcs":[[[352]],[[353]]],"type":"MultiPolygon","properties":{"iso":"VUT"}},{"arcs":[[354,355,356,357]],"type":"Polygon","properties":{"iso":"KHM"}},{"arcs":[[-355,358,359,360,361,362]],"type":"Polygon","properties":{"iso":"THA"}},{"arcs":[[-356,-363,363,364,365]],"type":"Polygon","properties":{"iso":"LAO"}},{"arcs":[[-362,366,367,368,369,-364]],"type":"Polygon","properties":{"iso":"MMR"}},{"arcs":[[-357,-366,370,371]],"type":"Polygon","properties":{"iso":"VNM"}},{"arcs":[[-150,372,373,374,375]],"type":"Polygon","properties":{"iso":"PRK"}},{"arcs":[[-374,376]],"type":"Polygon","properties":{"iso":"KOR"}},{"arcs":[[-152,377]],"type":"Polygon","properties":{"iso":"MNG"}},{"arcs":[[-369,378,379,380,381,382,383,384,385]],"type":"Polygon","properties":{"iso":"IND"}},{"arcs":[[-368,386,-379]],"type":"Polygon","properties":{"iso":"BGD"}},{"arcs":[[-385,387]],"type":"Polygon","properties":{"iso":"BTN"}},{"arcs":[[-383,388]],"type":"Polygon","properties":{"iso":"NPL"}},{"arcs":[[-381,389,390,391,392]],"type":"Polygon","properties":{"iso":"PAK"}},{"arcs":[[-70,393,394,-392,395,396]],"type":"Polygon","properties":{"iso":"AFG"}},{"arcs":[[-69,397,398,-394]],"type":"Polygon","properties":{"iso":"TJK"}},{"arcs":[[-63,399,-398,-68]],"type":"Polygon","properties":{"iso":"KGZ"}},{"arcs":[[-65,-71,-397,400,401]],"type":"Polygon","properties":{"iso":"TKM"}},{"arcs":[[-346,402,403,404,405,406,-401,-396,-391,407]],"type":"Polygon","properties":{"iso":"IRN"}},{"arcs":[[408,-319,409,410,-344,-329]],"type":"Polygon","properties":{"iso":"SYR"}},{"arcs":[[-405,411,412,413,414]],"type":"Polygon","properties":{"iso":"ARM"}},{"arcs":[[-173,415,416]],"type":"Polygon","properties":{"iso":"SWE"}},{"arcs":[[-143,417,418,419,420]],"type":"Polygon","properties":{"iso":"BLR"}},{"arcs":[[-142,421,422,423,424,425,426,427,428,-418]],"type":"Polygon","properties":{"iso":"UKR"}},{"arcs":[[-419,-429,431,432,433,434,-160,435]],"type":"Polygon","properties":{"iso":"POL"}},{"arcs":[[436,437,438,439,440,441,442]],"type":"Polygon","properties":{"iso":"AUT"}},{"arcs":[[-427,443,444,445,446,-437,447]],"type":"Polygon","properties":{"iso":"HUN"}},{"arcs":[[-425,448]],"type":"Polygon","properties":{"iso":"MDA"}},{"arcs":[[-424,449,450,451,-444,-426,-449]],"type":"Polygon","properties":{"iso":"ROU"}},{"arcs":[[-420,-436,-162,452,453]],"type":"Polygon","properties":{"iso":"LTU"}},{"arcs":[[-144,-421,-454,454,455]],"type":"Polygon","properties":{"iso":"LVA"}},{"arcs":[[-145,-456,456]],"type":"Polygon","properties":{"iso":"EST"}},{"arcs":[[-434,457,-441,458,459,460,461,462,463,464,465]],"type":"Polygon","properties":{"iso":"DEU"}},{"arcs":[[-451,466,467,468,469,470]],"type":"Polygon","properties":{"iso":"BGR"}},{"arcs":[[[471]],[[-469,472,473,474,475]]],"type":"MultiPolygon","properties":{"iso":"GRC"}},{"arcs":[[[-345,-411,476,477,-413,-403]],[[-468,478,-473]]],"type":"MultiPolygon","properties":{"iso":"TUR"}},{"arcs":[[-475,479,480,481,482]],"type":"Polygon","properties":{"iso":"ALB"}},{"arcs":[[-446,483,484,485,486,487]],"type":"Polygon","properties":{"iso":"HRV"}},{"arcs":[[-440,488,489,-459]],"type":"Polygon","properties":{"iso":"CHE"}},{"arcs":[[-461,490,491]],"type":"Polygon","properties":{"iso":"LUX"}},{"arcs":[[-462,-492,492,493,494]],"type":"Polygon","properties":{"iso":"BEL"}},{"arcs":[[-463,-495,495]],"type":"Polygon","properties":{"iso":"NLD"}},{"arcs":[[496,497]],"type":"Polygon","properties":{"iso":"PRT"}},{"arcs":[[-497,498,499,500]],"type":"Polygon","properties":{"iso":"ESP"}},{"arcs":[[501,502]],"type":"Polygon","properties":{"iso":"IRL"}},{"arcs":[[503]],"type":"Polygon","properties":{"iso":"NCL"}},{"arcs":[[[504]],[[505]],[[506]],[[507]],[[508]]],"type":"MultiPolygon","properties":{"iso":"SLB"}},{"arcs":[[[509]],[[510]]],"type":"MultiPolygon","properties":{"iso":"NZL"}},{"arcs":[[[511]],[[512]]],"type":"MultiPolygon","properties":{"iso":"AUS"}},{"arcs":[[513]],"type":"Polygon","properties":{"iso":"LKA"}},{"arcs":[[[514]],[[-62,-153,-378,-151,-376,515,-371,-365,-370,-386,-388,-384,-389,-382,-393,-395,-399,-400]]],"type":"MultiPolygon","properties":{"iso":"CHN"}},{"arcs":[[516]],"type":"Polygon","properties":{"iso":"TWN"}},{"arcs":[[[-439,517,518,519,-489]],[[520]],[[521]]],"type":"MultiPolygon","properties":{"iso":"ITA"}},{"arcs":[[[-465,522]],[[523]]],"type":"MultiPolygon","properties":{"iso":"DNK"}},{"arcs":[[[-503,524]],[[525]]],"type":"MultiPolygon","properties":{"iso":"GBR"}},{"arcs":[[526]],"type":"Polygon","properties":{"iso":"ISL"}},{"arcs":[[[-139,527,-406,-415,528]],[[-404,-412]]],"type":"MultiPolygon","properties":{"iso":"AZE"}},{"arcs":[[-140,-529,-414,-478,529]],"type":"Polygon","properties":{"iso":"GEO"}},{"arcs":[[[530]],[[531]],[[532]],[[533]],[[534]],[[535]],[[536]]],"type":"MultiPolygon","properties":{"iso":"PHL"}},{"arcs":[[[-360,537]],[[-82,538,539,540]]],"type":"MultiPolygon","properties":{"iso":"MYS"}},{"arcs":[[-540,541]],"type":"Polygon","properties":{"iso":"BRN"}},{"arcs":[[-438,-447,-488,542,-518]],"type":"Polygon","properties":{"iso":"SVN"}},{"arcs":[[-147,543,-416,-172]],"type":"Polygon","properties":{"iso":"FIN"}},{"arcs":[[-428,-448,-443,544,-432]],"type":"Polygon","properties":{"iso":"SVK"}},{"arcs":[[-433,-545,-442,-458]],"type":"Polygon","properties":{"iso":"CZE"}},{"arcs":[[-127,545,546,547]],"type":"Polygon","properties":{"iso":"ERI"}},{"arcs":[[[548]],[[549]],[[550]]],"type":"MultiPolygon","properties":{"iso":"JPN"}},{"arcs":[[-194,-98,-203]],"type":"Polygon","properties":{"iso":"PRY"}},{"arcs":[[-350,551,552]],"type":"Polygon","properties":{"iso":"YEM"}},{"arcs":[[-331,-348,-342,553,-340,554,-338,-351,-553,555]],"type":"Polygon","properties":{"iso":"SAU"}},{"arcs":[[556,557]],"type":"Polygon","properties":{"iso":"CYP"}},{"arcs":[[-558,558]],"type":"Polygon","properties":{"iso":"CYP"}},{"arcs":[[-325,-16,559]],"type":"Polygon","properties":{"iso":"MAR"}},{"arcs":[[-125,560,561,562,563]],"type":"Polygon","properties":{"iso":"EGY"}},{"arcs":[[-124,-133,-274,-327,-324,564,-561]],"type":"Polygon","properties":{"iso":"LBY"}},{"arcs":[[-115,-120,565,-128,-548,566,567]],"type":"Polygon","properties":{"iso":"ETH"}},{"arcs":[[-547,568,569,-567]],"type":"Polygon","properties":{"iso":"DJI"}},{"arcs":[[-116,-568,-570,570]],"type":"Polygon","properties":{"iso":"SOM"}},{"arcs":[[-12,571,-111,572,-118]],"type":"Polygon","properties":{"iso":"UGA"}},{"arcs":[[-11,-316,-112,-572]],"type":"Polygon","properties":{"iso":"RWA"}},{"arcs":[[-485,573,574]],"type":"Polygon","properties":{"iso":"BIH"}},{"arcs":[[-470,-476,-483,575,576]],"type":"Polygon","properties":{"iso":"MKD"}},{"arcs":[[-445,-452,-471,-577,577,578,-574,-484]],"type":"Polygon","properties":{"iso":"SRB"}},{"arcs":[[-481,579,-486,-575,-579,580]],"type":"Polygon","properties":{"iso":"MNE"}},{"arcs":[[-482,-581,-578,-576]],"type":"Polygon","properties":{"iso":"KOS"}},{"arcs":[[581]],"type":"Polygon","properties":{"iso":"TTO"}},{"arcs":[[-110,-301,-129,-566,-119,-573]],"type":"Polygon","properties":{"iso":"SDS"}},{"arcs":[[-328,-333,582,-563,583,-317,-409]],"type":"Polygon","properties":{"iso":"ISR"}},{"arcs":[[-201,-237,584]],"type":"Polygon","properties":{"iso":"GUF"}},{"arcs":[[-460,-490,-520,585,-500,586,-493,-491]],"type":"Polygon","properties":{"iso":"FRA"}},{"arcs":[[587]],"type":"Polygon","properties":{"iso":"FRA"}}]}}}
@@ -0,0 +1,3 @@
1
+ import WorldMap from './components/WorldMap'
2
+
3
+ export default WorldMap
package/src/context.ts CHANGED
@@ -1,5 +1,5 @@
1
1
  import { createContext } from 'react'
2
- import { MapConfig } from './types/MapConfig'
2
+ import { MapConfig } from './MapConfig'
3
3
 
4
4
  type MapContext = {
5
5
  applyLegendToRow
@@ -15,6 +15,7 @@ type MapContext = {
15
15
  generateRuntimeData
16
16
  geoClickHandler
17
17
  handleMapAriaLabels
18
+ handleCircleClick: Function
18
19
  hasZoom
19
20
  innerContainerRef
20
21
  isDashboard
@@ -68,6 +68,7 @@ export default {
68
68
  },
69
69
  filters: [],
70
70
  table: {
71
+ wrapColumns: false,
71
72
  label: 'Data Table',
72
73
  expanded: false,
73
74
  limitHeight: false,
@@ -99,7 +100,8 @@ export default {
99
100
  },
100
101
  mapPosition: { coordinates: [0, 30], zoom: 1 },
101
102
  map: {
102
- layers: []
103
+ layers: [],
104
+ patterns: []
103
105
  },
104
106
  hexMap: {
105
107
  type: '',