@unovis/ts 1.1.1-beta.7 → 1.1.1-beta.9
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.
- package/components/area/config.d.ts +25 -0
- package/components/area/config.js +16 -0
- package/components/area/config.js.map +1 -0
- package/components/area/index.d.ts +19 -0
- package/components/area/index.js +102 -0
- package/components/area/index.js.map +1 -0
- package/components/area/style.d.ts +3 -0
- package/{src/components/area/style.ts → components/area/style.js} +10 -9
- package/components/area/style.js.map +1 -0
- package/components/area/types.d.ts +6 -0
- package/components/axis/config.d.ts +71 -0
- package/components/axis/config.js +32 -0
- package/components/axis/config.js.map +1 -0
- package/components/axis/index.d.ts +44 -0
- package/components/axis/index.js +305 -0
- package/components/axis/index.js.map +1 -0
- package/components/axis/style.d.ts +9 -0
- package/{src/components/axis/style.ts → components/axis/style.js} +22 -27
- package/components/axis/style.js.map +1 -0
- package/components/axis/types.d.ts +4 -0
- package/components/axis/types.js +8 -0
- package/components/axis/types.js.map +1 -0
- package/components/brush/config.d.ts +42 -0
- package/components/brush/config.js +24 -0
- package/components/brush/config.js.map +1 -0
- package/components/brush/index.d.ts +28 -0
- package/components/brush/index.js +199 -0
- package/components/brush/index.js.map +1 -0
- package/components/brush/style.d.ts +5 -0
- package/{src/components/brush/style.ts → components/brush/style.js} +14 -15
- package/components/brush/style.js.map +1 -0
- package/components/brush/types.d.ts +7 -0
- package/components/brush/types.js +8 -0
- package/components/brush/types.js.map +1 -0
- package/components/bullet-legend/config.d.ts +34 -0
- package/components/bullet-legend/config.js +16 -0
- package/components/bullet-legend/config.js.map +1 -0
- package/components/bullet-legend/index.d.ts +19 -0
- package/components/bullet-legend/index.js +79 -0
- package/components/bullet-legend/index.js.map +1 -0
- package/components/bullet-legend/style.d.ts +6 -0
- package/{src/components/bullet-legend/style.ts → components/bullet-legend/style.js} +16 -18
- package/components/bullet-legend/style.js.map +1 -0
- package/components/bullet-legend/types.d.ts +7 -0
- package/components/bullet-legend/types.js +2 -0
- package/components/bullet-legend/types.js.map +1 -0
- package/components/chord-diagram/config.d.ts +44 -0
- package/components/chord-diagram/config.js +25 -0
- package/components/chord-diagram/config.js.map +1 -0
- package/components/chord-diagram/index.d.ts +42 -0
- package/components/chord-diagram/index.js +305 -0
- package/components/chord-diagram/index.js.map +1 -0
- package/components/chord-diagram/modules/label.d.ts +8 -0
- package/components/chord-diagram/modules/label.js +115 -0
- package/components/chord-diagram/modules/label.js.map +1 -0
- package/components/chord-diagram/modules/link.d.ts +21 -0
- package/components/chord-diagram/modules/link.js +63 -0
- package/components/chord-diagram/modules/link.js.map +1 -0
- package/components/chord-diagram/modules/node.d.ts +17 -0
- package/components/chord-diagram/modules/node.js +52 -0
- package/components/chord-diagram/modules/node.js.map +1 -0
- package/components/chord-diagram/style.d.ts +13 -0
- package/{src/components/chord-diagram/style.ts → components/chord-diagram/style.js} +30 -39
- package/components/chord-diagram/style.js.map +1 -0
- package/components/chord-diagram/types.d.ts +58 -0
- package/components/chord-diagram/types.js +8 -0
- package/components/chord-diagram/types.js.map +1 -0
- package/components/crosshair/config.d.ts +43 -0
- package/components/crosshair/config.js +19 -0
- package/components/crosshair/config.js.map +1 -0
- package/components/crosshair/index.d.ts +35 -0
- package/components/crosshair/index.js +183 -0
- package/components/crosshair/index.js.map +1 -0
- package/components/crosshair/style.d.ts +4 -0
- package/{src/components/crosshair/style.ts → components/crosshair/style.js} +12 -12
- package/components/crosshair/style.js.map +1 -0
- package/components/crosshair/types.d.ts +13 -0
- package/components/crosshair/types.js +2 -0
- package/components/crosshair/types.js.map +1 -0
- package/components/donut/config.d.ts +59 -0
- package/components/donut/config.js +28 -0
- package/components/donut/config.js.map +1 -0
- package/components/donut/index.d.ts +21 -0
- package/components/donut/index.js +107 -0
- package/components/donut/index.js.map +1 -0
- package/components/donut/modules/arc.d.ts +10 -0
- package/components/donut/modules/arc.js +59 -0
- package/components/donut/modules/arc.js.map +1 -0
- package/components/donut/style.d.ts +7 -0
- package/{src/components/donut/style.ts → components/donut/style.js} +18 -20
- package/components/donut/style.js.map +1 -0
- package/components/donut/types.d.ts +20 -0
- package/components/flow-legend/config.d.ts +29 -0
- package/components/flow-legend/config.js +18 -0
- package/components/flow-legend/config.js.map +1 -0
- package/components/flow-legend/index.d.ts +16 -0
- package/components/flow-legend/index.js +75 -0
- package/components/flow-legend/index.js.map +1 -0
- package/components/flow-legend/style.d.ts +8 -0
- package/{src/components/flow-legend/style.ts → components/flow-legend/style.js} +21 -25
- package/components/flow-legend/style.js.map +1 -0
- package/components/flow-legend/types.d.ts +9 -0
- package/components/flow-legend/types.js +8 -0
- package/components/flow-legend/types.js.map +1 -0
- package/components/free-brush/config.d.ts +45 -0
- package/components/free-brush/config.js +24 -0
- package/components/free-brush/config.js.map +1 -0
- package/components/free-brush/index.d.ts +20 -0
- package/components/free-brush/index.js +192 -0
- package/components/free-brush/index.js.map +1 -0
- package/components/free-brush/style.d.ts +4 -0
- package/{src/components/free-brush/style.ts → components/free-brush/style.js} +12 -12
- package/components/free-brush/style.js.map +1 -0
- package/components/free-brush/types.d.ts +7 -0
- package/components/free-brush/types.js +9 -0
- package/components/free-brush/types.js.map +1 -0
- package/components/graph/config.d.ts +238 -0
- package/components/graph/config.js +84 -0
- package/components/graph/config.js.map +1 -0
- package/components/graph/index.d.ts +126 -0
- package/components/graph/index.js +656 -0
- package/components/graph/index.js.map +1 -0
- package/components/graph/modules/layout-helpers.d.ts +21 -0
- package/components/graph/modules/layout-helpers.js +69 -0
- package/components/graph/modules/layout-helpers.js.map +1 -0
- package/components/graph/modules/layout.d.ts +10 -0
- package/components/graph/modules/layout.js +399 -0
- package/components/graph/modules/layout.js.map +1 -0
- package/components/graph/modules/link/helper.d.ts +25 -0
- package/components/graph/modules/link/helper.js +74 -0
- package/components/graph/modules/link/helper.js.map +1 -0
- package/components/graph/modules/link/index.d.ts +11 -0
- package/components/graph/modules/link/index.js +212 -0
- package/components/graph/modules/link/index.js.map +1 -0
- package/components/graph/modules/link/style.d.ts +15 -0
- package/{src/components/graph/modules/link/style.ts → components/graph/modules/link/style.js} +34 -45
- package/components/graph/modules/link/style.js.map +1 -0
- package/components/graph/modules/node/helper.d.ts +21 -0
- package/components/graph/modules/node/helper.js +126 -0
- package/components/graph/modules/node/helper.js.map +1 -0
- package/components/graph/modules/node/index.d.ts +11 -0
- package/components/graph/modules/node/index.js +252 -0
- package/components/graph/modules/node/index.js.map +1 -0
- package/components/graph/modules/node/style.d.ts +24 -0
- package/{src/components/graph/modules/node/style.ts → components/graph/modules/node/style.js} +52 -72
- package/components/graph/modules/node/style.js.map +1 -0
- package/components/graph/modules/panel/helper.d.ts +18 -0
- package/components/graph/modules/panel/helper.js +111 -0
- package/components/graph/modules/panel/helper.js.map +1 -0
- package/components/graph/modules/panel/index.d.ts +7 -0
- package/components/graph/modules/panel/index.js +98 -0
- package/components/graph/modules/panel/index.js.map +1 -0
- package/components/graph/modules/panel/style.d.ts +14 -0
- package/{src/components/graph/modules/panel/style.ts → components/graph/modules/panel/style.js} +32 -42
- package/components/graph/modules/panel/style.js.map +1 -0
- package/components/graph/modules/shape.d.ts +6 -0
- package/components/graph/modules/shape.js +80 -0
- package/components/graph/modules/shape.js.map +1 -0
- package/components/graph/modules/zoom-levels.d.ts +6 -0
- package/components/graph/modules/zoom-levels.js +10 -0
- package/components/graph/modules/zoom-levels.js.map +1 -0
- package/components/graph/style.d.ts +6 -0
- package/components/graph/style.js +66 -0
- package/components/graph/style.js.map +1 -0
- package/components/graph/types.d.ts +125 -0
- package/components/graph/types.js +30 -0
- package/components/graph/types.js.map +1 -0
- package/components/grouped-bar/config.d.ts +36 -0
- package/components/grouped-bar/config.js +20 -0
- package/components/grouped-bar/config.js.map +1 -0
- package/components/grouped-bar/index.d.ts +32 -0
- package/components/grouped-bar/index.js +249 -0
- package/components/grouped-bar/index.js.map +1 -0
- package/components/grouped-bar/style.d.ts +5 -0
- package/{src/components/grouped-bar/style.ts → components/grouped-bar/style.js} +14 -15
- package/components/grouped-bar/style.js.map +1 -0
- package/components/leaflet-flow-map/config.d.ts +46 -0
- package/components/leaflet-flow-map/config.js +25 -0
- package/components/leaflet-flow-map/config.js.map +1 -0
- package/components/leaflet-flow-map/index.d.ts +52 -0
- package/components/leaflet-flow-map/index.js +220 -0
- package/components/leaflet-flow-map/index.js.map +1 -0
- package/components/leaflet-flow-map/renderer-utils.d.ts +5 -0
- package/components/leaflet-flow-map/renderer-utils.js +15 -0
- package/components/leaflet-flow-map/renderer-utils.js.map +1 -0
- package/components/leaflet-flow-map/renderer.d.ts +26 -0
- package/components/leaflet-flow-map/renderer.js +117 -0
- package/components/leaflet-flow-map/renderer.js.map +1 -0
- package/components/leaflet-flow-map/shaders.d.ts +2 -0
- package/{src/components/leaflet-flow-map/shaders.ts → components/leaflet-flow-map/shaders.js} +7 -4
- package/components/leaflet-flow-map/shaders.js.map +1 -0
- package/components/leaflet-flow-map/types.d.ts +23 -0
- package/components/leaflet-map/config.d.ts +193 -0
- package/components/leaflet-map/config.js +71 -0
- package/components/leaflet-map/config.js.map +1 -0
- package/components/leaflet-map/index.d.ts +130 -0
- package/components/leaflet-map/index.js +690 -0
- package/components/leaflet-map/index.js.map +1 -0
- package/components/leaflet-map/leaflet.css.js +5 -0
- package/components/leaflet-map/leaflet.css.js.map +1 -0
- package/components/leaflet-map/modules/clusterBackground.d.ts +5 -0
- package/components/leaflet-map/modules/clusterBackground.js +27 -0
- package/components/leaflet-map/modules/clusterBackground.js.map +1 -0
- package/components/leaflet-map/modules/donut.d.ts +3 -0
- package/components/leaflet-map/modules/donut.js +25 -0
- package/components/leaflet-map/modules/donut.js.map +1 -0
- package/components/leaflet-map/modules/map.d.ts +14 -0
- package/components/leaflet-map/modules/map.js +154 -0
- package/components/leaflet-map/modules/map.js.map +1 -0
- package/components/leaflet-map/modules/node.d.ts +9 -0
- package/components/leaflet-map/modules/node.js +162 -0
- package/components/leaflet-map/modules/node.js.map +1 -0
- package/components/leaflet-map/modules/selectionRing.d.ts +7 -0
- package/components/leaflet-map/modules/selectionRing.js +41 -0
- package/components/leaflet-map/modules/selectionRing.js.map +1 -0
- package/components/leaflet-map/modules/utils.d.ts +50 -0
- package/components/leaflet-map/modules/utils.js +210 -0
- package/components/leaflet-map/modules/utils.js.map +1 -0
- package/{src/components → components}/leaflet-map/renderer/leaflet-maplibre-gl.js +78 -76
- package/components/leaflet-map/renderer/leaflet-maplibre-gl.js.map +1 -0
- package/components/leaflet-map/renderer/map-style.d.ts +4 -0
- package/components/leaflet-map/renderer/map-style.js +15 -0
- package/components/leaflet-map/renderer/map-style.js.map +1 -0
- package/components/leaflet-map/renderer/mapboxgl/mapboxgl-dark-theme.json.js +40 -0
- package/components/leaflet-map/renderer/mapboxgl/mapboxgl-dark-theme.json.js.map +1 -0
- package/components/leaflet-map/renderer/mapboxgl/mapboxgl-light-theme.json.js +40 -0
- package/components/leaflet-map/renderer/mapboxgl/mapboxgl-light-theme.json.js.map +1 -0
- package/components/leaflet-map/renderer/mapboxgl/mapboxgl-settings.json.js +4981 -0
- package/components/leaflet-map/renderer/mapboxgl/mapboxgl-settings.json.js.map +1 -0
- package/components/leaflet-map/renderer/mapboxgl-layer.d.ts +8 -0
- package/components/leaflet-map/renderer/mapboxgl-layer.js +27 -0
- package/components/leaflet-map/renderer/mapboxgl-layer.js.map +1 -0
- package/components/leaflet-map/renderer/mapboxgl-utils.d.ts +4 -0
- package/components/leaflet-map/renderer/mapboxgl-utils.js +39 -0
- package/components/leaflet-map/renderer/mapboxgl-utils.js.map +1 -0
- package/{src/components → components}/leaflet-map/renderer/maplibre-gl.css.js +4 -2
- package/components/leaflet-map/renderer/maplibre-gl.css.js.map +1 -0
- package/components/leaflet-map/style.d.ts +52 -0
- package/components/leaflet-map/style.js +183 -0
- package/components/leaflet-map/style.js.map +1 -0
- package/components/leaflet-map/types.d.ts +75 -0
- package/components/leaflet-map/types.js +15 -0
- package/components/leaflet-map/types.js.map +1 -0
- package/components/line/config.d.ts +30 -0
- package/components/line/config.js +17 -0
- package/components/line/config.js.map +1 -0
- package/components/line/index.d.ts +27 -0
- package/components/line/index.js +152 -0
- package/components/line/index.js.map +1 -0
- package/components/line/style.d.ts +6 -0
- package/{src/components/line/style.ts → components/line/style.js} +16 -18
- package/components/line/style.js.map +1 -0
- package/components/line/types.d.ts +12 -0
- package/components/nested-donut/config.d.ts +59 -0
- package/components/nested-donut/config.js +19 -0
- package/components/nested-donut/config.js.map +1 -0
- package/components/nested-donut/index.d.ts +38 -0
- package/components/nested-donut/index.js +133 -0
- package/components/nested-donut/index.js.map +1 -0
- package/components/nested-donut/modules/arc.d.ts +17 -0
- package/components/nested-donut/modules/arc.js +50 -0
- package/components/nested-donut/modules/arc.js.map +1 -0
- package/components/nested-donut/modules/label.d.ts +7 -0
- package/components/nested-donut/modules/label.js +34 -0
- package/components/nested-donut/modules/label.js.map +1 -0
- package/components/nested-donut/style.d.ts +26 -0
- package/components/nested-donut/style.js +70 -0
- package/components/nested-donut/style.js.map +1 -0
- package/components/nested-donut/types.d.ts +24 -0
- package/components/nested-donut/types.js +11 -0
- package/components/nested-donut/types.js.map +1 -0
- package/components/sankey/config.d.ts +162 -0
- package/components/sankey/config.js +65 -0
- package/components/sankey/config.js.map +1 -0
- package/components/sankey/index.d.ts +59 -0
- package/components/sankey/index.js +306 -0
- package/components/sankey/index.js.map +1 -0
- package/components/sankey/modules/label.d.ts +23 -0
- package/components/sankey/modules/label.js +168 -0
- package/components/sankey/modules/label.js.map +1 -0
- package/components/sankey/modules/link.d.ts +14 -0
- package/components/sankey/modules/link.js +108 -0
- package/components/sankey/modules/link.js.map +1 -0
- package/components/sankey/modules/node.d.ts +10 -0
- package/components/sankey/modules/node.js +156 -0
- package/components/sankey/modules/node.js.map +1 -0
- package/components/sankey/style.d.ts +20 -0
- package/{src/components/sankey/style.ts → components/sankey/style.js} +44 -60
- package/components/sankey/style.js.map +1 -0
- package/components/sankey/types.d.ts +84 -0
- package/components/sankey/types.js +34 -0
- package/components/sankey/types.js.map +1 -0
- package/components/scatter/config.d.ts +44 -0
- package/components/scatter/config.js +23 -0
- package/components/scatter/config.js.map +1 -0
- package/components/scatter/index.d.ts +28 -0
- package/components/scatter/index.js +167 -0
- package/components/scatter/index.js.map +1 -0
- package/components/scatter/modules/point.d.ts +7 -0
- package/components/scatter/modules/point.js +86 -0
- package/components/scatter/modules/point.js.map +1 -0
- package/components/scatter/modules/utils.d.ts +11 -0
- package/components/scatter/modules/utils.js +112 -0
- package/components/scatter/modules/utils.js.map +1 -0
- package/components/scatter/style.d.ts +5 -0
- package/{src/components/scatter/style.ts → components/scatter/style.js} +14 -15
- package/components/scatter/style.js.map +1 -0
- package/components/scatter/types.d.ts +19 -0
- package/components/stacked-bar/config.d.ts +38 -0
- package/components/stacked-bar/config.js +20 -0
- package/components/stacked-bar/config.js.map +1 -0
- package/components/stacked-bar/index.d.ts +28 -0
- package/components/stacked-bar/index.js +208 -0
- package/components/stacked-bar/index.js.map +1 -0
- package/components/stacked-bar/style.d.ts +5 -0
- package/{src/components/stacked-bar/style.ts → components/stacked-bar/style.js} +14 -15
- package/components/stacked-bar/style.js.map +1 -0
- package/components/stacked-bar/types.d.ts +5 -0
- package/components/timeline/config.d.ts +43 -0
- package/components/timeline/config.js +24 -0
- package/components/timeline/config.js.map +1 -0
- package/components/timeline/index.d.ts +41 -0
- package/components/timeline/index.js +244 -0
- package/components/timeline/index.js.map +1 -0
- package/components/timeline/style.d.ts +13 -0
- package/{src/components/timeline/style.ts → components/timeline/style.js} +30 -39
- package/components/timeline/style.js.map +1 -0
- package/components/tooltip/config.d.ts +68 -0
- package/components/tooltip/config.js +20 -0
- package/components/tooltip/config.js.map +1 -0
- package/components/tooltip/index.d.ts +36 -0
- package/components/tooltip/index.js +184 -0
- package/components/tooltip/index.js.map +1 -0
- package/{src/components → components}/tooltip/style.js +14 -11
- package/components/tooltip/style.js.map +1 -0
- package/components/topojson-map/config.d.ts +99 -0
- package/components/topojson-map/config.js +42 -0
- package/components/topojson-map/config.js.map +1 -0
- package/components/topojson-map/index.d.ts +52 -0
- package/components/topojson-map/index.js +355 -0
- package/components/topojson-map/index.js.map +1 -0
- package/components/topojson-map/style.d.ts +11 -0
- package/{src/components/topojson-map/style.ts → components/topojson-map/style.js} +26 -33
- package/components/topojson-map/style.js.map +1 -0
- package/components/topojson-map/types.d.ts +78 -0
- package/components/topojson-map/types.js +80 -0
- package/components/topojson-map/types.js.map +1 -0
- package/components/topojson-map/utils.d.ts +3 -0
- package/components/topojson-map/utils.js +30 -0
- package/components/topojson-map/utils.js.map +1 -0
- package/components/vis-controls/config.d.ts +12 -0
- package/components/vis-controls/config.js +13 -0
- package/components/vis-controls/config.js.map +1 -0
- package/components/vis-controls/index.d.ts +14 -0
- package/components/vis-controls/index.js +52 -0
- package/components/vis-controls/index.js.map +1 -0
- package/components/vis-controls/style.d.ts +11 -0
- package/{src/components/vis-controls/style.ts → components/vis-controls/style.js} +27 -34
- package/components/vis-controls/style.js.map +1 -0
- package/components/vis-controls/types.d.ts +13 -0
- package/components/vis-controls/types.js +8 -0
- package/components/vis-controls/types.js.map +1 -0
- package/components/xy-labels/config.d.ts +48 -0
- package/components/xy-labels/config.js +25 -0
- package/components/xy-labels/config.js.map +1 -0
- package/components/xy-labels/index.d.ts +15 -0
- package/components/xy-labels/index.js +87 -0
- package/components/xy-labels/index.js.map +1 -0
- package/components/xy-labels/modules/label.d.ts +9 -0
- package/components/xy-labels/modules/label.js +107 -0
- package/components/xy-labels/modules/label.js.map +1 -0
- package/components/xy-labels/style.d.ts +5 -0
- package/{src/components/xy-labels/style.ts → components/xy-labels/style.js} +14 -15
- package/components/xy-labels/style.js.map +1 -0
- package/components/xy-labels/types.d.ts +23 -0
- package/components/xy-labels/types.js +9 -0
- package/components/xy-labels/types.js.map +1 -0
- package/components.d.ts +51 -0
- package/components.js +29 -0
- package/components.js.map +1 -0
- package/containers/single-container/config.d.ts +12 -0
- package/containers/single-container/config.js +12 -0
- package/containers/single-container/config.js.map +1 -0
- package/containers/single-container/index.d.ts +19 -0
- package/containers/single-container/index.js +128 -0
- package/containers/single-container/index.js.map +1 -0
- package/containers/xy-container/config.d.ts +99 -0
- package/containers/xy-container/config.js +30 -0
- package/containers/xy-container/config.js.map +1 -0
- package/containers/xy-container/index.d.ts +34 -0
- package/containers/xy-container/index.js +330 -0
- package/containers/xy-container/index.js.map +1 -0
- package/containers.d.ts +6 -0
- package/containers.js +4 -0
- package/containers.js.map +1 -0
- package/core/component/config.d.ts +58 -0
- package/core/component/config.js +14 -0
- package/core/component/config.js.map +1 -0
- package/core/component/index.d.ts +43 -0
- package/core/component/index.js +118 -0
- package/core/component/index.js.map +1 -0
- package/core/component/types.d.ts +2 -0
- package/core/component/types.js +2 -0
- package/core/component/types.js.map +1 -0
- package/core/config/index.d.ts +3 -0
- package/core/config/index.js +16 -0
- package/core/config/index.js.map +1 -0
- package/core/container/config.d.ts +48 -0
- package/core/container/config.js +29 -0
- package/core/container/config.js.map +1 -0
- package/core/container/index.d.ts +26 -0
- package/core/container/index.js +106 -0
- package/core/container/index.js.map +1 -0
- package/core/xy-component/config.d.ts +38 -0
- package/core/xy-component/config.js +20 -0
- package/core/xy-component/config.js.map +1 -0
- package/core/xy-component/index.d.ts +27 -0
- package/core/xy-component/index.js +74 -0
- package/core/xy-component/index.js.map +1 -0
- package/data-models/core.d.ts +6 -0
- package/data-models/core.js +14 -0
- package/data-models/core.js.map +1 -0
- package/data-models/graph.d.ts +24 -0
- package/data-models/graph.js +107 -0
- package/data-models/graph.js.map +1 -0
- package/data-models/map-graph.d.ts +21 -0
- package/data-models/map-graph.js +62 -0
- package/data-models/map-graph.js.map +1 -0
- package/data-models/map.d.ts +5 -0
- package/data-models/map.js +12 -0
- package/data-models/map.js.map +1 -0
- package/data-models/series.d.ts +6 -0
- package/data-models/series.js +19 -0
- package/data-models/series.js.map +1 -0
- package/index.d.ts +7 -0
- package/index.js +55 -0
- package/index.js.map +1 -0
- package/maps/china-provinces.json.js +140373 -0
- package/maps/fr-regions.json.js +14162 -0
- package/maps/germany-regions.json.js +35760 -0
- package/maps/ind-regions.json.js +290584 -0
- package/maps/uk-regions.json.js +96233 -0
- package/maps/us-counties.json.js +206318 -0
- package/maps/us-states.json.js +16345 -0
- package/maps/world-110m-alpha.json.js +251366 -0
- package/maps/world-simple.json.js +89428 -0
- package/maps/world-simplest.json.js +28175 -0
- package/maps.d.ts +60 -0
- package/maps.js +23 -0
- package/package.json +1 -1
- package/styles/colors.d.ts +7 -0
- package/styles/colors.js +24 -0
- package/styles/colors.js.map +1 -0
- package/styles/index.d.ts +7 -0
- package/styles/index.js +38 -0
- package/styles/index.js.map +1 -0
- package/styles/sizes.d.ts +2 -0
- package/{src/styles/sizes.ts → styles/sizes.js} +8 -6
- package/styles/sizes.js.map +1 -0
- package/types/accessor.d.ts +5 -0
- package/types/accessor.js +2 -0
- package/types/accessor.js.map +1 -0
- package/types/component.d.ts +13 -0
- package/types/component.js +14 -0
- package/types/component.js.map +1 -0
- package/types/curve.d.ts +40 -0
- package/types/curve.js +46 -0
- package/types/curve.js.map +1 -0
- package/types/data.d.ts +7 -0
- package/types/data.js +2 -0
- package/types/data.js.map +1 -0
- package/types/direction.d.ts +6 -0
- package/types/direction.js +10 -0
- package/types/direction.js.map +1 -0
- package/types/graph.d.ts +35 -0
- package/types/graph.js +2 -0
- package/types/graph.js.map +1 -0
- package/types/map.d.ts +4 -0
- package/types/map.js +2 -0
- package/types/map.js.map +1 -0
- package/types/misc.d.ts +8 -0
- package/types/position.d.ts +20 -0
- package/types/position.js +27 -0
- package/types/position.js.map +1 -0
- package/types/scale.d.ts +23 -0
- package/types/scale.js +27 -0
- package/types/scale.js.map +1 -0
- package/types/shape.d.ts +7 -0
- package/types/shape.js +11 -0
- package/types/shape.js.map +1 -0
- package/types/spacing.d.ts +6 -0
- package/types/spacing.js +2 -0
- package/types/spacing.js.map +1 -0
- package/types/svg.d.ts +18 -0
- package/types/svg.js +22 -0
- package/types/svg.js.map +1 -0
- package/types/symbol.d.ts +18 -0
- package/types/symbol.js +24 -0
- package/types/symbol.js.map +1 -0
- package/types/text.d.ts +47 -0
- package/types/text.js +26 -0
- package/types/text.js.map +1 -0
- package/types.d.ts +27 -0
- package/types.js +30 -0
- package/types.js.map +1 -0
- package/utils/color.d.ts +10 -0
- package/utils/color.js +32 -0
- package/utils/color.js.map +1 -0
- package/utils/d3.d.ts +3 -0
- package/utils/d3.js +16 -0
- package/utils/d3.js.map +1 -0
- package/utils/data.d.ts +45 -0
- package/utils/data.js +274 -0
- package/utils/data.js.map +1 -0
- package/utils/html.d.ts +1 -0
- package/utils/html.js +16 -0
- package/utils/html.js.map +1 -0
- package/utils/map.d.ts +2 -0
- package/utils/map.js +20 -0
- package/utils/map.js.map +1 -0
- package/utils/misc.d.ts +9 -0
- package/utils/misc.js +47 -0
- package/utils/misc.js.map +1 -0
- package/utils/path.d.ts +23 -0
- package/utils/path.js +144 -0
- package/utils/path.js.map +1 -0
- package/utils/scale.d.ts +1 -0
- package/utils/style.d.ts +6 -0
- package/utils/style.js +24 -0
- package/utils/style.js.map +1 -0
- package/utils/svg.d.ts +3 -0
- package/utils/text.d.ts +139 -0
- package/utils/text.js +443 -0
- package/utils/text.js.map +1 -0
- package/utils/type.d.ts +5 -0
- package/declaration.d.ts +0 -1
- package/index.ts +0 -1
- package/licences.txt +0 -43
- package/maps.ts +0 -1
- package/rollup.config.js +0 -71
- package/rules/ts-getter-setter.js +0 -35
- package/src/components/area/config.ts +0 -29
- package/src/components/area/index.ts +0 -133
- package/src/components/area/types.ts +0 -2
- package/src/components/axis/config.ts +0 -76
- package/src/components/axis/index.ts +0 -363
- package/src/components/axis/types.ts +0 -4
- package/src/components/brush/config.ts +0 -51
- package/src/components/brush/index.ts +0 -233
- package/src/components/brush/types.ts +0 -8
- package/src/components/bullet-legend/config.ts +0 -38
- package/src/components/bullet-legend/index.ts +0 -104
- package/src/components/bullet-legend/types.ts +0 -7
- package/src/components/chord-diagram/config.ts +0 -53
- package/src/components/chord-diagram/index.ts +0 -401
- package/src/components/chord-diagram/modules/label.ts +0 -155
- package/src/components/chord-diagram/modules/link.ts +0 -91
- package/src/components/chord-diagram/modules/node.ts +0 -80
- package/src/components/chord-diagram/types.ts +0 -68
- package/src/components/crosshair/config.ts +0 -48
- package/src/components/crosshair/index.ts +0 -220
- package/src/components/crosshair/types.ts +0 -15
- package/src/components/donut/config.ts +0 -65
- package/src/components/donut/index.ts +0 -148
- package/src/components/donut/modules/arc.ts +0 -86
- package/src/components/donut/types.ts +0 -17
- package/src/components/flow-legend/config.ts +0 -31
- package/src/components/flow-legend/index.ts +0 -103
- package/src/components/flow-legend/types.ts +0 -10
- package/src/components/free-brush/config.ts +0 -54
- package/src/components/free-brush/index.ts +0 -207
- package/src/components/free-brush/types.ts +0 -8
- package/src/components/graph/config.ts +0 -280
- package/src/components/graph/index.ts +0 -809
- package/src/components/graph/modules/layout-helpers.ts +0 -96
- package/src/components/graph/modules/layout.ts +0 -502
- package/src/components/graph/modules/link/helper.ts +0 -105
- package/src/components/graph/modules/link/index.ts +0 -302
- package/src/components/graph/modules/node/helper.ts +0 -162
- package/src/components/graph/modules/node/index.ts +0 -343
- package/src/components/graph/modules/panel/helper.ts +0 -160
- package/src/components/graph/modules/panel/index.ts +0 -137
- package/src/components/graph/modules/shape.ts +0 -108
- package/src/components/graph/modules/zoom-levels.ts +0 -6
- package/src/components/graph/style.ts +0 -72
- package/src/components/graph/types.ts +0 -152
- package/src/components/grouped-bar/config.ts +0 -40
- package/src/components/grouped-bar/index.ts +0 -325
- package/src/components/leaflet-flow-map/config.ts +0 -60
- package/src/components/leaflet-flow-map/index.ts +0 -279
- package/src/components/leaflet-flow-map/renderer-utils.ts +0 -14
- package/src/components/leaflet-flow-map/renderer.ts +0 -146
- package/src/components/leaflet-flow-map/types.ts +0 -18
- package/src/components/leaflet-map/config.ts +0 -234
- package/src/components/leaflet-map/index.ts +0 -808
- package/src/components/leaflet-map/leaflet.css +0 -625
- package/src/components/leaflet-map/modules/clusterBackground.ts +0 -34
- package/src/components/leaflet-map/modules/donut.ts +0 -37
- package/src/components/leaflet-map/modules/map.ts +0 -178
- package/src/components/leaflet-map/modules/node.ts +0 -208
- package/src/components/leaflet-map/modules/selectionRing.ts +0 -63
- package/src/components/leaflet-map/modules/utils.ts +0 -290
- package/src/components/leaflet-map/renderer/map-style.ts +0 -24
- package/src/components/leaflet-map/renderer/mapboxgl/mapboxgl-dark-theme.json +0 -35
- package/src/components/leaflet-map/renderer/mapboxgl/mapboxgl-light-theme.json +0 -35
- package/src/components/leaflet-map/renderer/mapboxgl/mapboxgl-settings.json +0 -2185
- package/src/components/leaflet-map/renderer/mapboxgl-layer.ts +0 -43
- package/src/components/leaflet-map/renderer/mapboxgl-utils.ts +0 -40
- package/src/components/leaflet-map/style.ts +0 -217
- package/src/components/leaflet-map/types.ts +0 -75
- package/src/components/line/config.ts +0 -34
- package/src/components/line/index.ts +0 -188
- package/src/components/line/types.ts +0 -3
- package/src/components/nested-donut/config.ts +0 -75
- package/src/components/nested-donut/index.ts +0 -176
- package/src/components/nested-donut/modules/arc.ts +0 -78
- package/src/components/nested-donut/modules/label.ts +0 -63
- package/src/components/nested-donut/style.ts +0 -82
- package/src/components/nested-donut/types.ts +0 -29
- package/src/components/sankey/config.ts +0 -195
- package/src/components/sankey/index.ts +0 -387
- package/src/components/sankey/modules/label.ts +0 -228
- package/src/components/sankey/modules/link.ts +0 -141
- package/src/components/sankey/modules/node.ts +0 -221
- package/src/components/sankey/types.ts +0 -95
- package/src/components/scatter/config.ts +0 -49
- package/src/components/scatter/index.ts +0 -220
- package/src/components/scatter/modules/point.ts +0 -123
- package/src/components/scatter/modules/utils.ts +0 -150
- package/src/components/scatter/types.ts +0 -21
- package/src/components/stacked-bar/config.ts +0 -42
- package/src/components/stacked-bar/index.ts +0 -267
- package/src/components/stacked-bar/types.ts +0 -5
- package/src/components/timeline/config.ts +0 -49
- package/src/components/timeline/index.ts +0 -302
- package/src/components/tooltip/config.ts +0 -69
- package/src/components/tooltip/index.ts +0 -220
- package/src/components/topojson-map/config.ts +0 -124
- package/src/components/topojson-map/index.ts +0 -436
- package/src/components/topojson-map/types.ts +0 -123
- package/src/components/topojson-map/utils.ts +0 -29
- package/src/components/vis-controls/config.ts +0 -16
- package/src/components/vis-controls/index.ts +0 -68
- package/src/components/vis-controls/types.ts +0 -14
- package/src/components/xy-labels/config.ts +0 -56
- package/src/components/xy-labels/index.ts +0 -109
- package/src/components/xy-labels/modules/label.ts +0 -140
- package/src/components/xy-labels/types.ts +0 -26
- package/src/components.ts +0 -56
- package/src/containers/single-container/config.ts +0 -15
- package/src/containers/single-container/index.ts +0 -150
- package/src/containers/xy-container/config.ts +0 -112
- package/src/containers/xy-container/index.ts +0 -407
- package/src/containers.ts +0 -6
- package/src/core/component/config.ts +0 -61
- package/src/core/component/index.ts +0 -154
- package/src/core/component/types.ts +0 -9
- package/src/core/config/index.ts +0 -12
- package/src/core/container/config.ts +0 -56
- package/src/core/container/index.ts +0 -136
- package/src/core/xy-component/config.ts +0 -46
- package/src/core/xy-component/index.ts +0 -90
- package/src/data-models/core.ts +0 -15
- package/src/data-models/graph.ts +0 -138
- package/src/data-models/map-graph.ts +0 -72
- package/src/data-models/map.ts +0 -18
- package/src/data-models/series.ts +0 -16
- package/src/index.ts +0 -7
- package/src/maps/china-provinces.json +0 -1
- package/src/maps/fr-regions.json +0 -1
- package/src/maps/germany-regions.json +0 -1
- package/src/maps/ind-regions.json +0 -1
- package/src/maps/uk-regions.json +0 -1
- package/src/maps/us-counties.json +0 -1
- package/src/maps/us-states.json +0 -1
- package/src/maps/world-110m-alpha.json +0 -1
- package/src/maps/world-simple.json +0 -1
- package/src/maps/world-simplest.json +0 -1
- package/src/maps.ts +0 -34
- package/src/styles/colors.ts +0 -28
- package/src/styles/index.ts +0 -38
- package/src/types/accessor.ts +0 -5
- package/src/types/component.ts +0 -15
- package/src/types/curve.ts +0 -62
- package/src/types/data.ts +0 -5
- package/src/types/direction.ts +0 -6
- package/src/types/graph.ts +0 -40
- package/src/types/map.ts +0 -5
- package/src/types/misc.ts +0 -10
- package/src/types/position.ts +0 -23
- package/src/types/scale.ts +0 -47
- package/src/types/shape.ts +0 -7
- package/src/types/spacing.ts +0 -6
- package/src/types/svg.ts +0 -32
- package/src/types/symbol.ts +0 -21
- package/src/types/text.ts +0 -71
- package/src/types.ts +0 -31
- package/src/utils/color.ts +0 -41
- package/src/utils/d3.ts +0 -15
- package/src/utils/data.ts +0 -328
- package/src/utils/html.ts +0 -13
- package/src/utils/map.ts +0 -29
- package/src/utils/misc.ts +0 -54
- package/src/utils/path.ts +0 -196
- package/src/utils/scale.ts +0 -1
- package/src/utils/style.ts +0 -37
- package/src/utils/svg.ts +0 -49
- package/src/utils/text.ts +0 -529
- package/src/utils/type.ts +0 -9
- package/tsconfig.json +0 -29
package/src/maps/fr-regions.json
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"type": "Topology", "arcs": [[[23780, 2168], [59, 4], [82, 41], [115, 19], [7, 35], [-52, 63], [-61, 27], [-15, 89], [-46, 12], [-55, -47], [-10, 92], [94, 38], [7, 73], [78, 3], [32, 148], [-17, 92], [96, 29], [-7, 64], [68, 52], [18, -39], [37, 5], [31, 35], [11, 82], [40, -8], [71, 31], [8, 37], [55, 0], [18, 26], [73, -12], [77, 13], [35, 33], [52, 16], [-9, 57], [124, 122], [64, 13], [66, -30], [40, 26], [17, -36], [37, -8], [59, -107], [61, 56], [-1, 41], [41, 57], [-13, 72], [9, 78], [-38, 70], [-9, 48], [26, 67], [-15, 73], [55, 40], [8, 76], [-29, 119], [29, 32], [83, -4], [28, 15], [71, -62], [-21, -60], [31, -65], [0, -79], [29, -132], [10, -143], [-38, -68], [-24, -115], [-13, -140], [25, -63], [90, -135], [31, -90], [-4, -152], [20, -71], [3, -77], [-19, -117], [10, -96], [38, -152], [-13, -140], [11, -73], [-4, -134], [-13, -97], [-34, -47], [-127, -208], [-43, -53], [-33, -66], [6, -64], [-34, -135], [18, -126], [-15, -128], [17, -15], [-12, -180], [-40, -21], [15, -71], [-29, -51], [-39, 2], [-23, -39], [-81, -31], [13, -63], [42, 52], [35, -26], [44, 4], [-25, -71], [-83, -54], [-41, -57], [9, -112], [-44, -52], [-63, -39], [7, -35], [55, -33], [-74, -116], [-62, -2], [-10, 31], [-87, 47], [-54, -8], [3, 43], [44, 60], [-47, 34], [-90, 18], [-69, 46], [-95, 34], [-121, 87], [-96, 50], [-72, 106], [24, 112], [34, -4], [110, 59], [6, 41], [48, 18], [10, 32], [-123, 16], [-32, 32], [-65, -3], [-6, 59], [-20, 24], [-113, -49], [3, 90], [40, 55], [28, 78], [44, 34], [-18, 47], [41, 14], [-12, 82], [39, 21], [-37, 82], [-71, 19], [-37, -58], [-85, -8], [-104, 25], [22, 50], [-46, 44], [32, 46], [59, -6], [28, 22], [-13, 82], [145, 76], [-5, 60], [-33, -4], [-32, 121], [-65, -15], [-29, 37], [-45, 9], [-61, 67], [7, 50], [-23, 60], [-13, 88], [-51, 15]], [[11899, 19599], [44, -8], [17, -93], [26, -43], [84, 26], [73, -38], [78, -12], [72, 23], [50, -2], [24, 26], [54, -16], [29, 28], [88, 39], [68, -43], [29, 16], [64, -36], [-2, -32], [94, 34], [63, -68], [54, 33], [49, 50], [57, -59], [78, -32], [39, 8], [101, -43], [48, -33], [-16, -39], [118, -20], [57, -46], [69, 56], [75, -28], [57, -64], [83, -12], [58, 37], [-6, 33], [44, 22], [106, -69], [54, 39], [70, -21], [41, 35], [21, -42], [54, 43], [80, -14], [26, 79], [58, -24], [109, -21], [-21, -41], [50, -52], [14, -40], [-37, -73], [51, -20], [58, -80], [35, -9], [23, -86], [69, 25], [15, -68], [30, -32], [54, 26], [14, -63], [168, -127], [33, 23]], [[14994, 18651], [0, -67], [-76, -34], [0, -72], [-49, 1], [-30, -60], [70, -14], [14, -41], [44, 3], [-10, -77], [16, -46], [-53, -41], [30, -48], [100, -24], [54, -42], [-23, -40], [-56, -14], [-65, -85], [17, -73], [-28, -27], [-94, -7], [52, -77], [-81, -49], [31, -61], [-16, -70], [44, -21], [-13, -65]], [[14872, 17500], [-55, 23], [-28, -12], [-4, -55], [-128, 19], [-51, -29], [-67, 5], [-40, -17], [-105, 22], [-56, -47], [-50, 19], [-57, -8], [-5, -64], [-50, -65], [51, -85], [-64, -143], [-59, -22], [-4, -29], [-53, -28], [-7, -49]], [[14040, 16935], [-119, -17], [-55, -56], [-62, -6], [-11, 93], [-68, -22], [1, -35], [-61, -23], [-30, -31], [-71, -5], [-32, 38], [-121, -16], [-63, 23], [-29, -32], [-54, -2], [-53, 25], [40, 69], [70, 76], [-29, 77], [-66, 73], [-27, -13], [-52, 26], [-7, 102], [-33, 36], [-73, -17], [-40, 46], [-39, 8], [-30, -57], [-50, 17], [-35, 38], [-68, 30], [-34, -24], [-12, -52], [-44, -18], [-132, -26], [-68, -23], [-118, 10], [-23, 50], [40, 50], [-24, 32], [27, 67], [-12, 78], [-89, 33], [25, 32], [-21, 63], [-42, -31], [-97, 20], [-28, 52], [-50, 13], [-31, 43], [-18, 93], [21, 66], [-51, 50], [-54, -3], [-43, 31], [22, 74], [-89, 5], [-22, 53], [-52, 29], [-35, 46], [19, 53], [-58, 32], [84, 114], [-68, 64], [-21, 43], [27, 59], [-24, 75], [12, 39], [-64, 26], [23, 42], [-39, 45], [0, 42], [-54, 12], [-10, 34]], [[11546, 18873], [-40, 98], [-3, 91], [-33, 23], [-18, 68], [69, -5], [58, 44], [66, 0], [103, 62], [61, 88], [34, 193], [56, 64]], [[11899, 19599], [10, 80], [45, 14], [93, -41], [22, 45], [-61, 110], [12, 54], [-30, 82], [-75, 90], [17, 70], [43, 59], [50, 40], [21, 78], [-63, -21], [-62, 22], [53, 81], [-43, 14], [12, 43], [-18, 56], [-42, 39], [39, 37], [-16, 79], [25, 65], [51, 21], [-15, 45], [-66, -44], [-29, 35], [46, 34], [45, 104], [75, 20], [-88, 134], [-37, 184], [-34, 20], [-41, 69], [-129, 66], [-38, 65], [-80, 50], [-19, 44], [-107, 63], [4, 63], [-68, 19], [-16, -33], [-50, 20]], [[11335, 21674], [128, 109], [50, 154], [59, 84], [47, 22], [87, -71], [33, 16], [83, -42], [49, 34], [-20, 54], [-57, 21], [-37, -9], [-65, 101], [-63, 14], [-18, 65], [21, 173], [109, 11], [-19, 39], [-42, 9], [-38, 42], [31, 183], [5, 113], [74, 45], [-69, 77], [-7, 187], [-27, 149], [57, 80], [24, 145], [-50, 170], [6, 33], [104, 17], [117, 123], [54, 38], [83, 35], [85, 20], [122, 42], [74, 6], [76, 25], [86, 8], [48, 25], [40, -9], [86, 44], [63, -13], [13, 43], [43, -2], [90, 30], [137, 32], [75, -18], [67, 15], [212, 82], [30, -60], [19, -154], [57, -53], [46, -89], [-28, -14], [-23, -60], [2, -71], [19, -99], [33, -88], [145, 1], [14, -52], [62, -53], [48, -105], [51, -34], [51, 19], [37, -49], [51, -23], [54, 43], [15, 84], [128, 61], [85, 27], [33, -18], [118, 42], [56, -87], [32, -86], [81, -19], [27, -29], [7, -59], [-41, -22], [5, -70], [26, -27], [31, -96], [-2, -82], [22, -81], [72, -45], [106, -25], [97, 20], [50, 68], [75, -21], [9, -73], [146, 4], [64, -86], [32, -17], [19, -165], [-27, -40], [12, -66], [78, -109], [39, 46], [12, 65], [63, 13], [108, 3], [109, -68], [117, 57], [109, 14], [82, -86], [78, -57], [3, -60], [45, -43], [88, 45], [33, -57], [-67, -49], [-37, -76], [-8, -96], [-49, -69], [121, -1], [8, -88], [51, -65], [-64, -60], [-55, -1], [-46, -71], [103, -161], [66, 4]], [[16294, 21406], [-28, -108], [67, -26], [-12, -117], [-27, -21], [-33, -106], [21, -31], [-32, -31], [73, -60], [-35, -26], [-3, -42], [-63, -34], [-11, -43], [-72, -25], [-31, -41], [-1, -53], [-46, -56], [-52, 22], [-44, -11], [-29, -38], [60, -71], [-3, -88], [31, -64], [-64, -49], [1, -94], [23, -29], [-30, -51], [8, -55], [-11, -140], [-32, 0], [-39, 44], [-58, -2], [-62, 74], [-27, -30], [-72, 29], [-55, -25], [33, -39], [-6, -90], [-88, 35], [-77, -28], [-26, -27], [-76, -11], [-89, -41], [16, -63], [-3, -71], [40, -67], [-45, -51], [92, -39], [-1, -45], [77, -60], [-75, -29], [-39, 24], [-49, -16], [-56, 7], [-20, -83], [48, -93], [-88, -53], [-2, -64], [47, -1], [62, 24], [24, -14], [19, -64], [-61, -18], [-33, -96], [-80, -67], [-8, -59], [-72, -7], [-76, -151]], [[6969, 12304], [14, 26], [85, 7], [39, 61], [68, 33], [67, -11], [41, 22], [15, -55], [-36, -38], [77, -24], [54, 34], [61, -23], [33, 61], [42, -9], [105, -91], [90, 58], [86, -21], [19, 50], [56, 26], [3, 35], [71, -5], [42, 66], [-125, 70], [-51, -8], [5, 54], [31, 16], [4, 57], [-15, 89], [-36, 29], [14, 32], [61, 50], [-7, 54], [-31, 29], [22, 32], [-23, 43], [18, 41], [-60, 58], [13, 47], [-69, 57], [41, 32], [-63, 110], [-38, 20], [-20, 76], [32, 97], [-42, 1], [-58, 31], [-88, 117], [-8, 93], [-57, 73], [-36, 16], [56, 90], [73, 10], [49, 26], [18, -31], [225, 14], [24, -14], [95, 70], [12, 109], [96, 39], [29, -36], [99, 18], [48, -3], [9, 51], [73, 9], [32, -18], [84, 34], [79, 10], [49, -23], [58, 29], [70, -26], [-68, -69], [55, 0], [32, -39], [47, 27], [13, 75], [47, 11], [41, -16], [13, 79], [40, 74], [57, 52], [60, -30]], [[9030, 14444], [39, -99], [82, 10], [20, -51], [88, -15], [27, -25], [-47, -50], [57, -41], [65, 42], [41, -10], [-2, -56], [55, 22], [19, -24], [-19, -62], [17, -57], [-17, -32], [22, -114], [24, -19], [72, 48], [126, -51], [11, 30], [96, 38], [69, 9], [44, -11], [63, 8], [-1, 36], [-49, 33], [8, 46], [71, 7], [7, -32], [70, -43], [51, -8], [25, -92], [-4, -81], [85, -112], [98, -82], [10, -96], [108, -125], [43, -6], [43, -95], [-29, -38], [11, -81], [-38, -62], [37, -72], [44, -39], [84, -39], [43, 7], [15, -80], [113, 6], [35, -17], [66, -64], [-18, -89], [27, -52], [105, -49], [-59, -113], [56, 14], [7, -48], [43, -11], [38, 32], [75, -20], [39, 61], [53, 12], [47, -63], [45, -34], [44, 9], [115, 89], [17, 49], [57, -3], [5, -64], [91, 65], [46, -74], [25, -11], [77, 81], [46, -63], [30, -5], [40, 37], [17, 54], [-22, 57], [88, 12], [37, -62], [111, 7], [45, 27], [25, -29], [100, 21], [24, -25], [137, -26], [50, -26], [42, 25], [128, 21], [140, -19]], [[12901, 12592], [11, -94], [62, -38], [-29, -62], [52, -48], [96, 17], [90, -87], [57, -36], [14, -57], [55, -54], [18, -121], [59, -35], [10, -48], [-23, -94], [-3, -71], [42, -107], [43, -25], [-11, -108], [31, -49], [-83, -40], [-39, -88], [0, -49], [-46, -27], [-40, -57], [-84, -2], [4, -53], [-26, -28], [-49, 11], [-22, -37], [74, -91], [21, -71], [70, -25], [49, -73], [24, -85], [-24, -39], [24, -32], [-17, -44], [-57, 3], [-6, -71], [-30, -30], [47, -95], [50, -39], [2, -59], [-22, -44], [-1, -54], [-33, -159], [56, -46], [6, -36], [-66, -18], [-153, 54], [-18, 28], [-63, 5], [31, -64], [-7, -79], [-26, -26], [2, -46], [-57, -11], [-48, -86], [-36, 5], [-50, -103], [-68, -55], [-21, -62], [21, -56], [35, -24], [-24, -66], [-42, -61], [-7, -60], [-63, -25], [-84, -72], [36, -87], [40, -34], [-11, -56], [-70, 2], [-52, -23]], [[12522, 8995], [-31, 17], [-103, -22], [-60, -53], [-39, 62], [-27, 1], [-59, -57], [-50, -24], [-46, -46], [-86, -10], [-37, 32], [-5, 48], [-69, 28], [-14, 51], [-126, 114], [-93, 18], [-43, -30], [-23, 45], [-97, -40], [-11, -30], [-118, -29], [22, -95], [26, -70], [6, -60], [-46, -10], [46, -59], [-45, -42], [-19, -52], [-70, -20], [2, -78], [-110, -35], [-8, -51], [46, -29], [-12, -63], [-62, -61], [-54, -19], [-42, -59], [-74, -3], [-59, -32], [10, -76], [-104, -119], [16, -46], [-83, -23], [-59, -49], [-66, 3], [56, -99], [12, -77], [-3, -76], [57, -32], [18, -129], [-26, -45], [-91, 17], [-25, -26], [-62, -3], [-47, 67], [-38, -8], [-19, -37], [15, -50], [-43, -79], [41, -44], [51, -19], [46, -38], [-53, -84], [17, -25], [-43, -84], [-74, -7], [-15, -47], [54, -36], [16, -43], [-43, -42], [-86, 44], [-54, 1], [14, -75], [-69, -17], [-30, -74], [4, -29], [-95, -50], [-14, -41], [-142, 121], [-31, -4], [-43, -55], [-75, 22], [-49, -26], [-41, 6], [-30, -66], [-70, -15], [-37, -41], [-49, 23], [-87, -61], [-128, 49], [-27, 31], [-80, -64], [-20, -62], [-31, 14], [-17, 57], [-40, -42], [-52, -3], [-33, -81], [24, -40], [-2, -76], [-19, -18], [-62, 29], [-75, 54], [47, 58], [-75, 77], [-18, -59], [-41, -35], [-95, -5], [-18, -21], [-95, -21], [-51, -50], [-5, -37], [55, -30], [-31, -57], [35, -62], [-6, -56], [-59, -3], [32, -132], [23, -49], [-62, -55], [-49, -102], [-9, -51], [-32, -34], [7, -59], [53, 0], [-2, -47], [75, -33], [46, 31], [53, -26], [88, -8], [15, -64], [40, -22], [45, -89], [22, -114], [-54, -4], [-21, -75], [48, -60], [45, 83], [46, -54], [-19, -44], [-5, -80], [60, -66], [-36, -52], [-61, 11], [-36, -72], [9, -43], [41, -34], [-49, -91], [-45, -35], [6, -105], [-86, 8], [-50, -130], [-33, -15], [-38, -76], [-20, -122], [-46, -22], [-38, 22], [-34, -85], [-46, -40], [24, -134], [-13, -24], [-67, -31], [32, -117], [-11, -51]], [[8392, 3694], [-73, -47], [-16, -35], [-52, -44], [-25, 22], [-61, -29], [-60, 34], [-47, 45], [-35, -40], [4, -31], [-77, -46], [-16, 69], [-42, -5], [-2, 63], [-104, 81], [-8, 30], [-89, 25], [-27, 31], [17, 62], [-49, 109], [-67, -9], [-35, -31], [-96, -1], [-56, 13], [-83, -6], [-95, 59], [-11, 29], [-115, 22], [-19, 33], [-48, 23], [-122, 31], [-83, 57], [-32, -32], [-107, 75], [53, 114], [-74, -15], [-43, -54], [5, -92], [-19, -64], [-152, 45], [-52, 81], [15, 48], [83, 74], [23, 125], [32, 30], [8, 150], [-48, 52], [-56, -11], [-92, 36], [-25, 31], [-47, 0], [-42, -36], [-20, -54], [-70, -14], [-38, 83], [14, 39], [-81, 35], [-60, -14], [-46, -33], [-39, 93], [-65, 50], [-1, 55], [87, 11], [166, 63], [76, 65], [57, 107], [37, 50], [94, 190], [83, 190], [9, 126], [44, 234], [71, 315], [83, 428], [33, 192], [53, 396], [35, 292], [11, 131], [-14, 61], [15, 77], [44, 70], [36, 110], [13, 85], [79, 15], [22, -38], [111, -10], [79, 31], [18, 33], [-56, 33], [12, 34], [-90, 100], [-127, 92], [-7, -69], [-55, -70], [-34, -24], [-23, -63], [-7, -95], [-35, -25], [7, 100], [58, 451], [28, 262], [34, 402], [46, 437], [3, 294], [16, 66], [-2, 106], [34, 69], [55, 71], [18, 61], [29, 7], [41, -75], [-27, -67], [163, -141], [70, -36], [49, -79], [97, -67], [77, -90], [61, -138], [36, -136], [1, -78], [36, -115], [65, -176], [66, -99], [78, 8], [-54, 60], [-55, 137], [-1, 92], [-29, 117], [-48, 269], [-47, 193], [-59, 129], [-57, 52], [-69, 95], [-42, 17], [-109, 102], [-48, -2], [-89, 108], [-11, 51], [-40, -7], [-53, 41], [-87, 42], [-59, 53], [-141, 89], [-9, 180], [54, 36], [31, -13], [67, 32], [24, 54], [-34, 75], [69, 11], [69, 99], [15, 49], [-7, 48], [22, 32], [-32, 40], [4, 77], [48, 19], [-17, 109], [-46, 14], [-20, 100], [-49, 82], [-34, 6], [-26, 66], [-110, -21], [-24, 39], [72, 77], [0, 47], [97, 75], [36, 58], [-16, 96]], [[6220, 12153], [38, -2], [50, 36], [52, -26], [14, -36], [-60, -16], [36, -49], [52, 54], [74, 5], [-17, -64], [123, 3], [62, -48], [43, 3], [27, -108], [-75, 2], [-56, 26], [-68, 54], [-131, 65], [-64, -26], [-52, 23], [-48, 104]], [[6480, 11661], [73, -35], [62, -47], [25, -39], [66, -26], [63, 7], [24, -26], [-15, -59], [28, -38], [3, -69], [63, -67], [-37, -93], [23, -45], [-71, -75], [-19, 44], [-10, 83], [-28, 72], [-39, 44], [-85, 50], [-77, 82], [-4, 119], [-45, 118]], [[8734, 4886], [10, -38], [61, -13], [22, 100], [-55, 67], [14, -97], [-52, -19]], [[8692, 4747], [33, -77], [64, 41], [9, 36], [-29, 34], [12, 39], [-52, 14], [-37, -87]], [[11546, 18873], [-70, -9], [-17, -45], [35, -54], [-18, -62], [-95, -29], [-84, -81], [-4, -31], [33, -52], [-82, -87], [-54, 19], [-45, -13], [-45, 17], [-146, 2], [-17, 38], [-58, -3], [2, -74], [-21, -16], [-74, 27], [-82, -77], [-70, 4], [-37, -33], [-59, -19], [-84, 12], [-21, -50], [-87, -67], [24, -46], [-14, -84], [52, -22], [10, -61], [71, -24], [79, -52], [-28, -33], [78, -35], [-21, -47], [-3, -61], [-25, -49], [33, -45], [-32, -112], [-54, -68], [-48, -37], [-96, -31], [-71, -7], [-28, -67], [43, -51], [-14, -54], [77, -143], [-55, -47]], [[10324, 17014], [-70, -39], [-35, 25], [-95, 163], [-54, 24], [-49, -47], [-108, 0], [-118, 101], [-2, 49], [-107, 2], [-44, 21], [-41, 47], [2, 47], [-21, 145], [14, 37], [-46, 84], [-91, 52], [-152, -17], [-105, -89], [-57, -3], [-35, -66], [-53, -7], [-27, -39], [-56, -29], [-41, 44], [-86, -44], [-10, 121], [10, 61], [-128, -9], [-39, 19], [-16, 97], [-28, 36], [49, 43], [-59, 35], [-52, 56], [-45, -5], [-49, -34], [-16, -103], [-84, 40], [-53, -56], [-38, -12], [-130, 48], [-54, -34], [-55, 19], [-72, -90], [-77, -1], [-96, -72], [-9, 73], [-34, 25], [-68, -85], [-87, -32], [-56, 75], [-71, 46], [-39, 41], [-78, -13], [-32, 43], [-71, -5], [-22, -45], [-45, -10], [-80, 52], [-37, -3]], [[7076, 17796], [-82, 32], [-52, -10], [-39, 34], [-40, -6], [-103, 37], [-84, -112], [-37, 3], [-48, -45], [8, -22], [-64, -41], [-70, 9], [-51, 68], [-54, -2], [-88, 148], [24, 51], [-44, 51], [12, 29], [-58, 69]], [[6206, 18089], [49, 12], [46, -33], [63, 0], [60, 22], [87, 62], [3, 62], [-67, -25], [-126, 44], [-44, 114], [-56, 15], [-21, 41], [7, 130], [-9, 43], [-36, 32], [35, 88], [22, 178], [3, 162], [-63, 52], [-23, 175], [31, 94], [-25, 154], [-76, 97], [-18, 59], [-80, 145], [-120, 132], [-55, 3], [-26, 77], [-2, 112], [-35, 58], [-12, 96], [-55, 29], [-3, 49], [47, 26], [29, 63], [-10, 114], [-21, 65], [-151, 77], [6, 116], [53, -4], [49, -45], [44, 27], [55, -60], [113, -36], [72, 4], [82, -55], [69, 5], [85, -19], [92, 6], [76, 33], [22, 34], [85, 52], [62, 9], [177, -34], [64, -76], [42, -98], [-46, -29], [-21, -46], [-66, -48], [-4, -86], [86, -132], [119, -140], [44, -66], [3, -55], [73, -56], [86, 79], [114, 14], [114, -3], [165, -85], [209, -35], [147, -4], [69, -13], [74, 15], [87, -4], [115, -23], [56, 1], [71, -25], [96, -58], [149, -42], [88, 1], [137, 31], [178, 74], [70, 50], [141, 134], [168, 64], [156, 9], [-60, 33], [-110, 21], [-171, 11], [-81, 122], [-3, 46], [68, 151], [79, 147], [19, 103], [73, 69], [77, 25], [64, 38], [68, 12], [103, 69], [222, 121], [103, 74], [120, 37], [118, 22], [30, -9], [109, 14], [77, 36], [169, 44], [55, 31], [110, -8], [140, 50], [168, 88], [87, 68], [132, 117], [89, 48]], [[6969, 12304], [-80, 15], [-50, -54], [-13, -43], [-65, 52], [-24, -24], [-65, 28], [-45, 81], [-68, 54], [-63, -18], [-115, 7], [-45, 116], [-34, 34], [-120, 9], [-121, 33], [-10, 32], [-87, 41], [-7, 21], [-76, 40], [-46, 49], [-52, -1], [-25, 126], [-51, 164], [-88, 104], [-68, 105], [-32, -5], [-25, 65], [-73, 80], [-80, 72], [-92, 62], [-40, 43], [-9, 120], [-13, 40], [53, 16], [35, 69], [84, 77], [51, 142], [83, 48], [-39, 83], [-63, 42], [-23, 42], [-96, 38], [-62, 6], [-60, 24], [-74, 10], [-47, 21], [39, 46], [85, 12], [21, 46], [5, 92], [-18, 66], [3, 74], [-20, 37], [-113, -69], [-38, -44], [-51, -11], [-61, 42], [-43, 54], [-78, 19], [-50, -56], [-52, 31], [-148, 52], [38, 29], [45, -35], [-20, 143], [-37, 49], [-5, 44], [80, 70], [35, 16], [37, 52], [-18, 23]], [[4665, 15152], [7, 37], [52, 36], [41, -53], [55, 22], [27, -25], [71, 26], [-3, 52], [30, 73], [60, -4], [30, -50], [99, 47], [10, -54], [48, 14], [-3, 64], [99, 29], [4, 93], [-11, 62], [30, 19], [-19, 70], [25, 45], [49, -1], [26, 51], [46, -9], [76, 59], [58, -7], [101, 21], [27, 31], [58, 7], [100, -31], [34, 23], [39, -21], [70, 36], [49, -11], [36, 43], [35, 94], [58, 39], [99, 12], [16, 22], [85, 24], [-15, 81], [171, -30], [29, -61], [207, -55], [10, 74], [30, 32], [15, 62], [43, 57], [-13, 55], [36, 21], [22, 78], [5, 74], [49, 25], [33, 50], [74, -17], [83, 31], [11, 35], [-28, 57], [-2, 53], [22, 39], [-49, 54], [-19, 150], [-31, 74], [8, 52], [-44, 122], [-2, 46], [30, 74], [66, 75], [-34, 105], [20, 27], [-48, 86], [-1, 64], [30, 65], [-25, 54], [14, 50]], [[10324, 17014], [79, -75], [29, 7], [89, -47], [-4, -32], [-99, -6], [-20, -76], [1, -78], [-73, -2], [-4, -84], [79, -18], [-18, -82], [-23, -28], [49, -111], [-59, -24], [0, -45], [-93, -36], [-4, -38], [30, -111], [-50, -33], [-61, -96], [-38, -19], [-189, -167], [42, -81], [-30, -28], [-126, -37], [-29, -25], [-72, -13], [-12, -49], [-42, -5], [-75, 65], [-31, -58], [56, -66], [6, -34], [-36, -27], [-66, 26], [-34, 39], [-75, 7], [-45, 38], [-36, -6], [3, -76], [-33, -27], [-27, -72], [46, -36], [-78, -182], [6, -76], [-32, -47], [2, -46], [-51, -124], [-36, -9], [-67, -123], [-10, -170], [-33, -127]], [[4765, 13353], [32, 19], [110, -38], [11, -55], [-36, -25], [-57, 23], [-47, 39], [-13, 37]], [[4925, 14098], [98, 7], [56, -40], [2, -46], [-33, -31], [140, -76], [14, -88], [-30, -27], [-39, 97], [-60, 55], [-70, -13], [-68, 73], [16, 59], [-26, 30]], [[14040, 16935], [48, -26], [83, -20], [31, -28], [37, -153], [47, -27], [64, -68], [-18, -52], [28, -43], [14, -62], [-87, -99], [-48, -18], [0, -33], [-72, -13], [-4, -54], [42, -83], [-29, -46], [24, -78], [-8, -36], [-63, -1], [-66, -51], [-138, -2], [-29, -89], [13, -47], [94, -48], [5, -53], [63, -60], [-38, -46], [20, -85], [56, -58], [-30, -30], [-77, 21], [-42, -34], [-53, 4], [-16, -48], [69, -70], [17, -66], [26, -25], [27, -71], [-19, -88], [-83, -148], [8, -62], [52, -26], [119, -111], [4, -77], [33, -77], [57, -192], [4, -92], [-17, -68], [71, -47], [27, -38], [-28, -127], [28, -67], [-49, -105], [32, -83], [3, -63], [-21, -68], [-45, -73]], [[14206, 13525], [-124, 22], [-52, -20], [-35, -40], [-144, -110], [-56, -2], [-17, -30], [-54, -8], [-45, 74], [-41, -24], [-7, -46], [-90, -78], [-36, -75], [-54, 13], [-34, -142], [44, -51], [20, -78], [-136, -90], [-28, 28], [-40, -24], [-25, 28], [-57, -30], [-142, -5], [-60, -44], [-88, -128], [-4, -73]], [[16294, 21406], [130, 29], [75, -43], [54, 6], [110, -43], [62, 27], [50, -3], [56, 56], [39, 3], [57, 40], [64, 2], [88, 24], [2, 60], [24, 82], [-35, 32], [42, 74], [84, 39], [19, 55], [106, 67], [15, -20], [75, 2], [33, -47], [-41, -25], [-6, -70], [-36, -33], [-35, -84], [25, -13], [-40, -70], [2, -53], [-42, -49], [-7, -44], [101, -25], [16, -39], [55, -58], [-68, -108], [32, -106], [-23, -78], [130, -12], [28, 30], [89, 1], [18, -43], [95, -50], [55, -1], [52, -87], [-4, -25], [76, -13], [-4, -45], [73, 7], [78, -19], [31, 19], [111, -109], [-48, -56], [12, -46], [72, 47], [78, -37], [47, -43], [29, -119], [41, -29], [-28, -55], [57, -28], [103, 24], [25, 35], [65, -19], [39, 14], [33, 42], [52, 22], [63, -33], [99, 8], [29, 50], [32, -29], [77, -22], [-2, -57], [53, -50], [128, 3], [56, -24], [-1, -54], [46, -33], [76, -21], [19, 40], [79, 1], [100, 72], [33, 42], [36, -12], [107, 11], [40, -16], [13, -43], [134, -66], [110, 43], [60, -29], [156, -102], [-26, -38], [46, -52], [42, -12], [15, -60], [-57, -8], [44, -85], [126, -99], [-2, -52], [42, -49], [19, -65], [42, 14], [21, -38], [-35, -44], [47, -61], [72, 11], [94, -42], [18, 54], [30, 15], [-42, 85], [36, 24], [60, -35], [45, 34], [71, -48], [27, 16], [42, -38], [62, -7], [-12, -54], [67, -138], [41, 46], [-13, 49], [39, 7], [53, -67], [106, -17], [84, 21], [93, -32], [55, 69], [55, -2], [7, 70], [129, 28], [35, -51], [59, 16], [-7, -68], [44, -53], [23, -59], [72, -44], [53, 9], [53, -26], [1, -44], [74, -25], [38, 32], [62, -28], [66, 2], [43, 46], [128, -81], [36, 39], [59, -13], [15, 35], [110, -72], [96, -36], [35, -45], [145, -49], [121, -2], [-48, -48], [-115, -192], [-40, -138], [-65, -83], [-50, -1], [-36, -66], [-63, -7], [-26, -23], [-9, -76], [-120, -140], [-91, -54], [-23, -67], [-44, -66], [3, -194], [-60, -52], [-16, -112], [-42, -100], [-6, -88], [21, -96], [-21, -38], [-68, -37], [-46, -195], [-44, -48], [-21, -51], [-48, -61], [-4, -49], [-41, -56], [-13, -86], [2, -129], [78, -99], [11, -48], [-69, -110], [-5, -85], [-34, -30], [7, -82], [-56, -156], [0, -43], [29, -74], [-14, -54], [-43, -36], [8, -91], [75, -78], [52, -85], [-15, -66], [-137, -77], [44, -38], [-48, -38], [14, -42], [-68, -42], [-65, 44], [-9, -37], [46, -26], [-63, -68], [-58, -32], [-83, 22], [-94, -15], [-51, -27], [-46, 39], [-40, -12], [-62, 19], [36, 114], [-41, 2], [-64, 34]], [[21330, 15290], [9, 84], [-50, 35], [-2, 46], [-33, 57], [-36, 23], [-77, -19], [-27, 48], [19, 91], [29, 29], [11, 62], [-22, 48], [18, 41], [-44, 48], [-176, 93], [-84, 17], [-22, 54], [-99, 57], [-15, 53], [-34, 6], [-211, 128], [-22, 58], [-42, 40], [-69, -25], [-42, -78], [-66, -15], [-47, -29], [-37, 54], [-43, 93], [-115, 47], [-72, -36], [-77, 15], [-73, -54], [-52, 35], [-82, 29], [-7, 117], [-45, 46], [-38, -28], [-58, 3], [-87, -55], [-41, -89], [-55, 3], [-37, -55], [-29, 21], [48, 60], [-40, 29], [-35, -33], [-57, -101], [0, -62], [-56, 13], [-54, -92], [9, -42], [-53, -14], [-60, 33], [-30, -27], [5, -52], [-27, -27], [-54, 16], [-32, -36], [-3, -98], [45, -3], [6, -59], [-45, -69], [13, -82], [-74, -23], [-81, 0], [-60, 80], [-65, -86], [-83, 29], [-74, -34], [-58, 6], [-18, -77], [-39, -57], [-25, -64], [-35, 39], [-57, -5], [-86, -77], [-32, 50], [-1, 60], [-47, 54], [-53, 19], [-41, 45], [-49, -51], [-71, 24], [-66, 42], [-62, 78], [-60, -49], [-44, 53], [28, 52], [-23, 87], [-54, -6], [-6, 48], [115, 61], [-6, 61], [-29, 9], [-25, 86], [-46, 12], [2, 37], [-43, 85], [-49, -1], [-33, -61], [-49, 49], [64, 62], [-36, 53], [-101, 6], [18, 76], [-9, 29], [-89, -3], [-70, 48], [-51, -22], [-94, 39], [-65, -4], [-53, -61], [9, -93], [-106, 2], [-94, -26], [-37, 27], [-98, -29], [-91, 11], [-29, -89], [-88, 17], [-35, 43], [12, 48], [-44, 11], [-34, -44], [-47, 1], [-82, -76], [-29, 42], [-56, 8], [-3, -35], [-71, -7], [-97, 18], [-63, -4], [-41, 40], [22, 63], [-25, 53], [-67, -51], [-36, 48], [53, 36], [-49, 63], [-80, 141], [12, 27], [-86, 117], [-13, 41], [-74, -55], [-64, -13], [-45, 113], [-33, 19], [-51, -34], [-33, 26], [43, 33], [39, 58], [-39, 27], [43, 45], [-11, 38], [-53, 26], [0, 52], [-76, 49], [-18, 46], [-63, 76], [-46, 13], [-75, -39], [-22, 77]], [[16289, 5217], [16, 95], [97, 39], [95, 80], [107, 40], [29, 58], [56, 8], [16, 63], [-54, -7], [-21, 26], [50, 112], [36, 11], [5, 49], [31, 27], [64, 13], [84, -26], [38, -27], [41, 9], [-26, 91], [23, 77], [45, 63], [7, 64], [-23, 58], [42, 48], [-43, 43], [94, 47], [94, 113], [50, 15], [64, 67], [-4, 58], [48, -5], [2, 66], [-133, 151], [-19, 39], [-41, -23], [-42, 66], [24, 105], [3, 99], [-28, 13], [2, 52], [-51, -4], [0, 45], [-41, 60], [-8, 39]], [[17018, 7234], [11, 144], [40, -18], [60, 12], [85, 0], [65, -55], [25, -178], [22, -9], [121, 90], [45, -12], [113, 65], [129, 55], [26, -59], [48, -10], [66, 41], [32, -74], [2, -52], [-21, -25], [46, -39], [108, -17], [26, 44], [87, -53], [54, -16], [36, 28], [51, -33], [-1, -109], [94, -20], [22, -70], [94, -13], [64, 41], [16, 42], [58, 20], [-34, 34], [17, 38], [48, 14], [66, -61], [-15, -42], [81, -5], [9, 36], [-63, 8], [10, 47], [60, 27], [-18, 40], [11, 56], [-18, 51], [4, 51], [-48, -8], [-24, 24], [-30, 87], [21, 27], [-157, 12], [-29, 46], [-48, -33], [-49, 69], [-48, 5], [9, 59], [-20, 57], [5, 48], [69, -34], [41, 46], [-57, 25], [26, 108], [62, 1], [153, -66], [24, 21], [16, 61], [63, 17], [-66, 75], [-49, 20], [37, 102], [49, 63], [-10, 96], [19, 18], [121, -39], [46, 37], [72, -4], [19, 53], [48, 30], [-41, 49], [43, 88], [128, 43], [28, -16], [108, 73], [-54, 56], [52, 38], [47, 3], [43, 44], [41, -53], [98, 66], [30, 47], [58, -18], [59, 11], [61, -20], [41, 8], [20, 40], [67, 9], [52, -61], [35, 15], [-9, 63], [16, 33], [-3, 117], [-58, 30], [-14, 65], [14, 50], [-28, 14], [-92, -23], [-89, 39], [-4, 27], [35, 109], [40, 9], [-25, 98], [64, 40], [62, -39], [63, 28], [43, -38], [22, -55], [-19, -33], [137, -37], [76, 3], [-14, 92], [56, 39], [33, -25], [55, 16], [26, 45], [67, -4], [25, -30]], [[20460, 9326], [76, -224], [89, 5], [41, -14], [26, -112], [-24, -159], [200, -139], [68, -11], [49, 41], [67, -43], [63, -17], [22, -67], [-34, -59], [34, -32], [3, -67], [35, -74], [42, -14], [20, -82], [-70, 21], [-88, -3], [-66, -86], [6, -83], [-30, -67], [1, -44], [-34, -40], [-64, -15], [-42, -62], [38, -116], [52, -37], [9, -38], [44, -31], [-6, -37], [-55, -11], [-8, -112], [-17, -35], [62, -27], [7, -44], [58, -53], [-7, -37], [67, -41], [3, -71], [21, -42], [53, -28], [54, 23], [78, -41], [50, -41], [23, 10], [64, -36], [47, -54], [103, -68], [112, 11], [22, -71], [62, 21], [56, -33], [8, 46], [49, -10], [82, 42], [38, -8], [84, 33], [78, -9], [45, 73], [67, -12], [-31, -101], [90, -127], [-7, -42], [-40, -64], [-44, -22], [7, -82], [-31, -62], [-71, -44], [-46, -4], [-46, -90], [5, -48], [-86, -34], [-29, -73], [21, -35], [20, -98], [20, -37], [-64, -45], [-109, -51], [-36, -69], [-87, 3], [-73, -41], [-21, -51], [-39, 22], [-68, -12], [-55, -104], [-32, 24], [-63, -9], [-49, -90], [-9, -106], [-18, -23], [-50, 9], [-54, -55], [-114, 3], [-59, -29], [-27, -72], [-29, -136], [-49, -58], [-43, -12], [-31, -36], [-40, 18], [-70, -26], [-42, 40], [-53, -43], [-6, -48], [-30, -54], [1, -51], [-59, -12], [-36, -66], [-55, -25], [-73, -61], [9, -39], [81, 19], [92, -49], [-46, -31], [-2, -48], [32, -51], [-67, -33], [-35, -54], [-35, 43], [-69, 17], [-120, -93], [-50, 15], [-105, -20], [-60, -30], [-18, -120], [-60, 9], [-22, 38], [-62, 31], [-63, -18], [-56, 8], [-44, -20], [-42, -57], [-16, -74], [16, -69], [-64, 11], [19, 54], [-12, 59], [-85, 24], [-45, -21], [-78, 62], [-121, 7], [-23, 41], [-50, -103], [-65, -85], [-47, 3], [-46, 69], [17, 78], [-39, 10], [-42, 67], [-74, -7], [-50, 18], [-22, 43], [20, 29], [-75, 40], [-67, -20], [-9, -50], [-61, 31], [-62, 105], [-63, -44], [-73, 36], [-63, -17], [-35, 23], [-55, -16], [-51, 17], [17, 45], [38, 31], [-4, 56], [-42, 33], [26, 70], [-38, 65], [-53, 62], [-34, -7], [-52, -47], [-53, -23], [-98, 12], [-65, -11], [-166, -2], [-38, 44], [-9, 42], [-62, 105], [-19, 53], [-58, 17], [-132, -73], [-7, -74], [53, -32], [-36, -58], [-51, -20], [-40, 26], [-92, 23], [-134, -10], [-140, 28], [-74, 49], [-3, 31], [55, 26], [-1, 63], [-38, 42], [-106, 36], [-92, 4], [-39, -20], [-159, 17], [-185, 10]], [[19643, 4074], [42, 17], [29, -20], [32, 28], [52, 12], [1, -44], [-74, -40], [-82, 47]], [[20117, 4096], [63, 87], [35, -7], [-28, -57], [-70, -23]], [[17400, 7421], [68, 78], [17, 78], [72, 30], [23, 29], [109, -101], [33, -65], [-47, -4], [-32, -97], [-51, -67], [-101, 29], [-53, -12], [-38, 102]], [[20006, 4075], [72, 40], [-6, -57], [-66, 17]], [[4665, 15152], [-38, -16], [-41, 46], [26, 28], [-10, 64], [53, -23], [37, 29], [-42, 32], [-94, 38], [-59, -39], [-57, 15], [-7, 44], [-83, -11], [-80, -86], [-54, 24], [-168, -47], [-66, 28], [-22, 71], [-87, 40], [13, 42], [107, -38], [102, 20], [8, -32], [49, -4], [34, 35], [52, 95], [-136, 80], [-130, -19], [-86, -60], [-88, -28], [50, -54], [-65, -8], [-30, 59], [-42, -28], [-22, 53], [-65, -45], [-57, -14], [-22, 39], [-39, -20], [-17, -73], [49, -173], [-69, 25], [-16, 98], [34, 64], [-10, 79], [-35, 65], [-64, 45], [-22, 45], [-117, 98], [-17, 48], [-93, 20], [-10, 60], [-53, -24], [-25, -56], [-62, 9], [-43, -23], [-84, 89], [-39, 78], [-87, 18], [-76, -1], [-81, 31], [-33, -11], [-90, 66], [-48, -33], [-132, 16], [-17, -12], [-80, 103], [-17, 64], [-99, 94], [-50, -36], [23, -72], [-113, -23], [-46, 37], [-81, 24], [-84, -48], [-17, 63], [-38, 1], [-2, -50], [54, -106], [-50, -43], [-131, -13], [-51, 23], [-121, -10], [-26, 60], [61, 34], [-29, 139], [-42, 94], [-54, 80], [-55, 55], [-46, 14], [-43, 39], [-94, 18], [-50, -11], [-24, 26], [-113, 28], [-59, -2], [-33, 93], [67, -5], [26, 20], [83, 3], [58, 30], [50, -14], [25, 33], [86, -8], [22, 22], [75, 4], [123, 30], [96, -50], [35, 35], [28, 78], [-7, 53], [-51, 101], [-49, 26], [-63, -4], [-55, 37], [-108, 47], [-62, -14], [6, -31], [-41, -72], [-57, -26], [-4, 75], [-19, 50], [31, 28], [-19, 36], [-67, -14], [-39, 22], [91, 70], [-23, 75], [59, 15], [-14, -74], [30, -27], [57, -7], [77, 29], [56, -4], [32, -39], [45, -1], [129, 55], [60, -2], [19, -43], [59, 43], [-93, 44], [-87, 0], [42, 58], [-101, 18], [-9, -43], [-134, -6], [-4, 29], [35, 70], [57, 51], [-37, 26], [-28, -30], [-114, -14], [-64, -52], [-123, -48], [-125, 45], [-36, -16], [-15, -47], [-104, -5], [-13, 81], [27, 26], [-59, 108], [27, 89], [36, 49], [-31, 65], [47, 118], [99, 65], [140, 7], [24, 89], [62, -25], [0, 59], [92, 27], [54, -22], [64, 40], [12, 31], [61, 8], [87, 52], [36, 4], [94, -72], [74, -1], [86, 95], [118, 21], [100, -15], [38, 55], [61, 0], [43, -30], [42, -90], [35, -15], [50, 19], [17, -54], [83, -40], [-34, 110], [41, 85], [74, 19], [132, -17], [35, -39], [162, -52], [62, 14], [-12, 115], [53, 29], [0, 38], [-49, 31], [-12, 41], [34, 48], [53, 13], [-7, 37], [33, 33], [70, 19], [69, -98], [79, 7], [24, 38], [42, 8], [61, 46], [103, -8], [50, 81], [25, -2], [29, -78], [122, 60], [80, 18], [-10, -76], [17, -56], [119, 21], [-25, -95], [22, -44], [111, -3], [36, -30], [-27, -64], [34, -41], [63, -29], [18, -61], [94, -47], [22, -114], [-13, -39], [64, -22], [17, -34], [96, -41], [-12, -64], [43, -49], [45, -4], [37, 42], [92, 71], [84, 98], [93, 37], [56, 62], [0, 43], [50, 8], [76, -25], [109, 69], [81, -9], [-46, -82], [2, -53], [87, 78], [103, -157], [45, -13], [30, 28], [13, 102], [60, 26], [37, -12], [67, 16], [47, -40], [-2, -51], [29, -39], [70, -140], [23, 44], [-36, 57], [5, 51], [-49, 40], [-43, 102], [61, 28], [42, 58], [60, 25], [56, -11], [98, 29], [22, -56], [-44, -28], [-18, -54], [59, -82], [109, -25], [191, 16], [165, 41]], [[0, 17647], [59, 58], [82, 8], [1, -65], [-69, 18], [-73, -19]], [[3263, 14962], [79, 19], [50, -38], [59, -3], [16, -71], [89, -45], [67, -14], [-37, -64], [-113, 7], [-54, 35], [-78, -23], [-52, 54], [18, 31], [-43, 65], [-1, 47]], [[2827, 15651], [33, 14], [138, -48], [-80, -35], [-91, 69]], [[21330, 15290], [-31, -20], [-70, -7], [-82, 30], [-68, -27], [28, -98], [-108, -52], [-3, -68], [-95, -83], [70, -44], [124, 20], [29, 24], [66, -28], [22, -43], [-29, -44], [-62, -5], [-1, -54], [-120, -41], [26, -106], [-59, -58], [-72, -50], [-29, -51], [-39, -23], [15, -36], [-75, -63], [-87, -35], [-31, -66], [-42, -6], [-25, -46], [20, -54], [-91, -52], [-44, -72], [-224, -81], [-15, 21], [-63, -76], [-48, -37], [56, -96], [-8, -97], [-30, -46], [-14, -79], [41, -32], [-35, -67], [-75, -33], [-41, -60], [-154, -82], [-27, -38], [-104, -101], [-141, -113], [-28, -34], [80, -78], [-76, -89], [-27, -70], [-42, -40], [22, -61], [-38, -61]], [[19476, 12582], [-82, -96], [-58, -36], [-65, -125], [-34, 2], [-30, -75], [-53, -36], [-90, -20], [-103, 17], [-74, -18], [-18, 50], [-1, 70], [-51, 4], [-33, 37], [-88, 7], [-29, -75], [-57, -11], [-50, -64], [-109, -10], [-31, 26], [33, 102], [-69, 9], [-31, 68], [-66, -1], [-13, 90], [-33, 38], [-94, 38], [33, 47], [-6, 34], [-53, 1], [-119, 59], [-38, 99], [-33, 8], [-114, -52], [-92, -19], [-48, 20], [-47, 50], [-121, 0], [-31, -64], [2, -51], [-41, -63], [-5, -90], [-65, -119], [2, -69], [-72, -175], [-54, -204], [-49, -10], [-42, 16], [-13, 37], [29, 96], [-30, 32], [-71, 34], [54, 48], [-34, 57], [-67, 8], [-56, -62], [-2, -36], [-54, 9], [-60, 54], [-27, -51], [-57, -5], [-28, 50], [-52, 23], [-84, -4], [-23, -31], [-21, -92], [7, -82], [-72, -64], [-102, -44], [-14, -34], [-58, 80], [-39, -26], [-31, 42], [-32, -50], [-96, 6], [-52, 53], [-70, -23], [-63, -49], [-73, 6], [-22, 77], [-96, 0], [-41, 35], [28, 78], [-22, 110], [80, 17], [11, 33], [61, 44], [12, 104], [-23, 73], [16, 14], [19, 146], [-70, 63], [-70, 14], [-39, -35], [-58, 27], [5, 45], [-51, 51], [-42, -28], [-69, 46], [-68, 20], [18, 48], [-13, 94], [-44, 76], [-20, 59], [-75, 74], [-30, 47], [-4, 53], [-26, 67], [-78, -13], [38, -54], [-87, -49], [23, -48], [-88, -16], [-39, -65], [-72, 11], [11, 72], [-34, 53], [-95, 4], [-23, -57], [-90, -2], [-23, 68], [-54, 1], [-127, -90], [-58, 36], [-60, 82], [-71, 20], [-71, 58], [-26, 89]], [[12522, 8995], [31, -58], [-5, -49], [42, -36], [-32, -82], [89, -148], [53, -34], [11, -57], [-30, -100], [-3, -126], [42, -66], [-19, -29], [6, -59], [63, -54], [5, 69], [35, 28], [170, 36], [12, -53], [36, -22], [43, 28], [96, -30], [61, 13], [31, 31], [23, 85], [84, 64], [25, 153], [65, 40], [2, 48], [50, 149], [42, -8], [38, 86], [42, 0], [26, 54], [48, 27], [57, -67], [5, -56], [-19, -55], [144, 15], [7, -51], [65, -160], [49, 20], [31, -49], [-24, -113], [17, -81], [37, -91], [31, -36], [46, 73], [30, 97], [39, 2], [-15, 85], [32, 35], [-6, 87], [65, 89], [44, 83], [4, 50], [55, 39], [78, -103], [85, 63], [-16, 57], [61, 56], [41, -15], [25, 33], [64, 41], [61, 12], [75, -48], [5, -102], [31, -50], [4, -56], [86, -129], [30, 42], [142, 36], [22, 55], [-8, 43], [54, 7], [59, -21], [25, -42], [-14, -64], [97, 5], [49, -18], [92, -103], [10, -38], [119, -70], [-27, -70], [37, -49], [-6, -44], [32, -73], [-6, -72], [24, -17], [34, -94], [47, -9], [20, -77], [39, -81], [-5, -62], [32, -55], [57, -26], [-3, -65], [60, -40], [-52, -31], [30, -70], [-8, -116], [71, 43], [57, 8], [28, -58], [62, -3], [19, -36], [45, -19], [73, -65], [37, 27], [22, 83], [54, 37], [10, 34], [70, 4], [41, 19], [21, -35], [-24, -79], [10, -24], [66, -11], [26, 24], [6, 94], [88, 12], [68, -38], [36, -57], [122, -37], [30, -40]], [[16289, 5217], [-104, 26], [-69, 36], [-34, 59], [48, 56], [-68, 58], [-72, 7], [-88, -14], [-74, -33], [-132, -76], [-75, -63], [-85, -105], [-110, -65], [-6, -40], [-121, -16], [-102, -92], [-123, -151], [-39, -57], [-71, 9], [-64, 36], [-72, -12], [-64, -31], [-146, -99], [-77, -73], [-106, -125], [-78, -123], [-58, -117], [-34, -90], [-34, -127], [-11, -100], [36, -32], [-16, -78], [-20, -189], [1, -217], [-10, -142], [29, -303], [70, -46], [75, -23], [-20, -30], [12, -56], [44, -15], [23, -69], [-42, -38], [-60, 6], [-43, -24], [-67, 78], [-10, 41], [-48, -17], [-41, 18], [-39, -22], [-35, 40], [-50, -63], [-83, 28], [-53, -21], [-69, -98], [-38, -18], [-42, 33], [-63, -9], [-67, -37], [-33, -100], [26, -61], [-114, 11], [-53, 28], [-45, -13], [-20, -47], [-73, 23], [-33, -6], [-26, 49], [-90, 79], [-115, 37], [-71, 55], [-29, -14], [-59, 38], [-18, -25], [-81, -30], [-75, 17], [-48, -27], [-23, -72], [-57, -50], [-124, -27], [-45, 24], [-37, 50], [-10, 103], [-74, 56], [-120, 55], [-21, 32], [-54, 23], [-73, -7], [-63, 37], [15, 116], [24, 35], [66, 27], [-77, 35], [-50, 67], [-56, 25], [-30, -15], [-46, 28], [-64, -11], [-43, 51], [-46, 24], [-53, -26], [-69, 15], [-19, -51], [16, -41], [-68, -29], [-31, 55], [-11, 76], [-42, 44], [-22, 55], [-46, 19], [12, 42], [-56, 11], [-28, -16], [-98, -8], [-41, 33], [-22, -19], [-88, -28], [-57, 48], [-1, 55], [-41, 53], [-62, 28], [-118, 20], [-34, -10], [-45, 48], [-58, -41], [-119, 90], [-89, 35], [-74, 0], [-97, 54], [-83, -54], [14, -38], [-40, -104], [64, -184], [-14, -44], [-112, 16], [-40, -7], [-75, 17], [-43, -24], [-79, 21], [-20, -17], [-70, -8], [-107, 84], [-61, -47], [-3, -46], [-50, -33], [-38, 41], [-22, 66], [-58, 2], [-74, 46], [-136, -63], [-28, 17], [-73, -53], [-41, 16], [-40, -41], [-111, 22], [-11, 58], [-67, 9], [-4, 32], [-65, 103], [-35, 38], [-125, 45], [-76, 71], [-53, 29]], [[19476, 12582], [59, -18], [125, -107], [-55, -69], [-31, -63], [3, -35], [-34, -36], [38, -83], [-40, -34], [-31, 21], [-86, -19], [-56, -45], [-39, -8], [-27, -50], [54, -35], [-53, -97], [127, -15], [26, 33], [69, 1], [77, -26], [91, 62], [-4, 30], [80, 69], [26, -2], [82, 50], [27, 47], [-35, 39], [-40, -30], [-50, 84], [17, 53], [-49, 23], [58, 121], [143, 108], [157, 30], [162, 101], [283, -5], [242, -68], [-33, -103], [6, -18], [-60, -58], [28, -58], [67, -50], [67, -72], [-21, -77], [-21, -10], [-63, -114], [15, -52], [-36, -47], [11, -66], [174, -35], [-27, -67], [15, -53], [-33, -57], [34, -21], [57, 56], [106, -152], [43, -17], [44, -103], [14, -73], [-69, -67], [-21, -77], [-69, -23], [-20, -30], [-50, -12], [-55, 18], [-20, -63], [-44, 39], [-44, -11], [-20, -46], [12, -49], [-19, -39], [10, -137], [66, -92], [105, -51], [34, -57], [76, 18], [55, -44], [-26, -31], [-15, -91], [30, -30], [-8, -111], [17, -61], [36, -25], [58, -5], [-10, -55], [89, -8], [25, -90], [66, -25], [52, -38], [-34, -66], [-6, -55], [-34, -18], [-12, -53], [-41, -30], [47, -97], [-19, -89], [-77, -49], [-52, 3], [-43, -25], [-105, -19], [-18, -68], [-122, -55], [16, -53], [-78, -25], [-64, 54], [-78, 27], [-36, -49], [-62, 12], [-54, -12], [-14, -39], [-74, -37]]], "transform": {"scale": [0.0005753269465326548, 0.00040132788789388715], "translate": [-5.141276481967004, 41.36682301600779]}, "objects": {"regions": {"type": "GeometryCollection", "geometries": [{"arcs": [[0]], "type": "Polygon", "properties": {"name": "Corse"}, "id": "FR-94"}, {"arcs": [[1, 2, 3, 4, 5]], "type": "Polygon", "properties": {"name": "\u00cele-de-France"}, "id": "FR-11"}, {"arcs": [[-2, 6, 7, 8]], "type": "Polygon", "properties": {"name": "Hauts-de-France"}, "id": "FR-32"}, {"arcs": [[[9, 10, 11, 12, 13], [16], [17]], [[14]], [[15]]], "type": "MultiPolygon", "properties": {"name": "Nouvelle-Aquitaine"}, "id": "FR-75"}, {"arcs": [[-6, 18, 19, 20, 21, -7]], "type": "Polygon", "properties": {"name": "Normandie"}, "id": "FR-28"}, {"arcs": [[[-10, 22, 23, -20, 24]], [[25]], [[26]]], "type": "MultiPolygon", "properties": {"name": "Pays de la Loire"}, "id": "FR-52"}, {"arcs": [[-5, 27, 28, -11, -25, -19]], "type": "Polygon", "properties": {"name": "Centre-Val de Loire"}, "id": "FR-24"}, {"arcs": [[-3, -9, 29, 30]], "type": "Polygon", "properties": {"name": "Grand Est"}, "id": "FR-44"}, {"arcs": [[[31, 32, 33]], [[34]], [[35]], [[36]], [[37]]], "type": "MultiPolygon", "properties": {"name": "Provence-Alpes-C\u00f4te d'Azur"}, "id": "FR-93"}, {"arcs": [[[-21, -24, 38]], [[39]], [[40]], [[41]]], "type": "MultiPolygon", "properties": {"name": "Bretagne"}, "id": "FR-53"}, {"arcs": [[-4, -31, 42, 43, -28]], "type": "Polygon", "properties": {"name": "Bourgogne-Franche-Comt\u00e9"}, "id": "FR-27"}, {"arcs": [[[-13, 44, -32, 45]], [[-17]], [[-18]]], "type": "MultiPolygon", "properties": {"name": "Occitanie"}, "id": "FR-76"}, {"arcs": [[-12, -29, -44, 46, -33, -45], [-37]], "type": "Polygon", "properties": {"name": "Auvergne-Rh\u00f4ne-Alpes"}, "id": "FR-84"}]}}}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"type": "Topology", "arcs": [[[8116, 16054], [-35, -64], [-15, -16], [-163, -55], [-20, -12], [-9, -8], [2, -5], [8, -9], [4, -4], [29, -20], [4, -3], [2, -5], [1, -6], [0, -5], [-2, -6], [-9, -22], [-4, -11], [-4, -17], [-6, -19], [-1, -6], [-1, -6], [-7, -23], [-9, -26], [-10, -17], [-13, -14], [-23, -21], [-11, -16], [-8, -18], [-10, -26], [-8, -13], [-7, -9], [-30, -17], [-28, -26], [-17, -13], [-24, -8], [-44, -28], [-11, -10], [-9, -10], [-5, -12], [-4, -13], [-3, -13], [-1, -5], [0, -11], [1, -9], [-1, -5], [-1, -8], [-2, -10], [-5, -18], [-6, -6], [-5, -3], [-26, 6], [-12, -5], [-80, -65], [-9, -2], [-18, 0], [-84, 17], [-43, 37], [-11, 15], [-1, 5], [0, 6], [2, 37], [1, 5], [2, 7], [-5, 35], [-13, 20], [-9, 10], [-8, 3], [-11, -1], [-5, -1], [-33, 17], [-44, 34], [-20, 10], [-13, 4], [-36, -19], [-94, -25], [-117, -59], [-9, -10], [-3, -8], [-4, -9], [-3, -16], [0, -9], [2, -8], [3, -5], [20, -29], [3, -6], [5, -13], [4, -16], [4, -35], [1, -7], [-1, -34], [0, -8], [2, -5], [3, -4], [5, -2], [47, -7], [6, -3], [6, -6], [7, -12], [0, -13], [-5, -16], [-11, -30], [-9, -12], [-8, -6], [-94, -5], [-23, -9], [-57, -44], [-6, -2], [-5, -1], [-6, 0], [-47, 15], [-11, 6], [-12, 3], [-12, 2], [-13, 0], [-28, -5], [-54, -18], [-47, -7], [-39, 2], [-15, -4], [-54, -25], [-42, -10], [-8, -5], [-5, -6], [0, -6], [-14, -24], [-26, -15], [-18, -15], [-1, -5], [-1, -5], [-1, -6], [-3, -11], [-7, -8], [-74, -77], [-49, -64], [-12, -23], [-24, -51], [-4, -14], [-1, -7], [0, -5], [2, -5], [3, -5], [5, -4], [10, -9], [14, -10], [8, -8], [2, -5], [2, -5], [2, -15], [3, -12], [2, -5], [2, -5], [3, -5], [5, -3], [10, -5], [21, -4], [11, 1], [6, 1], [6, 4], [6, 7], [12, 25], [2, 2], [3, 4], [5, 3], [11, 4], [47, 4], [46, 14], [49, 37], [11, 5], [10, 2], [5, -1], [5, -3], [4, -5], [2, -4], [1, -6], [-1, -6], [-8, -25], [-1, -4], [1, -4], [4, -3], [17, -9], [4, -5], [1, -3], [11, -47], [3, -12], [0, -7], [14, -62], [2, -16], [9, -44], [1, -5], [1, -4], [4, -20], [1, -10], [1, -13], [-1, -23], [-2, -12], [-2, -7], [-73, -83], [-46, -64], [-5, -8], [0, -5], [0, -5], [1, -5], [2, -5], [20, -33], [3, -10], [1, -17], [-3, -9], [-4, -6], [-57, -32], [-30, -25], [-5, -2], [-6, -2], [-6, 1], [-71, 19], [-231, -1], [-10, -30], [8, -18], [9, -14], [16, -33], [5, -15], [2, -11], [-5, -15], [-2, -22], [4, -23], [13, -50], [4, -20], [1, -15], [-15, -27], [-24, -29], [-3, -6], [-7, -15], [-8, -23], [-11, -22], [-5, -15], [-4, -6], [-3, -5], [-5, -3], [-5, -2], [-18, -5], [-15, -17], [-28, -66], [-19, -41], [-1, -8], [-2, -18], [-1, -58], [-4, -15], [-5, -8], [-6, 0], [-26, 6], [-13, -1], [-38, -27], [-60, -60], [-9, -13], [2, -18], [0, -17], [-2, -9], [-4, -6], [-47, -38], [-13, -7], [-10, -4], [-29, -1], [-33, -6], [-37, 7], [-13, 10], [-19, 48], [-6, 8], [-9, 4], [-27, -1], [-9, -4], [-7, -5], [-27, -35], [-98, -91], [-4, -6], [-10, -17], [-6, -6], [-43, -32], [-4, -5], [-3, -5], [-16, -47], [-108, -97], [-12, -14], [-2, -5], [-1, -6], [0, -5], [2, -5], [2, -4], [5, -4], [5, -2], [4, -4], [3, -4], [0, -5], [-1, -11], [1, -4], [2, -5], [5, -5], [50, -40], [10, -11], [3, -5], [3, -6], [1, -6], [1, -7], [-13, -96], [-6, -29], [-5, -9], [-8, -5], [-23, -5], [-10, -10], [-6, -8], [-21, -51]], [[5163, 12515], [-63, 41], [-25, 7], [-14, -1], [-57, -26], [-12, -2], [-6, 7], [-4, 28], [-5, 20], [-5, 12], [-37, 68], [-96, 129], [-23, 46], [-2, 16], [2, 26], [6, 35], [0, 31], [-4, 27], [-12, 61], [-8, 22], [-7, 14], [-6, 2], [-6, 0], [-6, -2], [-29, -16], [-6, -2], [-10, 0], [-18, 12], [-24, 22], [-68, 78], [-18, 16], [-60, 21], [-21, 13], [-9, 10], [-3, 11], [1, 12], [4, 20], [5, 16], [7, 15], [10, 33], [7, 53], [-131, 37], [-30, -9], [-70, -69], [-4, -17], [-4, -24], [9, -91], [3, -18], [3, -12], [5, -10], [7, -6], [5, -12], [5, -17], [2, -40], [-2, -17], [-6, -11], [-5, 0], [-5, 0], [-51, 21], [-6, -2], [-9, -6], [-35, -44], [-13, -13], [-84, -53], [41, -44], [11, -22], [2, -16], [-1, -11], [-1, -11], [-4, -11], [-2, -5], [-5, -5], [-4, -3], [-6, -1], [-6, 1], [-6, 3], [-3, 4], [-4, 7], [-3, 3], [-5, -2], [-8, -7], [-20, -38], [-7, -9], [-7, -4], [-72, -28], [-21, -12], [-10, -11], [-7, -13], [-10, -28], [-6, -11], [-9, -6], [-40, 8], [-10, 0], [-12, -3], [-20, -8], [-69, -43], [-190, -54], [-85, 7], [-55, -17], [-15, -17], [2, -6], [4, -6], [4, -7], [0, -8], [-3, -28], [0, -11], [1, -14], [1, -14], [-1, -18], [-15, -24], [-5, -16], [-3, -15], [1, -22], [-2, -11], [-3, -7], [-62, -45], [-9, -5], [-105, -33], [-26, -4], [-127, 10], [-5, 4], [-3, 6], [-2, 12], [-3, 8], [-4, 8], [-2, 3], [-5, 5], [-16, 9], [-14, 5], [-8, -1], [-4, -5], [-4, -10], [-3, -9], [-19, -44], [-16, -6], [-54, -60], [-25, -7], [-49, 19], [-9, -1], [-6, -6], [-5, -15], [-7, -15], [-11, -19], [-15, -8], [-11, -2], [-7, 1], [-37, 20], [-29, 3], [-22, -9], [-119, -87], [-63, -26], [-40, -6], [-20, -6], [-12, -6], [-4, -6], [-3, -5], [-4, -10], [-14, -29], [-34, -43], [-54, -16], [-4, -4], [-6, -8], [2, -17], [4, -16], [3, -25], [3, -34], [-6, -73], [-16, -33], [-16, -20], [-22, -6], [-9, 0], [-16, 3], [-15, 6], [-13, 9], [-9, 8], [-5, 6], [-14, 21], [-13, 28], [-4, 12], [-13, 2], [-86, -35], [-38, -23], [0, -5], [1, -7], [3, -11], [0, -16], [-2, -21], [-12, -32], [-6, -19], [-1, -13], [4, -7], [6, -5], [30, -14], [7, -6], [7, -7], [3, -8], [1, -10], [0, -42], [3, -34], [4, -28], [6, -15], [6, -13], [20, -33], [6, -13], [4, -11], [3, -24], [-2, -14], [-6, -10], [-6, -4], [-55, -11], [-118, -40], [-38, 7], [-28, 38], [-17, 15], [-24, 16], [-18, -1], [-14, -11], [-16, -16], [-33, -16], [-23, 0], [-13, 2], [-2, 7], [2, 10], [8, 14], [4, 11], [-5, 14], [-14, 12], [-39, 21], [-19, 6], [-11, 2], [-16, -9], [-13, -5], [-92, -15], [-10, -4], [-5, -6], [-101, -75], [-37, -16], [-15, -3], [-8, 5], [-9, 41], [-6, 10], [-7, 10], [-38, 21], [-14, 13], [-5, 8], [-3, 10], [-4, 8], [-6, 10], [-17, 15], [-10, 4], [-10, -1], [-5, -4], [-7, -7], [-3, -10], [0, -7], [2, -12], [73, -121], [4, -8], [1, -6], [1, -6], [-2, -5], [-12, -9], [-50, -25], [-57, 0]], [[1178, 11192], [-2, 23], [-78, 142], [-3, 43], [15, 49], [17, 87], [1, 61], [-8, 12], [-17, 4], [-19, 33], [-12, 37], [-7, 33], [6, 29], [25, 26], [-41, 2], [-98, 24], [-35, 17], [-5, 5], [-5, 2], [-6, -2], [-5, -5], [-76, -25], [-23, 1], [-18, 15], [-19, 42], [-18, 18], [18, 31], [-27, 2], [-18, 8], [-3, 17], [18, 28], [-38, 49], [42, 68], [71, 61], [51, 31], [0, 13], [25, 33], [16, 32], [-5, 22], [-156, 4], [-47, 25], [-26, 53], [30, 20], [-138, 217], [-43, 44], [-38, 4], [-89, -25], [-30, 3], [-9, 31], [8, 39], [-1, 35], [-37, 20], [-4, 7], [0, 7], [1, 6], [4, 7], [5, 48], [-15, 22], [-22, 16], [-17, 31], [-10, 47], [34, -9], [33, 31], [12, 44], [-5, 34], [-2, 31], [20, 37], [31, 18], [51, -4], [25, 31], [14, 37], [1, 30], [-20, 75], [5, 24], [11, 20], [5, 15], [-74, 26], [-53, 35], [-18, 19], [-5, 29], [-4, 53], [9, 31], [14, 31], [-5, 19], [-81, -10], [-59, 20], [-32, 4], [-30, -9], [-59, -29], [-31, -7], [-2, 93], [-35, 105], [-13, 86], [63, 34], [32, -18], [27, -36], [30, -28], [41, 5], [28, 31], [44, 93], [30, 36], [209, 167], [129, 72], [34, 45], [-48, 46], [52, 43], [18, 10], [-52, 19], [-113, -79], [-53, 30], [-16, 68], [7, 81], [19, 73], [23, 41], [48, 59], [116, 218], [24, 23], [57, 41], [23, 32], [12, 46], [7, 80], [13, 33], [-34, 41], [3, 68], [17, 78], [8, 72], [-11, 67], [-16, 120], [-91, 107], [-151, 209], [-9, 45], [12, 52], [26, 82], [-153, 68], [-52, 67], [30, 104], [-22, 23], [-50, 39], [-26, 12], [-66, -1], [-23, 9], [2, 39], [14, 14], [37, 37], [4, 74], [-31, 71], [-51, 39], [8, 33], [37, 27], [93, 16], [43, 19], [47, 35], [33, 18], [92, 25], [73, -20], [53, -14], [37, -9], [-30, 48], [-85, 89], [-28, 22], [77, 41], [73, -34], [73, -59], [76, -32], [71, 16], [18, -3], [17, -15], [25, -45], [10, -13], [87, -13], [36, -22], [7, -57], [85, 24], [9, 36], [-18, 83], [145, -43], [46, 0], [37, 17], [112, 86], [225, 77], [200, 7], [61, 33], [53, 63], [52, 94], [18, 20], [17, 3], [12, 12], [2, 44], [-6, 25], [-11, 18], [-59, 62], [-148, 83], [-49, 14], [-36, 26], [-5, 56], [16, 38], [20, 10], [24, 1], [27, 14], [18, 23], [19, 47], [12, 21], [38, 39], [36, 21], [13, 1], [134, 15], [29, 26], [50, 102], [44, 46], [97, 43], [45, 40], [53, 86], [24, 28], [101, 61], [6, 19], [-6, 10]], [[2656, 18216], [0, 0], [60, -2], [94, 39], [32, 23], [16, 18], [13, 10], [311, 13], [94, 21], [109, 74], [33, 31], [11, 8], [10, 5], [58, 12], [24, 12], [17, 13], [115, 118], [105, 87], [12, 7], [33, 6], [14, -1], [43, -7], [4, 1], [3, 1], [9, 12], [11, 18], [6, 7], [3, 4], [3, -1], [11, 28], [14, 52], [8, 21], [10, 13], [16, 6], [1, 6], [-4, 9], [-15, 20], [-18, 9], [-7, 19], [-2, 13], [27, 118], [11, 16], [5, 6], [10, 4], [8, 0], [162, -50], [11, -8], [7, -7], [8, -17], [5, -20], [19, -126], [6, -12], [10, -10], [55, -20], [153, -96], [8, -7], [25, -32], [14, -7], [15, -2], [149, 59], [11, -1], [13, -4], [12, -22], [21, -24], [19, -18], [31, -45], [42, -77], [22, -33], [5, -11], [2, -9], [-8, -8], [-9, -3], [-69, -10], [-8, -4], [-6, -9], [-1, -11], [5, -22], [3, -10], [5, -9], [14, -20], [12, -23], [0, -10], [-5, -11], [-13, -20], [-41, -42], [-9, -14], [0, -5], [0, -8], [5, -15], [13, -25], [3, -10], [0, -11], [-5, -15], [-13, -23], [-30, -31], [-8, -14], [0, -10], [6, -17], [10, -8], [16, -5], [21, -2], [20, -4], [3, -1], [6, -16], [4, -24], [8, -9], [12, -6], [28, 0], [41, 8], [28, -1], [41, -15], [12, -7], [8, -6], [0, -15], [-8, -22], [-24, -49], [-14, -45], [-1, -18], [-5, -21], [-10, -17], [-24, -5], [-29, -1], [-44, -11], [-57, -26], [-39, -31], [-26, -29], [-4, -20], [20, -42], [9, -23], [18, -58], [6, -5], [11, -6], [63, -21], [40, -23], [10, -10], [9, 0], [13, 7], [98, 95], [35, 17], [82, 14], [81, -30], [160, 61], [41, 24], [28, 26], [14, 24], [39, 47], [72, 64], [287, -82], [16, 4], [12, 7], [4, 5], [6, 12], [18, 55], [7, 15], [10, 11], [91, 58], [22, 18], [12, 13], [12, 18], [12, 22], [12, 27], [3, 12], [-2, 9], [-24, 21], [-48, 32], [-4, 4], [-7, 35], [-5, 131], [5, 134], [-1, 65], [-10, 62], [-14, 62], [-20, 57], [-13, 29], [-17, 19], [-65, 47], [-147, 69], [-17, 24], [-12, 20], [-45, 149], [51, -19], [52, 1], [9, -3], [17, -9], [20, -5], [128, 17], [39, 18], [16, 13], [9, 13], [5, 13], [17, 90], [2, 7], [3, 6], [4, 6], [15, 12], [20, 13], [24, 19], [11, 12], [46, 5], [112, -3], [37, 7], [112, 54], [10, 1], [14, 0], [38, -16], [18, -18], [19, -14], [62, -113], [7, -33], [1, -24], [-1, -13], [-5, -35], [0, -17], [1, -16], [3, -12], [8, -17], [2, -9], [-1, -12], [-7, -41], [-1, -20], [0, -18], [2, -15], [3, -9], [5, -8], [4, -5], [25, -6], [233, -25], [73, 8], [65, 24], [15, 9], [151, 33], [6, 6], [6, 9], [6, 12], [34, 104], [22, 50], [12, 16], [60, 62], [126, 66], [10, 2], [12, -3], [13, -7], [31, -46], [5, -5], [7, -6], [9, -5], [9, -3], [18, -4], [5, -6], [1, -12], [-10, -26], [-9, -15], [-11, -11], [-9, -5], [-13, -10], [-6, -7], [2, -19], [3, -16], [39, -123], [-74, -120], [-40, -86], [-9, -13], [-25, -9], [-12, -7], [-19, -17], [-18, -2], [-52, 7], [-13, -2], [-11, -5], [-8, -10], [-7, -13], [-13, -38], [-4, -24], [-10, -101], [-5, -33], [-4, -21], [-5, -13], [-1, -8], [2, -11], [8, -17], [6, -8], [7, -5], [42, -10], [75, -35], [50, -11], [10, -5], [4, -4], [-5, -8], [-49, -34], [-15, -14], [-8, -19], [1, -10], [4, -11], [5, -10], [6, -21], [5, -30], [-4, -8], [-10, -4], [-50, 4], [-71, -21], [14, -38], [22, -50], [4, -12], [4, -19], [0, -12], [-1, -12], [-3, -9], [-5, -9], [-5, -7], [-9, -20], [-2, -11], [5, -3], [11, 0], [27, 9], [35, 5], [29, -3], [46, 6], [161, -22], [17, -11], [8, -11], [-3, -18], [-8, -20], [-3, -11], [0, -9], [2, -9], [19, -20], [62, -27], [26, -36], [3, -22], [0, -15], [-3, -10], [-24, -43], [-2, -6], [-1, -8], [2, -13], [19, -58], [27, -66], [3, -9], [-3, -14], [-1, -8], [-3, -6], [-6, -11], [-6, -8], [-13, -11], [-14, -9], [-3, -3], [-1, -4], [-1, -4], [1, -6], [0, -9], [-1, -5], [-4, -6], [-5, -5], [-3, -4], [10, -10], [20, -15], [58, -28], [21, -5], [10, 4], [-1, 8], [1, 5], [1, 5], [4, 8], [4, 5], [6, 5], [8, 5], [10, 3], [11, 2], [10, -1], [87, -40], [3, -8], [-3, -20], [-26, -101], [-3, -7], [-9, -15], [-10, -11], [-16, -16], [-6, -7], [5, -3], [13, -1], [59, 9], [29, -1], [54, -26], [11, -18], [6, -12], [3, -8], [4, -18], [4, -28], [-5, -41], [-32, -95], [23, -5], [24, 5], [40, 17], [12, 2], [101, -4], [52, 8], [23, 9], [14, 8], [13, 4], [6, -3], [7, -8], [-6, -22], [-5, -13], [-12, -19], [-21, -27], [-4, -9], [2, -8], [8, -12], [12, -1], [18, -7], [8, -5], [2, -6], [-1, -5], [-16, -17], [-4, -11], [-1, -18], [2, -38], [-3, -29], [-13, -47], [-21, -54], [-7, -12], [-13, -16], [-12, -11], [-30, -18], [-6, -6], [-3, -4], [-2, -8], [-3, -16], [-4, -10], [-5, -9], [-6, -9], [-5, -4], [-5, -5], [-2, -6], [-3, -16], [-1, -20], [1, -25], [7, -44], [1, -17], [-1, -11], [-7, -9], [-4, -8], [-2, -13], [1, -16], [5, -27], [-3, -13], [-5, -8], [-15, -10], [-6, -6], [-5, -9], [-4, -13], [-2, -19], [0, -20], [2, -13], [3, -11], [4, -8], [6, -7], [34, -1], [104, 33]], [[7568, 1412], [-2, 0], [-20, 35], [22, -35]], [[8496, 1146], [-30, 17], [-94, 19], [-35, 21], [-36, 49], [-15, 39], [-8, 36], [-10, 33], [-20, 29], [-23, 14], [-71, 10], [-121, 68], [-42, 9], [-98, 2], [-43, 14], [-216, 158], [-10, 16], [-15, 80], [-11, 31], [-17, 11], [-62, 12], [-236, 186], [-89, 16], [18, -36], [74, -86], [41, -31], [90, -42], [40, -30], [30, -46], [16, -50], [14, -53], [17, -54], [52, -83], [2, -34], [-54, -6], [1, -1], [-124, 0], [-253, 31], [-42, -18], [-36, -43], [-83, -29], [-88, -9], [-56, 16], [-65, 54], [-2, 1], [-32, 35], [0, 26], [41, 11], [-58, 60], [-74, 47], [-61, 3], [-20, -72], [18, -22], [-119, -2], [-5, 24], [-5, 28], [-18, 24], [-10, 30], [8, 24], [30, 49], [6, 14], [-15, 37], [-22, 5], [-25, -6], [-24, 6], [-17, 29], [-17, 43], [-22, 36], [-29, 10], [-21, -23], [-12, -80], [-28, -20], [-22, 18], [-8, 45], [-2, 47], [-3, 27], [-42, 20], [-57, 4], [-36, -23], [21, -58], [-34, -19], [-122, -26], [-25, 1], [-18, -12], [-30, -49], [-11, -27], [-17, -73], [-24, -25], [-57, -34], [-22, -28], [-3, -27], [10, -27], [5, -31], [-14, -40], [35, -14], [12, -2], [57, -49], [47, -29], [40, 2], [34, 19], [31, 25], [34, 18], [110, 21], [32, -6], [25, -12], [11, -4], [20, -3], [-12, -86], [-15, 8], [-2, 22], [-2, 6], [-9, 0], [-12, -5], [-9, -8], [-5, -20], [4, -17], [5, -14], [1, -13], [-2, -25], [1, -26], [-3, -27], [-10, -19], [-5, -10], [-30, -11], [-20, 28], [-5, 6], [-27, 50], [-35, 35], [-68, -7], [-69, -50], [-26, -63], [-3, -18], [-63, -11], [-7, -2], [-144, 1], [-86, 25], [-22, 16], [-16, 36], [-13, 35], [-12, 16], [-26, 3], [-59, 20], [-40, 0], [-123, -23], [-11, -8], [-11, -18], [-16, -18], [-41, -14], [-49, -29], [-19, -16], [-19, -24], [-9, -18], [-10, -16], [-22, -17], [-102, -25], [-294, 0], [-6, 16], [-5, 34], [-7, 35], [-14, 15], [-146, 10], [-32, 18], [-41, -71], [-36, -47], [-42, -26], [-89, -21], [-100, -22], [-50, 7], [-32, 19], [-84, 49], [5, 0], [54, -1], [24, 26], [30, 91], [-52, -5], [-115, -38], [9, 37], [6, 13], [-5, 35], [-12, 19], [-15, 14], [-13, 19], [-51, 111], [-31, 47], [-33, 19], [-9, 17], [-8, 40], [-6, 79], [8, 22], [38, 43], [13, 24], [1, 60], [-28, 129], [6, 51], [32, 118], [13, 18], [31, 18], [4, 41], [-11, 69], [0, 16], [-2, 9], [-1, 9], [3, 16], [7, 16], [15, 15], [9, 19], [14, 36], [4, 17], [-3, 59], [12, 49], [61, 70], [21, 44], [-5, 115], [-97, 187], [-7, 151], [14, 72], [7, 25], [8, 31], [16, 32], [16, 23], [11, 28], [5, 53], [15, 45], [143, 217], [24, 53], [14, 62], [5, 75], [15, 77], [37, 32], [41, 25], [32, 54], [2, 51], [-11, 49], [-15, 47], [-7, 44], [2, 48], [17, 97], [12, 42], [15, 34], [15, 24], [11, 36], [5, 69], [12, 34], [27, 30], [56, 48], [0, 25], [-26, 78], [0, 127], [19, 120], [96, 160], [26, 20], [37, 13], [35, 33], [62, 79], [27, 19], [30, 31], [24, 35], [10, 29], [3, 70], [12, 33], [26, 9], [63, 1], [18, 7], [12, 11], [5, 21], [5, 34], [11, 20], [10, 11], [5, 9], [20, 1], [83, 47], [14, 13], [28, 51], [103, 302], [70, 143], [47, 57]], [[5311, 6187], [68, 27], [74, 84], [47, 78], [166, 366], [11, 37], [43, 349], [15, 63], [24, 26], [29, 16], [156, 196], [8, 46], [-53, 20], [4, 31], [82, 194], [-1, 37], [-14, 61], [-2, 30], [4, 7], [21, 59], [7, 7], [-24, 42], [-37, 14], [-41, 5], [-38, 16], [0, 25], [47, 25], [0, 25], [-30, 68], [-51, 158], [-44, 77], [19, 89]], [[5801, 8465], [75, 32], [19, 2], [9, -1], [28, -10], [54, -45], [153, -169], [50, 17], [7, 7], [9, 5], [3, 4], [28, 10], [8, 6], [6, 7], [3, 9], [2, 7], [0, 10], [-1, 12], [-5, 28], [-21, 84], [-1, 7], [-16, 74], [0, 11], [2, 5], [6, 3], [159, 43], [9, 0], [6, -5], [2, -24], [4, -10], [24, -35], [4, -18], [-2, -14], [-2, -7], [-5, -9], [-5, -10], [-1, -4], [1, -5], [10, -38], [27, -73], [6, -11], [6, -11], [6, -7], [15, -15], [63, -44], [43, -22], [38, -7], [47, 6], [12, 0], [7, -6], [11, -17], [9, -31], [4, -8], [5, -7], [11, -7], [30, -2], [110, 14], [6, -18], [1, -3], [0, -5], [0, -9], [-2, -11], [-5, -13], [-6, -16], [-7, -14], [-18, -23], [-6, -4], [-8, 0], [-13, 8], [-9, 11], [-13, 18], [-6, 0], [-8, -4], [-35, -45], [-6, -10], [-4, -11], [-1, -12], [0, -15], [1, -16], [8, -57], [0, -10], [-2, -10], [-4, -8], [-4, -4], [-24, -13], [-5, -5], [-4, -4], [-2, -5], [-3, -18], [-2, -29], [1, -10], [4, -9], [4, -4], [5, -3], [32, -11], [18, 0], [17, -11], [14, 4], [20, 16], [40, 47], [28, 39], [4, 9], [2, 10], [9, 43], [3, 10], [5, 7], [6, 2], [7, -7], [3, -19], [4, -7], [8, -2], [14, 4], [46, 31], [8, 18], [4, 11], [-6, 25], [-4, 12], [-5, 12], [-11, 18], [-13, 19], [-3, 6], [0, 5], [7, 10], [52, 59], [0, 1], [0, 4], [1, 4], [9, 3], [122, 2], [18, -3], [6, -2], [29, -6], [11, 6], [11, 4], [53, 53], [19, 2], [24, -3], [27, 3], [7, -2], [3, -1], [5, -5], [17, -24], [5, -6], [7, -4], [6, -1], [8, 2], [5, 1], [1, 11], [-5, 19], [-20, 41], [-23, 36], [-5, 9], [-10, 25], [-10, 16], [-38, 44], [-8, 15], [-2, 12], [2, 8], [12, 5], [31, -31], [12, -2], [6, 2], [20, 36]], [[7371, 8449], [18, -14], [8, -2], [128, 30], [34, -6], [135, 1], [13, 5], [11, 9], [11, 19], [4, 12], [7, 31], [4, 9], [8, 10], [21, 20], [3, 6], [0, 6], [-1, 8], [-6, 45], [5, 13], [11, 11], [32, 20], [18, 7], [18, 3], [32, -2], [23, 5], [65, 30], [6, -1], [8, -4], [27, -31], [12, -3], [10, 1], [42, 41], [-9, 26], [-6, 14], [-2, 2], [-1, 2], [1, 18], [26, 147], [-2, 5], [-4, 6], [-7, 6], [-44, 21], [-4, 0], [-7, -2], [-5, -2], [-4, -5], [-3, -4], [-2, -7], [-7, -27], [-5, -13], [-5, -8], [-9, -6], [-7, -2], [-8, 0], [-9, 2], [-4, 9], [1, 14], [7, 26], [2, 13], [-3, 14], [-8, 8], [-13, 7], [-76, 12], [-18, 7], [-8, 7], [-5, 7], [-1, 10], [0, 16], [11, 20], [3, 12], [2, 6], [0, 3], [-2, 7], [-16, 49], [13, 20], [24, 26], [26, 18], [27, 9], [110, -8], [82, 32], [81, 12], [42, -1], [121, -60], [28, -3], [27, 8], [12, 8], [63, -42], [23, 5], [39, 15], [20, 13], [10, 10], [8, 4], [7, -2], [7, -7], [5, -16], [0, -8], [-4, -9], [-7, -10], [-4, -7], [-1, -6], [0, -5], [2, -20], [4, -18], [1, -10], [0, -5], [-2, -5], [-3, -8], [-4, -7], [-2, -7], [-2, -10], [0, -13], [5, -21], [-1, -7], [-3, -5], [-11, -8], [-4, -5], [-1, -6], [3, -19], [0, -8], [-2, -7], [-16, -36], [-2, -8], [-1, -8], [2, -5], [1, -3], [10, -10], [17, -12], [20, -9], [32, -4], [15, 3], [10, 9], [2, 8], [2, 10], [1, 24], [3, 12], [3, 7], [5, 5], [24, 12], [7, 7], [9, 23], [3, 3], [3, 2], [5, 0], [6, -6], [2, -15], [0, -19], [2, -14], [2, -9], [22, -52], [4, -5], [8, -5], [10, 6], [6, 7], [13, 22], [45, 46], [2, 3], [6, 8], [10, 7], [37, 16], [18, 12], [4, -2], [6, -6], [15, -25], [64, -81], [2, -8], [1, -9], [1, -15], [-2, -75], [2, -32], [2, -6], [2, -7], [11, -15], [78, -89], [11, -18], [4, -9], [2, -9], [0, -6], [-1, -5], [-2, -8], [-2, -6], [-4, -9], [-17, -20], [-21, -31], [-4, -10], [-1, -13], [0, -12], [4, -19], [-1, -7], [-2, -12], [-4, -9], [-4, -6], [-32, -36], [-7, -11], [0, -11], [6, -9], [17, -11], [14, -2], [19, 11], [8, 12], [5, 14], [4, 24], [5, 9], [7, 6], [9, 4], [14, 4], [4, 3], [4, 6], [7, 13], [12, 18], [7, 7], [8, 6], [9, 1], [8, -3], [10, -12], [3, -8], [1, -6], [-2, -7], [-5, -12], [-4, -6], [-4, -6], [0, -4], [1, -3], [30, -26], [6, -8], [2, -7], [5, -50], [5, -30], [0, -16], [-1, -18], [-3, -18], [-1, -15], [0, -15], [11, -72], [0, -7], [-2, -5], [1, -6], [6, -4], [20, -4], [163, 3], [18, 11], [21, 18], [65, 77], [4, 10], [-2, 19], [-2, 10], [-4, 7], [-3, 3], [-5, 7], [-2, 4], [-3, 3], [-2, 4], [9, 17], [54, 45], [17, -9], [8, -5], [12, -11], [3, -5], [0, -8], [-8, -20], [-3, -5], [-1, -5], [-4, -8], [1, -7], [5, -8], [15, -12], [9, -4], [7, -2], [7, 1], [6, 0], [5, -1], [7, -3], [10, -9], [3, -9], [0, -12], [-7, -21], [-10, -22], [-2, -7], [3, -18], [23, -54], [-17, -60], [-8, -17], [-13, -17], [-5, -8], [-1, -9], [5, -6], [43, -17], [10, -6], [5, -5], [4, -7], [65, -171], [1, -8], [-4, -6], [-17, 3], [-11, 4], [-14, 9], [-15, -2], [-11, -3], [-40, -51], [-1, -66], [-5, -13], [0, -23], [6, -25], [22, -32], [15, -11], [12, -6], [8, -1], [6, -2], [3, -2], [4, -4], [3, -9], [0, -12], [-17, -52], [2, -13], [6, -18], [16, -37], [6, -19], [-2, -24], [-4, -8], [-7, -4], [-9, 1], [-23, 10], [-7, 4], [-10, 10], [-4, 1], [-4, -3], [-3, -7], [-2, -9], [1, -14], [6, -13], [32, -36], [1, -1], [2, -14], [0, -33], [-1, -12], [1, -17], [4, -14], [7, -14], [15, -16], [7, -10], [3, -9], [-4, -12], [-5, -4], [-5, -3], [-10, 0], [-5, -2], [-3, -4], [1, -7], [6, -9], [19, -18], [41, -29], [9, -8], [9, -11], [46, -71], [31, -31], [5, -3], [6, 2], [25, 18], [6, 2], [5, 1], [5, -1], [5, -2], [4, -3], [36, -36], [4, -6], [3, -14], [2, -20], [-3, -42], [-5, -17], [-5, -12], [-3, -5], [-3, -6], [-2, -5], [-5, -15], [-3, -5], [-3, -5], [-6, -4], [-5, -2], [-5, -1], [-9, 0], [-10, 2], [-4, 0], [-5, -3], [-3, -5], [-2, -4], [3, -8], [9, -8], [24, -15], [22, -8], [10, -1], [4, -4], [2, -7], [-3, -13], [-4, -15], [-1, -5], [1, -5], [9, -14], [34, -32], [0, -21], [-3, -12], [-2, -5], [-4, -10], [0, -6], [0, -5], [6, -7], [12, -7], [41, -16], [11, -1], [17, 2], [7, -1], [9, -3], [39, -26], [5, -2], [7, -1], [27, 0], [6, -6], [7, -12], [8, -28], [8, -36], [14, -20], [94, -83], [18, -37], [29, -36], [4, -4], [3, -4], [2, -5], [4, -8], [10, -31], [6, -9], [13, -10], [6, -7], [4, -8], [3, -10], [6, -23], [11, -34], [1, -12], [-1, -11], [-11, -9], [-7, -4], [-26, -10], [-6, -4], [-1, -4], [2, -6], [18, -17], [4, -5], [2, -16], [0, -25], [-8, -100], [-1, -5], [-2, -5], [-7, -26], [-1, -3], [1, -7], [2, -8], [17, -33], [3, -6], [2, -6], [0, -10], [-2, -16], [-6, -32], [-4, -14], [-3, -9], [-4, -4], [-15, -14], [-7, -8], [-4, -16], [0, -22], [2, -50], [-1, -20], [-2, -11], [-6, -5], [-4, -5], [-2, -4], [-2, -8], [-2, -9], [-1, -9], [1, -18], [2, -20], [1, -3], [2, -6], [16, -23], [44, -25], [16, 3], [3, -1], [5, -6], [8, -19], [6, -26], [40, -81], [-98, -98], [-30, -19], [-4, 2], [-3, 3], [-4, 7], [-2, 7], [-2, 9], [1, 9], [1, 6], [3, 8], [9, 22], [0, 10], [-2, 9], [2, 10], [8, 3], [4, 5], [3, 6], [-6, 12], [-6, 5], [-9, 5], [-10, -1], [-15, -11], [-103, -127], [-9, -8], [-6, -2], [-4, 2], [-5, 6], [-15, 26], [-16, 45], [-7, 10], [-12, 4], [-47, -4], [-12, 4], [-8, 5], [-11, 10], [-20, 24], [-10, 11], [-10, -2], [-9, -11], [-17, -33], [-20, -26], [-4, -3], [-3, -7], [-2, -43], [9, -26], [8, -14], [7, -8], [4, -6], [5, -8], [3, -13], [4, -8], [5, -6], [9, -6], [13, -6], [13, -8], [12, -11], [10, -14], [13, -13], [19, -11], [6, -6], [3, -6], [2, -8], [0, -14], [-10, -13], [-6, -5], [-18, -7], [-12, -8], [-3, -5], [-2, -7], [1, -16], [2, -9], [2, -8], [6, -13], [11, -21], [3, -11], [4, -15], [1, -23], [-1, -17], [-2, -24], [-24, -68], [-2, -14], [0, -9], [3, -5], [3, -5], [7, -5], [5, -2], [-5, -3], [-5, -3], [-87, -5], [-19, -5], [-6, -4], [-7, -7], [-13, -16], [-5, -11], [-3, -6], [-6, -41], [-220, -144], [-12, 2], [-4, 3], [-5, 3], [-4, 5], [-2, 5], [-2, 7], [-1, 24], [-2, 7], [-2, 7], [-3, 4], [-8, 10], [-3, 2], [-5, 2], [-11, 1], [-9, -3], [-28, -21], [-16, -17], [-8, -4], [-40, -11], [-28, -2], [-9, -4], [-11, -10], [-19, -23], [-11, -16], [-12, -29], [-1, -13], [2, -15], [6, -21], [-16, -12], [-127, -191], [21, -41], [16, 0], [5, 1], [2, 0], [3, -1], [2, -1], [2, -3], [2, -3], [42, -101], [30, -59], [32, -51], [10, -21], [35, -132], [90, -443], [60, -150], [7, -47], [2, -39], [-5, -98], [-17, -81], [-67, -203], [-17, -11], [-5, -5], [-7, -8], [-5, -11], [-1, -15], [4, -21], [19, -44], [5, -8], [27, -30], [2, -14], [-3, -88], [-3, -27], [-3, -18], [-10, -16], [-2, -11], [-7, -46], [-2, -9], [-4, -7], [-6, -7], [-3, -3], [-3, -2], [-8, -11], [-1, -5], [1, -5], [4, -8], [10, -4], [5, 0], [5, 0], [4, 4], [2, 0], [3, 0], [2, -2], [4, -7], [9, -21], [7, -34], [42, -104], [-13, -7], [-3, -1], [-5, -3], [-5, -6], [-3, -8], [-5, -14], [-5, -7], [-6, -6], [-39, -1], [-7, -1], [-4, -4], [-5, -6], [-11, -22], [-2, -11], [2, -11], [13, -16], [16, -15], [8, -14], [5, -17], [5, -5], [7, -3], [18, 0], [4, -2], [4, -8], [3, -9], [2, -15], [3, -107], [8, -68], [8, -37], [9, -26], [2, -10], [1, -12], [-3, -17], [-4, -12], [-3, -10], [-6, -7], [-7, -5], [-21, 3], [-43, 18], [-3, 1], [-4, -2], [-4, -9], [-4, -16], [-2, -53], [-23, -31], [-14, 29], [-9, 25], [-11, 41], [-6, 10], [-12, 5], [-15, 3], [-27, -1], [-56, -18], [-49, -29], [-40, -18], [-37, -11], [-55, -1], [-55, 15], [-74, 37], [-17, 5], [-27, -11], [-42, -24], [-168, -164], [-101, -57], [-65, 24], [-15, 0], [-35, -19], [-9, -16], [-3, -9], [-1, -7], [-9, -6], [-18, -7], [-61, -13], [-12, -6], [-5, -4], [-10, -15]], [[9268, 15074], [-42, -37], [-9, -16], [-7, -26], [1, -14], [3, -11], [3, -9], [3, -10], [2, -22], [2, -9], [5, -8], [12, -12], [8, -10], [5, -18], [7, -34], [-3, -34], [5, -15], [7, -4], [8, 3], [11, -4], [14, -10], [19, -31], [13, -13], [12, -8], [11, 0], [25, 2], [6, -1], [51, -22], [34, -3], [20, -10], [8, -10], [3, -10], [-12, -30], [0, -19], [6, -14], [6, -8], [35, -29], [6, -16], [5, -42], [7, -11], [9, -6], [10, -2], [9, -3], [15, -10], [9, -4], [11, -2], [15, -7], [13, -4], [22, -2], [14, -4], [20, -16], [14, -6], [12, -2], [21, 2], [22, -3], [31, -19], [24, -23], [46, -26], [29, -12], [4, -7], [2, -9], [-1, -5], [-7, -21], [-34, -43], [-13, -37], [-2, -15], [0, -22], [-11, -76], [-9, -14], [-5, -2], [-4, 8], [-3, 16], [-5, 6], [-13, 11], [-1, 3], [-1, 5], [3, 6], [1, 8], [-2, 8], [-18, 26], [-9, 9], [-16, 2], [-23, -1], [-50, -15], [-15, -10], [-4, -8], [8, -5], [6, -6], [5, -8], [3, -9], [3, -9], [3, -9], [5, -7], [7, -5], [8, -3], [42, -8], [8, -6], [-1, -18], [-8, -30], [-30, -49], [-10, -29], [-7, -26], [-7, -37], [-1, -20], [3, -12], [10, -4], [21, -2], [9, -3], [7, -5], [13, -12], [8, -5], [8, -3], [31, -1], [8, -3], [5, -8], [7, -17], [16, -24], [5, -10], [4, -16], [-2, -13], [-33, -80], [-6, -9], [-8, -4], [-51, 3], [-50, -9], [-12, 0], [-10, 2], [-9, 4], [-12, 9], [-3, 5], [-1, 3], [0, 3], [3, 17], [-1, 9], [-5, 3], [-7, -1], [-23, -10], [-8, 0], [-25, 9], [-68, 1], [-27, -6], [-57, -42], [-5, -50], [6, -22], [6, -6], [9, -6], [10, -16], [13, -25], [6, -46], [-3, -19], [-7, -11], [-36, -10], [-28, -4], [-79, 9], [-8, 2], [-4, 4], [-4, 5], [-8, 3], [-11, 0], [-16, -5], [-5, -11], [-4, -11], [-1, -23], [3, -11], [7, -7], [8, 1], [7, 5], [11, 14], [6, -4], [4, -12], [-3, -43], [3, -19], [6, -10], [8, 1], [7, 4], [6, 7], [5, 7], [4, 9], [5, 7], [5, 7], [6, 5], [6, 4], [7, 3], [5, 1], [8, -1], [5, -1], [7, -4], [23, -16], [25, -24], [8, -11], [7, -15], [11, -33], [8, -14], [19, -22], [-61, -75], [-7, -13], [-6, -16], [8, -28], [-2, -36], [-7, -13], [-9, -6], [-12, -1], [-15, -3], [-20, -12], [-13, -6], [-45, -5], [-33, -15], [-14, -10], [-5, -9], [1, -9], [-1, -10], [-12, -26], [-3, -12], [-2, -11], [0, -12], [2, -11], [5, -20], [2, -13], [1, -17], [-4, -8], [-4, 0], [-4, 5], [-5, 2], [-8, -2], [-10, -6], [-11, -3], [-12, -35], [26, -30], [7, -17], [1, -8], [0, -23], [-2, -21], [-4, -15], [-7, -20], [-31, -58], [-9, -25], [-1, -17], [5, -17], [-2, -10], [-15, -22], [-6, -6], [-7, -5], [-8, -4], [-10, -10], [-11, -14], [-15, -33], [-5, -18], [-2, -19], [0, -18], [-2, -31], [5, -24], [7, -11], [10, -3], [17, 7], [8, 5], [8, 3], [8, 1], [10, -3], [36, -24], [19, -8], [21, -3], [10, 1], [8, 3], [7, 7], [6, 19], [8, 16], [-1, 8], [-6, 9], [-18, 22], [-5, 9], [-1, 10], [1, 10], [3, 9], [5, 7], [8, 5], [37, 9], [16, 9], [29, 20], [16, 7], [15, 1], [9, -1], [38, -13], [40, -5], [21, -7], [11, -6], [8, -7], [5, -11], [25, -65], [5, -85], [-4, -9], [-4, -6], [-6, 5], [-11, -1], [-14, -8], [-23, -27], [-6, -15], [0, -12], [4, -6], [3, -10], [1, -13], [-3, -66], [0, -12], [1, -11], [1, -9], [2, -9], [16, -39], [-2, -18], [-19, -63], [-5, -22], [-2, -16], [1, -9], [6, -9], [17, -2]], [[9508, 11901], [-14, -40], [-3, -11], [-4, -12], [-3, -8], [-49, -83], [-23, -50], [-27, -45], [-45, -41], [-142, -87], [-134, -54], [-26, -4], [-20, 1], [-8, 2], [-15, 7], [-20, 18], [-12, 13], [-17, 28], [-5, 6], [-6, 3], [-6, 1], [-7, -2], [-26, -13], [-13, -4], [-28, -44], [-54, -202], [8, -51], [2, -19], [2, -17], [2, -30], [-1, -35], [-8, -16], [-15, -14], [-37, -26], [-40, -19], [-24, -6], [-30, -15], [-15, -16], [-19, -26], [-16, -50], [-1, -26], [5, -18], [11, -15], [-3, -9], [-5, -6], [-70, -22], [-41, -15], [-33, -1], [-10, 3], [-7, 3], [-6, 7], [-4, 3], [-4, 3], [-8, 0], [-10, -1], [-36, -11], [-6, 0], [-5, 3], [-4, 6], [-11, 17], [-6, 8], [-6, 4], [-5, 2], [-5, -1], [-21, -13], [-8, 0], [-14, 4], [-20, 8], [-7, -2], [-4, -9], [-2, -24], [7, -72], [-2, -16], [-16, -50], [-4, -18], [-1, -11], [0, -8], [2, -8], [2, -5], [4, -3], [6, -3], [40, -5], [7, -3], [5, -6], [3, -5], [1, -6], [-5, -12], [-27, -56], [-7, -20], [-3, -19], [1, -12], [13, -67], [-6, -12], [-17, -18], [-137, -61], [-35, -6], [-54, 10], [-15, 19], [-16, 23], [-4, 9], [-9, 31], [-4, 8], [-3, 7], [-15, 16], [-22, 15], [-88, 44], [-11, 1], [-30, -4], [-10, 2], [-16, 6], [-8, 3], [-100, 3], [-25, 7], [-12, 0], [-15, -2], [-70, -21], [-9, -5], [-5, -7], [-3, -16], [1, -19], [0, -8], [-6, -12], [-39, -48], [-33, -25], [-15, -8], [-7, 0], [0, 6], [4, 10], [14, 22], [2, 7], [-1, 5], [-5, 4], [-31, 10], [-12, 8], [-28, 24], [-10, 5], [-7, 2], [-6, 1], [-7, -2], [-114, -56], [-75, -19], [-12, -5], [-10, -10], [-6, -7], [-4, -8], [-3, -13], [-2, -17], [0, -53], [-2, -15], [-3, -14], [-6, -7], [-8, -4], [-10, -1], [-10, 2], [-6, -4], [-21, -27], [-5, -8], [15, -11], [21, -15], [11, -3], [10, 12], [22, 5], [22, -5], [11, -12], [2, -7], [12, -80], [21, -35], [-2, -42], [1, -6], [9, -22], [16, -33], [2, -7], [-5, -2], [-4, -4], [-48, 20], [-4, -272], [1, -15], [30, -91], [21, -60], [29, -96], [7, -11], [6, -15], [3, -5], [3, -3], [5, -1], [2, 1], [3, 3], [4, 9], [14, 26], [7, 8], [5, 3], [3, 0], [4, -3], [3, -4], [1, -8], [-1, -16], [-5, -28], [-1, -23], [2, -24], [11, -37], [8, -17], [10, -15], [12, -7], [9, -2], [11, 2], [10, 4], [10, 2], [8, 1], [6, -3], [7, -6], [8, -11], [4, -13], [-1, -13], [-11, -22], [-31, -44], [-5, -14], [-1, -15], [8, -15], [18, -12], [36, -16], [5, -9], [-1, -14], [-30, -66], [-6, -17], [-2, -14], [0, -17], [4, -19], [3, -12], [0, -9], [-4, -7], [-13, -14], [-10, -8], [-9, -5], [-9, -1], [-17, -1], [-9, -1], [-9, -5], [-2, -19], [4, -30], [22, -100], [3, -22], [-7, -16], [-5, -8], [-7, -7], [-8, -6], [-19, -17], [-22, -25], [-6, -9], [-5, -5], [-9, -13], [1, -14], [8, -14], [45, -45], [32, -58]], [[5801, 8465], [-37, 113], [-56, 113], [-34, 86], [4, 97], [38, 71], [62, 44], [74, 15], [49, 63], [29, 51], [7, 36], [-32, 14], [-46, -12], [-42, -2], [-18, 38], [-5, 26], [-11, 29], [-43, 83], [-7, 31], [-5, 31], [-9, 38], [-22, 51], [-52, 81], [-17, 45], [34, 127], [-45, 125], [-242, 288], [-35, 23], [-27, 7], [-61, -2], [-284, -101], [-88, -69], [-108, -60], [-98, -34], [-91, -3], [-41, 62], [-6, 46], [-17, 30], [-147, 139], [-22, 9], [-9, 9], [89, 72], [40, 21], [24, 20], [9, 14], [1, 33], [2, 17], [6, 19], [17, 33], [11, 10], [10, 4], [9, -5], [12, -2], [12, 1], [19, 8], [13, 3], [9, -1], [8, -8], [12, -16], [9, -9], [9, -8], [14, -6], [5, 3], [2, 11], [1, 13], [1, 10], [4, 16], [11, 34], [1, 10], [0, 7], [-4, 8], [-6, 5], [-42, 26], [-7, 6], [-9, 11], [-8, 13], [-2, 26], [5, 33], [27, 65], [14, 26], [13, 15], [39, 18], [31, 22], [62, 31], [14, 20], [10, 8], [5, 4], [6, -1], [6, -4], [12, -13], [8, -12], [9, -8], [10, -6], [17, -1], [9, 7], [7, 18], [27, 41], [3, 9], [-2, 7], [-21, 27], [0, 9], [2, 13], [9, 26], [8, 11], [9, 6], [114, -5], [37, 10], [11, 9], [7, 6], [4, 10], [1, 10], [0, 13], [-2, 10], [-7, 19], [-26, 93], [-15, 31], [-4, 3], [-21, 12], [-22, 24], [-15, 31], [-42, 100], [-12, 20], [-39, 19], [-5, 8], [-2, 13], [-1, 15], [-6, 7], [-8, 3], [-96, 24], [-10, 10], [-5, 7], [4, 18], [28, 24], [12, 35], [8, 40], [9, 30], [34, 36], [7, 10], [2, 7], [-4, 4], [-21, 12], [-7, 6], [-6, 6], [-5, 6], [-2, 7], [-2, 22], [0, 8], [-1, 6], [5, 121], [6, 28], [4, 16], [10, 4], [14, 10], [13, 14], [23, 34], [11, 14], [12, 11], [26, 5], [22, 2], [10, -2], [8, -6], [38, -52], [7, -5], [7, -5], [23, -3], [8, 0], [7, 2], [10, 6], [36, 28], [9, 10], [6, 9], [3, 7], [35, 95], [22, 60], [-7, 10], [-2, 9], [-21, 11], [-6, 12], [-9, 20], [-8, 55], [-11, 33], [-31, 70], [-4, 15], [1, 10], [4, 11], [10, 20], [9, 23], [9, 61]], [[8116, 16054], [20, -18], [41, 40], [36, -1], [10, -5], [7, -15], [1, -12], [-1, -12], [0, -11], [1, -11], [3, -9], [5, -8], [12, -7], [19, -7], [29, -1], [16, 3], [11, 5], [6, 7], [5, 8], [12, 13], [7, 5], [8, 4], [8, -1], [7, -7], [9, -16], [10, -12], [29, -12], [18, -4], [17, -1], [28, 6], [25, 12], [11, 1], [5, -6], [5, -20], [4, -13], [8, -12], [45, -22], [8, -11], [7, -15], [6, -32], [15, -38], [44, -48], [-20, -40], [-13, -6], [-7, 4], [-55, 42], [-5, 3], [-5, 0], [-4, -2], [-5, -5], [-4, -7], [0, -10], [4, -14], [21, -39], [0, -6], [-9, -5], [-10, -1], [-9, 2], [-6, 2], [-16, 10], [-7, 1], [-6, -10], [-3, -21], [0, -40], [-3, -21], [-4, -14], [-7, -6], [-8, -3], [-21, -2], [-5, -9], [5, -24], [44, -102], [15, -24], [11, -11], [18, -8], [6, -6], [1, -9], [-5, -11], [-13, -15], [-2, -9], [2, -11], [10, -15], [4, -14], [-1, -21], [-3, -15], [-1, -13], [9, -93], [-6, -18], [-8, -11], [-64, -7], [-17, -7], [-9, 0], [-15, 6], [-9, 1], [-7, -5], [-5, -8], [-5, -13], [-6, -8], [-19, -19], [-2, -11], [4, -17], [15, -31], [2, -16], [-3, -10], [-8, -3], [-10, 1], [-21, 4], [-35, 16], [-7, 1], [1, -10], [13, -20], [64, -58], [38, -11], [158, -73], [14, -2], [16, 2], [30, -17], [65, -86], [24, -4], [9, 1], [17, 9], [65, 59], [17, 21], [8, 15], [-1, 8], [0, 8], [0, 7], [2, 5], [2, 4], [4, 5], [3, 3], [2, 3], [3, 2], [7, 9], [3, 8], [1, 6], [0, 4], [-3, 5], [-4, 3], [-5, 4], [-9, 0], [-12, -5], [-24, -23], [-6, -8], [-5, -5], [-9, 2], [-18, 12], [-54, 59], [-8, 13], [-6, 17], [0, 8], [0, 6], [2, 4], [96, 57], [27, 23], [55, 18], [15, 15], [6, 10], [-7, 12], [-2, 6], [-2, 8], [-1, 9], [1, 6], [9, 1], [17, -5], [41, -24], [15, -12], [10, -15], [4, -11], [12, -33], [11, -18], [7, -8], [9, -8], [11, -1], [11, 5], [16, 20], [6, 11], [0, 11], [-19, 41], [-4, 6], [-4, 8], [-2, 7], [-3, 10], [1, 9], [2, 7], [6, 5], [10, 3], [28, 0], [6, 1], [15, 19], [6, 6], [7, 4], [10, 0], [6, -8], [2, -21], [1, -22], [0, -6], [20, -22], [78, -58]], [[6127, 21788], [9, -3], [4, 0], [42, 13], [12, 0], [62, -39], [134, -53], [30, -7], [25, 3], [5, 1], [3, 2], [4, 4], [9, 2], [51, 4], [28, -4], [5, -3], [3, -4], [2, -5], [1, -5], [-1, -6], [-1, -5], [4, -9], [12, -10], [50, -31], [12, -5], [63, 2], [27, -5], [5, -4], [33, -34], [45, -31], [78, -39], [21, -4], [12, 3], [7, 3], [4, 5], [3, 6], [2, 6], [3, 11], [3, 11], [11, 25], [5, 10], [5, 6], [10, 7], [8, -1], [7, -3], [23, -22], [53, -60], [5, -9], [0, -9], [-7, -8], [-27, -23], [-5, -11], [-1, -5], [9, -22], [55, -58], [5, -10], [4, -13], [-4, -8], [-15, -21], [-6, -15], [-5, -22], [-3, -51], [-3, -20], [-3, -14], [-34, -37], [-79, -55], [-19, -10], [-109, 83], [-1, -2], [0, -5], [1, -10], [0, -11], [-7, -9], [-11, -6], [-32, -9], [-22, 1], [-22, 6], [-108, 67], [-11, 5], [-8, 0], [-22, -10], [-89, -15], [-33, 6], [-2, 3], [-3, 3], [0, 2], [0, 4], [0, 6], [0, 93], [-2, 13], [-5, 9], [-15, 8], [-88, 102], [-36, 53], [-5, 13], [-5, 19], [-1, 9], [-4, 66], [-32, 64], [-14, 12], [-49, -4], [-26, 3], [-53, 36], [-94, 37], [-19, 41], [-7, 22], [-12, 26], [51, 7], [24, -5], [71, -44]], [[6119, 22915], [19, 98], [-11, 18], [-58, 144], [-17, 21], [-24, 50], [-9, 25]], [[6019, 23271], [1, 0], [111, -40], [49, -8], [93, 4], [13, -4], [2, -7], [-8, -10], [-7, -9], [-5, -11], [-3, -9], [-3, -14], [2, -20], [5, -19], [18, -35], [9, -28], [15, -75], [1, -27], [-1, -24], [-3, -20], [-4, -12], [-35, -53], [-47, -43], [-4, -2], [-3, -1], [-5, 3], [-5, 6], [-15, 29], [-2, 1], [-1, 0], [-4, 0], [-16, -4], [-12, 10], [-28, 50], [-8, 16]], [[2013, 23129], [16, -22], [16, -35], [-20, 12], [-29, 33], [-20, 8], [-22, -4], [-34, -17], [-14, -4], [-40, 19], [-32, 43], [-8, 43], [26, 20], [172, 51], [85, 6], [30, -57], [-50, -7], [-79, -34], [-42, -9], [0, -23], [25, -9], [20, -14]], [[2789, 23528], [-478, -53], [83, 40], [309, 39], [86, -26]], [[3380, 23660], [-3, -4], [-7, 0], [-105, -40], [-276, -36], [-92, 25], [104, 58], [122, 20], [256, -5], [1, -18]], [[3552, 23701], [29, -23], [-7, -15], [-7, -5], [-18, -5], [-90, 27], [-34, -2], [38, 25], [46, 7], [43, -9]], [[5247, 23669], [-36, -34], [-11, -7], [-20, 5], [-12, 8], [-14, 2], [-24, -15], [0, 25], [29, 47], [44, 19], [51, -8], [48, -33], [-33, 0], [-22, -9]], [[4015, 23762], [-3, -4], [-6, 1], [-6, -4], [-165, 5], [-76, -18], [-6, -64], [-67, -3], [-20, 17], [-8, 50], [12, 42], [28, 16], [69, 3], [201, 2], [46, -27], [1, -16]], [[4403, 23855], [-51, -31], [-63, -25], [-65, -4], [-56, 35], [-20, -28], [-20, -15], [-19, 0], [-18, 16], [58, 69], [95, 21], [191, -13], [0, -25], [-32, 0]], [[4698, 23915], [60, -36], [-22, 4], [-24, -3], [-95, 21], [-41, -2], [-3, -44], [-44, 30], [10, 24], [41, 14], [47, 5], [37, -3], [34, -10]], [[8849, 23017], [2, -15], [8, -130], [20, -22], [5, -8], [3, -13], [4, -8], [6, -7], [14, -10], [6, -7], [5, -13], [10, -33], [10, -22], [13, -25], [14, -20], [17, -20], [74, -68], [9, -3], [9, 5], [28, 41], [12, 9], [18, 7], [11, -2], [10, -7], [12, -20], [6, -38], [2, -34], [1, -13], [8, -9], [14, 0], [45, 23], [14, 4], [11, -3], [42, -28], [15, -1], [23, 3], [59, 24], [37, 22], [6, 6], [1, 7], [0, 7], [-2, 6], [-1, 7], [0, 7], [7, 9], [14, 8], [84, 27], [16, 2], [36, -42], [28, -21], [46, -12], [26, -29], [24, -33], [36, -26], [38, -8], [125, 8], [5, 11], [50, 64], [23, 14], [21, 7], [96, 0]], [[10125, 22595], [51, -2], [81, -30], [322, -189], [93, -31], [71, 29]], [[10743, 22372], [168, 7], [78, -20], [49, -60], [7, -52], [0, -59], [11, -49], [37, -20], [44, -10], [26, -25], [47, -65], [72, -57], [206, -116], [248, -228], [64, -39], [21, -24], [27, -18], [23, 16], [22, 26], [35, 24], [19, 20], [23, 18], [29, 5], [19, -11], [13, -20], [13, -24], [18, -25], [23, -41], [16, -2], [30, 32], [23, 14], [17, -15], [17, -25], [36, -21], [15, -20], [27, -49]], [[12266, 21439], [1, -1], [37, -68], [83, -96], [37, -23], [49, -8], [42, 11], [74, 51], [47, 11], [52, -16], [68, -69], [42, -16], [52, -6], [111, -44]], [[12961, 21165], [-44, -120], [-23, -16], [-29, 0], [-19, 7], [-12, 2], [-23, -5], [-12, -11], [-7, -10], [-11, -33], [-2, -11], [-11, -72], [0, -23], [1, -12], [3, -20], [6, -18], [3, -20], [-4, -5], [-4, -3], [-43, -2], [-20, -4], [-131, -124], [-9, -4], [-79, -21], [-138, -58], [-46, -2], [-18, 8], [-13, -4], [-13, -8], [-19, -17], [-14, -4], [-11, -1], [-7, 3], [-5, 3], [-4, 7], [-5, 7], [-3, 9], [-4, 8], [-7, 6], [-29, 11], [-7, 6], [-5, 7], [-7, 7], [-7, 5], [-109, 20], [-133, -9], [-18, 3], [-40, 22], [-69, 18], [-37, 2], [-44, -4], [-28, -12], [-4, -3], [-2, -3], [-2, -4], [-3, -7], [-4, -9], [-2, -11], [-2, -11], [-1, -10], [0, -19], [-1, -6], [-3, -7], [-6, -7], [-42, -33], [-22, -29], [-43, -23], [-63, -19], [-34, -18], [-30, -6], [-98, 5], [-106, -8], [-76, -29], [-8, -12], [5, -19], [0, -13], [-6, -17], [-3, -14], [1, -11], [5, -18], [2, -11], [0, -10], [0, -11], [-6, -33], [-2, -11], [1, -11], [2, -10], [3, -7], [10, -16], [24, -58], [10, -12], [29, -29], [5, -9], [2, -28], [3, -23], [11, -42], [12, -16], [11, -8], [24, 0], [16, -8], [19, -13], [23, -48], [85, -168], [79, -117], [19, -19], [13, -5], [8, 3], [25, 25], [8, 4], [12, 3], [14, -1], [22, -11], [8, -11], [2, -11], [-3, -10], [-5, -8], [-11, -15], [-37, -40], [-6, -8], [-4, -8], [-3, -10], [-1, -10], [-2, -57], [2, -18], [6, -34], [4, -18], [6, -13], [5, -7], [11, -14], [7, -6], [6, -7], [62, -99], [13, -24], [5, -16], [-7, -4], [-10, -1], [-42, 10], [-10, 0], [-10, -2], [-10, -2], [-16, -9], [-7, -6], [-5, -7], [-4, -8], [-3, -9], [-1, -13], [-1, -5], [-2, -5], [-5, -7], [-4, -12], [-2, -13], [-3, -39], [162, -215], [10, -11], [13, -8], [8, -4], [30, -9], [66, -55], [7, -12], [7, -16], [-2, -13], [-4, -14], [-3, -23], [-5, -10], [-7, -7], [-38, -11], [-63, -8], [-24, -9], [-16, -9], [-5, -5], [0, -8], [2, -8], [1, -17], [3, -11], [2, -6], [7, -4], [18, -7], [15, -10], [5, -5], [3, -5], [2, -8], [1, -8], [2, -8], [3, -6], [7, -7], [7, -14], [0, -10], [-4, -9], [-25, -20], [-12, -15], [-3, -8], [1, -8], [28, -45], [14, -15], [9, -7], [11, -21], [5, -6], [8, -2], [18, 5], [11, -4], [3, -11], [-1, -28], [2, -18], [3, -8], [6, -1], [5, 6], [4, 7], [5, 11], [2, 3], [5, 2], [6, -1], [10, -15], [4, -12], [1, -13], [0, -35], [-2, -10], [-3, -10], [-4, -9], [-6, -6], [-14, -9], [-32, -6], [-47, -20], [-7, -7], [-12, -13], [-19, -44], [-3, -15], [0, -12], [8, -17], [5, -10], [5, -7], [6, -6], [8, -5], [9, -4], [10, -2], [10, 1], [10, -5], [9, -12], [8, -38], [0, -19], [-4, -15], [-18, -33], [-11, -16], [-12, -14], [-55, -47], [-47, -27], [-79, -24], [-15, -9], [-6, -10], [-3, -10], [2, -8], [2, -4], [5, -6], [35, -26], [5, -5], [2, -9], [1, -15], [-1, -30], [-4, -16], [-5, -12], [-7, -5], [-9, -5], [-8, -2], [-23, -1], [-111, 3], [-45, -7], [-59, -24], [-301, 0], [-128, -20], [-19, -8], [-3, -8], [1, -10], [1, -9], [1, -10], [-2, -10], [-18, -19], [-19, -25], [-30, -26], [-15, -6], [-13, -3], [-67, 8], [-14, -5], [-8, -8], [-1, -9], [1, -8], [1, -3], [1, -4], [4, -6], [30, -42], [4, -7], [2, -5], [4, -28], [56, -29], [8, -8], [14, -21], [10, -8], [12, -2], [16, 5], [6, -1], [3, -6], [-3, -9], [-6, -6], [-34, -15], [-7, -5], [-12, -15], [-7, -34], [-5, -36], [1, -5], [4, -9], [38, -25], [7, -8], [7, -18], [7, -55], [-1, -18], [-2, -12], [-3, -5], [-5, -5], [-5, -8], [-7, -18], [-5, -8], [-7, -6], [-17, -7], [-9, -7], [-7, -9], [-8, -17], [-8, -10], [-8, -6], [-30, -13], [-12, -12], [-4, -11], [0, -53], [-5, -92], [1, -18], [1, -3], [2, -11], [6, -44], [3, -15], [3, -9], [12, -11], [11, -13], [5, -7], [12, -14], [14, -11], [16, -10], [7, -5], [7, -11], [5, -15], [9, -38], [4, -10], [18, -26], [14, -37], [5, -5], [26, -23], [7, -10], [7, -13], [9, -33], [2, -20], [0, -84], [65, -120]], [[10962, 16011], [-111, -64], [-39, -47], [-4, -14], [-1, -8], [3, -7], [10, -14], [13, -25], [22, -25], [4, -3], [4, -9], [3, -14], [-5, -32], [-7, -12], [-11, -5], [-8, 4], [-8, 5], [-31, 35], [-14, 1], [-18, -3], [-109, -56], [-11, -3], [-69, -4], [-28, 3], [-81, 68], [-108, 58], [-21, 5], [-17, -8], [-31, -7], [-34, 0], [-16, -4], [-8, -4], [-1, -6], [0, -6], [0, -3], [1, -3], [7, -10], [2, -5], [1, -8], [1, -9], [-4, -21], [-6, -21], [-24, -67], [-16, -22], [-36, -27], [-8, -11], [-2, -11], [-5, -7], [-6, -5], [-19, -9], [-40, -25], [-10, -12], [-7, -11], [-3, -16], [-7, -23], [-7, -8], [-10, -5], [-10, -2], [-97, -64], [-16, -7], [-22, 0], [-9, 3], [-6, 5], [-4, 6], [-1, 5], [-1, 6], [-1, 4], [-8, 5], [-11, 3], [-22, -3], [-12, -5], [-8, -7], [-6, -8], [-4, -8], [-3, -8], [-1, -7], [0, -5], [3, -6], [2, -7], [0, -5], [-5, -12], [-17, -32], [-9, -10], [-11, -7], [-31, -8], [-7, -7], [-1, -9], [1, -4], [7, -19], [-113, 4], [-34, -7], [-14, -22], [-12, -16], [-9, -2], [-7, 3], [-46, 41], [-9, 0], [-5, -6], [-6, -11], [-11, -12], [-33, -18], [-14, -10], [-26, -31], [-115, -97]], [[2656, 18216], [-13, 25], [-20, 78], [1, 67], [17, 55], [45, 105], [19, 134], [-32, 94], [-137, 222], [-15, -6], [-14, -25], [-21, -20], [-56, -16], [-60, -4], [-63, 10], [-117, 45], [-179, 25], [-60, 29], [-45, 51], [-14, 55], [-3, 65], [-8, 65], [-28, 58], [38, 3], [125, 63], [-74, 62], [-16, 23], [0, 31], [10, 30], [4, 33], [-19, 39], [40, 28], [40, 29], [76, 23], [215, 3], [120, -36], [111, 17], [34, -14], [81, -25], [41, 78], [17, 129], [21, 396], [19, 123], [23, 63], [18, 48], [185, 287], [50, 123], [20, 117], [4, 131], [-21, 263], [-9, 32], [-11, 19], [-8, 23], [-2, 44], [6, 30], [32, 81], [15, 63], [7, 57], [-2, 59], [-7, 104], [23, 12], [25, 27], [20, 26], [21, 40], [7, 43], [-17, 41], [57, 84], [31, 15], [53, 1], [49, -12], [78, -49], [42, -16], [-54, 78], [-90, 31], [-515, 18], [-83, 41], [-33, 102], [-1, 271], [10, 62], [44, 111], [9, 55], [19, 33], [45, 0], [91, -19], [12, 29], [21, 11], [17, 36], [-4, 46], [-20, 27], [-66, 32], [-30, 29], [-5, 48], [32, 41], [73, 49], [82, 89], [45, 29], [84, 84], [178, 67], [348, 38], [24, -16], [25, -32], [53, -12], [334, 67], [679, 92], [181, -51], [0, -27], [-15, -103], [63, -133], [93, -116], [76, -51], [0, -23], [-19, -46], [35, -17], [50, -14], [26, -38], [-7, -66], [-22, -34], [-49, -35], [-41, -21], [-89, -8], [-40, -24], [42, -122], [20, -46], [31, -32], [29, 13], [26, 11], [38, -1], [26, -14], [43, -49], [16, -10], [19, -16], [18, -34], [24, -35], [33, -15], [38, 1], [27, 6], [24, 14], [28, 27], [48, 77], [50, 126], [13, 126], [-66, 73], [-89, -23], [-47, 8], [4, 54], [19, 60], [17, 125], [19, 52], [30, 31], [38, 14], [95, 5], [43, -19], [33, -45], [28, -51], [28, -35], [91, -46], [193, -36], [88, -41], [0, -27], [-55, -46], [-49, -58], [-37, -79], [-14, -107], [3, -206], [13, -90], [31, -68], [6, 91], [-24, 229], [2, 108], [35, 80], [52, 35], [47, 45], [1, 6]], [[6019, 23271], [-11, 30], [-16, 70], [-32, 83], [-7, 61], [5, 62], [14, 54], [85, 203], [60, 221], [38, 98], [33, 47], [44, 41], [50, 29], [51, 11], [47, -3], [27, -12], [56, -60], [80, -65], [86, -43], [177, -42], [97, 2], [164, 40], [91, -7], [42, 47], [180, 43], [179, -2], [39, 27], [30, -22], [37, -7], [77, 4], [20, -13], [50, -63], [220, -374], [91, -103], [63, -50], [31, -39], [31, -111], [156, -221], [34, -30], [42, -19], [54, -6], [28, -13], [135, -90], [152, -32]], [[14506, 13981], [146, 15], [350, -108], [18, -110], [7, -14], [62, -108], [23, -56], [31, -31], [32, -18], [31, -12], [64, -39], [54, -87], [48, -106], [1, -12], [-1, -15], [-25, -11], [-13, -11], [-5, -7], [-21, -34], [-18, -19], [-6, 0], [-5, 6], [-10, 17], [-9, 4], [-9, 1], [-17, -7], [-10, -2], [-73, 11], [-50, -6], [-10, 2], [-34, 16], [-5, -32], [-5, -6], [-6, -6], [-86, -48], [-47, -56], [-40, -62], [-8, -3], [-7, 1], [-1, 8], [-8, 5], [-16, 5], [-66, -5], [-16, -5], [-14, -10], [-57, -50], [-19, -12], [-164, -51], [-3, -37], [28, -32], [37, -16], [7, -12], [1, -10], [-4, -9], [-18, -20], [-15, -20], [-3, -3], [-5, -2], [-8, -2], [-13, 1], [-11, -7], [-13, -14], [-18, -42], [-3, -20], [3, -13], [8, -1], [8, 1], [13, 4], [9, 0], [11, -4], [13, -14], [4, -12], [-2, -13], [-5, -13], [-4, -25], [3, -21], [11, -31], [9, -15], [7, -11], [7, -6], [8, -4], [9, -3], [21, -2], [31, 4], [21, -10], [-46, -83], [-9, -11], [-17, -19], [-70, -55], [-14, -7], [-56, -3], [-43, 8], [-39, -1], [-11, -4], [-10, -10], [-13, -21], [-41, -52], [4, -74], [-6, -23], [-10, -33], [-9, -13], [-9, -8], [-23, -6], [-26, -12], [-12, -3], [-10, 2], [-8, 4], [-7, 6], [-6, 6], [-18, 6], [-35, -8], [-51, -87], [-23, -22], [-10, -1], [-12, 1], [-9, 2], [-8, 3], [-7, 6], [-6, 5], [-3, 5], [-15, 25], [-5, 5], [-12, 5], [-21, 5], [-16, -3], [-10, -4], [-5, -8], [-2, -5], [-6, -10], [-4, -10], [-31, -36], [-53, -42], [-24, -35], [-15, -33], [-4, -19], [0, -14], [4, -9], [6, -6], [28, -22], [6, -12], [4, -15], [1, -32], [-5, -14], [-18, -19], [-3, -12], [0, -18], [-4, -11], [-7, -6], [-36, -13], [-10, -5], [-11, -8], [-14, -15], [-5, -11], [0, -10], [18, -31]], [[13694, 11529], [-55, -29], [-20, -16], [-11, -5], [-40, -11], [-25, -12], [-6, -6], [-8, -5], [-8, -4], [-12, 1], [-3, 12], [1, 9], [4, 8], [-3, 6], [-8, 6], [-24, 9], [-11, 7], [-8, 6], [-1, 4], [-3, 7], [-2, 3], [-3, 4], [-11, 2], [-16, 1], [-38, -5], [-15, -5], [-4, -8], [-3, -5], [-3, -7], [-39, -12], [-268, -59], [-67, 29], [-29, 3], [-20, -3], [-8, -4], [-5, -8], [-7, -19], [-4, -8], [-7, -6], [-9, -3], [-29, -5], [-18, -6], [-13, 2], [-18, 11], [-36, 31], [-19, 11], [-14, 12], [-6, 10], [-1, 52], [-5, 32], [-4, 10], [-7, 9], [-14, 7], [-11, 0], [-10, -2], [-8, -5], [-9, 1], [-13, 6], [-17, 21], [-22, 19], [-23, 10], [-4, 18], [-3, 16], [6, 122], [13, 12], [21, 15], [6, 7], [1, 8], [-1, 7], [-1, 4], [-4, 9], [-20, 39], [-38, 12], [-144, 8], [-21, -27], [-17, -4], [-12, -10], [-7, -15], [-2, -8], [-1, -6], [1, -4], [-1, -6], [-1, -5], [-8, -11], [-46, -31], [-44, -11], [-63, -31], [11, -40], [7, -18], [1, -7], [-1, -8], [-5, -13], [4, -17], [4, -11], [4, -10], [2, -9], [4, -21], [1, -10], [-1, -12], [-7, -65], [0, -13], [3, -10], [8, -16], [2, -10], [-1, -15], [2, -11], [4, -9], [16, -21], [4, -8], [3, -9], [0, -11], [0, -10], [1, -8], [1, -9], [5, -17], [-1, -6], [-3, -5], [-17, -5], [-5, -4], [-1, -6], [1, -17], [3, -11], [1, -9], [-3, -11], [-20, -47], [-3, -17], [0, -13], [12, -24], [3, -9], [0, -12], [-3, -16], [-14, -23], [-5, -14], [-2, -9], [4, -27], [0, -8], [-1, -6], [-3, -8], [-10, -5], [-15, -1], [-51, 16], [-12, 7], [-20, 20], [-12, -6], [-22, -43], [-111, 109], [-18, 29], [44, 52], [3, 8], [1, 5], [0, 8], [-3, 8], [-4, 9], [-9, 15], [-10, 15], [-17, 31], [-7, 6], [-8, 3], [-14, -1], [-8, 4], [-7, 15], [-5, 22], [-8, 5], [-9, 0], [-23, -7], [-10, -8], [-8, -10], [-5, -8], [-6, -6], [-8, -4], [-31, -3], [-9, -2], [-33, -16], [-9, 1], [-9, 6], [-11, 20], [-12, 13], [-16, 9], [-61, 10], [-5, -2], [-3, -3], [-4, -27], [-1, -7], [-4, -6], [-5, -6], [-14, 11], [-9, 9], [-77, 117], [-18, 5], [-18, -2], [-57, -20], [-8, -2], [-7, 1], [-6, 2], [-5, 6], [-4, 6], [-4, 8], [-5, 8], [-6, 7], [-6, 4], [-6, 3], [-6, 0], [-8, -3], [-10, -7], [-17, -8], [-42, 8], [-9, -1], [-8, -3], [-28, -21], [-8, -4], [-17, -5], [-7, 0], [-6, 1], [-21, 11], [-5, 1], [-8, 1], [-10, -6], [-11, -12], [-32, -56], [-5, -10], [-6, -12], [-6, -8], [-8, -4], [-7, 0], [-5, 2], [-32, 14], [-10, 0], [-10, -1], [-9, -12], [-10, -21], [-8, -86], [2, -23], [9, -15], [8, -8], [9, -6], [25, -12], [27, -19], [4, -4], [27, -32], [6, -6], [7, -6], [9, -3], [10, -2], [40, 4], [8, -3], [8, -5], [5, -7], [5, -19], [3, -9], [5, -7], [6, -6], [8, -5], [9, -4], [40, -11], [7, -5], [5, -8], [4, -8], [4, -20], [1, -10], [1, -12], [-1, -13], [-4, -16], [-5, -9], [-7, -7], [-11, -4], [-14, -1], [-28, 7], [-32, 17], [-9, 3], [-72, -17], [-19, -1], [-12, 2], [-9, 8], [-6, 4], [-8, 3], [-9, -1], [-17, -19], [-10, -78], [0, -29], [-1, -10], [-3, -9], [-11, -3], [-15, 4], [-32, 20], [-29, 23], [-56, 16], [-102, 0], [-18, 23], [-9, 17], [-3, 10], [0, 9], [6, 11], [3, 11], [-1, 14], [-21, 41], [-8, 22], [-1, 14], [3, 16], [5, 13], [2, 20], [4, 11], [0, 18], [-2, 23], [-11, 46], [-3, 24], [-2, 18], [-2, 11], [-7, 11], [-32, 18], [-19, 23], [-30, 69], [-38, -6], [-14, -13], [-7, -5], [-11, -2], [-19, 4], [-30, 2], [-6, 4], [-4, 7], [1, 13], [-1, 11], [-6, 10], [-60, 54], [-12, 15], [-8, 11], [-7, 17], [-2, 10], [-3, 9], [-6, 7], [-15, -4], [-21, -9], [-20, -3], [-44, 4], [-9, 5], [-9, 8], [-10, 21], [-1, 13], [2, 11], [12, 13], [5, 7], [2, 8], [-5, 13], [-60, 50], [-10, 11], [-9, 16], [-10, 14], [-11, 14], [-32, 26], [-6, 9], [-3, 10], [0, 10], [2, 23], [-1, 10], [-1, 9], [-8, 19], [-2, 10], [-12, 12], [-20, 12], [-182, 65], [-15, 9], [-8, 11], [-4, 20], [-10, 26], [-3, 20], [-5, 9], [-8, 10], [-14, 10], [-8, 9], [-5, 9], [-13, 6], [-20, 4], [-111, -12], [-12, 3], [-9, 5], [-4, 8], [-2, 8], [1, 11], [1, 10], [-1, 11], [-3, 6], [-38, -27], [-123, -143]], [[10962, 16011], [35, -23], [204, 6], [16, -5], [19, -9], [49, -33], [18, -7], [11, -3], [56, 1], [29, -28], [75, -32], [30, -1], [10, -8], [8, -14], [11, -31], [4, -18], [0, -16], [-10, -12], [-9, -5], [-11, -1], [-9, 3], [-17, 9], [-8, 2], [-10, 1], [-8, -4], [-6, -6], [-4, -9], [2, -20], [8, -30], [24, -64], [14, -26], [13, -17], [7, -4], [8, -6], [4, -10], [2, -15], [-5, -60], [0, -10], [3, -10], [5, -15], [27, -57], [21, -28], [3, -11], [1, -14], [-14, -70], [-3, -27], [0, -31], [19, -35], [60, -35], [350, -44], [95, 3], [210, -32], [59, -20], [118, -95], [62, -119], [130, -196], [-19, -46], [-21, -31], [-27, -25], [-57, -33], [-101, -17], [-14, -6], [-13, -15], [-7, -11], [-10, -19], [7, -18], [19, -25], [51, -34], [49, -20], [23, -26], [48, -84], [13, -48], [1, -11], [3, -17], [1, -20], [-1, -16], [-3, -8], [-9, -4], [-7, -2], [-4, -6], [-2, -6], [7, -41], [9, -26], [3, -8], [6, -11], [5, -6], [8, -5], [25, -13], [12, -4], [124, -7], [9, 3], [9, 4], [7, 5], [19, 18], [16, 8], [10, 3], [104, -15], [59, 3], [45, -5], [17, 2], [19, 7], [45, 11], [10, -2], [14, -5], [35, -27], [10, -13], [5, -16], [1, -35], [2, -38], [20, -35], [7, -27], [12, -16], [14, -24], [3, -10], [6, -31], [3, -9], [6, -9], [9, -10], [16, -10], [16, -7], [28, 23], [183, 14], [20, 4], [27, -5], [49, -39], [111, -51], [20, -18], [13, -14], [10, -27], [3, -15], [11, -16], [9, -9], [74, -41], [4, -25], [1, -8], [6, -6], [14, -1], [78, 10], [40, 12], [8, 5], [18, -1], [118, -42], [12, -1], [14, 3], [21, 12], [18, 19], [10, 0], [14, -6], [41, -42], [17, -13], [17, -32], [18, -1], [41, 34], [-9, 32], [5, 30], [65, 82], [14, 21], [53, 101], [1, 11], [-1, 15], [-10, 23], [-10, 11], [-9, 8], [-37, 16], [-4, 12], [0, 24], [11, 52], [36, 64], [3, 7], [-5, 28]], [[8849, 23017], [125, -27], [29, 12], [-28, 47], [-85, 48], [-93, 11]], [[8797, 23108], [0, 1], [18, 70], [4, 22], [2, 25], [3, 11], [3, 8], [5, 7], [9, 9], [7, 8], [4, 9], [3, 27], [4, 11], [8, 1], [11, -1], [26, -6], [19, -11], [5, -5], [18, -13], [7, -7], [1, -10], [-6, -32], [-3, -17], [0, -10], [1, -7], [3, -4], [2, -3], [3, -2], [5, -3], [8, -3], [29, 15], [223, 178], [57, 17], [63, -13], [9, 0], [12, 7], [10, 10], [22, 56], [10, 15], [12, 8], [28, 9], [16, 3], [14, 0], [29, -5], [18, 11], [12, 11], [29, 118], [9, 12], [10, 9], [5, 4], [3, 1], [6, 0], [112, -25], [13, 1], [13, 8], [39, 35], [13, 7], [12, 2], [12, -1], [10, -3], [5, -6], [2, -9], [-4, -18], [-4, -9], [-26, -35], [-23, -44], [-9, -23], [-2, -11], [3, -8], [7, -13], [81, -58], [1, -2], [2, -20], [1, -23], [5, -21], [13, -11], [9, -6], [6, -9], [3, -15], [-3, -27], [-3, -13], [-7, -19], [-4, -12], [-4, -46], [-2, -50], [-2, -9], [-2, -5], [-5, -5], [-6, -4], [-22, -10], [-41, -10], [-6, -4], [-5, -6], [-1, -12], [3, -16], [15, -60], [4, -32], [-1, -25], [3, -19], [7, -13], [25, -13], [37, -11], [20, -21], [56, -89], [51, -27], [18, -15], [79, -82], [1, 1], [4, 1], [9, 1], [4, -1], [5, -19], [11, -65]], [[4642, 25337], [-12, -8], [-3, 15], [-9, 3], [-8, 16], [-10, 11], [-13, 12], [33, 3], [14, -15], [8, -37]], [[4708, 25372], [-36, -11], [-12, 19], [40, 12], [8, -20]], [[6867, 26393], [-98, -7], [-47, 16], [-25, 41], [25, 13], [4, 21], [-10, 22], [-19, 17], [72, 65], [80, 35], [89, 5], [99, -25], [-10, -5], [-5, -11], [-1, -16], [2, -21], [-41, -37], [-29, -46], [-33, -41], [-53, -26]], [[12224, 26431], [132, -238], [-284, 45], [-41, -22], [10, -15], [10, -7], [-91, -5], [-60, 9], [-25, 30], [4, 75], [-10, 29], [-33, 11], [-59, 2], [-24, -7], [-17, -22], [-17, 0], [-7, 27], [-8, 15], [-12, 0], [-27, -15], [-6, 50], [63, 148], [89, 82], [109, 18], [193, -79], [58, -47], [18, -22], [35, -62]], [[6374, 26516], [-65, -35], [-51, 1], [-28, 24], [-23, 53], [14, 59], [40, 30], [17, 7], [16, 10], [146, 59], [4, -40], [-18, -90], [-52, -78]], [[5674, 27279], [-3, -4], [-6, 1], [-7, -4], [-25, -25], [-23, -27], [113, -201], [44, -23], [-31, -25], [-77, -26], [-53, 46], [-43, 73], [-45, 57], [66, 117], [40, 42], [50, 17], [0, -18]], [[6157, 27222], [-19, -25], [-30, -10], [-39, 5], [-34, 12], [-20, 16], [-59, -22], [-73, 22], [-132, 77], [45, 77], [51, 46], [61, 23], [76, 6], [126, -7], [51, -30], [41, -65], [0, -25], [-19, -30], [-26, -70]], [[8111, 27647], [31, 0], [135, 64], [43, 50], [55, 21], [28, 48], [30, 22], [7, -132], [110, -38], [139, -7], [94, -39], [39, -28], [59, -24], [54, -36], [23, -63], [26, -35], [60, 10], [102, 37], [-8, 76], [53, 4], [73, -43], [52, -62], [31, -125], [15, -29], [20, -28], [42, -43], [-29, -21], [-29, 3], [-28, 12], [-22, 6], [2, -8], [-56, -42], [-7, 0], [-15, -10], [-10, 1], [-5, -8], [-1, -33], [33, -3], [59, 17], [59, 3], [34, -43], [24, 20], [26, 2], [13, -22], [-17, -52], [12, -51], [1, -72], [-13, -152], [-11, -65], [-15, -52], [-22, -42], [-29, -39], [-73, -64], [-91, -48], [-98, -31], [-95, -10], [0, -25], [98, -48], [546, 123], [43, -14], [136, -113], [-45, -43], [0, -40], [18, -45], [12, -59], [-13, -49], [-32, -46], [-41, -32], [-39, -12], [6, -8], [8, -6], [1, -12], [-15, -24], [24, -25], [7, -30], [-9, -35], [-22, -35], [50, 17], [37, 44], [53, 114], [30, 122], [17, 31], [22, 14], [86, 9], [31, 17], [15, 20], [12, 20], [21, 20], [25, 8], [97, -8], [49, -23], [137, -104], [357, -151], [202, -180], [93, -22], [103, 18], [77, 45], [129, 114], [74, 46], [78, 31], [189, 23], [0, -24], [-41, -2], [-56, -1], [39, -17], [39, 12], [53, -35], [159, 93], [71, -26], [-84, -89], [-24, -36], [-13, 11], [-35, 14], [25, -60], [21, -146], [17, -69], [-16, -46], [1, -63], [15, -105], [-9, -63], [-22, -33], [-22, -23], [-10, -32], [-263, -163], [-90, -111], [-40, -25], [-91, -30], [-18, 1], [-19, -17], [-15, 11], [-16, 16], [-21, 2], [-18, -11], [-9, -9], [-87, -130], [-23, -25], [0, -23], [30, -71], [33, -53], [43, -35], [62, -18], [87, 8], [23, -8], [16, -38], [2, -44], [9, -34], [33, -9], [9, -1]], [[11433, 24533], [-4, -14], [0, -96], [7, -10], [8, -14], [10, -7], [7, -5], [4, -3], [91, -28], [2, -4], [-2, -2], [-4, -1], [-4, -1], [-5, -4], [-9, -8], [-12, -8], [-63, -12], [-11, 0], [-2, 1], [-3, 2], [-4, 3], [-5, 6], [-1, 8], [0, 5], [2, 7], [3, 7], [0, 6], [-2, 4], [-28, 9], [-7, 4], [-7, 2], [-8, -1], [-54, -34], [-111, -100], [-44, -27], [-46, -20], [-13, -9], [-8, -9], [-18, -39], [-3, -10], [-6, -31], [-1, -8], [0, -7], [2, -9], [3, -9], [19, -43], [3, -9], [5, -32], [5, -24], [9, -42], [-4, -39], [-5, -29], [-20, -83], [-1, -10], [2, -5], [5, -5], [19, -3], [20, 0], [63, -17], [8, -7], [18, -22], [17, -29], [49, -62], [24, -21], [18, -10], [31, 7], [16, 0], [21, -3], [43, -16], [24, -16], [30, -28], [10, -15], [6, -13], [1, -11], [-2, -10], [1, -12], [3, -11], [19, -35], [2, -10], [1, -9], [-1, -10], [-1, -11], [1, -10], [0, -10], [-2, -9], [-4, -9], [-13, -13], [-18, -7], [2, -64], [28, -99], [2, -23], [-2, -16], [-7, -6], [-17, -9], [3, -3], [17, -3], [7, -7], [-2, -5], [-8, -8], [-12, -10], [-14, -27], [-11, -10], [-10, -4], [-7, 5], [-5, 7], [-2, 10], [-2, 22], [-3, 9], [-4, 9], [-4, 8], [-5, 7], [-8, 6], [-8, 4], [-10, 0], [-103, -15], [-10, 0], [-8, 3], [-19, 10], [-19, 0], [-8, -6], [-3, -10], [1, -10], [5, -31], [5, -19], [1, -12], [-2, -14], [-16, -34], [-4, -12], [0, -11], [-4, -20], [-1, -11], [2, -13], [-5, -6], [-35, -20], [-101, -78], [-11, -4], [-23, -4], [-44, -17], [-40, -7], [-8, -6], [-6, -8], [-7, -23], [-4, -14], [-6, -20], [-8, -8], [-10, -3], [-27, 9], [-12, -1], [-18, -4], [-32, -15], [-14, -11], [-9, -11], [-3, -10], [-19, -116], [-2, -22], [1, -12], [1, -10], [-3, -16], [-8, -23], [-23, -37], [-25, -33]], [[8797, 23108], [-110, 12], [-83, 32], [-163, 102], [-74, 81], [-27, 117], [-6, 100], [-9, 64], [-23, 20], [-106, 57], [-34, 12], [-55, 49], [-53, 110], [-36, 118], [-3, 74], [-83, 31], [-142, 119], [-86, 50], [-84, 19], [-288, 6], [-86, 38], [-57, 16], [-27, -16], [-23, -38], [-53, 17], [-79, 58], [-76, 90], [-187, 363], [87, 38], [42, 4], [55, -15], [88, -57], [49, -15], [50, 22], [17, 40], [18, 73], [13, 79], [-1, 56], [-26, 38], [-42, 36], [-31, 37], [7, 42], [0, 23], [-56, 16], [-79, -14], [-73, -34], [-41, -44], [-15, 0], [-62, 103], [-40, 82], [-7, 18], [19, 74], [34, 63], [24, 58], [-16, 55], [0, 25], [28, 21], [96, 26], [39, 3], [23, 19], [35, 46], [36, 58], [22, 55], [-51, -10], [-86, -70], [-48, -20], [4, 12], [7, 26], [4, 12], [-68, -8], [-118, -34], [-70, -8], [-81, 13], [-35, -13], [-75, -69], [-27, -9], [-60, 21], [-64, 56], [-47, 81], [-6, 95], [32, 38], [61, 27], [70, 13], [53, -3], [0, 25], [-41, 9], [-31, 29], [-30, 8], [-35, -46], [-20, 41], [7, 41], [21, 38], [23, 31], [48, -21], [183, 48], [249, 0], [57, 14], [48, 29], [96, 80], [87, 40], [38, 28], [15, 59], [0, 89], [-58, 84], [-184, 189], [-27, 39], [-11, 38], [-20, 17], [-47, -1], [-48, -13], [-25, -16], [-16, 27], [78, 50], [-79, 200], [-29, 51], [-65, 38], [-123, 101], [-76, 36], [0, 25], [12, 66], [-29, 75], [-44, 73], [-30, 63], [-13, 97], [10, 85], [30, 106], [80, -23], [83, -3], [154, 54], [53, 7], [181, -29], [178, -68], [479, -106], [38, -32], [11, -37], [6, -51], [17, -43], [40, -16], [165, 0], [34, 6], [22, 21], [32, 9], [25, 20], [41, 9], [46, -40], [38, -4], [33, 10], [2, 1]], [[5737, 27955], [109, -26], [493, 23], [-57, -42], [-282, 15], [-36, -18], [-62, -46], [-34, -9], [-156, 0], [-15, 7], [-20, 32], [-19, 9], [-21, -1], [-15, -5], [-69, -45], [-11, -10], [-6, -27], [-4, -72], [-6, -15], [7, -201], [-5, -65], [-12, -51], [-14, -10], [-15, 51], [-2, 97], [26, 398], [22, 78], [171, 449], [95, 111], [108, -54], [-138, -7], [-18, -18], [63, -6], [18, -45], [-20, -50], [-92, -48], [-43, -60], [-23, -74], [20, -68], [-14, -130], [77, -67]], [[5311, 6187], [1, 1], [-27, 26], [-222, 50], [-359, 204], [-41, 5], [-128, -15], [-189, 58], [-25, -7], [-53, -31], [-27, -7], [-22, 3], [-48, 18], [-25, 5], [-28, -7], [-27, -12], [-27, -7], [-9, 2], [-22, 5], [-21, 20], [-22, 47], [-17, 22], [-50, 28], [-99, 18], [-50, 34], [-29, 40], [-51, 88], [-32, 35], [4, 13], [5, 8], [17, 12], [-15, 53], [-41, 16], [-97, 7], [-10, 40], [-44, 4], [-44, -14]], [[3437, 6949], [-1, 2], [-5, 9], [-45, -2], [-43, 40], [-80, 94], [-2, 8], [-3, 36], [-5, 21], [-8, 29], [0, 18], [3, 17], [14, 30], [3, 6], [2, 1], [8, 2], [5, 0], [4, -1], [2, -1], [2, -1], [4, 0], [10, 1], [6, 3], [5, 3], [4, 4], [4, 5], [6, 8], [15, 28], [8, 28], [3, 27], [3, 14], [3, 11], [6, 10], [7, 8], [15, 14], [7, 11], [4, 15], [5, 40], [4, 11], [11, 12], [26, 20], [9, 11], [9, 12], [10, 22], [2, 13], [-3, 13], [-7, 16], [1, 13], [2, 7], [13, 26], [-13, 33], [-22, 13], [-54, 22], [-114, 20], [-22, 15], [5, 9], [2, 4], [1, 4], [2, 3], [-5, 16], [-39, 49], [-54, 69], [-14, 56], [11, 18], [9, 2], [11, 11], [44, 59], [19, 18], [17, 12], [23, 12], [7, 12], [1, 18], [-2, 25], [-2, 12], [-3, 8], [-5, 2], [-9, 3], [-9, 1], [-5, 11], [-2, 17], [0, 49], [-4, 33], [-26, 54], [-13, 47], [-1, 55], [-6, 4], [-7, 2], [-13, -9], [-13, -13], [-20, -15], [-21, -8], [-42, -10], [-24, 4], [-14, 3], [-6, 7], [-7, 10], [-84, 63], [-49, 50], [-11, 5], [-138, 5], [-15, 5], [-12, 10], [-139, 80], [-45, -36], [-17, -3], [-21, 18], [-30, 14], [-15, 2], [-13, -3], [-173, -120], [-334, -162], [-34, -8], [-8, -1], [-54, 6], [-146, -71], [-261, 14], [-302, -29], [-17, -3]], [[1123, 8266], [4, 35], [0, 117], [13, 40], [34, 56], [59, 77], [23, 50], [17, 26], [6, 17], [-2, 24], [-14, 14], [-14, 11], [-4, 12], [35, 51], [166, 114], [-4, 8], [-16, 19], [8, 17], [11, 6], [19, -8], [-16, 22], [-11, 27], [-5, 30], [2, 32], [22, 21], [1, 14], [-6, 16], [0, 26], [11, 80], [3, 2], [0, 31], [5, 5], [1, 0], [-12, 14], [-9, 0], [-70, 22], [-108, 0], [-40, 11], [-38, 26], [-65, 65], [-39, 25], [-20, 1], [-33, -22], [-19, 2], [-2, 12], [-14, 38], [-9, 25], [-10, 20], [-33, 23], [-77, 36], [-35, 37], [-75, 188], [-39, 66], [-24, -51], [-18, 32], [-34, 103], [-39, 62], [-10, 30], [6, 41], [-14, 76], [-15, 31], [-24, 14], [21, 43], [8, 12], [-5, 1], [-13, -1], [-4, 2], [14, 103], [11, 51], [16, 53], [20, 25], [7, 25], [-8, 22], [-23, 19], [5, 18], [7, 42], [4, 12], [20, 12], [45, 4], [17, 11], [13, 35], [2, 41], [-13, 42], [-30, 35], [23, 32], [52, 37], [22, 36], [47, 23], [97, 29], [42, 39], [-10, 33], [4, 37], [15, 35], [23, 28], [30, 19], [26, -3], [25, -10], [31, -6], [60, 12], [28, 31], [-3, 28]], [[3437, 6949], [-9, -3], [-38, -22], [-10, -19], [-17, -53], [-11, -20], [-17, -9], [-47, -6], [-20, -7], [-14, -19], [-24, -51], [-13, -15], [-14, 2], [-61, 31], [-195, 2], [-36, 12], [-35, 20], [-87, 67], [-12, 2], [-21, -22], [2, -20], [7, -19], [-3, -19], [-70, -46], [-49, 41], [-27, 101], [2, 129], [-49, 3], [-142, 85], [-25, 4], [-66, -7], [-94, 23], [-23, -6], [-13, -51], [17, -59], [9, -61], [-39, -55], [-29, -7], [-88, 34], [-101, 1], [-26, 12], [-29, 52], [6, 45], [11, 46], [-14, 58], [-9, 0], [-30, -21], [-10, -1], [-7, 13], [-4, 29], [-3, 8], [-7, 15], [-18, 68], [-9, 11], [-32, 12], [-12, 10], [-2, 15], [4, 37], [-3, 15], [-151, 154], [-37, 49], [-15, 42], [13, 34], [40, 2], [10, 30], [-8, 22], [-110, 123], [-16, 25], [5, 1], [-1, 21], [-6, 30], [-14, 30], [-38, 40], [-208, 110], [-25, 4], [-19, -7], [-43, -31], [-24, -5], [-19, 2], [0, 27], [-7, 111], [15, 118]], [[13694, 11529], [59, 7], [20, -9], [8, -15], [4, -7], [5, -6], [4, -6], [24, -41], [47, -32], [9, -17], [-4, -8], [-2, -11], [-1, -16], [9, -72], [8, -9], [21, -10], [93, -64], [8, -4], [10, -3], [10, 0], [30, 3], [64, -19], [16, -30], [1, -2]], [[14137, 11158], [-57, 5], [52, -57], [19, -32], [8, -53], [-4, -47], [-15, -17], [-24, -16], [-28, -44], [23, -43], [112, -73], [56, -63], [25, -41], [17, -44], [7, -55], [-16, -83], [1, -55], [20, -56], [32, -30], [36, -22], [33, -30], [20, -36], [5, -37], [0, -34], [8, -23], [342, -192], [2, 0], [35, -35], [83, -9], [38, -38], [6, -54], [-16, -49], [-2, -40], [92, -57], [33, -13], [14, -26], [-7, -72], [-19, -56], [-52, -101], [-16, -56], [-46, 14], [-14, -52], [-1, -77], [-7, -60], [-36, -38], [-93, -42], [-27, -55], [11, -39], [23, -47], [47, -70], [33, -31], [34, -25], [76, -38], [31, -17], [19, -39], [1, -49], [-19, -45], [6, -5], [18, -9], [-11, -29], [-1, -9], [23, -29], [54, -31], [24, -28], [15, -40], [11, -81], [9, -43], [15, -44], [14, -33], [18, -27], [24, -27], [26, -9], [24, 4], [16, -14], [3, -62], [7, -121], [11, -59], [26, -53], [44, -39], [104, -52], [46, -50], [74, -175], [36, -40], [45, -17], [133, -20], [42, 6], [-10, 47], [31, 10], [87, -25], [38, -22], [33, -28], [64, -71], [39, -18], [13, -29], [3, -36], [10, -34], [72, -91], [1, -1], [28, -17], [211, -305], [30, -72], [36, -62], [64, -40], [137, -7], [45, -18], [28, -26], [69, -98], [96, -104], [25, -64], [1, -103], [33, -56], [65, -65], [72, -55], [52, -27], [24, 64], [21, 40], [32, 16], [14, -3], [38, -9], [39, -26], [39, -33], [38, -22], [41, 5], [6, -70], [24, -67], [35, -57], [39, -41], [43, -22], [84, -14], [32, -19], [52, -87], [110, -234], [44, -49], [-68, -152], [-5, -35], [12, 4], [24, -51], [11, -11], [28, -14], [-30, -31], [-6, -44], [12, -118], [-1, -62], [-7, -53], [-14, -48], [-39, -90], [-11, -18], [-19, -20], [-18, -8], [-47, -8], [-7, 2], [-20, -42], [-20, -98], [-5, 6], [-92, 45], [-35, 57], [-37, 29], [-39, 23], [-235, 71], [-75, -11], [-74, -30], [-21, -21], [-12, -25], [1, -13], [7, -17], [9, -66], [21, -35], [5, -32], [-6, -36], [-30, -70], [-11, -33], [-4, -34], [4, -104], [-5, -38], [-10, -25], [-10, -19], [-5, -19], [-13, -78], [-31, -57], [-221, -209], [-76, -46], [-312, -59], [-235, -101], [-36, -28], [-84, -87], [-73, -44], [-35, -31], [3, -9], [-125, -26], [-35, -20], [-20, -24], [-42, -71], [-29, -37], [-90, -68], [-9, -12], [-32, -55], [-14, -7], [-15, 1], [-14, -6], [-14, -26], [-5, -50], [12, -48], [20, -44], [21, -36], [159, -181], [34, -82], [6, -40], [1, -5], [12, -38], [18, -29], [54, -36], [46, -51], [18, -11], [38, -41], [77, -194], [49, -79], [10, -12], [-145, -255], [-13, -29], [-4, -24], [-1, -23], [-4, -24], [-14, -26], [-1, -1], [-42, -71], [37, -41], [126, -26], [34, 7], [57, 27], [35, -6], [28, -23], [28, -37], [44, -83], [18, -53], [7, -47], [-2, -44], [-5, -45], [-5, -8], [-27, -72], [-2, -11], [-36, -52], [-6, 2], [2, -83], [5, 2], [-3, -5], [-21, -59], [-6, -10], [0, -64], [2, -23], [5, -20], [7, -18], [6, -23], [1, -30], [-65, -84], [-15, -15], [-25, -2], [-14, 10], [-12, 15], [-22, 12], [-24, 0], [-18, -12], [-20, -7], [-24, 11], [-111, 92], [-104, 125], [-19, 17], [-21, 8], [-35, 7], [-56, 49], [-12, 91], [28, 85], [62, 33], [-45, 48], [-59, 42], [-36, 48], [24, 64], [-39, -5], [-127, 36], [-81, 0], [-80, -22], [-43, -23], [-79, -78], [-22, -21], [-35, -17], [-48, -10], [-47, 1], [-31, 17], [-68, 59], [-18, 24], [-12, 30], [-24, 79], [-10, 21], [-38, 8], [-89, -38], [-38, -6], [-131, 30], [-49, -8], [-50, -29], [-25, -4], [-22, 22], [-13, 41], [8, 25], [14, 22], [8, 29], [6, 39], [7, 17], [-6, -1], [-33, -16], [-19, -13], [-55, -50], [-35, -16], [4, -30], [7, -20], [17, -24], [18, -20], [12, -9], [6, -20], [4, -98], [-3, -34], [-8, -24], [-64, -90], [-18, -4], [-520, 24], [-190, -42], [-25, -17], [-23, -62], [-23, -9], [-128, 29], [-184, 1], [-99, 22], [-42, 1], [-7, -11], [-64, -60], [-15, -38], [-18, -85], [-11, -34], [-41, -50], [-49, -22], [-107, -19], [-51, 18], [-55, 8], [-52, -13], [-107, -135], [28, -9], [25, -17], [8, -28], [-19, -36], [-37, -17], [-98, -3], [-42, -15], [-44, -44], [-30, -45], [-32, -38], [-49, -25], [-54, 7], [4, 100], [-48, 22], [-57, -17], [-148, -113], [-44, -15], [-236, 4], [-31, 20], [-24, 50], [6, 0], [7, 17], [5, 26], [-1, 24], [-6, 17], [-113, 134], [-117, 59], [-15, 29], [73, 55], [19, 25], [-52, 43], [-24, 15], [-32, 2], [-32, -10], [-91, -46], [-67, -9], [-19, 7], [-11, 17], [-8, 19], [-9, 12], [-298, 124], [-55, 0], [-32, -24], [-45, -70], [-29, -25], [-27, -5], [-96, 16], [-35, 18], [-19, 14], [-12, 17], [-4, 31], [9, 24], [11, 17], [2, 15], [-10, 34], [-8, 7], [-17, -8], [-38, -7], [-34, -15], [4, -32], [19, -40], [15, -41], [-3, -34], [-22, -146], [31, -19], [20, -24], [12, -32], [9, -46], [1, -78], [-21, -83], [-33, -74], [-37, -55], [-20, -14], [-48, -19], [-23, -17], [-14, -23], [-50, -111], [-40, -61], [-45, -44], [-101, -69], [-49, -21], [-146, -19], [-34, -5], [-10, 6], [9, 23], [21, 42], [9, 7], [30, 10], [11, 11], [5, 25], [-1, 22], [-5, 24], [41, 136], [2, 66], [-42, 24], [-99, -19], [-27, -33], [-10, -8], [-11, 0], [-24, 15], [-11, 2], [-30, -16], [-17, -14], [-15, 0], [-22, 23], [-12, 35], [-3, 40], [-6, 38], [-24, 31], [51, 44], [11, 39], [-20, 43], [-112, 179], [-25, -13], [-20, -19], [-20, -10], [-25, 17], [-4, 21], [0, 11], [0, 11], [-21, 50], [-28, 31], [-24, 34], [-6, 61], [-27, -24], [-35, -8], [-67, 6], [-68, 28], [-11, -4], [-28, -19], [-18, -2], [-47, 26], [-8, 39], [4, 45], [-7, 43], [-27, 32], [-32, 13], [-34, -5], [-32, -19], [-50, -63], [-28, -66], [-95, 27], [-94, 74], [-61, 34]], [[17304, 19701], [3, -10], [0, -8], [-4, -34], [-3, -19], [0, -17], [2, -21], [1, -3], [6, -10], [149, -172], [49, -37], [28, -10], [19, -19], [34, -15], [47, -7], [2, -28], [-52, -123], [-4, -28], [6, -13], [87, 10], [29, -15], [43, -54], [90, -41], [14, -12], [19, -23], [0, -12], [-3, -7], [-15, -13], [-7, -7], [-3, -12], [-1, -12], [1, -23], [-4, -14], [-5, -12], [-42, -34], [-8, -9], [-9, -12], [-9, -25], [0, -21], [6, -33], [-1, -19], [-3, -13], [-4, -9], [-5, -7], [-3, -3], [-5, -4], [-4, -2], [-51, -17], [-5, -3], [-10, -9], [-29, -63], [-22, -2], [-2, 6], [-2, 5], [0, 9], [-3, 49], [-9, 56], [-11, 22], [-13, 9], [-26, -4], [-12, 2], [-57, 18], [-43, 25], [-85, 34], [-19, 0], [-12, -5], [-5, -7], [-7, -6], [-7, -4], [-6, -3], [-19, -1], [-24, 3], [-11, 7], [-8, 11], [-6, 15], [-12, 22], [-11, 8], [-11, 3], [-21, -3], [-35, -13], [-8, -4], [-6, -6], [-5, -8], [-2, -11], [0, -10], [1, -10], [5, -19], [2, -11], [0, -10], [-5, -25], [-71, 0], [-42, 20], [-9, 11], [-14, 21], [-24, 24], [-12, 15], [-8, 5], [-21, -5], [-54, -20], [-8, 2], [-10, 4], [-13, 30], [-7, 13], [-4, 4], [-4, -1], [-3, -2], [-12, -8], [-62, -24], [-14, -3], [-9, 2], [-20, 22], [-29, 17], [-16, 5], [-12, 0], [-94, -44], [-7, -6], [-7, -7], [-7, -13], [-9, -4], [-7, -1], [-78, 16], [-9, 3], [-13, 8], [-39, 29], [-5, 5], [-1, 1], [-1, 2], [0, 4], [1, 5], [3, 8], [22, 26], [2, 3], [3, 6], [0, 6], [1, 8], [3, 9], [6, 7], [6, 6], [9, 8], [1, 4], [-12, 22], [-3, 9], [-3, 20], [0, 12], [3, 23], [6, 23], [3, 10], [5, 8], [7, 6], [16, 8], [7, 6], [61, 72], [-1, 11], [1, 10], [-36, 64], [6, 101], [10, 54], [1, 33], [-2, 20], [-6, 15], [1, 10], [4, 10], [4, 8], [8, 19], [6, 6], [5, 3], [17, -8], [97, -42], [21, 2], [0, 8], [-2, 7], [-2, 6], [-7, 12], [-4, 8], [-2, 9], [0, 10], [2, 11], [2, 11], [22, 60], [6, 4], [66, 10], [20, 12], [25, 22], [9, 17], [8, 17], [5, 20], [8, 8], [7, 4], [26, -1], [5, -3], [-2, -5], [-3, -5], [-2, -7], [7, -16], [2, -9], [-1, -34], [3, -8], [6, -7], [7, -6], [37, -16], [85, -6], [23, 5], [13, 5], [5, 7], [3, 10], [12, 22], [53, 43], [43, -28], [6, 0], [10, 2], [4, 10], [5, 11], [6, 9], [53, 50], [12, 0], [7, -7], [6, -14], [9, -13], [37, -33], [3, -6]], [[16310, 15930], [-40, 10], [-48, 51], [-17, 12], [-15, 6], [-16, -6], [-11, -7], [-14, -15], [-29, -5], [-31, 38], [-50, 26], [-28, 4], [-34, 13], [-28, 21], [-25, 53], [-66, -6], [-20, -31], [-118, -100], [-44, -21], [-66, 30], [-84, 11], [-33, -19], [-23, -39], [-17, -35], [-17, -20], [-30, -21], [-16, -4], [-10, 3], [-5, 8], [-6, 7], [-10, 4], [-218, -38], [-29, 21], [-165, 9], [-15, -2], [-21, -8], [-9, -71], [-3, -14], [-7, -16], [-10, -6], [-168, -17], [-114, -57], [-18, -4], [-69, 8], [-35, 14], [-21, 13], [-17, 6], [-6, -6], [-4, -8], [-2, -15], [-4, -19], [-4, -10], [-3, -7], [-6, -7], [-61, -51], [0, -171], [-11, -44], [-7, -4], [-8, -6], [-5, -6], [-14, -25], [-5, -6], [-26, -18], [-11, -12], [-2, -11], [2, -11], [3, -10], [0, -43], [1, -11], [4, -8], [5, -7], [11, -27], [8, -83], [-2, -59], [2, -11], [7, -19], [9, -19], [15, -40], [3, -28], [0, -26], [-3, -20], [-4, -13], [-3, -10], [-5, -8], [-7, -5], [-8, -3], [-33, -2], [-13, -8], [-15, -15], [-20, -40], [-8, -22], [-3, -18], [1, -10], [1, -8], [2, -6], [2, -7], [5, -8], [7, -28], [3, -75], [44, -60], [8, -37], [8, -107], [-1, -11], [-3, -10], [-3, -9], [-4, -9], [-10, -16], [-13, -18], [1, -27], [21, -10], [49, -12], [-11, -100], [21, -44], [41, -36], [10, -13], [3, -15], [-1, -16], [6, -30], [8, -13], [10, -9], [94, -19]], [[12961, 21165], [100, 28], [23, -15], [1, -25], [0, -9], [-13, -35], [-19, -19], [31, -15], [75, -3], [26, -19], [16, -47], [4, -35], [11, -22], [40, -7], [22, 8], [58, 33], [36, 7], [68, -102], [32, -25], [71, -3], [27, -16], [-12, -43], [-27, -40], [-3, -16], [146, -97], [23, -8], [41, -5], [30, -12], [62, -36], [39, -8], [34, 14], [56, -2], [159, 20], [9, -2], [9, -5], [14, -17], [8, -15], [4, -11], [-2, -42], [33, -4], [23, 1], [78, 24], [10, 1], [10, -4], [28, -13], [26, -7], [11, -16], [13, -26], [44, -140], [1, -24], [-10, -41], [-73, -60], [-5, -11], [-2, -14], [6, -27], [6, -15], [7, -11], [9, -10], [4, -13], [1, -10], [-8, -12], [-22, -21], [-10, -15], [-2, -11], [1, -12], [6, -17], [7, -10], [12, -17], [5, -12], [4, -16], [5, -25], [6, -13], [7, -9], [21, -18], [7, -8], [5, -11], [0, -30], [-5, -34], [-23, -71], [-13, -28], [-12, -17], [-23, -14], [-20, -5], [-44, 3], [-10, -2], [-6, -21], [-5, -37], [-4, -87], [-5, -37], [-5, -24], [-60, -91], [-2, -8], [1, -7], [14, -5], [11, 0], [22, 4], [23, 1], [10, -2], [6, -6], [2, -8], [-9, -13], [-7, -9], [-7, -8], [-11, -14], [-3, -11], [-1, -13], [4, -19], [4, -11], [8, -9], [7, -6], [29, -8], [31, 6], [17, 8], [7, 5], [6, 7], [6, 7], [5, 8], [3, 9], [6, 34], [3, 9], [5, 8], [8, 4], [12, -1], [12, -5], [17, -14], [12, -16], [34, -56], [13, -11], [11, -3], [8, 4], [8, 2], [9, 0], [9, -2], [10, 1], [8, 3], [16, 9], [7, -1], [3, -6], [-10, -21], [-6, -16], [-1, -25], [3, -29], [-3, -15], [-2, -11], [-26, -46], [-21, -56], [-13, -21], [-25, -16], [-4, -6], [-1, -9], [5, -12], [4, -7], [10, -14], [4, -9], [0, -14], [-2, -20], [-16, -49], [-9, -21], [-27, -50], [-3, -9], [-1, -11], [5, -15], [-1, -12], [-5, -14], [-4, -14], [5, -28], [4, -16], [3, -12], [1, -11], [-3, -14], [-28, -49], [-6, -19], [-3, -10], [-6, -20], [-15, -37], [-3, -9], [-3, -19], [1, -28], [7, -56], [12, -20], [12, -10], [22, -3], [9, -8], [7, -11], [8, -21], [13, -19], [5, -5], [-3, -12], [-4, -7], [-52, -55], [-29, -92], [-17, -27], [-4, -12], [-2, -10], [20, -57], [20, -44], [7, -9], [60, -59], [15, -49], [8, -13], [9, -9], [46, -23], [42, -46], [140, -190], [6, -25], [1, -10], [0, -11], [2, -19], [13, -14], [19, -19], [68, -47], [26, -24], [11, -5], [14, -3], [27, 1], [14, 4], [9, 7], [7, 18], [6, 8], [6, 5], [9, 1], [12, -6], [13, -10], [45, -61], [106, -83], [39, -23], [105, -23], [31, 32], [29, 18], [27, 13], [11, 12], [5, 12], [0, 11], [3, 9], [14, 1], [13, -1], [88, -52], [202, -125], [25, -7], [87, -10], [34, -24], [11, -24], [18, -57], [11, -8], [18, -4], [104, -2], [46, -8], [24, -12], [28, -25], [13, -18], [10, -21], [16, -17], [127, -90], [42, -16], [150, 18], [16, -4], [20, -26], [11, -10], [17, -8], [10, 15], [18, 36], [14, 11], [12, 2], [75, -5], [43, -19], [-19, -46], [-78, -87], [-69, -110], [-12, -26], [-4, -26], [2, -97], [4, -27], [13, -41], [22, -37], [16, -42], [-7, -43], [-63, -87], [-136, -108], [-19, -19], [-46, -85]], [[16310, 15930], [26, -10], [63, -79], [31, -22], [18, -7], [10, 4], [7, 6], [8, 3], [8, 0], [8, -4], [29, -26], [28, -19], [7, -9], [5, -17], [-4, -26], [-4, -16], [-5, -12], [-1, -22], [22, -32], [48, -29], [8, -16], [8, -23], [12, -52], [4, -27], [1, -21], [-7, -16], [-9, -8], [-17, -11], [-7, -5], [-5, -7], [-4, -7], [7, -23], [13, -12], [5, -31], [-6, -40], [2, -53], [-11, -37], [-6, -11], [-5, -7], [-26, -24], [-5, -7], [-2, -9], [0, -11], [1, -12], [4, -15], [3, -11], [8, -20], [7, -5], [8, -5], [14, 21], [11, 11], [11, 13], [25, -4], [11, 24], [29, -6], [15, -10], [30, -49], [42, 12], [209, 72], [33, 18], [22, 24], [23, 8], [30, -2], [106, -52], [32, -29], [17, -21], [27, -15], [31, -25], [38, -57], [27, -12], [26, 7], [22, 2], [30, -5], [104, -35], [264, -19], [80, -8], [242, 31], [147, 18], [17, -5], [23, -4], [11, -7], [13, 4], [9, 4], [39, 69], [127, 184], [35, 83], [3, 29], [1, 28], [13, 28], [89, 117], [28, 26], [91, 51], [141, 35], [108, -15], [81, -30], [77, -52], [87, 21], [299, 151], [98, 28], [47, 2], [50, -9], [56, -34], [98, -41], [97, -5], [1, 0]], [[20032, 15657], [7, -38], [50, -53], [148, -51], [48, -34], [0, -1], [51, -29], [106, -32], [52, -25], [35, -28], [42, -45], [23, -50], [-19, -46], [8, -97], [14, -155], [0, -4], [10, -65], [6, -26], [42, -74], [51, -62], [33, -72], [-12, -106], [9, -11], [9, -11], [-39, -77], [-30, -98], [-19, -103], [-2, -93], [-5, -47], [-15, -24], [-18, -17], [-12, -25], [-4, -36], [0, -71], [-7, -42], [-101, -262], [-114, -278], [-81, -92], [-32, -54], [0, -68], [-36, -98], [-21, -43], [-22, -26], [-37, -10], [-49, 2], [-84, 19], [-86, 68], [-32, 18], [-79, 23], [-11, 27], [8, 66], [38, 92], [13, 49], [-12, 41], [-27, 1], [-125, -53], [-26, 21], [12, 44], [27, 53], [18, 44], [4, 55], [-7, 36], [-17, 29], [-28, 34], [-27, 23], [-61, 15], [-28, 20], [-22, 30], [-7, 22], [-5, 22], [-13, 31], [-20, -50], [-26, -14], [-82, 5], [-63, -29], [-25, 1], [-25, 13], [-15, 20], [-12, 21], [-17, 16], [-84, 28], [-72, -12], [-54, -56], [-32, -106], [-25, -37], [26, -18], [77, -10], [45, -19], [-4, -7], [-19, -14], [-2, -38], [58, -59], [83, -25], [61, -36], [-14, -91], [-66, -58], [-178, 14], [-81, -17], [-25, -25], [-41, -64], [-28, -27], [-352, -166], [-44, -3], [-83, 11], [-44, -10], [-24, -18], [-35, -45], [-23, -18], [-28, -4], [-22, 7], [-19, -1], [-21, -26], [-10, -36], [3, -31], [5, -26], [-1, -19], [-15, -23], [-13, -5], [-14, 0], [-66, -42], [-40, -9], [-104, 12], [-49, -5], [-86, -33], [-44, -9], [-203, 2], [-102, -20], [-93, -58], [26, -56], [-9, -50], [-30, -40], [-38, -29], [14, -30], [-3, -22], [-13, -17], [-23, -13], [-39, -51], [-38, -36], [-42, -11], [-51, 26], [-15, 19], [-32, 56], [-12, 14], [-27, 10], [-7, -4], [-1, -14], [-14, -15], [-85, -62], [-12, -23], [-24, -75], [-48, -25], [-37, 18], [-37, 26], [-44, 4], [-75, -208], [-33, -60], [-55, -43], [-120, 7], [-64, -23], [0, 0], [0, 0], [-21, -6], [-21, -2], [-21, 2], [-20, 6], [-18, 14], [-18, 4], [-19, -5], [-19, -13], [-15, -150], [-14, -67], [-32, -39], [-50, -50], [-18, -19], [-77, 5], [-210, 132], [-19, 6], [-20, -5], [-32, -22], [-14, -5], [-40, 6], [-37, -3], [-37, -13], [-29, -30], [-50, -81], [-25, -25], [-29, -3], [-121, 23], [-170, -14], [-91, -27], [-62, -56], [-17, -15], [-8, -18], [-5, -19], [-6, -16], [1, -8], [3, -12], [1, -15], [-5, -13], [-9, -5], [-20, 0], [-9, -5], [-26, -25], [-67, -38], [-24, -25], [-70, -133], [-26, -28], [-25, -18], [-19, -29], [-6, -58], [-45, -59], [-12, -35], [-7, -65], [7, -46], [13, -39], [0, -32], [-31, -24], [-39, 5], [-23, 37], [-27, 101], [-2, 19], [-4, 21], [-10, 24], [-9, 14], [-40, 42], [-6, 8], [-2, 8], [2, 8], [6, 7], [3, 2], [3, 2], [3, 2], [3, 0], [10, 21], [2, 17], [-8, 13], [-16, 9], [-65, 2], [-33, 10], [-25, 24], [-9, 28], [1, 63], [-14, 34], [-43, 32], [-109, 8]], [[19318, 22233], [15, -69], [4, -31], [1, -66], [7, -36], [14, -24], [35, -28], [8, -21], [30, -26], [-59, -113], [-17, -25], [-24, -12], [-22, -33], [-16, -45], [-6, -48], [8, -60], [13, -52], [5, -53], [-68, -208], [-6, -30], [-31, -66], [-69, -72], [-133, -104], [-138, -70], [-109, -80], [0, -23], [13, -36], [28, -131], [5, -45], [-9, -70], [-24, -44], [-60, -51], [26, -52], [39, -30], [48, -15], [50, -3], [45, -20], [74, -86], [62, -33], [240, -174], [35, -40], [78, -151], [23, -22], [44, -20], [65, -88], [135, -53], [131, -146], [13, -14], [71, -57], [-64, -132], [-17, -85], [42, -38], [10, -39], [-37, -86], [-55, -86], [-117, -103], [13, -145], [53, -160], [48, -107], [-14, -67], [51, -57], [77, -39], [64, -15], [63, -27], [35, -65], [0, -75], [-44, -58], [0, -23], [32, -51], [-8, -52], [-25, -67], [-13, -95], [22, -53], [147, -110], [-41, -52], [-18, -31], [-7, -33], [-4, -33], [-10, -35], [-49, -89], [-12, -35], [-8, -224], [-19, -72], [-35, -66], [-41, -56], [-130, -133], [-30, -63], [7, -78], [37, -57], [41, -29], [31, -42], [9, -97], [24, -93], [51, -60], [110, -92], [29, -64], [22, -93], [4, -96], [-27, -74], [-44, -70], [-18, -71], [5, -27]], [[12266, 21439], [1, 0], [49, 6], [53, -11], [74, 0], [52, -23], [43, -6], [3, 52], [7, 39], [35, 18], [74, 0], [64, -35], [59, -34], [60, 6], [46, 34], [16, 59], [-10, 26], [-6, 62], [-7, 25], [-12, 21], [-17, 18], [-6, 28], [14, 36], [100, 90], [44, 29], [123, 45], [78, 4], [27, -9], [71, -57], [29, -63], [45, 28], [50, 17], [49, 0], [70, -5], [-7, 51], [-45, 35], [20, 13], [20, 7], [61, -15], [53, 63], [88, 42], [38, 10], [43, -18], [46, 46], [39, 28], [35, 6], [21, 57], [3, 51], [60, 40], [33, 59], [12, -1], [21, 8], [39, 21], [33, 5], [19, 7], [10, 0], [13, -5], [35, -38], [10, -3], [15, 6], [9, 5], [45, 35], [18, 7], [11, 1], [13, -3], [14, -7], [15, -21], [20, -41], [16, -24], [17, -8], [142, -35], [82, -47], [14, -8], [68, -52], [9, -11], [12, -12], [5, -7], [14, -12], [64, -35], [7, -8], [20, -31], [7, -7], [14, -5], [21, -3], [81, 6], [35, 12], [35, 5], [240, -60], [12, 0], [31, -15], [61, -60], [95, -26], [56, -3], [19, -12], [5, -52], [-1, -25], [2, -8], [3, -10], [5, -7], [6, -5], [11, -7], [12, -2], [16, -1], [99, 22], [32, -2], [16, -5], [16, -6], [32, -27], [15, -7], [18, -2], [36, 3], [17, 5], [21, 9], [16, 3], [61, 0], [17, 5], [12, 7], [7, 5], [9, -1], [9, -6], [5, -17], [-3, -10], [-6, -7], [-15, -11], [-6, -7], [-4, -7], [4, -12], [13, -11], [54, -23], [58, 10], [57, 56], [10, 16], [24, 28], [13, 11], [66, 41], [30, 29], [20, 14], [8, 8], [5, 7], [5, 8], [2, 7], [3, 6], [1, 8], [5, 20], [4, 9], [8, 9], [11, 8], [19, 10], [13, 9], [6, 11], [8, 8], [9, 7], [19, 6], [16, -2], [16, -8], [29, -36], [15, -29], [5, -8], [28, -13], [64, 0], [8, 38], [3, 25], [2, 11], [7, 18], [23, 48], [12, 19], [26, 24], [36, 18], [59, 5], [48, -9], [50, -23], [41, -25], [41, -10], [40, 14], [119, 93], [24, 8], [26, 23], [30, 39], [31, 85], [42, 88], [12, 70], [18, 41], [31, 29], [42, 22], [81, 3], [51, 46], [42, 74], [137, 114], [81, 12], [78, -6], [67, 29], [-11, 45], [-57, 103], [4, 68], [39, -5], [56, -86], [106, -40], [3, -80], [66, -115], [12, -50], [35, -51], [158, 11], [135, -10], [48, -19], [57, -11], [46, 63], [56, 11], [81, -40], [95, 6], [53, -11], [3, -97], [-10, -69], [-36, -80], [-81, -125], [-190, -125], [-3, -27], [1, -44], [95, -14], [86, -21], [149, -14], [31, 22], [14, 52], [60, 28], [64, 80], [153, 92], [0, 0]], [[12772, 24759], [-67, -191], [-24, -34], [-28, -1], [-2, 25], [16, 64], [-10, 43], [-19, 0], [-12, -31], [10, -50], [-33, -27], [-36, 2], [-37, 21], [-35, 29], [34, 83], [82, 67], [93, 30], [68, -30]], [[12866, 24884], [-12, 0], [-13, 67], [0, 8], [13, 28], [153, 70], [32, 30], [-38, -52], [-105, -92], [-30, -59]], [[18908, 24450], [-38, -99], [-19, -13], [-22, -6], [40, -46], [18, -57], [-257, -29], [-50, 7], [-38, 26], [-53, -57], [-66, -37], [-129, -33], [-144, -3], [-79, 23], [-41, 55], [29, 10], [47, 35], [73, 15], [78, 43], [21, 22], [17, 106], [-84, 153], [6, 94], [114, -7], [40, -16], [-16, -27], [6, -21], [-18, -71], [-3, -59], [35, 61], [29, 15], [92, 0], [-12, -9], [-9, -10], [-6, -13], [-4, -21], [77, -23], [-18, 48], [29, 90], [-4, 98], [-32, 61], [-52, -21], [-18, 60], [-25, 49], [-31, 39], [-36, 27], [-44, 11], [-45, -10], [-24, -28], [21, -46], [0, -27], [-20, -10], [-20, -23], [-17, -28], [-6, -28], [-14, -7], [-79, -29], [5, 49], [17, 31], [18, 21], [6, 24], [-12, 45], [-17, 5], [-19, -14], [-73, -31], [-33, -42], [-32, -30], [-45, 17], [18, 71], [61, 121], [13, 96], [-20, 56], [-92, 93], [-28, 41], [21, 41], [35, 35], [42, 16], [42, -17], [20, -35], [46, -120], [27, -48], [60, -58], [149, -83], [85, -31], [69, -42], [398, -417], [39, -28], [1, 0]], [[19030, 23575], [0, 0], [2, -103], [-9, -57], [34, -72], [48, -143], [4, -36], [-6, -134], [1, -81], [17, -76], [55, -82], [23, -77], [48, -77], [24, -190], [47, -214]], [[11433, 24533], [26, -2], [12, 3], [28, 21], [67, 67], [37, 14], [43, 9], [121, 61], [275, 35], [20, -7], [15, -21], [15, -51], [16, -26], [80, -21], [13, -19], [-11, -83], [5, -39], [29, -16], [67, -4], [19, 4], [92, 76], [17, -12], [23, -51], [14, -13], [94, 0], [1, -11], [87, -105], [17, -11], [26, 0], [3, 39], [23, 59], [17, 73], [-10, 59], [17, 27], [22, 16], [19, 5], [-4, 16], [-6, 42], [-4, 17], [77, 75], [0, 27], [-15, 0], [0, 23], [58, -23], [19, 0], [46, 33], [40, 97], [31, 21], [18, 6], [15, 16], [11, 23], [10, 27], [2, 18], [-17, 13], [0, 19], [7, 19], [10, 13], [8, 9], [56, 97], [72, 48], [88, 12], [189, -32], [540, 110], [84, 52], [12, -105], [-8, -102], [4, -87], [53, -59], [-22, 45], [-11, 95], [-12, 36], [24, 42], [65, 36], [19, 49], [-25, 3], [-25, -5], [-23, -9], [-21, -14], [17, 34], [77, 96], [46, 40], [54, 86], [32, 19], [29, 9], [171, 88], [85, 69], [34, 37], [82, 150], [136, 187], [14, 35], [94, 154], [36, 96], [26, 32], [46, 22], [0, -23], [-16, 0], [49, -73], [97, -38], [515, 0], [85, -39], [52, 28], [65, -15], [29, -41], [-56, -49], [-58, -12], [-242, 20], [-97, 34], [-60, 8], [-17, -8], [-24, -33], [-13, -9], [-46, 0], [-59, 10], [-22, -11], [-14, -49], [-14, 27], [-12, -7], [-20, -16], [-14, -4], [4, -32], [9, -14], [15, -4], [18, -3], [-8, -2], [-6, 0], [-3, -5], [0, -16], [-43, 23], [-49, -5], [-40, -25], [-21, -43], [-37, 44], [-44, 22], [-82, 7], [-37, -17], [-31, -42], [-14, -56], [12, -58], [-32, 6], [-13, 6], [-16, 13], [-16, -25], [15, -44], [-11, -43], [-28, -32], [-38, -8], [16, -50], [19, -39], [5, -33], [-26, -29], [99, -65], [55, -13], [49, 28], [-36, -1], [-26, 13], [-47, 38], [15, 44], [21, 31], [57, 53], [14, 9], [24, 7], [10, 7], [7, 18], [2, 46], [5, 15], [38, 31], [147, 67], [-30, 22], [-15, 3], [0, 25], [42, 15], [16, -1], [18, -14], [0, 26], [42, -36], [68, 17], [123, 66], [-5, 12], [-6, 28], [-4, 13], [23, 16], [27, 10], [28, 4], [28, -3], [0, -27], [-34, -9], [-23, -29], [-13, -42], [-5, -46], [28, 47], [10, 25], [8, 29], [20, -35], [23, -33], [26, -11], [25, 28], [26, -22], [25, 1], [22, 17], [20, 27], [6, -28], [11, -27], [14, -23], [39, -47], [8, -7], [8, 4], [23, 5], [44, -2], [22, 6], [26, 21], [19, 30], [23, 59], [21, 37], [58, 54], [89, 55], [90, 32], [58, -16], [-29, -27], [-1, -44], [17, -46], [27, -36], [98, -48], [27, -25], [-43, -72], [9, -56], [64, -99], [7, -40], [0, -40], [6, -31], [25, -12], [101, 0], [0, -28], [-21, 0], [-15, -6], [-25, -16], [74, 7], [118, -64], [79, -18], [58, -31], [74, -145], [62, -52], [-36, -24], [-26, -26], [56, 1], [85, 41], [44, -17], [-17, -43], [-11, -17], [-18, -15], [26, -16], [17, 9], [15, 12], [20, -5], [13, -19], [33, -84], [28, -54], [34, -44], [41, -26], [54, -1], [0, 25], [-19, 17], [-26, 42], [-18, 16], [0, 25], [279, 53], [67, 29], [116, 76], [64, 20], [10, -19], [-4, -16], [-14, -12], [-23, -5], [0, -23], [69, -34], [180, -144], [0, -25], [-33, -54], [-19, -70], [-27, -65], [-62, -36], [28, -20], [65, -80], [24, -38], [13, -9], [64, -26], [16, -11], [10, -25], [7, -26], [6, -17], [3, -14], [-3, -16], [-1, -15], [9, -6], [33, 3], [7, -3], [12, -9], [14, -9], [14, -5], [13, -2], [28, -14], [4, -35], [-14, -42], [-26, -34], [-162, -128], [-23, -47], [20, -45], [42, -20], [42, -9], [19, -14], [15, -40], [33, -46], [36, -32], [25, 5], [166, -133], [75, -17], [37, -44], [8, -8], [55, 4], [17, -4], [56, -33], [28, -11], [182, -13], [63, 19], [27, 50], [17, 12], [37, -7], [32, -31], [7, -59], [-18, -27], [-106, -73], [29, -16], [33, -11], [36, -5], [18, 2]], [[16526, 26872], [0, -41], [-2, 4], [-6, 8], [-9, 1], [0, -50], [-14, 0], [0, 75], [-56, -43], [-13, -60], [-2, -71], [-22, -76], [-16, -21], [-32, -26], [-14, -29], [-8, -35], [-4, -37], [-3, -78], [-16, 0], [0, 50], [7, 85], [71, 240], [15, 93], [16, 26], [37, 9], [32, 2], [25, -4], [14, -22]], [[17055, 27061], [-18, -52], [7, -65], [19, -52], [30, -41], [38, -30], [94, -30], [294, 53], [100, -21], [69, -71], [15, -95], [-60, -88], [-100, -64], [-50, -46], [-21, -53], [9, -62], [19, -64], [26, -55], [23, -32], [47, -23], [107, -25], [47, -32], [60, -104], [39, -48], [55, -21], [-30, -20], [-29, -35], [-23, -48], [-9, -60], [0, -58], [-7, -23], [-23, 2], [-50, 17], [27, 0], [21, 11], [9, 25], [-9, 39], [-15, 0], [-24, -24], [-34, -12], [-37, -1], [-28, 12], [0, 25], [84, 34], [35, 26], [19, 42], [-118, -7], [-52, -16], [-45, -29], [125, 83], [42, 17], [0, 25], [-60, 6], [-32, -3], [-22, -15], [-31, -34], [-19, 8], [-17, 24], [-26, 14], [-225, -25], [-41, -24], [-119, -100], [-26, -39], [-26, -56], [-55, -11], [-50, -25], [-9, -98], [31, 25], [1, 19], [-5, 5], [-6, 0], [-4, 4], [108, 18], [15, -7], [17, -84], [-5, -38], [-35, -17], [-65, 10], [-72, 24], [-80, 50], [18, 20], [12, 43], [24, 56], [-33, -19], [-15, -14], [-14, -20], [9, -10], [6, -12], [-45, 4], [-24, -5], [-16, -13], [-21, -10], [-22, 14], [-21, 22], [-14, 10], [-33, 6], [-40, 19], [-25, 31], [13, 47], [-33, 10], [-69, -33], [-23, -2], [-16, 28], [14, 25], [30, 11], [35, -14], [0, 23], [-140, 102], [31, 79], [44, 65], [58, 24], [69, -43], [15, 26], [27, -25], [31, 6], [67, 43], [-35, 4], [-27, 25], [-11, 36], [10, 38], [0, 23], [-31, 3], [-17, 17], [-14, 20], [-23, 10], [-100, -25], [39, 76], [17, 20], [61, 14], [68, 34], [47, 8], [0, 25], [2, 1], [14, 7], [14, 17], [-63, 23], [-27, 17], [-18, 33], [8, 9], [7, 6], [4, 12], [-2, 26], [-67, -25], [-40, -5], [-18, 17], [-5, 12], [-11, 2], [-10, 9], [-5, 28], [-3, 32], [-8, 19], [-15, 8], [-20, 0], [52, 24], [173, 24], [38, -8], [12, -22], [26, -10], [26, -19], [13, -48], [9, -26], [18, 14], [8, 42], [-19, 57], [33, 42], [41, 41], [43, 31], [38, 13], [-25, -75], [-17, -32], [-20, -20], [15, 0], [12, -2], [11, -9], [10, -17], [-12, -17], [-20, -53], [32, -2], [26, 9], [21, 23], [13, 40], [-19, 6], [-21, 16], [-20, 6], [0, 25], [31, 27], [25, -49], [40, -48], [26, -50], [-14, -56], [45, -61], [56, -19], [117, 3], [-17, 27], [22, 49], [11, 15], [15, 12], [0, 27], [-18, 51], [-13, 26], [-17, 21], [0, 25], [13, 9], [7, 8], [10, 6], [18, 4], [0, 22], [-29, -1], [-18, -16], [-14, -19], [-17, -13], [-24, -4], [-78, 4], [-12, 11], [-12, 26], [-16, 26], [-21, 12], [-34, 7], [-14, 18], [-8, 24], [-15, 26], [-27, 36], [-4, 15], [-31, -24], [-18, -17], [-36, -48], [-53, -30], [-39, -40], [-40, -29], [-46, 14], [-8, 43], [16, 68], [30, 62], [32, 27], [7, 16], [9, 34], [5, 35], [-6, 15], [-101, -24], [-34, -22], [-14, 4], [1, 42], [13, 25], [24, 25], [27, 18], [310, 85], [64, 1], [59, -31], [0, -22], [-35, -27], [-46, -25], [-41, -34]]], "transform": {"scale": [0.00044201347307784756, 0.00027269657357777534], "translate": [5.852489868000106, 47.27112091100008]}, "objects": {"regions": {"type": "GeometryCollection", "geometries": [{"arcs": [[0, 1, 2, 3]], "type": "Polygon", "properties": {"name": "Nordrhein-Westfalen"}, "id": "DE-NW"}, {"arcs": [[[4]], [[5, 6, 7, 8]]], "type": "MultiPolygon", "properties": {"name": "Baden-W\u00fcrttemberg"}, "id": "DE-BW"}, {"arcs": [[9, 10, -8, 11, -1, 12]], "type": "Polygon", "properties": {"name": "Hessen"}, "id": "DE-HE"}, {"arcs": [[[13]], [[14, 15]]], "type": "MultiPolygon", "properties": {"name": "Bremen"}, "id": "DE-HB"}, {"arcs": [[[16]], [[17]], [[18]], [[19]], [[20]], [[21]], [[22]], [[23]], [[24, 25, 26, 27, 28, 29, -13, -4, 30, -16, 31], [-14]]], "type": "MultiPolygon", "properties": {"name": "Niedersachsen"}, "id": "DE-NI"}, {"arcs": [[32, 33, -10, -30, 34]], "type": "Polygon", "properties": {"name": "Th\u00fcringen"}, "id": "DE-TH"}, {"arcs": [[-25, 35, 36]], "type": "Polygon", "properties": {"name": "Hamburg"}, "id": "DE-HH"}, {"arcs": [[[37]], [[38]], [[39]], [[40]], [[41]], [[42]], [[43]], [[44, 45, -26, -37, 46]], [[47]]], "type": "MultiPolygon", "properties": {"name": "Schleswig-Holstein"}, "id": "DE-SH"}, {"arcs": [[-12, -7, 48, 49, 50, -2]], "type": "Polygon", "properties": {"name": "Rheinland-Pfalz"}, "id": "DE-RP"}, {"arcs": [[51, -50]], "type": "Polygon", "properties": {"name": "Saarland"}, "id": "DE-SL"}, {"arcs": [[52, 53, -9, -11, -34]], "type": "Polygon", "properties": {"name": "Bayern"}, "id": "DE-BY"}, {"arcs": [[54]], "type": "Polygon", "properties": {"name": "Berlin"}, "id": "DE-BE"}, {"arcs": [[55, -35, -29, 56]], "type": "Polygon", "properties": {"name": "Sachsen-Anhalt"}, "id": "DE-ST"}, {"arcs": [[57, 58, -53, -33, -56]], "type": "Polygon", "properties": {"name": "Sachsen"}, "id": "DE-SN"}, {"arcs": [[59, -58, -57, -28, 60], [-55]], "type": "Polygon", "properties": {"name": "Brandenburg"}, "id": "DE-BB"}, {"arcs": [[[61]], [[62]], [[63]], [[64, -61, -27, -46, 65]], [[66]], [[67]]], "type": "MultiPolygon", "properties": {"name": "Mecklenburg-Vorpommern"}, "id": "DE-MV"}]}}}
|