From a85155cdd903db2b79eb2671328bf9cd0d898170 Mon Sep 17 00:00:00 2001 From: billmills Date: Mon, 18 Dec 2023 17:23:42 -0500 Subject: [PATCH] zenodo metadata --- .zenodo.json | 14 ++++++++++ pod.yaml | 8 +++--- populate-AR.py | 74 ++++++++++++++++++++++++++++++++------------------ 3 files changed, 66 insertions(+), 30 deletions(-) create mode 100644 .zenodo.json diff --git a/.zenodo.json b/.zenodo.json new file mode 100644 index 0000000..2be367b --- /dev/null +++ b/.zenodo.json @@ -0,0 +1,14 @@ +{ + "creators": [ + { + "name": "Bill Mills", + "affiliation": "University of Colorado (Boulder), Dept. of Atmospheric and Ocean Science", + "orcid": "0000-0002-5887-6270" + }, + { + "name": "Donata Giglio", + "affiliation": "University of Colorado (Boulder), Dept. of Atmospheric and Ocean Science", + "orcid": "0000-0002-3738-4293" + } + ] +} diff --git a/pod.yaml b/pod.yaml index c818b1f..20dcad7 100644 --- a/pod.yaml +++ b/pod.yaml @@ -1,7 +1,7 @@ apiVersion: v1 kind: Pod metadata: - name: ar-sync + name: ar-sync-00-04 labels: tier: api spec: @@ -13,8 +13,8 @@ spec: - name: schema imagePullPolicy: Always image: argovis/ar-sync:dev - command: ['sleep', '1000000'] - #command: ['bash', 'loaddata.sh'] + #command: ['sleep', '1000000'] + command: ['bash', 'loaddata.sh'] volumeMounts: - mountPath: "/tmp" name: ar @@ -24,5 +24,5 @@ spec: cpu: "0m" limits: memory: 1Gi - cpu: 1000m + cpu: 500m restartPolicy: Never \ No newline at end of file diff --git a/populate-AR.py b/populate-AR.py index 0eb6eb1..0f6529f 100644 --- a/populate-AR.py +++ b/populate-AR.py @@ -5,7 +5,6 @@ from collections import defaultdict import argovisHelpers as avh from functools import partial -from geopy import distance numpy.set_printoptions(threshold=sys.maxsize) numpy.set_printoptions(linewidth=200000) @@ -21,31 +20,12 @@ def find_basin(basins, lon, lat): # for a given lon, lat, # identify the basin from the lookup table. - # choose the nearest non-nan grid point. - - gridspacing = 0.5 basin = basins['BASIN_TAG'].sel(LONGITUDE=lon, LATITUDE=lat, method="nearest").to_dict()['data'] if math.isnan(basin): - # nearest point was on land - find the nearest non nan instead. - lonplus = math.ceil(lon / gridspacing)*gridspacing - lonminus = math.floor(lon / gridspacing)*gridspacing - latplus = math.ceil(lat / gridspacing)*gridspacing - latminus = math.floor(lat / gridspacing)*gridspacing - grids = [(basins['BASIN_TAG'].sel(LONGITUDE=lonminus, LATITUDE=latminus, method="nearest").to_dict()['data'], distance.distance((lat, lon), (latminus, lonminus)).miles), - (basins['BASIN_TAG'].sel(LONGITUDE=lonminus, LATITUDE=latplus, method="nearest").to_dict()['data'], distance.distance((lat, lon), (latplus, lonminus)).miles), - (basins['BASIN_TAG'].sel(LONGITUDE=lonplus, LATITUDE=latplus, method="nearest").to_dict()['data'], distance.distance((lat, lon), (latplus, lonplus)).miles), - (basins['BASIN_TAG'].sel(LONGITUDE=lonplus, LATITUDE=latminus, method="nearest").to_dict()['data'], distance.distance((lat, lon), (latminus, lonplus)).miles)] - - grids = [x for x in grids if not math.isnan(x[0])] - if len(grids) == 0: - # all points on land - #print('warning: all surrounding basin grid points are NaN') - basin = -1 - else: - grids.sort(key=lambda tup: tup[1]) - basin = grids[0][0] - return int(basin) + return -1 + else: + return int(basin) def index2coords(longitudes, latitudes, index): @@ -116,7 +96,7 @@ def add_noise(mp): ivts = xar['IVT'] for timestep in range(len(cal_years)): -#for timestep in [2197]: +#for timestep in [887]: cal_mon = cal_mons[timestep] cal_day = cal_days[timestep] @@ -126,11 +106,14 @@ def add_noise(mp): ar = ars[timestep].to_numpy() ivt = ivts[timestep].to_numpy() + #print(timestep, cal_year, cal_mon, cal_day, cal_hour) + #continue + # label the ARs and make periodic on longitude boundary labeled_map = avh.gridtools.label_features(ar) labels = numpy.unique(labeled_map) for label in labels: - #for label in [1]: + #for label in [10]: if label == 0: continue else: @@ -156,6 +139,45 @@ def add_noise(mp): 'geolocation': geo, 'metadata': ['ar'] } + # for i in range(len(AR['geolocation']['coordinates'])): + # for j in range(len(AR['geolocation']['coordinates'][i])): + # print(f'blob {i}, ring {j}') + # AR['geolocation']['coordinates'] = AR['geolocation']['coordinates'][0:1] + #print(AR['geolocation']['coordinates'][0][1]) + #AR['geolocation']['coordinates'] = [[[[168.4375,-49.75],[167.8125,-49.75],[167.8125,-49.25],[167.1875,-49.25],[166.5625,-49.25],[165.9375,-49.25],[165.3125,-49.25],[165.3125,-48.75],[164.6875,-48.75],[164.6875,-48.25],[164.0625,-48.25],[164.0625,-47.75],[164.0625,-47.25],[164.0625,-46.75],[163.4375,-46.75],[163.4375,-46.25],[163.4375,-45.75],[163.4375,-45.25],[163.4375,-44.75],[163.4375,-44.25],[162.8125,-44.25],[162.8125,-43.75],[162.1875,-43.75],[162.1875,-43.25],[161.5625,-43.25],[160.9375,-43.25],[160.9375,-42.75],[160.3125,-42.75],[160.3125,-42.25],[160.3125,-41.75],[160.3125,-41.25],[160.9375,-41.25],[160.9375,-40.75],[161.5625,-40.75],[161.5625,-40.25],[160.9375,-40.25],[160.9375,-39.75],[160.9375,-39.25],[160.3125,-39.25],[160.3125,-38.75],[160.9375,-38.75],[160.9375,-38.25],[160.9375,-37.75],[160.9375,-37.25],[160.9375,-36.75],[160.9375,-36.25],[160.3125,-36.25],[160.3125,-35.75],[160.3125,-35.25],[160.3125,-34.75],[159.6875,-34.75],[159.6875,-34.25],[159.6875,-33.75],[159.6875,-33.25],[160.3125,-33.25],[160.3125,-32.75],[160.3125,-32.25],[160.3125,-31.75],[159.6875,-31.75],[159.6875,-31.25],[159.6875,-30.75],[159.6875,-30.25],[159.6875,-29.75],[159.6875,-29.25],[159.6875,-28.75],[159.6875,-28.25],[159.6875,-27.75],[159.6875,-27.25],[160.3125,-27.25],[160.3125,-26.75],[160.9375,-26.75],[160.9375,-26.25],[161.5625,-26.25],[162.1875,-26.25],[162.1875,-26.75],[162.8125,-26.75],[162.8125,-27.25],[162.8125,-27.75],[162.8125,-28.25],[163.4375,-28.25],[163.4375,-28.75],[164.0625,-28.75],[164.6875,-28.75],[165.3125,-28.75],[165.9375,-28.75],[166.5625,-28.75],[167.1875,-28.75],[167.1875,-28.25],[167.1875,-27.75],[167.8125,-27.75],[167.8125,-27.25],[168.4375,-27.25],[168.4375,-26.75],[169.0625,-26.75],[169.0625,-26.25],[169.6875,-26.25],[169.6875,-25.75],[169.6875,-25.25],[169.6875,-24.75],[170.3125,-24.75],[170.3125,-24.25],[170.9375,-24.25],[170.9375,-23.75],[171.5625,-23.75],[171.5625,-23.25],[172.1875,-23.25],[172.1875,-22.75],[172.1875,-22.25],[172.8125,-22.25],[173.4375,-22.25],[173.4375,-21.75],[174.0625,-21.75],[174.6875,-21.75],[174.6875,-21.25],[174.6875,-20.75],[175.3125,-20.75],[175.3125,-20.25],[175.3125,-19.75],[175.9375,-19.75],[176.5625,-19.75],[176.5625,-19.25],[177.1875,-19.25],[177.1875,-18.75],[177.1875,-18.25],[177.8125,-18.25],[177.8125,-17.75],[178.4375,-17.75],[178.4375,-17.25],[177.8125,-17.25],[177.8125,-16.75],[177.8125,-16.25],[177.1875,-16.25],[177.1875,-15.75],[177.1875,-15.25],[176.5625,-15.25],[176.5625,-14.75],[175.9375,-14.75],[175.9375,-14.25],[175.9375,-13.75],[176.5625,-13.75],[176.5625,-14.25],[177.1875,-14.25],[177.8125,-14.25],[178.4375,-14.25],[179.0625,-14.25],[179.0625,-14.75],[179.6875,-14.75],[179.6875,-15.25],[-179.6875,-15.25],[-179.0625,-15.25],[-178.4375,-15.25],[-177.8125,-15.25],[-177.8125,-15.75],[-177.1875,-15.75],[-176.5625,-15.75],[-175.9375,-15.75],[-175.9375,-16.25],[-175.3125,-16.25],[-175.3125,-16.75],[-174.6875,-16.75],[-174.6875,-17.25],[-174.6875,-17.75],[-174.0625,-17.75],[-174.0625,-18.25],[-173.4375,-18.25],[-172.8125,-18.25],[-172.1875,-18.25],[-171.5625,-18.25],[-171.5625,-17.75],[-170.9375,-17.75],[-170.9375,-17.25],[-170.9375,-16.75],[-170.3125,-16.75],[-170.3125,-16.25],[-169.6875,-16.25],[-169.0625,-16.25],[-168.4375,-16.25],[-168.4375,-16.75],[-168.4375,-17.25],[-169.0625,-17.25],[-169.0625,-17.75],[-169.0625,-18.25],[-169.0625,-18.75],[-169.0625,-19.25],[-169.0625,-19.75],[-168.4375,-19.75],[-168.4375,-19.25],[-167.8125,-19.25],[-167.1875,-19.25],[-167.1875,-18.75],[-167.1875,-18.25],[-167.1875,-17.75],[-167.1875,-17.25],[-166.5625,-17.25],[-166.5625,-16.75],[-165.9375,-16.75],[-165.9375,-16.25],[-165.3125,-16.25],[-165.3125,-15.75],[-164.6875,-15.75],[-164.0625,-15.75],[-163.4375,-15.75],[-162.8125,-15.75],[-162.8125,-15.25],[-162.1875,-15.25],[-161.5625,-15.25],[-160.9375,-15.25],[-160.3125,-15.25],[-159.6875,-15.25],[-159.6875,-15.75],[-159.0625,-15.75],[-159.0625,-15.25],[-158.4375,-15.25],[-157.8125,-15.25],[-157.8125,-14.75],[-157.8125,-14.25],[-158.4375,-14.25],[-159.0625,-14.25],[-159.6875,-14.25],[-160.3125,-14.25],[-160.3125,-13.75],[-160.9375,-13.75],[-161.5625,-13.75],[-161.5625,-13.25],[-160.9375,-13.25],[-160.3125,-13.25],[-160.3125,-12.75],[-160.3125,-12.25],[-160.3125,-11.75],[-160.3125,-11.25],[-160.9375,-11.25],[-160.9375,-10.75],[-161.5625,-10.75],[-161.5625,-10.25],[-162.1875,-10.25],[-162.8125,-10.25],[-162.8125,-9.75],[-163.4375,-9.75],[-163.4375,-10.25],[-164.0625,-10.25],[-164.6875,-10.25],[-164.6875,-10.75],[-165.3125,-10.75],[-165.9375,-10.75],[-165.9375,-10.25],[-165.9375,-9.75],[-166.5625,-9.75],[-167.1875,-9.75],[-167.8125,-9.75],[-168.4375,-9.75],[-168.4375,-10.25],[-169.0625,-10.25],[-169.6875,-10.25],[-170.3125,-10.25],[-170.9375,-10.25],[-170.9375,-10.75],[-171.5625,-10.75],[-171.5625,-11.25],[-171.5625,-11.75],[-171.5625,-12.25],[-170.9375,-12.25],[-170.9375,-12.75],[-170.9375,-13.25],[-171.5625,-13.25],[-171.5625,-13.75],[-171.5625,-14.25],[-171.5625,-14.75],[-171.5625,-15.25],[-172.1875,-15.25],[-172.8125,-15.25],[-172.8125,-14.75],[-173.4375,-14.75],[-173.4375,-14.25],[-173.4375,-13.75],[-173.4375,-13.25],[-174.0625,-13.25],[-174.0625,-12.75],[-174.0625,-12.25],[-174.6875,-12.25],[-174.6875,-11.75],[-175.3125,-11.75],[-175.3125,-11.25],[-175.9375,-11.25],[-175.9375,-10.75],[-175.9375,-10.25],[-175.9375,-9.75],[-175.9375,-9.25],[-175.9375,-8.75],[-175.9375,-8.25],[-176.5625,-8.25],[-176.5625,-7.75],[-176.5625,-7.25],[-176.5625,-6.75],[-177.1875,-6.75],[-177.1875,-6.25],[-176.5625,-6.25],[-176.5625,-5.75],[-176.5625,-5.25],[-176.5625,-4.75],[-175.9375,-4.75],[-175.9375,-4.25],[-175.9375,-3.75],[-175.9375,-3.25],[-175.3125,-3.25],[-175.3125,-2.75],[-175.3125,-2.25],[-175.3125,-1.75],[-175.3125,-1.25],[-175.3125,-0.75],[-175.3125,-0.25000000000017975],[-175.3125,0.25],[-175.3125,0.75],[-175.9375,0.75],[-176.5625,0.75],[-176.5625,1.25],[-177.1875,1.25],[-177.1875,1.75],[-177.1875,2.25],[-177.1875,2.75],[-177.8125,2.75],[-177.8125,3.25],[-178.4375,3.25],[-179.0625,3.25],[-179.6875,3.25],[179.6875,3.25],[179.0625,3.25],[178.4375,3.25],[178.4375,2.75],[177.8125,2.75],[177.8125,2.25],[177.1875,2.25],[176.5625,2.25],[176.5625,1.75],[175.9375,1.75],[175.3125,1.75],[175.3125,1.25],[174.6875,1.25],[174.0625,1.25],[174.0625,0.75],[173.4375,0.75],[172.8125,0.75],[172.1875,0.75],[172.1875,0.25],[171.5625,0.25],[171.5625,-0.25000000000017975],[170.9375,-0.25000000000017975],[170.9375,-0.75],[171.5625,-0.75],[172.1875,-0.75],[172.8125,-0.75],[172.8125,-1.25],[172.1875,-1.25],[171.5625,-1.25],[171.5625,-1.75],[170.9375,-1.75],[170.9375,-2.25],[170.9375,-2.75],[170.3125,-2.75],[169.6875,-2.75],[169.6875,-3.25],[169.0625,-3.25],[168.4375,-3.25],[168.4375,-3.75],[167.8125,-3.75],[167.1875,-3.75],[167.1875,-4.25],[166.5625,-4.25],[166.5625,-4.75],[165.9375,-4.75],[165.3125,-4.75],[165.3125,-5.25],[164.6875,-5.25],[164.0625,-5.25],[163.4375,-5.25],[162.8125,-5.25],[162.1875,-5.25],[162.1875,-5.75],[161.5625,-5.75],[160.9375,-5.75],[160.3125,-5.75],[159.6875,-5.75],[159.0625,-5.75],[158.4375,-5.75],[158.4375,-5.25],[159.0625,-5.25],[159.0625,-4.75],[159.0625,-4.25],[159.0625,-3.75],[158.4375,-3.75],[157.8125,-3.75],[157.1875,-3.75],[156.5625,-3.75],[155.9375,-3.75],[155.3125,-3.75],[155.3125,-4.25],[154.6875,-4.25],[154.0625,-4.25],[153.4375,-4.25],[153.4375,-3.75],[153.4375,-3.25],[153.4375,-2.75],[152.8125,-2.75],[152.8125,-2.25],[152.1875,-2.25],[151.5625,-2.25],[151.5625,-1.75],[150.9375,-1.75],[150.3125,-1.75],[149.6875,-1.75],[149.6875,-1.25],[149.0625,-1.25],[148.4375,-1.25],[148.4375,-0.75],[148.4375,-0.25000000000017975],[148.4375,0.25],[148.4375,0.75],[147.8125,0.75],[147.1875,0.75],[146.5625,0.75],[146.5625,0.25],[145.9375,0.25],[145.3125,0.25],[144.6875,0.25],[144.6875,0.75],[144.0625,0.75],[143.4375,0.75],[142.8125,0.75],[142.1875,0.75],[141.5625,0.75],[141.5625,1.25],[140.9375,1.25],[140.3125,1.25],[139.6875,1.25],[139.0625,1.25],[138.4375,1.25],[137.8125,1.25],[137.1875,1.25],[136.5625,1.25],[135.9375,1.25],[135.9375,0.75],[135.3125,0.75],[134.6875,0.75],[134.0625,0.75],[133.4375,0.75],[132.8125,0.75],[132.8125,0.25],[132.1875,0.25],[132.1875,-0.25000000000017975],[132.8125,-0.25000000000017975],[132.8125,-0.75],[132.8125,-1.25],[132.8125,-1.75],[133.4375,-1.75],[134.0625,-1.75],[134.0625,-1.25],[134.6875,-1.25],[134.6875,-0.75],[135.3125,-0.75],[135.3125,-0.25000000000017975],[135.9375,-0.25000000000017975],[136.5625,-0.25000000000017975],[136.5625,-0.75],[136.5625,-1.25],[137.1875,-1.25],[137.8125,-1.25],[137.8125,-1.75],[138.4375,-1.75],[138.4375,-1.25],[139.0625,-1.25],[139.0625,-1.75],[139.6875,-1.75],[140.3125,-1.75],[140.3125,-2.25],[140.9375,-2.25],[141.5625,-2.25],[141.5625,-2.75],[142.1875,-2.75],[142.1875,-3.25],[142.8125,-3.25],[142.8125,-3.75],[143.4375,-3.75],[143.4375,-4.25],[143.4375,-4.75],[143.4375,-5.25],[142.8125,-5.25],[142.1875,-5.25],[142.1875,-5.75],[142.8125,-5.75],[142.8125,-6.25],[142.8125,-6.75],[142.8125,-7.25],[142.8125,-7.75],[142.8125,-8.25],[143.4375,-8.25],[143.4375,-8.75],[143.4375,-9.25],[144.0625,-9.25],[144.0625,-9.75],[144.0625,-10.25],[144.0625,-10.75],[144.0625,-11.25],[144.0625,-11.75],[144.6875,-11.75],[145.3125,-11.75],[145.9375,-11.75],[146.5625,-11.75],[146.5625,-12.25],[146.5625,-12.75],[147.1875,-12.75],[147.8125,-12.75],[148.4375,-12.75],[148.4375,-13.25],[149.0625,-13.25],[149.6875,-13.25],[149.6875,-13.75],[150.3125,-13.75],[150.3125,-14.25],[150.9375,-14.25],[150.9375,-14.75],[151.5625,-14.75],[152.1875,-14.75],[152.1875,-15.25],[152.8125,-15.25],[153.4375,-15.25],[153.4375,-15.75],[153.4375,-16.25],[152.8125,-16.25],[152.1875,-16.25],[151.5625,-16.25],[151.5625,-15.75],[150.9375,-15.75],[150.3125,-15.75],[149.6875,-15.75],[149.0625,-15.75],[149.0625,-16.25],[149.0625,-16.75],[148.4375,-16.75],[147.8125,-16.75],[147.1875,-16.75],[146.5625,-16.75],[145.9375,-16.75],[145.3125,-16.75],[144.6875,-16.75],[144.0625,-16.75],[144.0625,-17.25],[143.4375,-17.25],[143.4375,-17.75],[142.8125,-17.75],[142.1875,-17.75],[142.1875,-18.25],[142.1875,-18.75],[142.1875,-19.25],[142.8125,-19.25],[142.8125,-19.75],[142.8125,-20.25],[143.4375,-20.25],[143.4375,-20.75],[142.8125,-20.75],[142.1875,-20.75],[141.5625,-20.75],[141.5625,-20.25],[140.9375,-20.25],[140.3125,-20.25],[139.6875,-20.25],[139.0625,-20.25],[139.0625,-19.75],[138.4375,-19.75],[137.8125,-19.75],[137.1875,-19.75],[136.5625,-19.75],[136.5625,-19.25],[135.9375,-19.25],[135.9375,-18.75],[135.3125,-18.75],[134.6875,-18.75],[134.6875,-18.25],[134.0625,-18.25],[134.0625,-17.75],[133.4375,-17.75],[133.4375,-17.25],[132.8125,-17.25],[132.1875,-17.25],[132.1875,-16.75],[131.5625,-16.75],[131.5625,-16.25],[130.9375,-16.25],[130.9375,-15.75],[130.3125,-15.75],[130.3125,-15.25],[129.6875,-15.25],[129.0625,-15.25],[128.4375,-15.25],[127.8125,-15.25],[127.8125,-15.75],[127.1875,-15.75],[127.1875,-15.25],[126.5625,-15.25],[126.5625,-14.75],[125.9375,-14.75],[125.9375,-15.25],[125.3125,-15.25],[124.6875,-15.25],[124.6875,-15.75],[124.0625,-15.75],[124.0625,-16.25],[124.0625,-16.75],[124.0625,-17.25],[124.0625,-17.75],[123.4375,-17.75],[122.8125,-17.75],[122.8125,-17.25],[122.8125,-16.75],[122.1875,-16.75],[121.5625,-16.75],[121.5625,-16.25],[120.9375,-16.25],[120.9375,-16.75],[120.3125,-16.75],[119.6875,-16.75],[119.6875,-17.25],[119.0625,-17.25],[118.4375,-17.25],[117.8125,-17.25],[117.1875,-17.25],[116.5625,-17.25],[116.5625,-16.75],[116.5625,-16.25],[117.1875,-16.25],[117.1875,-15.75],[117.8125,-15.75],[118.4375,-15.75],[119.0625,-15.75],[119.0625,-15.25],[119.0625,-14.75],[119.0625,-14.25],[119.0625,-13.75],[118.4375,-13.75],[118.4375,-13.25],[117.8125,-13.25],[117.1875,-13.25],[117.1875,-12.75],[116.5625,-12.75],[116.5625,-13.25],[115.9375,-13.25],[115.9375,-13.75],[115.9375,-14.25],[115.9375,-14.75],[115.9375,-15.25],[115.9375,-15.75],[115.3125,-15.75],[115.3125,-16.25],[114.6875,-16.25],[114.0625,-16.25],[114.0625,-16.75],[113.4375,-16.75],[112.8125,-16.75],[112.1875,-16.75],[111.5625,-16.75],[110.9375,-16.75],[110.3125,-16.75],[109.6875,-16.75],[109.0625,-16.75],[108.4375,-16.75],[107.8125,-16.75],[107.8125,-17.25],[107.1875,-17.25],[106.5625,-17.25],[105.9375,-17.25],[105.3125,-17.25],[104.6875,-17.25],[104.0625,-17.25],[103.4375,-17.25],[102.8125,-17.25],[102.8125,-16.75],[102.1875,-16.75],[101.5625,-16.75],[101.5625,-16.25],[100.9375,-16.25],[100.9375,-15.75],[100.3125,-15.75],[99.6875,-15.75],[99.0625,-15.75],[99.0625,-15.25],[99.0625,-14.75],[99.0625,-14.25],[99.0625,-13.75],[99.0625,-13.25],[98.4375,-13.25],[97.8125,-13.25],[97.1875,-13.25],[97.1875,-12.75],[96.5625,-12.75],[96.5625,-12.25],[95.9375,-12.25],[95.9375,-11.75],[95.9375,-11.25],[95.9375,-10.75],[95.3125,-10.75],[95.3125,-10.25],[95.3125,-9.75],[95.9375,-9.75],[96.5625,-9.75],[96.5625,-10.25],[96.5625,-10.75],[96.5625,-11.25],[96.5625,-11.75],[97.1875,-11.75],[97.1875,-12.25],[97.8125,-12.25],[98.4375,-12.25],[98.4375,-11.75],[98.4375,-11.25],[97.8125,-11.25],[97.8125,-10.75],[97.1875,-10.75],[97.1875,-10.25],[97.1875,-9.75],[97.8125,-9.75],[97.8125,-9.25],[98.4375,-9.25],[98.4375,-8.75],[99.0625,-8.75],[99.6875,-8.75],[100.3125,-8.75],[100.3125,-9.25],[100.9375,-9.25],[101.5625,-9.25],[101.5625,-8.75],[102.1875,-8.75],[102.1875,-8.25],[102.1875,-7.75],[102.8125,-7.75],[102.8125,-7.25],[102.8125,-6.75],[103.4375,-6.75],[103.4375,-6.25],[104.0625,-6.25],[104.0625,-5.75],[104.6875,-5.74],[104.6875,-5.25],[104.6875,-4.75],[104.0625,-4.75],[104.0625,-4.25],[104.0625,-3.75],[104.6875,-3.75],[104.6875,-3.25],[104.6875,-2.75],[104.0625,-2.75],[104.0625,-2.25],[104.0625,-1.75],[103.4375,-1.75],[102.8125,-1.75],[102.8125,-2.25],[102.1875,-2.25],[102.1875,-1.75],[101.5625,-1.75],[101.5625,-2.25],[100.9375,-2.25],[100.3125,-2.25],[100.3125,-2.75],[99.6875,-2.75],[99.6875,-3.25],[99.6875,-3.75],[99.0625,-3.75],[99.0625,-3.25],[99.0625,-2.75],[98.4375,-2.75],[98.4375,-2.25],[97.8125,-2.25],[97.8125,-1.75],[98.4375,-1.75],[98.4375,-1.25],[98.4375,-0.75],[97.8125,-0.75],[97.1875,-0.75],[97.1875,-1.25],[97.1875,-1.75],[97.1875,-2.25],[96.5625,-2.25],[95.9375,-2.25],[95.3125,-2.25],[95.3125,-2.75],[94.6875,-2.75],[94.0625,-2.75],[93.4375,-2.75],[93.4375,-3.25],[92.8125,-3.25],[92.1875,-3.25],[91.5625,-3.25],[91.5625,-3.75],[90.9375,-3.75],[90.9375,-3.25],[90.3125,-3.25],[89.6875,-3.25],[89.6875,-2.75],[89.0625,-2.75],[88.4375,-2.75],[88.4375,-3.25],[87.8125,-3.25],[87.1875,-3.25],[86.5625,-3.25],[85.9375,-3.25],[85.3125,-3.25],[85.3125,-3.75],[85.3125,-4.25],[84.6875,-4.25],[84.6875,-4.75],[84.6875,-5.25],[85.3125,-5.25],[85.3125,-5.75],[85.9375,-5.75],[86.5625,-5.75],[86.5625,-6.25],[85.9375,-6.25],[85.9375,-6.75],[85.3125,-6.75],[84.6875,-6.75],[84.0625,-6.75],[84.0625,-7.25],[83.4375,-7.25],[83.4375,-7.75],[82.8125,-7.75],[82.1875,-7.75],[82.1875,-8.25],[82.8125,-8.25],[82.8125,-8.75],[82.1875,-8.75],[82.1875,-9.25],[82.1875,-9.75],[82.1875,-10.25],[82.1875,-10.75],[82.1875,-11.25],[81.5625,-11.25],[80.9375,-11.25],[80.9375,-11.75],[80.3125,-11.75],[79.6875,-11.75],[79.0625,-11.75],[79.0625,-11.25],[78.4375,-11.25],[78.4375,-10.75],[77.8125,-10.75],[77.1875,-10.75],[76.5625,-10.75],[75.9375,-10.75],[75.9375,-10.25],[75.3125,-10.25],[75.3125,-9.75],[74.6875,-9.75],[74.6875,-9.25],[74.0625,-9.25],[73.4375,-9.25],[73.4375,-9.75],[73.4375,-10.25],[72.8125,-10.25],[72.1875,-10.25],[71.5625,-10.25],[71.5625,-9.75],[70.9375,-9.75],[70.3125,-9.75],[70.3125,-9.25],[69.6875,-9.25],[69.0625,-9.25],[68.4375,-9.25],[68.4375,-9.75],[67.8125,-9.75],[67.8125,-10.25],[67.8125,-10.75],[68.4375,-10.75],[68.4375,-11.25],[68.4375,-11.75],[68.4375,-12.25],[68.4375,-12.75],[68.4375,-13.25],[68.4375,-13.75],[68.4375,-14.25],[68.4375,-14.75],[68.4375,-15.25],[68.4375,-15.75],[68.4375,-16.25],[68.4375,-16.75],[68.4375,-17.25],[67.8125,-17.25],[67.8125,-17.75],[67.8125,-18.25],[67.1875,-18.25],[67.1875,-17.75],[66.5625,-17.75],[66.5625,-17.25],[65.9375,-17.25],[65.9375,-16.75],[65.3125,-16.75],[65.3125,-16.25],[64.6875,-16.25],[64.6875,-15.75],[64.6875,-15.25],[64.6875,-14.75],[64.6875,-14.25],[64.6875,-13.75],[64.6875,-13.25],[65.3125,-13.25],[65.3125,-12.75],[64.6875,-12.75],[64.6875,-12.25],[64.6875,-11.75],[64.0625,-11.75],[64.0625,-11.25],[63.4375,-11.25],[63.4375,-10.75],[62.8125,-10.75],[62.8125,-10.25],[62.1875,-10.25],[62.1875,-9.75],[61.5625,-9.75],[60.9375,-9.75],[60.9375,-10.25],[60.3125,-10.25],[60.3125,-10.75],[60.3125,-11.25],[59.6875,-11.25],[59.0625,-11.25],[58.4375,-11.25],[58.4375,-11.75],[57.8125,-11.75],[57.1875,-11.75],[56.5625,-11.75],[56.5625,-12.25],[56.5625,-12.75],[56.5625,-13.25],[56.5625,-13.75],[57.1875,-13.75],[57.1875,-14.25],[57.8125,-14.25],[57.8125,-14.75],[58.4375,-14.75],[59.0625,-14.75],[59.6875,-14.75],[59.6875,-14.25],[59.6875,-13.75],[59.6875,-13.25],[60.3125,-13.25],[60.9375,-13.25],[60.9375,-13.75],[60.9375,-14.25],[60.9375,-14.75],[61.5625,-14.75],[61.5625,-15.25],[62.1875,-15.25],[62.1875,-15.75],[61.5625,-15.75],[61.5625,-16.25],[60.9375,-16.25],[60.3125,-16.25],[60.3125,-16.75],[60.3125,-17.25],[59.6875,-17.25],[59.6875,-17.75],[59.0625,-17.75],[58.4375,-17.75],[57.8125,-17.75],[57.1875,-17.75],[57.1875,-17.25],[56.5625,-17.25],[55.9375,-17.25],[55.9375,-16.75],[55.3125,-16.75],[55.3125,-16.25],[54.6875,-16.25],[54.6875,-15.75],[54.0625,-15.75],[53.4375,-15.75],[53.4375,-15.25],[52.8125,-15.25],[52.8125,-14.75],[52.1875,-14.75],[51.5625,-14.75],[51.5625,-14.25],[50.9375,-14.25],[50.3125,-14.25],[50.3125,-13.75],[49.6875,-13.75],[49.6875,-13.25],[49.0625,-13.25],[48.4375,-13.25],[48.4375,-12.75],[47.8125,-12.75],[47.8125,-12.25],[47.1875,-12.25],[47.1875,-11.75],[46.5625,-11.75],[46.5625,-11.25],[45.9375,-11.25],[45.9375,-10.75],[45.9375,-10.25],[45.3125,-10.25],[45.3125,-9.75],[44.6875,-9.75],[44.0625,-9.75],[44.0625,-9.25],[43.4375,-9.25],[43.4375,-8.75],[42.8125,-8.75],[42.1875,-8.75],[41.5625,-8.75],[41.5625,-8.25],[40.9375,-8.25],[40.9375,-7.75],[40.3125,-7.75],[39.6875,-7.75],[39.6875,-7.25],[39.6875,-6.75],[39.6875,-6.25],[39.0625,-6.25],[39.0625,-5.75],[39.0625,-5.25],[39.0625,-4.75],[39.0625,-4.25],[39.0625,-3.75],[39.0625,-3.25],[39.0625,-2.75],[39.0625,-2.25],[39.0625,-1.75],[39.0625,-1.25],[38.4375,-1.25],[38.4375,-0.75],[38.4375,-0.25000000000017975],[37.8125,-0.25000000000017975],[37.8125,0.25],[37.8125,0.75],[37.8125,1.25],[37.1875,1.25],[36.5625,1.25],[35.9375,1.25],[35.9375,1.75],[35.3125,1.75],[34.6875,1.75],[34.6875,2.25],[34.6875,2.75],[34.6875,3.25],[34.0625,3.25],[34.0625,3.75],[33.4375,3.75],[33.4375,4.25],[32.8125,4.25],[32.1875,4.25],[31.5625,4.25],[31.5625,3.75],[31.5625,3.25],[31.5625,2.75],[32.1875,2.75],[32.1875,2.25],[31.5625,2.25],[30.9375,2.25],[30.9375,1.75],[30.3125,1.75],[29.6875,1.75],[29.0625,1.75],[28.4375,1.75],[27.8125,1.75],[27.8125,1.25],[27.1875,1.25],[26.5625,1.25],[25.9375,1.25],[25.9375,0.75],[25.3125,0.75],[25.3125,0.25],[24.6875,0.25],[24.0625,0.25],[24.0625,-0.25000000000017975],[24.0625,-0.75],[23.4375,-0.75],[23.4375,-1.25],[22.8125,-1.25],[22.8125,-1.75],[22.1875,-1.75],[21.5625,-1.75],[21.5625,-2.25],[20.9375,-2.25],[20.3125,-2.25],[20.3125,-2.75],[19.6875,-2.75],[19.0625,-2.75],[18.4375,-2.75],[18.4375,-3.25],[17.8125,-3.25],[17.1875,-3.25],[16.5625,-3.25],[15.9375,-3.25],[15.3125,-3.25],[14.6875,-3.25],[14.6875,-2.75],[14.0625,-2.75],[14.0625,-3.25],[13.4375,-3.25],[13.4375,-3.75],[12.8125,-3.75],[12.8125,-4.25],[12.1875,-4.25],[12.1875,-4.75],[11.5625,-4.75],[11.5625,-5.25],[11.5625,-5.75],[10.9375,-5.75],[10.3125,-5.75],[10.3125,-5.25],[9.6875,-5.25],[9.0625,-5.25],[8.4375,-5.25],[8.4375,-5.75],[7.8125,-5.75],[7.1875,-5.75],[7.1875,-5.25],[6.5625,-5.25],[5.9375,-5.25],[5.3125,-5.25],[4.6875,-5.25],[4.0625,-5.25],[4.0625,-5.75],[3.4375,-5.75],[2.8125,-5.75],[2.1875,-5.75],[1.5625,-5.75],[0.9375,-5.75],[0.3125,-5.75],[-0.312500000000592,-5.75],[-0.9375,-5.75],[-1.5625,-5.75],[-1.5625,-5.25],[-2.1875,-5.25],[-2.8125,-5.25],[-3.4375,-5.25],[-3.4375,-5.75],[-4.0625,-5.75],[-4.0625,-5.25],[-4.6875,-5.25],[-4.6875,-5.75],[-5.3125,-5.75],[-5.9375,-5.75],[-6.5625,-5.75],[-6.5625,-6.25],[-7.1875,-6.25],[-7.1875,-5.75],[-7.8125,-5.75],[-8.4375,-5.75],[-9.0625,-5.75],[-9.6875,-5.75],[-10.3125,-5.75],[-10.3125,-5.25],[-10.9375,-5.25],[-11.5625,-5.25],[-12.1875,-5.25],[-12.1875,-4.75],[-12.8125,-4.75],[-13.4375,-4.75],[-13.4375,-4.25],[-14.0625,-4.25],[-14.6875,-4.25],[-15.3125,-4.25],[-15.3125,-3.75],[-15.9375,-3.75],[-15.9375,-3.25],[-16.5625,-3.25],[-17.1875,-3.25],[-17.1875,-2.75],[-17.8125,-2.75],[-17.8125,-2.25],[-18.4375,-2.25],[-18.4375,-1.75],[-18.4375,-1.25],[-18.4375,-0.75],[-19.0625,-0.75],[-19.0625,-0.25000000000017975],[-19.0625,0.25],[-18.4375,0.25],[-18.4375,0.75],[-17.8125,0.75],[-17.8125,1.25],[-17.8125,1.75],[-17.8125,2.25],[-17.8125,2.75],[-17.8125,3.25],[-18.4375,3.25],[-19.0625,3.25],[-19.0625,2.75],[-19.0625,2.25],[-19.6875,2.25],[-20.3125,2.25],[-20.3125,1.75],[-20.9375,1.75],[-20.9375,1.25],[-21.5625,1.25],[-22.1875,1.25],[-22.1875,0.75],[-22.1875,0.25],[-22.1875,-0.25000000000017975],[-21.5625,-0.25000000000017975],[-21.5625,-0.75],[-20.9375,-0.75],[-20.3125,-0.75],[-20.3125,-1.25],[-20.9375,-1.25],[-20.9375,-1.75],[-21.5625,-1.75],[-22.1875,-1.75],[-22.1875,-2.25],[-22.8125,-2.25],[-22.8125,-2.75],[-23.4375,-2.75],[-24.0625,-2.75],[-24.6875,-2.75],[-25.3125,-2.75],[-25.3125,-2.25],[-25.9375,-2.25],[-26.5625,-2.25],[-27.1875,-2.25],[-27.8125,-2.25],[-27.8125,-1.75],[-28.4375,-1.75],[-28.4375,-1.25],[-29.0625,-1.25],[-29.6875,-1.25],[-30.3125,-1.25],[-30.3125,-1.75],[-30.3125,-2.25],[-30.9375,-2.25],[-30.9375,-1.75],[-31.5625,-1.75],[-31.5625,-1.25],[-31.5625,-0.75],[-31.5625,-0.25000000000017975],[-31.5625,0.25],[-30.9375,0.25],[-30.3125,0.25],[-29.6875,0.25],[-29.6875,0.75],[-29.6875,1.25],[-29.6875,1.75],[-30.3125,1.75],[-30.3125,2.25],[-30.9375,2.25],[-31.5625,2.25],[-32.1875,2.25],[-32.8125,2.25],[-33.4375,2.25],[-33.4375,2.75],[-34.0625,2.75],[-34.0625,2.25],[-34.6875,2.25],[-34.6875,1.75],[-35.3125,1.75],[-35.3125,1.25],[-35.9375,1.25],[-35.9375,1.75],[-35.9375,2.25],[-36.5625,2.25],[-37.1875,2.25],[-37.8125,2.25],[-37.8125,1.75],[-38.4375,1.75],[-38.4375,1.25],[-39.0625,1.25],[-39.0625,0.75],[-39.6875,0.75],[-39.6875,0.25],[-39.6875,-0.25000000000017975],[-39.6875,-0.75],[-40.3125,-0.75],[-40.3125,-1.25],[-39.6875,-1.25],[-39.0625,-1.25],[-39.0625,-1.75],[-39.0625,-2.25],[-39.6875,-2.25],[-39.6875,-2.75],[-39.6875,-3.25],[-39.6875,-3.75],[-39.6875,-4.25],[-39.0625,-4.25],[-39.0625,-4.75],[-38.4375,-4.75],[-38.4375,-4.25],[-38.4375,-3.75],[-37.8125,-3.75],[-37.1875,-3.75],[-36.5625,-3.75],[-35.9375,-3.75],[-35.3125,-3.75],[-35.3125,-4.25],[-34.6875,-4.25],[-34.6875,-4.75],[-34.0625,-4.75],[-34.0625,-5.25],[-33.4375,-5.25],[-33.4375,-5.75],[-32.8125,-5.75],[-32.1875,-5.75],[-31.5625,-5.75],[-31.5625,-6.25],[-30.9375,-6.25],[-30.3125,-6.25],[-29.6875,-6.25],[-29.6875,-5.75],[-29.0625,-5.75],[-29.0625,-6.25],[-28.4375,-6.25],[-27.8125,-6.25],[-27.8125,-6.75],[-27.8125,-7.25],[-28.4375,-7.25],[-28.4375,-7.75],[-29.0625,-7.75],[-29.6875,-7.75],[-30.3125,-7.75],[-30.3125,-7.25],[-30.9375,-7.25],[-31.5625,-7.25],[-32.1875,-7.25],[-32.8125,-7.25],[-33.4375,-7.25],[-34.0625,-7.25],[-34.0625,-6.75],[-34.6875,-6.75],[-35.3125,-6.75],[-35.9375,-6.75],[-35.9375,-6.25],[-36.5625,-6.25],[-37.1875,-6.25],[-37.1875,-5.75],[-37.8125,-5.75],[-38.4375,-5.75],[-39.0625,-5.75],[-39.6875,-5.75],[-39.6875,-6.25],[-40.3125,-6.25],[-40.9375,-6.25],[-40.9375,-6.75],[-41.5625,-6.75],[-42.1875,-6.75],[-42.1875,-6.25],[-41.5625,-6.25],[-41.5625,-5.75],[-41.5625,-5.25],[-42.1875,-5.25],[-42.8125,-5.25],[-43.4375,-5.25],[-43.4375,-4.75],[-43.4375,-4.25],[-42.8125,-4.25],[-42.1875,-4.25],[-41.5625,-4.25],[-40.9375,-4.25],[-40.3125,-4.25],[-40.3125,-3.75],[-40.9375,-3.75],[-41.5625,-3.75],[-41.5625,-3.25],[-42.1875,-3.25],[-42.1875,-2.75],[-42.1875,-2.25],[-42.8125,-2.25],[-43.4375,-2.25],[-43.4375,-1.75],[-44.0625,-1.75],[-44.0625,-1.25],[-44.6875,-1.25],[-44.6875,-1.75],[-45.3125,-1.75],[-45.3125,-2.25],[-45.9375,-2.25],[-45.9375,-2.75],[-46.5625,-2.75],[-46.5625,-2.25],[-46.5625,-1.75],[-45.9375,-1.75],[-45.9375,-1.25],[-45.3125,-1.25],[-45.3125,-0.75],[-44.6875,-0.75],[-44.6875,-0.25000000000017975],[-45.3125,-0.25000000000017975],[-45.9375,-0.25000000000017975],[-46.5625,-0.25000000000017975],[-47.1875,-0.25000000000017975],[-47.8125,-0.25000000000017975],[-47.8125,-0.75],[-48.4375,-0.75],[-48.4375,-1.25],[-49.0625,-1.25],[-49.0625,-1.75],[-49.6875,-1.75],[-50.3125,-1.75],[-50.3125,-2.25],[-50.9375,-2.25],[-51.5625,-2.25],[-52.1875,-2.25],[-52.8125,-2.25],[-53.4375,-2.25],[-54.0625,-2.25],[-54.6875,-2.25],[-54.6875,-1.75],[-54.6875,-1.25],[-54.0625,-1.25],[-54.0625,-0.75],[-54.6875,-0.75],[-55.3125,-0.75],[-55.3125,-0.25000000000017975],[-55.9375,-0.25000000000017975],[-56.5625,-0.25000000000017975],[-57.1875,-0.25000000000017975],[-57.1875,-0.75],[-57.8125,-0.75],[-58.4375,-0.75],[-58.4375,-0.25000000000017975],[-59.0625,-0.25000000000017975],[-59.0625,0.25],[-59.6875,0.25],[-59.6875,-0.25000000000017975],[-60.3125,-0.25000000000017975],[-60.3125,-0.75],[-60.9375,-0.75],[-60.9375,-1.25],[-61.5625,-1.25],[-61.5625,-1.75],[-62.1875,-1.75],[-62.1875,-2.25],[-62.8125,-2.25],[-62.8125,-2.75],[-63.4375,-2.75],[-64.0625,-2.75],[-64.6875,-2.75],[-64.6875,-3.25],[-65.3125,-3.25],[-65.9375,-3.25],[-66.5625,-3.25],[-67.1875,-3.25],[-67.8125,-3.25],[-68.4375,-3.25],[-69.0625,-3.25],[-69.6875,-3.25],[-69.6875,-3.75],[-70.3125,-3.75],[-70.9375,-3.75],[-71.5625,-3.75],[-72.1875,-3.75],[-72.8125,-3.75],[-72.8125,-3.25],[-73.4375,-3.25],[-74.0625,-3.25],[-74.0625,-3.75],[-74.0625,-4.25],[-74.6875,-4.25],[-75.3125,-4.25],[-75.9375,-4.25],[-75.9375,-4.75],[-76.5625,-4.75],[-77.1875,-4.75],[-77.1875,-5.25],[-77.8125,-5.25],[-77.8125,-5.75],[-78.4375,-5.75],[-79.0625,-5.75],[-79.0625,-5.25],[-78.4375,-5.25],[-78.4375,-4.75],[-78.4375,-4.25],[-78.4375,-3.75],[-78.4375,-3.25],[-77.8125,-3.25],[-77.8125,-2.75],[-77.8125,-2.25],[-77.8125,-1.75],[-77.8125,-1.25],[-77.8125,-0.75],[-77.1875,-0.75],[-77.1875,-0.25000000000017975],[-77.1875,0.25],[-77.1875,0.75],[-77.1875,1.25],[-76.5625,1.25],[-76.5625,1.75],[-75.9375,1.75],[-75.9375,2.25],[-75.3125,2.25],[-75.3125,2.75],[-75.3125,3.25],[-75.3125,3.75],[-74.6875,3.75],[-74.0625,3.75],[-73.4375,3.75],[-73.4375,4.25],[-72.8125,4.25],[-72.8125,4.75],[-72.8125,5.25],[-72.1875,5.25],[-72.1875,4.75],[-71.5625,4.75],[-70.9375,4.75],[-70.3125,4.75],[-69.6875,4.75],[-69.0625,4.75],[-69.0625,4.25],[-68.4375,4.25],[-67.8125,4.25],[-67.1875,4.25],[-67.1875,3.75],[-66.5625,3.75],[-65.9375,3.75],[-65.9375,3.25],[-65.3125,3.25],[-65.3125,3.75],[-64.6875,3.75],[-64.0625,3.75],[-63.4375,3.75],[-63.4375,4.25],[-62.8125,4.25],[-62.8125,4.75],[-62.1875,4.75],[-61.5625,4.75],[-60.9375,4.75],[-60.3125,4.75],[-59.6875,4.75],[-59.0625,4.75],[-59.0625,5.25],[-59.6875,5.25],[-59.6875,5.75],[-60.3125,5.75],[-60.3125,6.25],[-60.3125,6.75],[-59.6875,6.75],[-59.6875,6.25],[-59.0625,6.25],[-59.0625,6.75],[-59.0625,7.25],[-59.6875,7.25],[-59.6875,7.75],[-60.3125,7.75],[-60.3125,8.25],[-60.9375,8.25],[-61.5625,8.25],[-61.5625,8.75],[-62.1875,8.75],[-62.8125,8.75],[-63.4375,8.75],[-63.4375,8.25],[-64.0625,8.25],[-64.0625,7.75],[-64.6875,7.75],[-65.3125,7.75],[-65.3125,8.25],[-64.6875,8.25],[-64.6875,8.75],[-64.6875,9.25],[-64.0625,9.25],[-63.4375,9.25],[-62.8125,9.25],[-62.8125,9.75],[-62.8125,10.25],[-63.4375,10.25],[-64.0625,10.25],[-64.0625,10.75],[-64.6875,10.75],[-64.6875,10.25],[-65.3125,10.25],[-65.3125,10.75],[-65.9375,10.75],[-65.9375,11.25],[-66.5625,11.25],[-67.1875,11.25],[-67.8125,11.25],[-67.8125,11.75],[-68.4375,11.75],[-69.0625,11.75],[-69.6875,11.75],[-69.6875,11.25],[-70.3125,11.25],[-70.3125,10.75],[-70.9375,10.75],[-71.5625,10.75],[-72.1875,10.75],[-72.1875,11.25],[-72.8125,11.25],[-73.4375,11.25],[-74.0625,11.25],[-74.6875,11.25],[-75.3125,11.25],[-75.9375,11.25],[-76.5625,11.25],[-76.5625,10.75],[-77.1875,10.75],[-77.8125,10.75],[-77.8125,10.25],[-77.1875,10.25],[-76.5625,10.25],[-76.5625,9.75],[-76.5625,9.25],[-77.1875,9.25],[-77.1875,8.75],[-77.8125,8.75],[-77.8125,8.25],[-77.1875,8.25],[-76.5625,8.25],[-76.5625,8.75],[-75.9375,8.75],[-75.3125,8.75],[-75.3125,8.25],[-75.3125,7.75],[-75.9375,7.75],[-76.5625,7.75],[-77.1875,7.75],[-77.1875,7.25],[-77.8125,7.25],[-77.8125,6.75],[-78.4375,6.75],[-78.4375,6.25],[-78.4375,5.75],[-78.4375,5.25],[-78.4375,4.75],[-78.4375,4.25],[-77.8125,4.25],[-77.8125,3.75],[-78.4375,3.75],[-78.4375,3.25],[-77.8125,3.25],[-77.1875,3.25],[-77.1875,2.75],[-77.8125,2.75],[-77.8125,2.25],[-78.4375,2.25],[-78.4375,1.75],[-79.0625,1.75],[-79.6875,1.75],[-79.6875,1.25],[-80.3125,1.25],[-80.9375,1.25],[-80.9375,0.75],[-81.5625,0.75],[-82.1875,0.75],[-82.8125,0.75],[-83.4375,0.75],[-84.0625,0.75],[-84.0625,0.25],[-84.6875,0.25],[-85.3125,0.25],[-85.9375,0.25],[-86.5625,0.25],[-87.1875,0.25],[-87.8125,0.25],[-88.4375,0.25],[-88.4375,-0.25000000000017975],[-89.0625,-0.25000000000017975],[-89.6875,-0.25000000000017975],[-89.6875,-0.75],[-90.3125,-0.75],[-90.3125,-0.25000000000017975],[-90.9375,-0.25000000000017975],[-91.5625,-0.25000000000017975],[-91.5625,-0.75],[-90.9375,-0.75],[-90.9375,-1.25],[-91.5625,-1.25],[-91.5625,-1.75],[-92.1875,-1.75],[-92.1875,-1.25],[-92.8125,-1.25],[-92.8125,-1.75],[-93.4375,-1.75],[-93.4375,-1.25],[-94.0625,-1.25],[-94.6875,-1.25],[-94.6875,-1.75],[-95.3125,-1.75],[-95.3125,-2.25],[-95.3125,-2.75],[-95.3125,-3.25],[-94.6875,-3.25],[-94.6875,-3.75],[-94.6875,-4.25],[-94.6875,-4.75],[-95.3125,-4.75],[-95.3125,-5.25],[-95.3125,-5.75],[-95.3125,-6.25],[-95.3125,-6.75],[-95.9375,-6.75],[-96.5625,-6.75],[-96.5625,-6.25],[-97.1875,-6.25],[-97.8125,-6.25],[-97.8125,-5.75],[-98.4375,-5.75],[-98.4375,-5.25],[-98.4375,-4.75],[-98.4375,-4.25],[-97.8125,-4.25],[-97.8125,-3.75],[-97.8125,-3.25],[-97.8125,-2.75],[-97.1875,-2.75],[-97.1875,-2.25],[-97.1875,-1.75],[-97.8125,-1.75],[-98.4375,-1.75],[-98.4375,-2.25],[-98.4375,-2.75],[-98.4375,-3.25],[-99.0625,-3.25],[-99.6875,-3.25],[-100.3125,-3.25],[-100.3125,-3.75],[-100.9375,-3.75],[-101.5625,-3.75],[-101.5625,-4.25],[-102.1875,-4.25],[-102.1875,-3.75],[-102.1875,-3.25],[-102.8125,-3.25],[-103.4375,-3.25],[-104.0625,-3.25],[-104.0625,-3.75],[-104.0625,-4.25],[-103.4375,-4.25],[-103.4375,-4.75],[-103.4375,-5.25],[-104.0625,-5.25],[-104.6875,-5.25],[-104.6875,-4.75],[-104.6875,-4.25],[-105.3125,-4.25],[-105.3125,-3.75],[-105.9375,-3.75],[-105.9375,-3.25],[-105.9375,-2.75],[-106.5625,-2.75],[-107.1875,-2.75],[-107.8125,-2.75],[-108.4375,-2.75],[-109.0625,-2.75],[-109.0625,-2.25],[-109.6875,-2.25],[-110.3125,-2.25],[-110.9375,-2.25],[-110.9375,-2.75],[-110.3125,-2.75],[-110.3125,-3.25],[-109.6875,-3.25],[-109.6875,-3.75],[-109.6875,-4.25],[-109.0625,-4.25],[-108.4375,-4.25],[-108.4375,-4.75],[-107.8125,-4.75],[-107.8125,-5.25],[-107.1875,-5.25],[-107.1875,-5.75],[-107.1875,-6.25],[-107.8125,-6.25],[-108.4375,-6.25],[-108.4375,-6.75],[-109.0625,-6.75],[-109.6875,-6.75],[-109.6875,-6.25],[-110.3125,-6.25],[-110.3125,-5.75],[-110.3125,-5.25],[-110.3125,-4.75],[-110.9375,-4.75],[-111.5625,-4.75],[-112.1875,-4.75],[-112.8125,-4.75],[-113.4375,-4.75],[-113.4375,-4.25],[-114.0625,-4.25],[-114.6875,-4.25],[-114.6875,-3.75],[-115.3125,-3.75],[-115.3125,-3.25],[-115.9375,-3.25],[-116.5625,-3.25],[-116.5625,-3.75],[-116.5625,-4.25],[-115.9375,-4.25],[-115.9375,-4.75],[-115.9375,-5.25],[-116.5625,-5.25],[-116.5625,-5.75],[-116.5625,-6.25],[-116.5625,-6.75],[-117.1875,-6.75],[-117.8125,-6.75],[-118.4375,-6.75],[-119.0625,-6.75],[-119.6875,-6.75],[-120.3125,-6.75],[-120.9375,-6.75],[-121.5625,-6.75],[-121.5625,-7.25],[-122.1875,-7.25],[-122.8125,-7.25],[-122.8125,-7.75],[-123.4375,-7.75],[-123.4375,-8.25],[-122.8125,-8.25],[-122.8125,-8.75],[-122.8125,-9.25],[-122.8125,-9.75],[-122.8125,-10.25],[-122.1875,-10.25],[-122.1875,-10.75],[-122.8125,-10.75],[-123.4375,-10.75],[-123.4375,-11.25],[-124.0625,-11.25],[-124.6875,-11.25],[-125.3125,-11.25],[-125.3125,-10.75],[-125.9375,-10.75],[-126.5625,-10.75],[-126.5625,-10.25],[-127.1875,-10.25],[-127.1875,-9.75],[-127.1875,-9.25],[-127.8125,-9.25],[-128.4375,-9.25],[-128.4375,-8.75],[-129.0625,-8.75],[-129.6875,-8.75],[-129.6875,-8.25],[-130.3125,-8.25],[-130.9375,-8.25],[-131.5625,-8.25],[-132.1875,-8.25],[-132.8125,-8.25],[-133.4375,-8.25],[-134.0625,-8.25],[-134.6875,-8.25],[-135.3125,-8.25],[-135.3125,-8.75],[-135.9375,-8.75],[-135.9375,-9.25],[-136.5625,-9.25],[-136.5625,-9.75],[-137.1875,-9.75],[-137.1875,-10.25],[-137.8125,-10.25],[-138.4375,-10.25],[-138.4375,-10.75],[-139.0625,-10.75],[-139.6875,-10.75],[-139.6875,-11.25],[-140.3125,-11.25],[-140.9375,-11.25],[-140.9375,-11.75],[-141.5625,-11.75],[-142.1875,-11.75],[-142.1875,-12.25],[-142.8125,-12.25],[-143.4375,-12.25],[-144.0625,-12.25],[-144.6875,-12.25],[-145.3125,-12.25],[-145.9375,-12.25],[-146.5625,-12.25],[-146.5625,-11.75],[-147.1875,-11.75],[-147.8125,-11.75],[-148.4375,-11.75],[-148.4375,-11.25],[-149.0625,-11.25],[-149.6875,-11.25],[-149.6875,-10.75],[-150.3125,-10.75],[-150.9375,-10.75],[-151.5625,-10.75],[-152.1875,-10.75],[-152.8125,-10.75],[-152.8125,-10.25],[-152.8125,-9.75],[-153.4375,-9.75],[-153.4375,-9.25],[-153.4375,-8.75],[-154.0625,-8.75],[-154.0625,-8.25],[-154.6875,-8.25],[-155.3125,-8.25],[-155.3125,-7.75],[-155.9375,-7.75],[-156.5625,-7.75],[-156.5625,-7.25],[-156.5625,-6.75],[-157.1875,-6.75],[-157.1875,-6.25],[-157.1875,-5.75],[-157.8125,-5.75],[-157.8125,-5.25],[-158.4375,-5.25],[-158.4375,-4.75],[-159.0625,-4.75],[-159.0625,-5.25],[-159.6875,-5.25],[-160.3125,-5.25],[-160.9375,-5.25],[-160.9375,-5.75],[-160.9375,-6.25],[-160.9375,-6.75],[-160.9375,-7.25],[-160.3125,-7.25],[-160.3125,-7.75],[-160.3125,-8.25],[-159.6875,-8.25],[-159.6875,-8.75],[-159.0625,-8.75],[-159.0625,-9.25],[-158.4375,-9.25],[-157.8125,-9.25],[-157.8125,-9.75],[-157.8125,-10.25],[-157.1875,-10.25],[-156.5625,-10.25],[-156.5625,-10.75],[-155.9375,-10.75],[-155.9375,-11.25],[-155.3125,-11.25],[-155.3125,-11.75],[-155.3125,-12.25],[-155.3125,-12.75],[-155.3125,-13.25],[-155.3125,-13.75],[-154.6875,-13.75],[-154.6875,-14.25],[-154.6875,-14.75],[-154.6875,-15.25],[-154.6875,-15.75],[-154.0625,-15.75],[-154.0625,-16.25],[-153.4375,-16.25],[-153.4375,-16.75],[-152.8125,-16.75],[-152.1875,-16.75],[-152.1875,-17.25],[-151.5625,-17.25],[-151.5625,-17.75],[-150.9375,-17.75],[-150.9375,-18.25],[-150.3125,-18.25],[-149.6875,-18.25],[-149.6875,-17.75],[-149.0625,-17.75],[-149.0625,-17.25],[-148.4375,-17.25],[-147.8125,-17.25],[-147.8125,-17.75],[-147.1875,-17.75],[-147.1875,-18.25],[-146.5625,-18.25],[-146.5625,-18.75],[-145.9375,-18.75],[-145.9375,-19.25],[-145.3125,-19.25],[-145.3125,-19.75],[-144.6875,-19.75],[-144.6875,-20.25],[-144.0625,-20.25],[-143.4375,-20.25],[-143.4375,-20.75],[-142.8125,-20.75],[-142.8125,-21.25],[-142.1875,-21.25],[-142.1875,-21.75],[-141.5625,-21.75],[-141.5625,-22.25],[-140.9375,-22.25],[-140.9375,-22.75],[-140.9375,-23.25],[-140.3125,-23.25],[-140.3125,-23.75],[-140.3125,-24.25],[-140.9375,-24.25],[-140.9375,-24.75],[-141.5625,-24.75],[-142.1875,-24.75],[-142.8125,-24.75],[-142.8125,-24.25],[-143.4375,-24.25],[-144.0625,-24.25],[-144.6875,-24.25],[-145.3125,-24.25],[-145.9375,-24.25],[-146.5625,-24.25],[-147.1875,-24.25],[-147.1875,-24.75],[-146.5625,-24.75],[-146.5625,-25.25],[-147.1875,-25.25],[-147.8125,-25.25],[-148.4375,-25.25],[-149.0625,-25.25],[-149.6875,-25.25],[-150.3125,-25.25],[-150.9375,-25.25],[-151.5625,-25.25],[-152.1875,-25.25],[-152.8125,-25.25],[-152.8125,-25.75],[-153.4375,-25.75],[-153.4375,-25.25],[-154.0625,-25.25],[-154.6875,-25.25],[-154.6875,-24.75],[-155.3125,-24.75],[-155.9375,-24.75],[-156.5625,-24.75],[-157.1875,-24.75],[-157.8125,-24.75],[-158.4375,-24.75],[-159.0625,-24.75],[-159.6875,-24.75],[-160.3125,-24.75],[-160.9375,-24.75],[-160.9375,-25.25],[-161.5625,-25.25],[-162.1875,-25.25],[-162.8125,-25.25],[-162.8125,-25.75],[-163.4375,-25.75],[-163.4375,-26.25],[-164.0625,-26.25],[-164.0625,-26.75],[-164.6875,-26.75],[-164.6875,-27.25],[-165.3125,-27.25],[-165.9375,-27.25],[-165.9375,-27.75],[-166.5625,-27.75],[-166.5625,-28.25],[-167.1875,-28.25],[-167.8125,-28.25],[-167.8125,-28.75],[-168.4375,-28.75],[-168.4375,-29.25],[-169.0625,-29.25],[-169.0625,-29.75],[-169.6875,-29.75],[-169.6875,-30.25],[-170.3125,-30.25],[-170.3125,-30.75],[-170.3125,-31.25],[-170.9375,-31.25],[-170.9375,-31.75],[-171.5625,-31.75],[-171.5625,-32.25],[-172.1875,-32.25],[-172.8125,-32.25],[-172.8125,-32.75],[-173.4375,-32.75],[-174.0625,-32.75],[-174.6875,-32.75],[-175.3125,-32.75],[-175.9375,-32.75],[-176.5625,-32.75],[-177.1875,-32.75],[-177.8125,-32.75],[-178.4375,-32.75],[-179.0625,-32.75],[-179.6875,-32.75],[-179.6875,-32.25],[179.6875,-32.25],[179.6875,-31.75],[179.0625,-31.75],[178.4375,-31.75],[177.8125,-31.75],[177.8125,-31.25],[177.1875,-31.25],[177.1875,-30.75],[176.5625,-30.75],[176.5625,-30.25],[175.9375,-30.25],[175.9375,-29.75],[175.9375,-29.25],[175.3125,-29.25],[175.3125,-28.75],[174.6875,-28.75],[174.6875,-28.25],[174.0625,-28.25],[173.4375,-28.25],[172.8125,-28.25],[172.1875,-28.25],[171.5625,-28.25],[170.9375,-28.25],[170.9375,-28.75],[170.9375,-29.25],[170.3125,-29.25],[170.3125,-29.75],[170.3125,-30.25],[170.3125,-30.75],[170.3125,-31.25],[170.3125,-31.75],[170.3125,-32.25],[170.3125,-32.75],[170.9375,-32.75],[170.9375,-33.25],[170.9375,-33.75],[171.5625,-33.75],[171.5625,-34.25],[172.1875,-34.25],[172.1875,-34.75],[172.8125,-34.75],[172.8125,-35.25],[172.8125,-35.75],[172.8125,-36.25],[172.8125,-36.75],[172.8125,-37.25],[172.1875,-37.25],[172.1875,-37.75],[172.1875,-38.25],[171.5625,-38.25],[171.5625,-38.75],[171.5625,-39.25],[170.9375,-39.25],[170.9375,-39.75],[170.9375,-40.25],[170.9375,-40.75],[170.9375,-41.25],[170.9375,-41.75],[170.3125,-41.75],[170.3125,-42.25],[170.9375,-42.25],[170.9375,-42.75],[170.3125,-42.75],[170.3125,-43.25],[170.3125,-43.75],[170.3125,-44.25],[170.9375,-44.25],[170.9375,-44.75],[171.5625,-44.75],[171.5625,-45.25],[171.5625,-45.75],[171.5625,-46.25],[172.1875,-46.25],[172.1875,-46.75],[172.1875,-47.25],[171.5625,-47.25],[171.5625,-47.75],[170.9375,-47.75],[170.3125,-47.75],[170.3125,-48.25],[169.6875,-48.25],[169.6875,-48.75],[169.6875,-49.25],[169.0625,-49.25],[169.0625,-49.75],[168.4375,-49.75]]],[[[167.1875,26.75],[167.8125,26.75],[167.8125,26.25],[168.4375,26.25],[168.4375,25.75],[168.4375,25.25],[168.4375,24.75],[169.0625,24.75],[169.0625,24.25],[169.6875,24.25],[169.6875,23.75],[169.6875,23.25],[170.3125,23.25],[170.9375,23.25],[171.5625,23.25],[172.1875,23.25],[172.1875,22.75],[172.8125,22.75],[172.8125,22.25],[173.4375,22.25],[174.0625,22.25],[174.6875,22.25],[175.3125,22.25],[175.9375,22.25],[176.5625,22.25],[176.5625,22.75],[177.1875,22.75],[177.8125,22.75],[178.4375,22.75],[179.0625,22.75],[179.0625,22.25],[179.6875,22.25],[179.6875,21.75],[-179.6875,21.75],[-179.6875,21.25],[-179.0625,21.25],[-178.4375,21.25],[-177.8125,21.25],[-177.1875,21.25],[-177.1875,21.75],[-176.5625,21.75],[-175.9375,21.75],[-175.3125,21.75],[-175.3125,21.25],[-174.6875,21.25],[-174.0625,21.25],[-173.4375,21.25],[-172.8125,21.25],[-172.8125,20.75],[-172.1875,20.75],[-172.1875,20.25],[-171.5625,20.25],[-171.5625,19.75],[-170.9375,19.75],[-170.3125,19.75],[-170.3125,19.25],[-169.6875,19.25],[-169.6875,18.75],[-169.6875,18.25],[-169.0625,18.25],[-169.0625,17.75],[-169.0625,17.25],[-168.4375,17.25],[-168.4375,16.75],[-167.8125,16.75],[-167.8125,16.25],[-167.8125,15.75],[-168.4375,15.75],[-169.0625,15.75],[-169.0625,16.25],[-169.0625,16.75],[-169.6875,16.75],[-170.3125,16.75],[-170.3125,17.25],[-170.9375,17.25],[-171.5625,17.25],[-171.5625,16.75],[-172.1875,16.75],[-172.8125,16.75],[-172.8125,16.25],[-173.4375,16.25],[-174.0625,16.25],[-174.0625,15.75],[-174.0625,15.25],[-173.4375,15.25],[-172.8125,15.25],[-172.1875,15.25],[-171.5625,15.25],[-171.5625,14.75],[-170.9375,14.75],[-170.9375,14.25],[-170.9375,13.75],[-170.3125,13.75],[-170.3125,13.25],[-169.6875,13.25],[-169.0625,13.25],[-169.0625,12.75],[-168.4375,12.75],[-167.8125,12.75],[-167.1875,12.75],[-166.5625,12.75],[-165.9375,12.75],[-165.9375,12.25],[-165.3125,12.25],[-164.6875,12.25],[-164.0625,12.25],[-163.4375,12.25],[-163.4375,12.75],[-162.8125,12.75],[-162.1875,12.75],[-162.1875,13.25],[-161.5625,13.25],[-161.5625,12.75],[-160.9375,12.75],[-160.9375,12.25],[-160.3125,12.25],[-159.6875,12.25],[-159.0625,12.25],[-159.0625,11.75],[-158.4375,11.75],[-157.8125,11.75],[-157.8125,11.25],[-157.1875,11.25],[-156.5625,11.25],[-155.9375,11.25],[-155.3125,11.25],[-154.6875,11.25],[-154.0625,11.25],[-154.0625,11.75],[-153.4375,11.75],[-152.8125,11.75],[-152.8125,11.25],[-152.8125,10.75],[-152.8125,10.25],[-152.1875,10.25],[-151.5625,10.25],[-150.9375,10.25],[-150.9375,9.75],[-150.3125,9.75],[-149.6875,9.75],[-149.0625,9.75],[-148.4375,9.75],[-147.8125,9.75],[-147.1875,9.75],[-147.1875,10.25],[-146.5625,10.25],[-145.9375,10.25],[-145.9375,10.75],[-145.3125,10.75],[-144.6875,10.75],[-144.6875,11.25],[-144.0625,11.25],[-143.4375,11.25],[-142.8125,11.25],[-142.1875,11.25],[-142.1875,11.75],[-141.5625,11.75],[-140.9375,11.75],[-140.3125,11.75],[-139.6875,11.75],[-139.0625,11.75],[-139.0625,11.25],[-138.4375,11.25],[-138.4375,10.75],[-137.8125,10.75],[-137.8125,10.25],[-137.1875,10.25],[-136.5625,10.25],[-135.9375,10.25],[-135.9375,9.75],[-135.3125,9.75],[-134.6875,9.75],[-134.6875,9.25],[-134.0625,9.25],[-134.0625,8.75],[-133.4375,8.75],[-133.4375,8.25],[-132.8125,8.25],[-132.1875,8.25],[-131.5625,8.25],[-130.9375,8.25],[-130.3125,8.25],[-129.6875,8.25],[-129.0625,8.25],[-128.4375,8.25],[-127.8125,8.25],[-127.8125,8.75],[-127.1875,8.75],[-126.5625,8.75],[-126.5625,9.25],[-125.9375,9.25],[-125.3125,9.25],[-125.3125,8.75],[-124.6875,8.75],[-124.0625,8.75],[-123.4375,8.75],[-123.4375,9.25],[-122.8125,9.25],[-122.1875,9.25],[-121.5625,9.25],[-121.5625,8.75],[-120.9375,8.75],[-120.3125,8.75],[-119.6875,8.75],[-119.0625,8.75],[-119.0625,8.25],[-118.4375,8.25],[-117.8125,8.25],[-117.1875,8.25],[-117.1875,8.75],[-116.5625,8.75],[-115.9375,8.75],[-115.9375,9.25],[-115.3125,9.25],[-114.6875,9.25],[-114.0625,9.25],[-114.0625,9.75],[-113.4375,9.75],[-112.8125,9.75],[-112.1875,9.75],[-111.5625,9.75],[-110.9375,9.75],[-110.3125,9.75],[-109.6875,9.75],[-109.6875,9.25],[-109.6875,8.75],[-109.6875,8.25],[-109.0625,8.25],[-108.4375,8.25],[-108.4375,8.75],[-107.8125,8.75],[-107.1875,8.75],[-106.5625,8.75],[-105.9375,8.75],[-105.9375,8.25],[-106.5625,8.25],[-106.5625,7.75],[-107.1875,7.75],[-107.8125,7.75],[-107.8125,7.25],[-108.4375,7.25],[-109.0625,7.25],[-109.6875,7.25],[-110.3125,7.25],[-110.9375,7.25],[-110.9375,6.75],[-110.9375,6.25],[-111.5625,6.25],[-111.5625,5.75],[-111.5625,5.25],[-111.5625,4.75],[-111.5625,4.25],[-111.5625,3.75],[-110.9375,3.75],[-110.3125,3.75],[-110.3125,4.25],[-109.6875,4.25],[-109.0625,4.25],[-109.0625,4.75],[-108.4375,4.75],[-107.8125,4.75],[-107.1875,4.75],[-106.5625,4.75],[-106.5625,5.25],[-106.5625,5.75],[-105.9375,5.75],[-105.9375,6.25],[-105.3125,6.25],[-105.3125,6.75],[-104.6875,6.75],[-104.6875,7.25],[-104.0625,7.25],[-103.4375,7.25],[-103.4375,7.75],[-102.8125,7.75],[-102.8125,8.25],[-102.1875,8.25],[-102.1875,8.75],[-101.5625,8.75],[-100.9375,8.75],[-100.9375,8.25],[-100.9375,7.75],[-100.9375,7.25],[-100.9375,6.75],[-100.3125,6.75],[-100.3125,6.25],[-100.3125,5.75],[-100.3125,5.25],[-99.6875,5.25],[-99.6875,4.75],[-99.6875,4.25],[-99.6875,3.75],[-99.0625,3.75],[-99.0625,3.25],[-98.4375,3.25],[-97.8125,3.25],[-97.8125,3.75],[-97.1875,3.75],[-97.1875,4.25],[-96.5625,4.25],[-96.5625,4.75],[-95.9375,4.75],[-95.9375,5.25],[-95.9375,5.75],[-95.3125,5.75],[-95.3125,6.25],[-95.3125,6.75],[-94.6875,6.75],[-94.6875,7.25],[-95.3125,7.25],[-95.3125,7.75],[-94.6875,7.75],[-94.0625,7.75],[-93.4375,7.75],[-93.4375,7.25],[-92.8125,7.25],[-92.1875,7.25],[-91.5625,7.25],[-90.9375,7.25],[-90.3125,7.25],[-89.6875,7.25],[-89.0625,7.25],[-89.0625,6.75],[-89.0625,6.25],[-89.0625,5.75],[-89.0625,5.25],[-88.4375,5.25],[-87.8125,5.25],[-87.1875,5.25],[-87.1875,5.75],[-87.1875,6.25],[-87.8125,6.25],[-87.8125,6.75],[-87.8125,7.25],[-87.8125,7.75],[-87.1875,7.75],[-87.1875,8.25],[-86.5625,8.25],[-85.9375,8.25],[-85.3125,8.25],[-84.6875,8.25],[-84.6875,7.75],[-84.0625,7.75],[-84.0625,8.25],[-83.4375,8.25],[-82.8125,8.25],[-82.8125,8.75],[-82.8125,9.25],[-82.1875,9.25],[-82.1875,9.75],[-82.8125,9.75],[-82.8125,10.25],[-83.4375,10.25],[-84.0625,10.25],[-84.0625,9.75],[-84.6875,9.75],[-84.6875,10.25],[-85.3125,10.25],[-85.9375,10.25],[-86.5625,10.25],[-87.1875,10.25],[-87.8125,10.25],[-87.8125,10.75],[-87.8125,11.25],[-87.1875,11.25],[-87.1875,11.75],[-86.5625,11.75],[-86.5625,12.25],[-85.9375,12.25],[-85.3125,12.25],[-85.3125,12.75],[-85.3125,13.25],[-84.6875,13.25],[-84.0625,13.25],[-84.0625,13.75],[-84.0625,14.25],[-84.0625,14.75],[-84.0625,15.25],[-84.0625,15.75],[-84.6875,15.75],[-85.3125,15.75],[-85.3125,16.25],[-85.9375,16.25],[-85.9375,16.75],[-86.5625,16.75],[-86.5625,17.25],[-86.5625,17.75],[-86.5625,18.25],[-85.9375,18.25],[-85.3125,18.25],[-84.6875,18.25],[-84.0625,18.25],[-84.0625,18.75],[-84.0625,19.25],[-84.0625,19.75],[-83.4375,19.75],[-82.8125,19.75],[-82.8125,19.25],[-82.1875,19.25],[-81.5625,19.25],[-81.5625,18.75],[-80.9375,18.75],[-80.3125,18.75],[-80.3125,18.25],[-79.6875,18.25],[-79.0625,18.25],[-79.0625,17.75],[-78.4375,17.75],[-77.8125,17.75],[-77.1875,17.75],[-76.5625,17.75],[-75.9375,17.75],[-75.3125,17.75],[-74.6875,17.75],[-74.0625,17.75],[-73.4375,17.75],[-72.8125,17.75],[-72.1875,17.75],[-72.1875,17.25],[-71.5625,17.25],[-70.9375,17.25],[-70.3125,17.25],[-69.6875,17.25],[-69.0625,17.25],[-69.0625,16.75],[-68.4375,16.75],[-67.8125,16.75],[-67.1875,16.75],[-66.5625,16.75],[-66.5625,16.25],[-65.9375,16.25],[-65.9375,15.75],[-65.3125,15.75],[-65.3125,15.25],[-64.6875,15.25],[-64.0625,15.25],[-64.0625,14.75],[-63.4375,14.75],[-62.8125,14.75],[-62.8125,14.25],[-62.1875,14.25],[-62.1875,13.75],[-62.1875,13.25],[-61.5625,13.25],[-60.9375,13.25],[-60.9375,12.75],[-60.9375,12.25],[-60.3125,12.25],[-60.3125,11.75],[-60.3125,11.25],[-59.6875,11.25],[-59.6875,10.75],[-59.0625,10.75],[-59.0625,10.25],[-58.4375,10.25],[-58.4375,9.75],[-57.8125,9.75],[-57.8125,9.25],[-57.1875,9.25],[-57.1875,8.75],[-56.5625,8.75],[-55.9375,8.75],[-55.3125,8.75],[-55.3125,8.25],[-54.6875,8.25],[-54.6875,7.75],[-54.6875,7.25],[-54.0625,7.25],[-54.0625,6.75],[-54.0625,6.25],[-54.6875,6.25],[-54.6875,5.75],[-55.3125,5.75],[-55.9375,5.75],[-56.5625,5.75],[-57.1875,5.75],[-57.8125,5.75],[-58.4375,5.75],[-58.4375,5.25],[-58.4375,4.75],[-57.8125,4.75],[-57.1875,4.75],[-56.5625,4.75],[-55.9375,4.75],[-55.3125,4.75],[-54.6875,4.75],[-54.0625,4.75],[-54.0625,4.25],[-53.4375,4.25],[-52.8125,4.25],[-52.8125,3.75],[-52.1875,3.75],[-52.1875,3.25],[-51.5625,3.25],[-50.9375,3.25],[-50.9375,3.75],[-50.9375,4.25],[-50.9375,4.75],[-51.5625,4.75],[-51.5625,5.25],[-52.1875,5.25],[-52.1875,5.75],[-52.1875,6.25],[-52.1875,6.75],[-52.8125,6.75],[-52.8125,7.25],[-52.8125,7.75],[-52.1875,7.75],[-52.1875,8.25],[-52.1875,8.75],[-51.5625,8.75],[-50.9375,8.75],[-50.9375,9.25],[-50.3125,9.25],[-49.6875,9.25],[-49.0625,9.25],[-49.0625,9.75],[-48.4375,9.75],[-47.8125,9.75],[-47.1875,9.75],[-46.5625,9.75],[-45.9375,9.75],[-45.3125,9.75],[-45.3125,10.25],[-44.6875,10.25],[-44.0625,10.25],[-43.4375,10.25],[-43.4375,9.75],[-42.8125,9.75],[-42.1875,9.75],[-41.5625,9.75],[-40.9375,9.75],[-40.9375,10.25],[-40.3125,10.25],[-39.6875,10.25],[-39.0625,10.25],[-39.0625,10.75],[-38.4375,10.75],[-37.8125,10.75],[-37.8125,11.25],[-37.1875,11.25],[-36.5625,11.25],[-36.5625,11.75],[-35.9375,11.75],[-35.3125,11.75],[-35.3125,12.25],[-34.6875,12.25],[-34.0625,12.25],[-33.4375,12.25],[-33.4375,11.75],[-33.4375,11.25],[-32.8125,11.25],[-32.1875,11.25],[-31.5625,11.25],[-30.9375,11.25],[-30.9375,10.75],[-30.9375,10.25],[-31.5625,10.25],[-31.5625,9.75],[-31.5625,9.25],[-30.9375,9.25],[-30.3125,9.25],[-30.3125,8.75],[-29.6875,8.75],[-29.0625,8.75],[-29.0625,8.25],[-28.4375,8.25],[-27.8125,8.25],[-27.1875,8.25],[-27.1875,7.75],[-26.5625,7.75],[-25.9375,7.75],[-25.9375,7.25],[-25.3125,7.25],[-25.3125,7.75],[-24.6875,7.75],[-24.6875,8.25],[-24.6875,8.75],[-24.0625,8.75],[-24.0625,9.25],[-23.4375,9.25],[-23.4375,9.75],[-22.8125,9.75],[-22.8125,10.25],[-22.1875,10.25],[-21.5625,10.25],[-21.5625,10.75],[-20.9375,10.75],[-20.3125,10.75],[-19.6875,10.75],[-19.6875,10.25],[-19.6875,9.75],[-20.3125,9.75],[-20.9375,9.75],[-20.9375,9.25],[-20.9375,8.75],[-20.9375,8.25],[-20.3125,8.25],[-19.6875,8.25],[-19.6875,8.75],[-19.0625,8.75],[-18.4375,8.75],[-17.8125,8.75],[-17.1875,8.75],[-16.5625,8.75],[-15.9375,8.75],[-15.3125,8.75],[-15.3125,8.25],[-14.6875,8.25],[-14.0625,8.25],[-13.4375,8.25],[-13.4375,7.75],[-12.8125,7.75],[-12.1875,7.75],[-12.1875,7.25],[-11.5625,7.25],[-11.5625,6.75],[-10.9375,6.75],[-10.3125,6.75],[-9.6875,6.75],[-9.6875,6.25],[-9.0625,6.25],[-9.0625,5.75],[-8.4375,5.75],[-7.8125,5.75],[-7.1875,5.75],[-6.5625,5.75],[-6.5625,5.25],[-5.9375,5.25],[-5.3125,5.25],[-5.3125,5.75],[-4.6875,5.75],[-4.0625,5.75],[-3.4375,5.75],[-2.8125,5.75],[-2.8125,5.25],[-2.1875,5.25],[-1.5625,5.25],[-0.9375,5.25],[-0.312500000000592,5.25],[0.3125,5.25],[0.9375,5.25],[1.5625,5.25],[2.1875,5.25],[2.8125,5.25],[2.8125,4.75],[3.4375,4.75],[3.4375,4.25],[2.8125,4.25],[2.1875,4.25],[2.1875,3.75],[2.1875,3.25],[2.1875,2.75],[2.1875,2.25],[2.8125,2.25],[3.4375,2.25],[4.0625,2.25],[4.0625,1.75],[4.6875,1.75],[4.6875,1.25],[5.3125,1.25],[5.9375,1.25],[6.5625,1.25],[7.1875,1.25],[7.1875,1.75],[7.8125,1.75],[8.4375,1.75],[8.4375,2.25],[9.0625,2.25],[9.6875,2.25],[9.6875,2.75],[10.3125,2.75],[10.3125,3.25],[10.3125,3.75],[10.9375,3.75],[10.9375,4.25],[11.5625,4.25],[12.1875,4.25],[12.1875,4.75],[12.8125,4.75],[13.4375,4.75],[14.0625,4.75],[14.0625,4.25],[14.6875,4.25],[15.3125,4.25],[15.3125,3.75],[15.3125,3.25],[15.3125,2.75],[14.6875,2.75],[14.6875,2.25],[14.0625,2.25],[14.0625,1.75],[13.4375,1.75],[13.4375,1.25],[12.8125,1.25],[12.8125,0.75],[12.1875,0.75],[12.1875,0.25],[11.5625,0.25],[11.5625,-0.25000000000017975],[10.9375,-0.25000000000017975],[10.3125,-0.25000000000017975],[10.3125,-0.75],[9.6875,-0.75],[9.0625,-0.75],[9.0625,-1.25],[8.4375,-1.25],[7.8125,-1.25],[7.8125,-1.75],[7.8125,-2.25],[8.4375,-2.25],[8.4375,-2.75],[9.0625,-2.75],[9.6875,-2.75],[10.3125,-2.75],[10.3125,-2.25],[10.3125,-1.75],[10.9375,-1.75],[11.5625,-1.75],[12.1875,-1.75],[12.8125,-1.75],[13.4375,-1.75],[14.0625,-1.75],[14.0625,-1.25],[14.6875,-1.25],[14.6875,-0.75],[14.6875,-0.25000000000017975],[15.3125,-0.25000000000017975],[15.9375,-0.25000000000017975],[16.5625,-0.25000000000017975],[17.1875,-0.25000000000017975],[17.1875,0.25],[17.8125,0.25],[18.4375,0.25],[18.4375,0.75],[19.0625,0.75],[19.6875,0.75],[19.6875,1.25],[20.3125,1.25],[20.3125,1.75],[20.9375,1.75],[21.5625,1.75],[21.5625,2.25],[20.9375,2.25],[20.3125,2.25],[19.6875,2.25],[19.6875,2.75],[20.3125,2.75],[20.3125,3.25],[20.9375,3.25],[21.5625,3.25],[22.1875,3.25],[22.8125,3.25],[22.8125,3.75],[23.4375,3.75],[23.4375,4.25],[24.0625,4.25],[24.6875,4.25],[25.3125,4.25],[25.3125,3.75],[25.9375,3.75],[26.5625,3.75],[26.5625,4.25],[27.1875,4.25],[27.8125,4.25],[28.4375,4.25],[29.0625,4.25],[29.0625,4.75],[29.6875,4.75],[30.3125,4.75],[30.3125,5.25],[30.3125,5.75],[30.9375,5.75],[30.9375,6.25],[31.5625,6.25],[32.1875,6.25],[32.8125,6.25],[33.4375,6.25],[33.4375,6.75],[34.0625,6.75],[34.6875,6.75],[35.3125,6.75],[35.3125,6.25],[35.9375,6.25],[35.9375,5.75],[36.5625,5.75],[36.5625,5.25],[36.5625,4.75],[37.1875,4.75],[37.1875,5.25],[37.8125,5.25],[38.4375,5.25],[38.4375,4.75],[37.8125,4.75],[37.8125,4.25],[37.8125,3.75],[38.4375,3.75],[38.4375,3.25],[39.0625,3.25],[39.0625,2.75],[39.6875,2.75],[39.6875,2.25],[39.6875,1.75],[40.3125,1.75],[40.9375,1.75],[40.9375,1.25],[40.9375,0.75],[40.9375,0.25],[40.9375,-0.25000000000017975],[41.5625,-0.25000000000017975],[41.5625,0.25],[42.1875,0.25],[42.1875,-0.25000000000017975],[42.8125,-0.25000000000017975],[42.8125,-0.75],[43.4375,-0.75],[43.4375,-1.25],[43.4375,-1.75],[44.0625,-1.75],[44.0625,-2.25],[44.0625,-2.75],[44.6875,-2.75],[44.6875,-3.25],[45.3125,-3.25],[45.9375,-3.25],[45.9375,-3.75],[46.5625,-3.75],[47.1875,-3.75],[47.1875,-4.25],[47.8125,-4.25],[47.8125,-4.75],[48.4375,-4.75],[49.0625,-4.75],[49.6875,-4.75],[49.6875,-5.25],[50.3125,-5.25],[50.9375,-5.25],[50.9375,-5.75],[51.5625,-5.75],[52.1875,-5.75],[52.1875,-6.25],[52.8125,-6.25],[53.4375,-6.25],[54.0625,-6.25],[54.6875,-6.25],[55.3125,-6.25],[55.9375,-6.25],[55.9375,-5.75],[56.5625,-5.75],[57.1875,-5.75],[57.8125,-5.75],[57.8125,-6.25],[58.4375,-6.25],[59.0625,-6.25],[59.0625,-6.75],[59.6875,-6.75],[59.6875,-7.25],[59.6875,-7.75],[60.3125,-7.75],[60.3125,-7.25],[60.9375,-7.25],[61.5625,-7.25],[62.1875,-7.25],[62.1875,-7.75],[62.1875,-8.25],[62.8125,-8.25],[63.4375,-8.25],[63.4375,-7.75],[64.0625,-7.75],[64.6875,-7.75],[65.3125,-7.75],[65.9375,-7.75],[66.5625,-7.75],[66.5625,-8.25],[67.1875,-8.25],[67.1875,-7.75],[67.1875,-7.25],[66.5625,-7.25],[66.5625,-6.75],[66.5625,-6.25],[65.9375,-6.25],[65.9375,-5.75],[65.9375,-5.25],[66.5625,-5.25],[67.1875,-5.25],[67.8125,-5.25],[68.4375,-5.25],[69.0625,-5.25],[69.6875,-5.25],[69.6875,-5.75],[70.3125,-5.75],[70.3125,-6.25],[70.9375,-6.25],[70.9375,-6.75],[71.5625,-6.75],[71.5625,-7.25],[72.1875,-7.25],[72.8125,-7.25],[72.8125,-7.75],[73.4375,-7.75],[73.4375,-8.25],[73.4375,-8.75],[74.0625,-8.75],[74.6875,-8.75],[75.3125,-8.75],[75.9375,-8.75],[75.9375,-9.25],[76.5625,-9.25],[77.1875,-9.25],[77.8125,-9.25],[78.4375,-9.25],[78.4375,-8.75],[79.0625,-8.75],[79.0625,-8.25],[79.6875,-8.25],[79.6875,-7.75],[80.3125,-7.75],[80.3125,-7.25],[80.9375,-7.25],[81.5625,-7.25],[82.1875,-7.25],[82.8125,-7.25],[82.8125,-6.75],[82.8125,-6.25],[82.8125,-5.75],[82.8125,-5.25],[82.8125,-4.75],[82.8125,-4.25],[82.8125,-3.75],[82.1875,-3.75],[81.5625,-3.75],[80.9375,-3.75],[80.3125,-3.75],[80.3125,-3.25],[79.6875,-3.25],[79.0625,-3.25],[78.4375,-3.25],[77.8125,-3.25],[77.1875,-3.25],[77.1875,-3.75],[76.5625,-3.75],[75.9375,-3.75],[75.3125,-3.75],[74.6875,-3.75],[74.0625,-3.75],[74.0625,-3.25],[73.4375,-3.25],[72.8125,-3.25],[72.8125,-2.75],[72.1875,-2.75],[72.1875,-2.25],[72.8125,-2.25],[73.4375,-2.25],[74.0625,-2.25],[74.0625,-1.75],[74.6875,-1.75],[75.3125,-1.75],[75.3125,-1.25],[75.9375,-1.25],[76.5625,-1.25],[76.5625,-0.75],[77.1875,-0.75],[77.1875,-0.25000000000017975],[76.5625,-0.25000000000017975],[76.5625,0.25],[75.9375,0.25],[75.9375,0.75],[75.3125,0.75],[75.3125,1.25],[75.3125,1.75],[74.6875,1.75],[74.6875,2.25],[74.6875,2.75],[74.6875,3.25],[74.6875,3.75],[74.0625,3.75],[74.0625,4.25],[74.6875,4.25],[75.3125,4.25],[75.9375,4.25],[76.5625,4.25],[76.5625,4.75],[77.1875,4.75],[77.8125,4.75],[78.4375,4.75],[79.0625,4.75],[79.6875,4.75],[79.6875,5.25],[80.3125,5.25],[80.9375,5.25],[81.5625,5.25],[82.1875,5.25],[82.1875,4.75],[82.8125,4.75],[83.4375,4.75],[84.0625,4.75],[84.0625,5.25],[84.6875,5.25],[84.6875,5.75],[85.3125,5.75],[85.3125,6.25],[85.9375,6.25],[86.5625,6.25],[86.5625,6.75],[87.1875,6.75],[87.8125,6.75],[87.8125,7.25],[88.4375,7.25],[89.0625,7.25],[89.0625,7.75],[89.6875,7.75],[89.6875,8.25],[89.6875,8.75],[90.3125,8.75],[90.3125,9.25],[89.6875,9.25],[89.6875,9.75],[89.0625,9.75],[89.0625,9.25],[88.4375,9.25],[87.8125,9.25],[87.8125,8.75],[87.1875,8.75],[87.1875,8.25],[86.5625,8.25],[85.9375,8.25],[85.9375,8.75],[85.3125,8.75],[85.3125,9.25],[84.6875,9.25],[84.6875,9.75],[84.6875,10.25],[84.0625,10.25],[84.0625,10.75],[84.0625,11.25],[84.0625,11.75],[84.6875,11.75],[84.6875,12.25],[85.3125,12.25],[85.9375,12.25],[86.5625,12.25],[87.1875,12.25],[87.1875,12.75],[87.8125,12.75],[88.4375,12.75],[89.0625,12.75],[89.6875,12.75],[89.6875,12.25],[89.6875,11.75],[89.6875,11.25],[89.6875,10.75],[90.3125,10.75],[90.3125,10.25],[90.9375,10.25],[90.9375,9.75],[90.9375,9.25],[91.5625,9.25],[91.5625,8.75],[92.1875,8.75],[92.8125,8.75],[92.8125,9.25],[93.4375,9.25],[93.4375,9.75],[94.0625,9.75],[94.6875,9.75],[94.6875,10.25],[94.0625,10.25],[94.0625,10.75],[93.4375,10.75],[93.4375,11.25],[93.4375,11.75],[94.0625,11.75],[94.0625,11.25],[94.6875,11.25],[95.3125,11.25],[95.9375,11.25],[96.5625,11.25],[96.5625,10.75],[97.1875,10.75],[97.1875,10.25],[97.1875,9.75],[97.1875,9.25],[97.1875,8.75],[97.1875,8.25],[97.1875,7.75],[97.1875,7.25],[97.8125,7.25],[98.4375,7.25],[98.4375,6.75],[99.0625,6.75],[99.6875,6.75],[99.6875,6.25],[100.3125,6.25],[100.3125,6.75],[100.9375,6.75],[100.9375,6.25],[100.9375,5.75],[100.3125,5.75],[99.6875,5.75],[99.0625,5.75],[99.0625,6.25],[98.4375,6.25],[98.4375,5.75],[98.4375,5.25],[98.4375,4.75],[99.0625,4.75],[99.0625,5.25],[99.6875,5.25],[100.3125,5.25],[100.3125,4.75],[100.3125,4.25],[100.3125,3.75],[100.3125,3.25],[100.9375,3.25],[100.9375,2.75],[101.5625,2.75],[102.1875,2.75],[102.1875,3.25],[102.8125,3.25],[103.4375,3.25],[103.4375,2.75],[104.0625,2.75],[104.6875,2.75],[105.3125,2.75],[105.3125,3.25],[105.9375,3.25],[105.9375,2.75],[106.5625,2.75],[107.1875,2.75],[107.1875,2.25],[107.8125,2.25],[107.8125,1.75],[108.4375,1.75],[108.4375,1.25],[109.0625,1.25],[109.0625,0.75],[109.6875,0.75],[109.6875,0.25],[109.6875,-0.25000000000017975],[110.3125,-0.25000000000017975],[110.3125,-0.75],[110.9375,-0.75],[111.5625,-0.75],[111.5625,-1.25],[111.5625,-1.75],[112.1875,-1.75],[112.1875,-2.25],[111.5625,-2.25],[111.5625,-2.75],[110.9375,-2.75],[110.9375,-3.25],[110.3125,-3.25],[109.6875,-3.25],[109.6875,-2.75],[109.6875,-2.25],[109.0625,-2.25],[109.0625,-1.75],[108.4375,-1.75],[107.8125,-1.75],[107.1875,-1.75],[106.5625,-1.75],[106.5625,-2.25],[105.9375,-2.25],[105.9375,-2.75],[105.9375,-3.25],[105.3125,-3.25],[105.3125,-3.75],[105.3125,-4.25],[105.3125,-4.75],[105.3125,-5.25],[105.3125,-5.75],[104.6875,-5.76],[104.6875,-6.25],[104.6875,-6.75],[104.6875,-7.25],[105.3125,-7.25],[105.9375,-7.25],[106.5625,-7.25],[107.1875,-7.25],[107.1875,-7.75],[107.8125,-7.75],[108.4375,-7.75],[109.0625,-7.75],[109.6875,-7.75],[110.3125,-7.75],[110.3125,-8.25],[110.3125,-8.75],[110.3125,-9.25],[110.9375,-9.25],[111.5625,-9.25],[112.1875,-9.25],[112.8125,-9.25],[113.4375,-9.25],[113.4375,-8.75],[114.0625,-8.75],[114.6875,-8.75],[115.3125,-8.75],[115.9375,-8.75],[116.5625,-8.75],[117.1875,-8.75],[117.8125,-8.75],[117.8125,-9.25],[118.4375,-9.25],[119.0625,-9.25],[119.0625,-8.75],[119.6875,-8.75],[120.3125,-8.75],[120.3125,-8.25],[120.9375,-8.25],[120.9375,-7.75],[120.9375,-7.25],[121.5625,-7.25],[121.5625,-6.75],[120.9375,-6.75],[120.9375,-6.25],[120.3125,-6.25],[119.6875,-6.25],[119.6875,-5.75],[119.0625,-5.75],[118.4375,-5.75],[117.8125,-5.75],[117.8125,-5.25],[117.1875,-5.25],[117.1875,-4.75],[116.5625,-4.75],[116.5625,-4.25],[117.1875,-4.25],[117.8125,-4.25],[117.8125,-3.75],[117.8125,-3.25],[118.4375,-3.25],[119.0625,-3.25],[119.6875,-3.25],[120.3125,-3.25],[120.9375,-3.25],[120.9375,-2.75],[121.5625,-2.75],[121.5625,-2.25],[120.9375,-2.25],[120.9375,-1.75],[121.5625,-1.75],[122.1875,-1.75],[122.1875,-1.25],[122.1875,-0.75],[122.1875,-0.25000000000017975],[122.8125,-0.25000000000017975],[123.4375,-0.25000000000017975],[123.4375,-0.75],[124.0625,-0.75],[124.0625,-1.25],[124.6875,-1.25],[125.3125,-1.25],[125.9375,-1.25],[126.5625,-1.25],[127.1875,-1.25],[127.1875,-1.75],[127.8125,-1.75],[128.4375,-1.75],[129.0625,-1.75],[129.0625,-1.25],[129.6875,-1.25],[129.6875,-0.75],[129.6875,-0.25000000000017975],[130.3125,-0.25000000000017975],[130.3125,0.25],[130.3125,0.75],[129.6875,0.75],[129.6875,1.25],[129.0625,1.25],[128.4375,1.25],[127.8125,1.25],[127.8125,1.75],[127.8125,2.25],[127.1875,2.25],[126.5625,2.25],[126.5625,1.75],[125.9375,1.75],[125.3125,1.75],[125.3125,2.25],[124.6875,2.25],[124.0625,2.25],[124.0625,1.75],[123.4375,1.75],[123.4375,1.25],[122.8125,1.25],[122.1875,1.25],[121.5625,1.25],[120.9375,1.25],[120.9375,1.75],[120.3125,1.75],[120.3125,2.25],[119.6875,2.25],[119.6875,2.75],[119.6875,3.25],[120.3125,3.25],[120.3125,3.75],[120.3125,4.25],[120.3125,4.75],[120.3125,5.25],[120.3125,5.75],[119.6875,5.75],[119.6875,6.25],[120.3125,6.25],[120.9375,6.25],[120.9375,5.75],[121.5625,5.75],[121.5625,6.25],[121.5625,6.75],[120.9375,6.75],[120.3125,6.75],[120.3125,7.25],[119.6875,7.25],[119.0625,7.25],[119.0625,7.75],[119.0625,8.25],[118.4375,8.25],[118.4375,8.75],[117.8125,8.75],[117.8125,9.25],[117.1875,9.25],[117.1875,9.75],[116.5625,9.75],[115.9375,9.75],[115.9375,10.25],[115.9375,10.75],[116.5625,10.75],[116.5625,11.25],[117.1875,11.25],[117.1875,11.75],[117.1875,12.25],[117.1875,12.75],[117.8125,12.75],[118.4375,12.75],[118.4375,12.25],[119.0625,12.25],[119.6875,12.25],[120.3125,12.25],[120.9375,12.25],[121.5625,12.25],[122.1875,12.25],[122.8125,12.25],[123.4375,12.25],[123.4375,11.75],[123.4375,11.25],[122.8125,11.25],[122.8125,10.75],[123.4375,10.75],[123.4375,10.25],[124.0625,10.25],[124.6875,10.25],[124.6875,9.75],[125.3125,9.75],[125.3125,9.25],[125.3125,8.75],[124.6875,8.75],[124.6875,8.25],[124.6875,7.75],[125.3125,7.75],[125.9375,7.75],[125.9375,7.25],[126.5625,7.25],[127.1875,7.25],[127.1875,7.75],[127.1875,8.25],[127.8125,8.25],[128.4375,8.25],[129.0625,8.25],[129.0625,8.75],[129.6875,8.75],[129.6875,9.25],[129.6875,9.75],[129.6875,10.25],[129.6875,10.75],[129.6875,11.25],[129.6875,11.75],[129.6875,12.25],[130.3125,12.25],[130.3125,12.75],[129.6875,12.75],[129.6875,13.25],[129.0625,13.25],[128.4375,13.25],[127.8125,13.25],[127.8125,12.75],[127.1875,12.75],[126.5625,12.75],[126.5625,13.25],[127.1875,13.25],[127.1875,13.75],[127.8125,13.75],[127.8125,14.25],[127.8125,14.75],[127.8125,15.25],[128.4375,15.25],[129.0625,15.25],[129.0625,15.75],[129.6875,15.75],[130.3125,15.75],[130.9375,15.75],[130.9375,15.25],[131.5625,15.25],[131.5625,15.75],[132.1875,15.75],[132.8125,15.75],[133.4375,15.75],[133.4375,15.25],[133.4375,14.75],[134.0625,14.75],[134.6875,14.75],[135.3125,14.75],[135.9375,14.75],[135.9375,14.25],[136.5625,14.25],[137.1875,14.25],[137.8125,14.25],[138.4375,14.25],[139.0625,14.25],[139.6875,14.25],[140.3125,14.25],[140.9375,14.25],[141.5625,14.25],[141.5625,14.75],[142.1875,14.75],[142.8125,14.75],[142.8125,14.25],[142.8125,13.75],[142.8125,13.25],[143.4375,13.25],[143.4375,13.75],[144.0625,13.75],[144.0625,14.25],[144.0625,14.75],[144.6875,14.75],[144.6875,15.25],[145.3125,15.25],[145.3125,15.75],[145.9375,15.75],[145.9375,16.25],[146.5625,16.25],[147.1875,16.25],[147.8125,16.25],[147.8125,16.75],[148.4375,16.75],[149.0625,16.75],[149.6875,16.75],[149.6875,17.25],[150.3125,17.25],[150.9375,17.25],[151.5625,17.25],[152.1875,17.25],[152.1875,17.75],[152.8125,17.75],[153.4375,17.75],[154.0625,17.75],[154.0625,18.25],[154.0625,18.75],[154.0625,19.25],[154.6875,19.25],[154.6875,19.75],[155.3125,19.75],[155.3125,20.25],[155.9375,20.25],[155.9375,19.75],[156.5625,19.75],[157.1875,19.75],[157.1875,19.25],[157.8125,19.25],[157.8125,18.75],[158.4375,18.75],[158.4375,18.25],[159.0625,18.25],[159.6875,18.25],[160.3125,18.25],[160.9375,18.25],[160.9375,18.75],[161.5625,18.75],[162.1875,18.75],[162.8125,18.75],[162.8125,18.25],[163.4375,18.25],[164.0625,18.25],[164.0625,17.75],[164.6875,17.75],[164.6875,18.25],[165.3125,18.25],[165.3125,18.75],[165.3125,19.25],[165.9375,19.25],[165.9375,19.75],[165.3125,19.75],[165.3125,20.25],[165.3125,20.75],[165.3125,21.25],[165.3125,21.75],[165.3125,22.25],[165.3125,22.75],[165.3125,23.25],[165.3125,23.75],[165.9375,23.75],[165.9375,24.25],[165.9375,24.75],[165.3125,24.75],[165.3125,25.25],[165.3125,25.75],[165.9375,25.75],[165.9375,26.25],[166.5625,26.25],[166.5625,26.75],[167.1875,26.75]]]] + # ring1 = [[-32.1875,-21.25],[-31.5625,-21.25],[-30.9375,-21.25],[-30.3125,-21.25],[-29.6875,-21.25],[-29.0625,-21.25],[-28.4375,-21.25],[-27.8125,-21.25],[-27.1875,-21.25],[-26.5625,-21.25],[-25.9375,-21.25],[-25.9375,-20.75],[-25.3125,-20.75],[-25.3125,-20.25],[-25.3125,-19.75],[-25.3125,-19.25],[-24.6875,-19.25],[-24.6875,-18.75],[-24.0625,-18.75],[-23.4375,-18.75],[-23.4375,-18.25],[-22.8125,-18.25],[-22.1875,-18.25],[-22.1875,-17.75],[-21.5625,-17.75],[-20.9375,-17.75],[-20.3125,-17.75],[-20.3125,-17.25],[-20.3125,-16.75],[-19.6875,-16.75],[-19.0625,-16.75],[-19.0625,-17.25],[-18.4375,-17.25],[-17.8125,-17.25],[-17.8125,-16.75],[-17.1875,-16.75],[-17.1875,-16.25],[-17.1875,-15.75],[-16.5625,-15.75],[-16.5625,-15.25],[-15.9375,-15.25],[-15.3125,-15.25],[-14.6875,-15.25],[-14.0625,-15.25],[-14.0625,-14.75],[-14.0625,-14.25],[-13.4375,-14.25],[-12.8125,-14.25],[-12.8125,-13.75],[-12.1875,-13.75],[-11.5625,-13.75],[-11.5625,-13.25],[-10.9375,-13.25],[-10.3125,-13.25],[-10.3125,-12.75],[-9.6875,-12.75],[-9.0625,-12.75],[-9.0625,-12.25],[-8.4375,-12.25],[-7.8125,-12.25],[-7.1875,-12.25],[-7.1875,-11.75],[-6.5625,-11.75],[-5.9375,-11.75],[-5.9375,-11.25],[-5.3125,-11.25],[-5.3125,-10.75],[-4.6875,-10.75],[-4.6875,-10.25],[-4.0625,-10.25],[-4.0625,-9.75],[-3.4375,-9.75],[-2.8125,-9.75],[-2.1875,-9.75],[-1.5625,-9.75],[-1.5625,-10.25],[-0.9375,-10.25],[-0.312500000000592,-10.25],[-0.312500000000592,-10.75],[0.3125,-10.75],[0.9375,-10.75],[1.5625,-10.75],[1.5625,-10.25],[2.1875,-10.25],[2.8125,-10.25],[3.4375,-10.25],[4.0625,-10.25],[4.0625,-9.75],[4.6875,-9.75],[5.3125,-9.75],[5.3125,-9.25],[5.3125,-8.75],[5.3125,-8.25],[5.3125,-7.75],[4.6875,-7.75],[4.6875,-7.25],[5.3125,-7.25],[5.9375,-7.25],[6.5625,-7.25],[6.5625,-7.75],[7.1875,-7.75],[7.8125,-7.75],[8.4375,-7.75],[8.4375,-8.25],[9.0625,-8.25],[9.6875,-8.25],[9.6875,-8.75],[10.3125,-8.75],[10.9375,-8.75],[10.9375,-9.25],[11.5625,-9.25],[12.1875,-9.25],[12.1875,-9.75],[12.8125,-9.75],[13.4375,-9.75],[14.0625,-9.75],[14.6875,-9.75],[14.6875,-10.25],[14.0625,-10.25],[14.0625,-10.75],[14.6875,-10.75],[15.3125,-10.75],[15.3125,-10.25],[15.9375,-10.25],[16.5625,-10.25],[16.5625,-10.75],[17.1875,-10.75],[17.8125,-10.75],[18.4375,-10.75],[18.4375,-10.25],[19.0625,-10.25],[19.6875,-10.25],[20.3125,-10.25],[20.3125,-9.75],[20.9375,-9.75],[20.9375,-9.25],[21.5625,-9.25],[22.1875,-9.25],[22.1875,-8.75],[22.8125,-8.75],[23.4375,-8.75],[23.4375,-8.25],[24.0625,-8.25],[24.0625,-7.75],[24.0625,-7.25],[24.6875,-7.25],[25.3125,-7.25],[25.9375,-7.25],[26.5625,-7.25],[26.5625,-7.75],[25.9375,-7.75],[25.9375,-8.25],[26.5625,-8.25],[26.5625,-8.75],[26.5625,-9.25],[26.5625,-9.75],[25.9375,-9.75],[25.9375,-10.25],[25.3125,-10.25],[24.6875,-10.25],[24.0625,-10.25],[24.0625,-9.75],[23.4375,-9.75],[23.4375,-9.25],[22.8125,-9.25],[22.8125,-9.75],[22.1875,-9.75],[22.1875,-10.25],[22.8125,-10.25],[23.4375,-10.25],[23.4375,-10.75],[24.0625,-10.75],[24.6875,-10.75],[24.6875,-11.25],[25.3125,-11.25],[25.3125,-11.75],[25.9375,-11.75],[26.5625,-11.75],[27.1875,-11.75],[27.8125,-11.75],[28.4375,-11.75],[29.0625,-11.75],[29.0625,-11.25],[29.0625,-10.75],[28.4375,-10.75],[28.4375,-10.25],[28.4375,-9.75],[29.0625,-9.75],[29.0625,-9.25],[29.0625,-8.75],[29.6875,-8.75],[29.6875,-8.25],[29.0625,-8.25],[28.4375,-8.25],[27.8125,-8.25],[27.8125,-7.75],[27.8125,-7.25],[28.4375,-7.25],[29.0625,-7.25],[29.6875,-7.25],[30.3125,-7.25],[30.3125,-7.75],[30.9375,-7.75],[30.9375,-7.25],[31.5625,-7.25],[32.1875,-7.25],[32.8125,-7.25],[32.8125,-6.75],[33.4375,-6.75],[33.4375,-7.25],[34.0625,-7.25],[34.6875,-7.25],[35.3125,-7.25],[35.3125,-7.75],[35.9375,-7.75],[35.9375,-8.25],[35.9375,-8.75],[35.3125,-8.75],[35.3125,-9.25],[35.9375,-9.25],[35.9375,-9.75],[35.3125,-9.75],[35.3125,-10.25],[34.6875,-10.25],[34.0625,-10.25],[34.0625,-10.75],[34.6875,-10.75],[34.6875,-11.25],[34.6875,-11.75],[34.0625,-11.75],[34.0625,-12.25],[34.0625,-12.75],[34.6875,-12.75],[34.6875,-12.25],[35.3125,-12.25],[35.3125,-12.75],[35.9375,-12.75],[36.5625,-12.75],[37.1875,-12.75],[37.8125,-12.75],[38.4375,-12.75],[39.0625,-12.75],[39.6875,-12.75],[39.6875,-13.25],[40.3125,-13.25],[40.9375,-13.25],[41.5625,-13.25],[42.1875,-13.25],[42.8125,-13.25],[43.4375,-13.25],[43.4375,-12.75],[44.0625,-12.75],[44.6875,-12.75],[45.3125,-12.75],[45.3125,-13.25],[45.3125,-13.75],[45.3125,-14.25],[45.3125,-14.75],[45.9375,-14.75],[45.9375,-15.25],[46.5625,-15.25],[47.1875,-15.25],[47.8125,-15.25],[47.8125,-14.75],[47.1875,-14.75],[47.1875,-14.25],[46.5625,-14.25],[46.5625,-13.75],[45.9375,-13.75],[45.9375,-13.25],[46.5625,-13.25],[46.5625,-12.75],[47.1875,-12.75],[47.8125,-12.75],[48.4375,-12.75],[48.4375,-13.25],[49.0625,-13.25],[49.0625,-13.75],[49.6875,-13.75],[49.6875,-14.25],[50.3125,-14.25],[50.3125,-14.75],[50.3125,-15.25],[50.9375,-15.25],[50.9375,-15.75],[51.5625,-15.75],[52.1875,-15.75],[52.8125,-15.75],[53.4375,-15.75],[53.4375,-16.25],[54.0625,-16.25],[54.0625,-16.75],[54.0625,-17.25],[54.6875,-17.25],[55.3125,-17.25],[55.9375,-17.25],[55.9375,-16.75],[56.5625,-16.75],[56.5625,-16.25],[57.1875,-16.25],[57.1875,-15.75],[57.1875,-15.25],[56.5625,-15.25],[56.5625,-14.75],[55.9375,-14.75],[55.3125,-14.75],[54.6875,-14.75],[54.0625,-14.75],[54.0625,-14.25],[53.4375,-14.25],[53.4375,-13.75],[52.8125,-13.75],[52.8125,-13.25],[52.1875,-13.25],[52.1875,-12.75],[51.5625,-12.75],[51.5625,-12.25],[51.5625,-11.75],[51.5625,-11.25],[52.1875,-11.25],[52.8125,-11.25],[52.8125,-11.75],[53.4375,-11.75],[53.4375,-12.25],[54.0625,-12.25],[54.6875,-12.25],[55.3125,-12.25],[55.9375,-12.25],[55.9375,-11.75],[55.9375,-11.25],[55.9375,-10.75],[55.3125,-10.75],[55.3125,-10.25],[55.3125,-9.75],[54.6875,-9.75],[54.6875,-9.25],[54.6875,-8.75],[55.3125,-8.75],[55.3125,-8.25],[55.9375,-8.25],[56.5625,-8.25],[57.1875,-8.25],[57.1875,-8.75],[57.8125,-8.75],[58.4375,-8.75],[58.4375,-9.25],[59.0625,-9.25],[59.6875,-9.25],[59.6875,-9.75],[60.3125,-9.75],[60.3125,-10.25],[60.9375,-10.25],[60.9375,-10.75],[61.5625,-10.75],[61.5625,-11.25],[62.1875,-11.25],[62.1875,-11.75],[62.8125,-11.75],[62.8125,-12.25],[63.4375,-12.25],[63.4375,-12.75],[63.4375,-13.25],[64.0625,-13.25],[64.0625,-13.75],[64.6875,-13.75],[65.3125,-13.75],[65.9375,-13.75],[65.9375,-14.25],[66.5625,-14.25],[67.1875,-14.25],[67.8125,-14.25],[68.4375,-14.25],[69.0625,-14.25],[69.6875,-14.25],[70.3125,-14.25],[70.9375,-14.25],[71.5625,-14.25],[72.1875,-14.25],[72.1875,-13.75],[72.8125,-13.75],[73.4375,-13.75],[74.0625,-13.75],[74.0625,-13.25],[74.6875,-13.25],[74.6875,-12.75],[75.3125,-12.75],[75.9375,-12.75],[75.9375,-12.25],[76.5625,-12.25],[77.1875,-12.25],[77.1875,-11.75],[77.8125,-11.75],[77.8125,-12.25],[78.4375,-12.25],[79.0625,-12.25],[79.0625,-12.75],[79.6875,-12.75],[80.3125,-12.75],[80.9375,-12.75],[80.9375,-13.25],[81.5625,-13.25],[82.1875,-13.25],[82.8125,-13.25],[82.8125,-12.75],[83.4375,-12.75],[83.4375,-12.25],[84.0625,-12.25],[84.0625,-11.75],[84.0625,-11.25],[83.4375,-11.25],[83.4375,-10.75],[83.4375,-10.25],[84.0625,-10.25],[84.0625,-9.75],[83.4375,-9.75],[82.8125,-9.75],[82.1875,-9.75],[82.1875,-9.25],[82.1875,-8.75],[81.5625,-8.75],[80.9375,-8.75],[80.3125,-8.75],[80.3125,-8.25],[79.6875,-8.25],[79.6875,-7.75],[79.6875,-7.25],[79.6875,-6.75],[80.3125,-6.75],[80.3125,-6.25],[80.3125,-5.75],[80.3125,-5.25],[80.9375,-5.25],[80.9375,-4.75],[80.9375,-4.25],[81.5625,-4.25],[81.5625,-3.75],[82.1875,-3.75],[82.1875,-3.25],[82.8125,-3.25],[83.4375,-3.25],[84.0625,-3.25],[84.0625,-2.75],[84.6875,-2.75],[84.6875,-2.25],[85.3125,-2.25],[85.9375,-2.25],[85.9375,-1.75],[86.5625,-1.75],[86.5625,-1.25],[87.1875,-1.25],[87.1875,-0.75],[87.8125,-0.75],[87.8125,-0.25000000000017975],[87.8125,0.25],[88.4375,0.25],[88.4375,0.75],[89.0625,0.75],[89.0625,1.25],[89.0625,1.75],[89.0625,2.25],[89.6875,2.25],[89.6875,2.75],[89.0625,2.75],[89.0625,3.25],[89.0625,3.75],[89.0625,4.25],[88.4375,4.25],[88.4375,4.75],[88.4375,5.25],[88.4375,5.75],[88.4375,6.25],[88.4375,6.75],[89.0625,6.75],[89.0625,7.25],[89.6875,7.25],[90.3125,7.25],[90.9375,7.25],[90.9375,7.75],[91.5625,7.75],[92.1875,7.75],[92.1875,7.25],[92.8125,7.25],[92.8125,6.75],[93.4375,6.75],[93.4375,6.25],[94.0625,6.25],[94.0625,5.75],[94.6875,5.75],[94.6875,5.25],[95.3125,5.25],[95.9375,5.25],[96.5625,5.25],[97.1875,5.25],[97.8125,5.25],[98.4375,5.25],[99.0625,5.25],[99.6875,5.25],[100.3125,5.25],[100.3125,4.75],[100.9375,4.75],[101.5625,4.75],[101.5625,4.25],[101.5625,3.75],[100.9375,3.75],[100.9375,3.25],[100.9375,2.75],[101.5625,2.75],[101.5625,2.25],[102.1875,2.25],[102.1875,1.75],[102.8125,1.75],[103.4375,1.75],[103.4375,2.25],[104.0625,2.25],[104.6875,2.25],[104.6875,2.75],[105.3125,2.75],[105.9375,2.75],[105.9375,3.25],[106.5625,3.25],[107.1875,3.25],[107.1875,3.75],[107.8125,3.75],[108.4375,3.75],[108.4375,4.25],[109.0625,4.25],[109.0625,4.75],[109.0625,5.25],[109.6875,5.25],[109.6875,5.75],[110.3125,5.75],[110.9375,5.75],[111.5625,5.75],[111.5625,6.25],[112.1875,6.25],[112.8125,6.25],[112.8125,6.75],[113.4375,6.75],[114.0625,6.75],[114.0625,6.25],[114.6875,6.25],[115.3125,6.25],[115.9375,6.25],[115.9375,6.75],[115.9375,7.25],[115.3125,7.25],[115.3125,7.75],[114.6875,7.75],[114.6875,8.25],[115.3125,8.25],[115.9375,8.25],[116.5625,8.25],[117.1875,8.25],[117.1875,7.75],[117.8125,7.75],[118.4375,7.75],[119.0625,7.75],[119.6875,7.75],[120.3125,7.75],[120.3125,8.25],[120.9375,8.25],[121.5625,8.25],[122.1875,8.25],[122.8125,8.25],[122.8125,8.75],[122.8125,9.25],[122.1875,9.25],[122.1875,9.75],[122.1875,10.25],[121.5625,10.25],[121.5625,9.75],[121.5625,9.25],[121.5625,8.75],[120.9375,8.75],[120.3125,8.75],[120.3125,9.25],[120.3125,9.75],[120.3125,10.25],[120.9375,10.25],[120.9375,10.75],[120.9375,11.25],[121.5625,11.25],[121.5625,11.75],[122.1875,11.75],[122.1875,12.25],[122.1875,12.75],[122.8125,12.75],[123.4375,12.75],[123.4375,13.25],[123.4375,13.75],[124.0625,13.75],[124.0625,13.25],[124.0625,12.75],[124.6875,12.75],[125.3125,12.75],[125.9375,12.75],[125.9375,12.25],[125.9375,11.75],[125.9375,11.25],[125.9375,10.75],[125.9375,10.25],[125.3125,10.25],[125.3125,9.75],[125.9375,9.75],[125.9375,9.25],[126.5625,9.25],[126.5625,8.75],[126.5625,8.25],[126.5625,7.75],[127.1875,7.75],[127.1875,8.25],[127.1875,8.75],[127.8125,8.75],[128.4375,8.75],[128.4375,9.25],[128.4375,9.75],[128.4375,10.25],[129.0625,10.25],[129.0625,10.75],[129.6875,10.75],[129.6875,11.25],[130.3125,11.25],[130.3125,11.75],[130.3125,12.25],[130.9375,12.25],[131.5625,12.25],[131.5625,12.75],[132.1875,12.75],[132.8125,12.75],[132.8125,13.25],[133.4375,13.25],[134.0625,13.25],[134.0625,13.75],[134.6875,13.75],[135.3125,13.75],[135.3125,14.25],[135.9375,14.25],[135.9375,14.75],[136.5625,14.75],[137.1875,14.75],[137.1875,15.25],[137.8125,15.25],[138.4375,15.25],[138.4375,15.75],[139.0625,15.75],[139.6875,15.75],[139.6875,16.25],[140.3125,16.25],[140.9375,16.25],[141.5625,16.25],[142.1875,16.25],[142.8125,16.25],[143.4375,16.25],[144.0625,16.25],[144.6875,16.25],[144.6875,16.75],[144.6875,17.25],[144.6875,17.75],[144.6875,18.25],[145.3125,18.25],[145.3125,18.75],[145.3125,19.25],[145.3125,19.75],[145.9375,19.75],[146.5625,19.75],[147.1875,19.75],[147.1875,19.25],[147.1875,18.75],[147.1875,18.25],[147.8125,18.25],[147.8125,17.75],[147.8125,17.25],[148.4375,17.25],[148.4375,16.75],[148.4375,16.25],[149.0625,16.25],[149.0625,15.75],[149.0625,15.25],[149.6875,15.25],[149.6875,15.75],[150.3125,15.75],[150.3125,16.25],[150.9375,16.25],[150.9375,16.75],[150.9375,17.25],[151.5625,17.25],[151.5625,17.75],[152.1875,17.75],[152.1875,18.25],[152.8125,18.25],[152.8125,18.75],[153.4375,18.75],[153.4375,18.25],[154.0625,18.25],[154.0625,17.75],[154.6875,17.75],[154.6875,17.25],[154.6875,16.75],[155.3125,16.75],[155.3125,16.25],[155.9375,16.25],[155.9375,15.75],[156.5625,15.75],[156.5625,15.25],[156.5625,14.75],[157.1875,14.75],[157.1875,14.25],[157.1875,13.75],[157.8125,13.75],[157.8125,13.25],[157.8125,12.75],[157.1875,12.75],[156.5625,12.75],[156.5625,12.25],[155.9375,12.25],[155.9375,11.75],[155.3125,11.75],[155.3125,11.25],[154.6875,11.25],[154.0625,11.25],[154.0625,10.75],[153.4375,10.75],[153.4375,10.25],[152.8125,10.25],[152.8125,9.75],[152.1875,9.75],[152.1875,9.25],[151.5625,9.25],[151.5625,8.75],[150.9375,8.75],[150.9375,8.25],[150.9375,7.75],[150.3125,7.75],[150.3125,7.25],[150.3125,6.75],[149.6875,6.75],[149.6875,6.25],[149.6875,5.75],[149.6875,5.25],[149.6875,4.75],[150.3125,4.75],[150.9375,4.75],[150.9375,4.25],[151.5625,4.25],[151.5625,3.75],[152.1875,3.75],[152.1875,3.25],[152.8125,3.25],[152.8125,2.75],[153.4375,2.75],[154.0625,2.75],[154.0625,3.25],[154.6875,3.25],[154.6875,3.75],[155.3125,3.75],[155.9375,3.75],[156.5625,3.75],[156.5625,3.25],[156.5625,2.75],[157.1875,2.75],[157.8125,2.75],[158.4375,2.75],[158.4375,3.25],[157.8125,3.25],[157.8125,3.75],[157.1875,3.75],[157.1875,4.25],[157.1875,4.75],[157.8125,4.75],[157.8125,5.25],[158.4375,5.25],[159.0625,5.25],[159.6875,5.25],[159.6875,4.75],[160.3125,4.75],[160.9375,4.75],[161.5625,4.75],[161.5625,4.25],[162.1875,4.25],[162.8125,4.25],[163.4375,4.25],[163.4375,4.75],[164.0625,4.75],[164.6875,4.75],[164.6875,5.25],[164.6875,5.75],[164.0625,5.75],[164.0625,6.25],[164.0625,6.75],[163.4375,6.75],[163.4375,7.25],[162.8125,7.25],[162.8125,7.75],[162.8125,8.25],[162.8125,8.75],[162.1875,8.75],[162.1875,9.25],[162.8125,9.25],[163.4375,9.25],[164.0625,9.25],[164.0625,8.75],[164.6875,8.75],[165.3125,8.75],[165.9375,8.75],[165.9375,8.25],[166.5625,8.25],[167.1875,8.25],[167.1875,7.75],[167.8125,7.75],[167.8125,7.25],[167.1875,7.25],[166.5625,7.25],[166.5625,6.75],[166.5625,6.25],[167.1875,6.25],[167.1875,6.75],[167.8125,6.75],[168.4375,6.75],[168.4375,6.25],[168.4375,5.75],[167.8125,5.75],[167.8125,5.25],[167.8125,4.75],[167.1875,4.75],[167.1875,4.25],[167.1875,3.75],[167.1875,3.25],[167.1875,2.75],[167.1875,2.25],[167.1875,1.75],[167.1875,1.25],[167.1875,0.75],[167.8125,0.75],[167.8125,0.25],[167.8125,-0.25000000000017975],[168.4375,-0.25000000000017975],[168.4375,-0.75],[168.4375,-1.25],[168.4375,-1.75],[167.8125,-1.75],[167.8125,-2.25],[167.8125,-2.75],[167.8125,-3.25],[167.8125,-3.75],[167.8125,-4.25],[168.4375,-4.25],[168.4375,-4.75],[168.4375,-5.25],[168.4375,-5.75],[169.0625,-5.75],[169.0625,-6.25],[169.0625,-6.75],[169.6875,-6.75],[169.6875,-7.25],[170.3125,-7.25],[170.3125,-7.75],[170.3125,-8.25],[170.3125,-8.75],[170.9375,-8.75],[171.5625,-8.75],[171.5625,-8.25],[170.9375,-8.25],[170.9375,-7.75],[171.5625,-7.75],[172.1875,-7.75],[172.8125,-7.75],[172.8125,-7.25],[172.8125,-6.75],[173.4375,-6.75],[173.4375,-6.25],[173.4375,-5.75],[173.4375,-5.25],[172.8125,-5.25],[172.8125,-4.75],[172.8125,-4.25],[172.1875,-4.25],[172.1875,-3.75],[172.1875,-3.25],[171.5625,-3.25],[171.5625,-2.75],[170.9375,-2.75],[170.9375,-2.25],[170.9375,-1.75],[170.3125,-1.75],[170.3125,-1.25],[170.3125,-0.75],[169.6875,-0.75],[169.6875,-0.25000000000017975],[169.6875,0.25],[169.0625,0.25],[169.0625,0.75],[168.4375,0.75],[168.4375,1.25],[169.0625,1.25],[169.0625,1.75],[169.6875,1.75],[169.6875,2.25],[170.3125,2.25],[170.3125,1.75],[170.9375,1.75],[170.9375,1.25],[171.5625,1.25],[171.5625,0.75],[172.1875,0.75],[172.1875,1.25],[172.1875,1.75],[172.1875,2.25],[172.8125,2.25],[172.8125,2.75],[173.4375,2.75],[173.4375,3.25],[174.0625,3.25],[174.6875,3.25],[174.6875,3.75],[175.3125,3.75],[175.3125,4.25],[175.9375,4.25],[175.9375,4.75],[175.9375,5.25],[175.9375,5.75],[176.5625,5.75],[177.1875,5.75],[177.8125,5.75],[177.8125,5.25],[178.4375,5.25],[179.0625,5.25],[179.0625,5.75],[179.6875,5.75],[179.6875,5.25],[-179.6875,5.25],[-179.6875,4.75],[-179.6875,4.25],[-179.6875,3.75],[-179.6875,3.25],[-179.6875,2.75],[-179.0625,2.75],[-178.4375,2.75],[-178.4375,2.25],[-178.4375,1.75],[-178.4375,1.25],[-177.8125,1.25],[-177.8125,1.75],[-177.1875,1.75],[-176.5625,1.75],[-176.5625,2.25],[-175.9375,2.25],[-175.3125,2.25],[-175.3125,2.75],[-174.6875,2.75],[-174.6875,3.25],[-174.6875,3.75],[-174.0625,3.75],[-174.0625,3.25],[-173.4375,3.25],[-173.4375,3.75],[-172.8125,3.75],[-172.1875,3.75],[-171.5625,3.75],[-170.9375,3.75],[-170.9375,3.25],[-170.3125,3.25],[-169.6875,3.25],[-169.0625,3.25],[-168.4375,3.25],[-167.8125,3.25],[-167.1875,3.25],[-166.5625,3.25],[-165.9375,3.25],[-165.9375,3.75],[-165.3125,3.75],[-164.6875,3.75],[-164.0625,3.75],[-163.4375,3.75],[-163.4375,4.25],[-162.8125,4.25],[-162.1875,4.25],[-162.1875,4.75],[-161.5625,4.75],[-161.5625,5.25],[-160.9375,5.25],[-160.3125,5.25],[-160.3125,5.75],[-159.6875,5.75],[-159.0625,5.75],[-158.4375,5.75],[-157.8125,5.75],[-157.1875,5.75],[-157.1875,6.25],[-156.5625,6.25],[-155.9375,6.25],[-155.3125,6.25],[-155.3125,5.75],[-154.6875,5.75],[-154.0625,5.75],[-153.4375,5.75],[-152.8125,5.75],[-152.1875,5.75],[-151.5625,5.75],[-150.9375,5.75],[-150.3125,5.75],[-149.6875,5.75],[-149.6875,6.25],[-149.0625,6.25],[-148.4375,6.25],[-147.8125,6.25],[-147.8125,5.75],[-147.8125,5.25],[-147.1875,5.25],[-146.5625,5.25],[-146.5625,4.75],[-146.5625,4.25],[-146.5625,3.75],[-145.9375,3.75],[-145.3125,3.75],[-145.3125,4.25],[-144.6875,4.25],[-144.0625,4.25],[-144.0625,4.75],[-143.4375,4.75],[-143.4375,5.25],[-142.8125,5.25],[-142.8125,4.75],[-142.1875,4.75],[-141.5625,4.75],[-140.9375,4.75],[-140.9375,5.25],[-140.3125,5.25],[-139.6875,5.25],[-139.6875,4.75],[-139.6875,4.25],[-139.0625,4.25],[-138.4375,4.25],[-138.4375,4.75],[-137.8125,4.75],[-137.8125,5.25],[-137.1875,5.25],[-137.1875,4.75],[-136.5625,4.75],[-136.5625,4.25],[-136.5625,3.75],[-136.5625,3.25],[-136.5625,2.75],[-136.5625,2.25],[-136.5625,1.75],[-135.9375,1.75],[-135.9375,1.25],[-135.3125,1.25],[-135.3125,0.75],[-135.3125,0.25],[-135.3125,-0.25000000000017975],[-135.3125,-0.75],[-134.6875,-0.75],[-134.6875,-1.25],[-135.3125,-1.25],[-135.3125,-1.75],[-135.3125,-2.25],[-135.3125,-2.75],[-135.3125,-3.25],[-134.6875,-3.25],[-134.6875,-3.75],[-134.0625,-3.75],[-134.0625,-4.25],[-133.4375,-4.25],[-132.8125,-4.25],[-132.1875,-4.25],[-132.1875,-4.75],[-131.5625,-4.75],[-131.5625,-5.25],[-130.9375,-5.25],[-130.9375,-5.75],[-130.3125,-5.75],[-130.3125,-6.25],[-130.3125,-6.75],[-129.6875,-6.75],[-129.0625,-6.75],[-129.0625,-7.25],[-128.4375,-7.25],[-127.8125,-7.25],[-127.8125,-6.75],[-127.8125,-6.25],[-127.1875,-6.25],[-126.5625,-6.25],[-126.5625,-5.75],[-125.9375,-5.75],[-125.9375,-6.25],[-125.3125,-6.25],[-124.6875,-6.25],[-124.0625,-6.25],[-124.0625,-6.75],[-123.4375,-6.75],[-122.8125,-6.75],[-122.8125,-7.25],[-122.1875,-7.25],[-121.5625,-7.25],[-121.5625,-6.75],[-121.5625,-6.25],[-120.9375,-6.25],[-120.9375,-5.75],[-120.9375,-5.25],[-120.9375,-4.75],[-120.9375,-4.25],[-120.9375,-3.75],[-120.9375,-3.25],[-120.9375,-2.75],[-120.9375,-2.25],[-121.5625,-2.25],[-121.5625,-1.75],[-122.1875,-1.75],[-122.1875,-1.25],[-122.1875,-0.75],[-122.1875,-0.25000000000017975],[-122.1875,0.25],[-121.5625,0.25],[-121.5625,0.75],[-120.9375,0.75],[-120.3125,0.75],[-120.3125,1.25],[-119.6875,1.25],[-119.6875,1.75],[-119.6875,2.25],[-119.0625,2.25],[-119.0625,2.75],[-118.4375,2.75],[-117.8125,2.75],[-117.1875,2.75],[-116.5625,2.75],[-115.9375,2.75],[-115.3125,2.75],[-115.3125,3.25],[-114.6875,3.25],[-114.6875,3.75],[-114.6875,4.25],[-115.3125,4.25],[-115.3125,4.75],[-115.3125,5.25],[-115.9375,5.25],[-115.9375,5.75],[-116.5625,5.75],[-116.5625,6.25],[-117.1875,6.25],[-117.8125,6.25],[-118.4375,6.25],[-118.4375,5.75],[-119.0625,5.75],[-119.6875,5.75],[-120.3125,5.75],[-120.9375,5.75],[-121.5625,5.75],[-122.1875,5.75],[-122.8125,5.75],[-122.8125,6.25],[-123.4375,6.25],[-124.0625,6.25],[-124.0625,6.75],[-124.6875,6.75],[-125.3125,6.75],[-125.3125,7.25],[-125.9375,7.25],[-125.9375,7.75],[-125.9375,8.25],[-125.9375,8.75],[-126.5625,8.75],[-126.5625,9.25],[-126.5625,9.75],[-126.5625,10.25],[-125.9375,10.25],[-125.9375,10.75],[-125.9375,11.25],[-125.3125,11.25],[-125.3125,11.75],[-124.6875,11.75],[-124.6875,12.25],[-124.0625,12.25],[-123.4375,12.25],[-122.8125,12.25],[-122.1875,12.25],[-122.1875,11.75],[-121.5625,11.75],[-120.9375,11.75],[-120.3125,11.75],[-120.3125,11.25],[-119.6875,11.25],[-119.0625,11.25],[-119.0625,10.75],[-118.4375,10.75],[-117.8125,10.75],[-117.8125,10.25],[-117.1875,10.25],[-116.5625,10.25],[-116.5625,9.75],[-115.9375,9.75],[-115.3125,9.75],[-114.6875,9.75],[-114.0625,9.75],[-113.4375,9.75],[-113.4375,9.25],[-112.8125,9.25],[-112.8125,8.75],[-112.1875,8.75],[-112.1875,8.25],[-111.5625,8.25],[-110.9375,8.25],[-110.9375,8.75],[-110.3125,8.75],[-109.6875,8.75],[-109.0625,8.75],[-109.0625,9.25],[-108.4375,9.25],[-107.8125,9.25],[-107.1875,9.25],[-106.5625,9.25],[-106.5625,8.75],[-105.9375,8.75],[-105.3125,8.75],[-105.3125,8.25],[-105.3125,7.75],[-104.6875,7.75],[-104.6875,7.25],[-104.0625,7.25],[-103.4375,7.25],[-102.8125,7.25],[-102.1875,7.25],[-101.5625,7.25],[-100.9375,7.25],[-100.9375,6.75],[-100.3125,6.75],[-99.6875,6.75],[-99.0625,6.75],[-98.4375,6.75],[-98.4375,7.25],[-97.8125,7.25],[-97.1875,7.25],[-96.5625,7.25],[-96.5625,7.75],[-95.9375,7.75],[-95.3125,7.75],[-94.6875,7.75],[-94.0625,7.75],[-94.0625,8.25],[-93.4375,8.25],[-92.8125,8.25],[-92.8125,8.75],[-92.1875,8.75],[-91.5625,8.75],[-91.5625,9.25],[-90.9375,9.25],[-90.9375,9.75],[-90.3125,9.75],[-89.6875,9.75],[-89.6875,10.25],[-89.0625,10.25],[-88.4375,10.25],[-88.4375,10.75],[-87.8125,10.75],[-87.8125,11.25],[-87.1875,11.25],[-87.1875,11.75],[-86.5625,11.75],[-86.5625,12.25],[-86.5625,12.75],[-86.5625,13.25],[-86.5625,13.75],[-85.9375,13.75],[-85.9375,13.25],[-85.3125,13.25],[-85.3125,12.75],[-84.6875,12.75],[-84.0625,12.75],[-84.0625,13.25],[-83.4375,13.25],[-82.8125,13.25],[-82.8125,12.75],[-82.1875,12.75],[-82.1875,12.25],[-81.5625,12.25],[-81.5625,11.75],[-80.9375,11.75],[-80.3125,11.75],[-80.3125,11.25],[-79.6875,11.25],[-79.0625,11.25],[-78.4375,11.25],[-77.8125,11.25],[-77.8125,10.75],[-77.1875,10.75],[-76.5625,10.75],[-75.9375,10.75],[-75.3125,10.75],[-75.3125,11.25],[-74.6875,11.25],[-74.0625,11.25],[-73.4375,11.25],[-72.8125,11.25],[-72.1875,11.25],[-72.1875,10.75],[-71.5625,10.75],[-70.9375,10.75],[-70.3125,10.75],[-69.6875,10.75],[-69.6875,11.25],[-69.0625,11.25],[-69.0625,10.75],[-68.4375,10.75],[-67.8125,10.75],[-67.1875,10.75],[-66.5625,10.75],[-65.9375,10.75],[-65.9375,10.25],[-65.3125,10.25],[-64.6875,10.25],[-64.6875,10.75],[-64.0625,10.75],[-64.0625,10.25],[-63.4375,10.25],[-63.4375,9.75],[-64.0625,9.75],[-64.6875,9.75],[-65.3125,9.75],[-65.9375,9.75],[-66.5625,9.75],[-66.5625,9.25],[-67.1875,9.25],[-67.8125,9.25],[-67.8125,8.75],[-67.8125,8.25],[-68.4375,8.25],[-68.4375,7.75],[-68.4375,7.25],[-69.0625,7.25],[-69.0625,6.75],[-69.0625,6.25],[-69.0625,5.75],[-68.4375,5.75],[-67.8125,5.75],[-67.8125,6.25],[-67.1875,6.25],[-66.5625,6.25],[-66.5625,6.75],[-66.5625,7.25],[-65.9375,7.25],[-65.9375,6.75],[-65.3125,6.75],[-64.6875,6.75],[-64.6875,6.25],[-64.6875,5.75],[-64.0625,5.75],[-63.4375,5.75],[-62.8125,5.75],[-62.8125,6.25],[-62.1875,6.25],[-61.5625,6.25],[-60.9375,6.25],[-60.3125,6.25],[-60.3125,5.75],[-59.6875,5.75],[-59.6875,5.25],[-59.6875,4.75],[-60.3125,4.75],[-60.9375,4.75],[-60.9375,4.25],[-61.5625,4.25],[-62.1875,4.25],[-62.1875,3.75],[-62.1875,3.25],[-62.1875,2.75],[-62.1875,2.25],[-62.1875,1.75],[-61.5625,1.75],[-61.5625,1.25],[-61.5625,0.75],[-61.5625,0.25],[-61.5625,-0.25000000000017975],[-61.5625,-0.75],[-61.5625,-1.25],[-62.1875,-1.25],[-62.1875,-1.75],[-61.5625,-1.75],[-60.9375,-1.75],[-60.9375,-1.25],[-60.3125,-1.25],[-59.6875,-1.25],[-59.6875,-1.75],[-59.6875,-2.25],[-59.6875,-2.75],[-60.3125,-2.75],[-60.9375,-2.75],[-60.9375,-2.25],[-61.5625,-2.25],[-61.5625,-2.75],[-62.1875,-2.75],[-62.1875,-3.25],[-61.5625,-3.25],[-61.5625,-3.75],[-61.5625,-4.25],[-62.1875,-4.25],[-62.1875,-4.75],[-61.5625,-4.75],[-61.5625,-5.25],[-61.5625,-5.75],[-60.9375,-5.75],[-60.9375,-6.25],[-60.9375,-6.75],[-60.9375,-7.25],[-60.9375,-7.75],[-61.5625,-7.75],[-61.5625,-8.25],[-61.5625,-8.75],[-62.1875,-8.75],[-62.1875,-9.25],[-62.1875,-9.75],[-61.5625,-9.75],[-61.5625,-10.25],[-60.9375,-10.25],[-60.9375,-10.75],[-60.9375,-11.25],[-60.3125,-11.25],[-59.6875,-11.25],[-59.6875,-10.75],[-59.6875,-10.25],[-59.6875,-9.75],[-59.6875,-9.25],[-59.6875,-8.75],[-59.6875,-8.25],[-59.0625,-8.25],[-58.4375,-8.25],[-58.4375,-7.75],[-57.8125,-7.75],[-57.8125,-7.25],[-57.1875,-7.25],[-57.1875,-6.75],[-57.1875,-6.25],[-56.5625,-6.25],[-56.5625,-5.75],[-55.9375,-5.75],[-55.9375,-5.25],[-55.3125,-5.25],[-54.6875,-5.25],[-54.0625,-5.25],[-54.0625,-5.75],[-54.6875,-5.75],[-54.6875,-6.25],[-54.6875,-6.75],[-54.0625,-6.75],[-54.0625,-7.25],[-54.0625,-7.75],[-54.6875,-7.75],[-54.6875,-8.25],[-55.3125,-8.25],[-55.3125,-8.75],[-55.3125,-9.25],[-55.9375,-9.25],[-55.9375,-9.75],[-55.9375,-10.25],[-55.9375,-10.75],[-56.5625,-10.75],[-56.5625,-11.25],[-55.9375,-11.25],[-55.3125,-11.25],[-55.3125,-10.75],[-54.6875,-10.75],[-54.6875,-10.25],[-54.6875,-9.75],[-54.0625,-9.75],[-54.0625,-9.25],[-53.4375,-9.25],[-53.4375,-8.75],[-53.4375,-8.25],[-53.4375,-7.75],[-53.4375,-7.25],[-53.4375,-6.75],[-53.4375,-6.25],[-53.4375,-5.75],[-53.4375,-5.25],[-53.4375,-4.75],[-52.8125,-4.75],[-52.1875,-4.75],[-52.1875,-5.25],[-51.5625,-5.25],[-51.5625,-5.75],[-50.9375,-5.75],[-50.9375,-6.25],[-50.9375,-6.75],[-50.9375,-7.25],[-50.3125,-7.25],[-50.3125,-7.75],[-50.3125,-8.25],[-50.3125,-8.75],[-49.6875,-8.75],[-49.0625,-8.75],[-49.0625,-8.25],[-48.4375,-8.25],[-47.8125,-8.25],[-47.1875,-8.25],[-47.1875,-7.75],[-46.5625,-7.75],[-45.9375,-7.75],[-45.3125,-7.75],[-45.3125,-8.25],[-44.6875,-8.25],[-44.0625,-8.25],[-43.4375,-8.25],[-42.8125,-8.25],[-42.1875,-8.25],[-41.5625,-8.25],[-41.5625,-8.75],[-40.9375,-8.75],[-40.3125,-8.75],[-40.3125,-8.25],[-40.3125,-7.75],[-40.9375,-7.75],[-40.9375,-7.25],[-41.5625,-7.25],[-41.5625,-6.75],[-40.9375,-6.75],[-40.9375,-6.25],[-40.3125,-6.25],[-40.3125,-6.75],[-39.6875,-6.75],[-39.0625,-6.75],[-38.4375,-6.75],[-38.4375,-6.25],[-38.4375,-5.75],[-37.8125,-5.75],[-37.1875,-5.75],[-37.1875,-6.25],[-37.1875,-6.75],[-36.5625,-6.75],[-35.9375,-6.75],[-35.9375,-7.25],[-35.9375,-7.75],[-35.3125,-7.75],[-35.3125,-8.25],[-34.6875,-8.25],[-34.6875,-8.75],[-34.6875,-9.25],[-35.3125,-9.25],[-35.9375,-9.25],[-35.9375,-9.75],[-36.5625,-9.75],[-36.5625,-9.25],[-37.1875,-9.25],[-37.8125,-9.25],[-38.4375,-9.25],[-38.4375,-9.75],[-37.8125,-9.75],[-37.8125,-10.25],[-38.4375,-10.25],[-38.4375,-10.75],[-37.8125,-10.75],[-37.8125,-11.25],[-37.8125,-11.75],[-37.8125,-12.25],[-37.1875,-12.25],[-37.1875,-12.75],[-37.1875,-13.25],[-36.5625,-13.25],[-36.5625,-13.75],[-36.5625,-14.25],[-36.5625,-14.75],[-35.9375,-14.75],[-35.9375,-15.25],[-35.9375,-15.75],[-35.9375,-16.25],[-35.9375,-16.75],[-35.3125,-16.75],[-35.3125,-17.25],[-34.6875,-17.25],[-34.6875,-17.75],[-34.6875,-18.25],[-34.0625,-18.25],[-34.0625,-18.75],[-34.0625,-19.25],[-34.0625,-19.75],[-33.4375,-19.75],[-33.4375,-20.25],[-33.4375,-20.75],[-32.8125,-20.75],[-32.8125,-21.25],[-32.1875,-21.25]] + # ring2 = [[149.0625,26.25],[148.4375,26.25],[147.8125,26.25],[147.8125,25.75],[147.1875,25.75],[146.5625,25.75],[145.9375,25.75],[145.9375,25.25],[145.3125,25.25],[144.6875,25.25],[144.6875,24.75],[144.0625,24.75],[144.0625,24.25],[143.4375,24.25],[142.8125,24.25],[142.8125,24.75],[142.1875,24.75],[142.1875,24.25],[141.5625,24.25],[140.9375,24.25],[140.9375,23.75],[140.3125,23.75],[140.3125,23.25],[139.6875,23.25],[139.0625,23.25],[139.0625,22.75],[139.0625,22.25],[138.4375,22.25],[138.4375,21.75],[138.4375,21.25],[137.8125,21.25],[137.8125,20.75],[137.8125,20.25],[137.8125,19.75],[137.1875,19.75],[137.1875,19.25],[136.5625,19.25],[135.9375,19.25],[135.9375,18.75],[135.3125,18.75],[134.6875,18.75],[134.6875,18.25],[134.0625,18.25],[134.0625,17.75],[133.4375,17.75],[133.4375,17.25],[132.8125,17.25],[132.8125,16.75],[132.1875,16.75],[132.1875,16.25],[131.5625,16.25],[131.5625,15.75],[130.9375,15.75],[130.3125,15.75],[129.6875,15.75],[129.6875,15.25],[129.0625,15.25],[128.4375,15.25],[128.4375,15.75],[128.4375,16.25],[129.0625,16.25],[129.0625,16.75],[129.0625,17.25],[129.0625,17.75],[129.0625,18.25],[129.6875,18.25],[129.6875,18.75],[130.3125,18.75],[130.3125,19.25],[130.9375,19.25],[130.9375,19.75],[130.3125,19.75],[129.6875,19.75],[129.0625,19.75],[128.4375,19.75],[127.8125,19.75],[127.8125,19.25],[127.1875,19.25],[126.5625,19.25],[125.9375,19.25],[125.9375,18.75],[125.3125,18.75],[124.6875,18.75],[124.6875,18.25],[124.0625,18.25],[123.4375,18.25],[123.4375,17.75],[122.8125,17.75],[122.1875,17.75],[122.1875,17.25],[121.5625,17.25],[121.5625,16.75],[121.5625,16.25],[120.9375,16.25],[120.9375,15.75],[120.3125,15.75],[119.6875,15.75],[119.6875,15.25],[119.0625,15.25],[118.4375,15.25],[117.8125,15.25],[117.8125,15.75],[117.1875,15.75],[116.5625,15.75],[115.9375,15.75],[115.9375,16.25],[115.9375,16.75],[115.3125,16.75],[114.6875,16.75],[114.0625,16.75],[113.4375,16.75],[112.8125,16.75],[112.1875,16.75],[111.5625,16.75],[111.5625,16.25],[110.9375,16.25],[110.9375,15.75],[110.3125,15.75],[109.6875,15.75],[109.6875,15.25],[109.6875,14.75],[109.0625,14.75],[109.0625,14.25],[108.4375,14.25],[108.4375,13.75],[107.8125,13.75],[107.1875,13.75],[107.1875,13.25],[106.5625,13.25],[106.5625,12.75],[105.9375,12.75],[105.9375,12.25],[106.5625,12.25],[107.1875,12.25],[107.8125,12.25],[108.4375,12.25],[108.4375,11.75],[107.8125,11.75],[107.8125,11.25],[107.1875,11.25],[106.5625,11.25],[106.5625,10.75],[105.9375,10.75],[105.3125,10.75],[104.6875,10.75],[104.6875,11.25],[104.6875,11.75],[104.6875,12.25],[104.0625,12.25],[104.0625,11.75],[103.4375,11.75],[102.8125,11.75],[102.8125,11.25],[102.8125,10.75],[102.8125,10.25],[102.1875,10.25],[101.5625,10.25],[100.9375,10.25],[100.9375,10.75],[100.3125,10.75],[100.3125,11.25],[99.6875,11.25],[99.0625,11.25],[98.4375,11.25],[97.8125,11.25],[97.1875,11.25],[96.5625,11.25],[95.9375,11.25],[95.3125,11.25],[94.6875,11.25],[94.0625,11.25],[94.0625,11.75],[93.4375,11.75],[92.8125,11.75],[92.8125,12.25],[92.1875,12.25],[92.1875,12.75],[91.5625,12.75],[91.5625,13.25],[90.9375,13.25],[90.9375,13.75],[90.3125,13.75],[90.3125,14.25],[89.6875,14.25],[89.6875,14.75],[89.0625,14.75],[88.4375,14.75],[88.4375,15.25],[87.8125,15.25],[87.8125,15.75],[87.1875,15.75],[87.1875,16.25],[86.5625,16.25],[86.5625,16.75],[85.9375,16.75],[85.3125,16.75],[84.6875,16.75],[84.0625,16.75],[83.4375,16.75],[83.4375,17.25],[82.8125,17.25],[82.1875,17.25],[82.1875,16.75],[81.5625,16.75],[80.9375,16.75],[80.3125,16.75],[79.6875,16.75],[79.6875,16.25],[79.0625,16.25],[78.4375,16.25],[78.4375,15.75],[77.8125,15.75],[77.8125,15.25],[77.1875,15.25],[77.1875,14.75],[76.5625,14.75],[76.5625,14.25],[76.5625,13.75],[76.5625,13.25],[76.5625,12.75],[76.5625,12.25],[77.1875,12.25],[77.8125,12.25],[77.8125,11.75],[77.8125,11.25],[78.4375,11.25],[78.4375,10.75],[78.4375,10.25],[78.4375,9.75],[78.4375,9.25],[78.4375,8.75],[79.0625,8.75],[79.0625,8.25],[79.0625,7.75],[79.6875,7.75],[79.6875,7.25],[80.3125,7.25],[80.3125,6.75],[80.9375,6.75],[80.9375,6.25],[80.9375,5.75],[81.5625,5.75],[81.5625,5.25],[80.9375,5.25],[80.9375,4.75],[80.9375,4.25],[81.5625,4.25],[81.5625,3.75],[80.9375,3.75],[80.9375,3.25],[80.9375,2.75],[80.9375,2.25],[80.3125,2.25],[80.3125,1.75],[79.6875,1.75],[79.6875,2.25],[79.0625,2.25],[79.0625,1.75],[78.4375,1.75],[78.4375,1.25],[77.8125,1.25],[77.8125,0.75],[77.1875,0.75],[77.1875,0.25],[76.5625,0.25],[76.5625,-0.25000000000017975],[75.9375,-0.25000000000017975],[75.9375,-0.75],[75.9375,-1.25],[75.9375,-1.75],[75.3125,-1.75],[75.3125,-2.25],[75.3125,-2.75],[75.3125,-3.25],[75.3125,-3.75],[75.3125,-4.25],[75.9375,-4.25],[76.5625,-4.25],[76.5625,-4.75],[77.1875,-4.75],[77.1875,-5.25],[77.1875,-5.75],[77.8125,-5.75],[77.8125,-6.25],[78.4375,-6.25],[78.4375,-6.75],[78.4375,-7.25],[78.4375,-7.75],[77.8125,-7.75],[77.8125,-8.25],[77.8125,-8.75],[77.8125,-9.25],[77.8125,-9.75],[77.8125,-10.25],[77.1875,-10.25],[77.1875,-10.75],[77.1875,-11.25],[76.5625,-11.25],[76.5625,-10.75],[76.5625,-10.25],[75.9375,-10.25],[75.3125,-10.25],[74.6875,-10.25],[74.0625,-10.25],[74.0625,-9.75],[73.4375,-9.75],[73.4375,-9.25],[72.8125,-9.25],[72.1875,-9.25],[71.5625,-9.25],[70.9375,-9.25],[70.9375,-9.75],[70.3125,-9.75],[69.6875,-9.75],[69.0625,-9.75],[68.4375,-9.75],[68.4375,-9.25],[67.8125,-9.25],[67.1875,-9.25],[67.1875,-8.75],[66.5625,-8.75],[66.5625,-8.25],[65.9375,-8.25],[65.3125,-8.25],[65.3125,-7.75],[64.6875,-7.75],[64.0625,-7.75],[64.0625,-7.25],[63.4375,-7.25],[62.8125,-7.25],[62.8125,-6.75],[62.1875,-6.75],[62.1875,-6.25],[61.5625,-6.25],[61.5625,-5.75],[60.9375,-5.75],[60.9375,-5.25],[60.3125,-5.25],[59.6875,-5.25],[59.0625,-5.25],[58.4375,-5.25],[57.8125,-5.25],[57.8125,-5.75],[57.1875,-5.75],[57.1875,-6.25],[57.1875,-6.75],[56.5625,-6.75],[55.9375,-6.75],[55.9375,-7.25],[55.3125,-7.25],[54.6875,-7.25],[54.6875,-6.75],[54.0625,-6.75],[54.0625,-6.25],[54.0625,-5.75],[53.4375,-5.75],[52.8125,-5.75],[52.1875,-5.75],[52.1875,-5.25],[52.1875,-4.75],[51.5625,-4.75],[51.5625,-4.25],[50.9375,-4.25],[50.3125,-4.25],[49.6875,-4.25],[49.0625,-4.25],[48.4375,-4.25],[47.8125,-4.25],[47.1875,-4.25],[47.1875,-3.75],[46.5625,-3.75],[45.9375,-3.75],[45.3125,-3.75],[45.3125,-3.25],[45.3125,-2.75],[44.6875,-2.75],[44.6875,-2.25],[44.0625,-2.25],[44.0625,-1.75],[43.4375,-1.75],[42.8125,-1.75],[42.8125,-1.25],[42.1875,-1.25],[42.1875,-0.75],[41.5625,-0.75],[40.9375,-0.75],[40.3125,-0.75],[40.3125,-0.25000000000017975],[40.3125,0.25],[39.6875,0.25],[39.6875,0.75],[39.6875,1.25],[39.0625,1.25],[39.0625,1.75],[39.0625,2.25],[39.0625,2.75],[38.4375,2.75],[38.4375,3.25],[38.4375,3.75],[37.8125,3.75],[37.8125,4.25],[37.1875,4.25],[37.1875,4.75],[37.8125,4.75],[37.8125,5.25],[37.1875,5.25],[37.1875,5.75],[37.1875,6.25],[36.5625,6.25],[35.9375,6.25],[35.3125,6.25],[35.3125,6.75],[35.3125,7.25],[34.6875,7.25],[34.0625,7.25],[33.4375,7.25],[32.8125,7.25],[32.8125,7.75],[32.8125,8.25],[32.8125,8.75],[32.1875,8.75],[31.5625,8.75],[31.5625,9.25],[30.9375,9.25],[30.3125,9.25],[29.6875,9.25],[29.0625,9.25],[28.4375,9.25],[27.8125,9.25],[27.8125,8.75],[27.1875,8.75],[26.5625,8.75],[25.9375,8.75],[25.3125,8.75],[25.3125,9.25],[24.6875,9.25],[24.0625,9.25],[23.4375,9.25],[23.4375,8.75],[22.8125,8.75],[22.8125,9.25],[22.1875,9.25],[21.5625,9.25],[21.5625,9.75],[20.9375,9.75],[20.3125,9.75],[20.3125,9.25],[19.6875,9.25],[19.0625,9.25],[19.0625,8.75],[18.4375,8.75],[17.8125,8.75],[17.8125,8.25],[17.1875,8.25],[17.1875,7.75],[16.5625,7.75],[16.5625,7.25],[15.9375,7.25],[15.3125,7.25],[15.3125,6.75],[14.6875,6.75],[14.0625,6.75],[13.4375,6.75],[12.8125,6.75],[12.8125,7.25],[12.1875,7.25],[11.5625,7.25],[10.9375,7.25],[10.3125,7.25],[10.3125,6.75],[9.6875,6.75],[9.0625,6.75],[8.4375,6.75],[7.8125,6.75],[7.1875,6.75],[6.5625,6.75],[5.9375,6.75],[5.3125,6.75],[5.3125,7.25],[4.6875,7.25],[4.0625,7.25],[3.4375,7.25],[2.8125,7.25],[2.8125,6.75],[2.1875,6.75],[1.5625,6.75],[1.5625,6.25],[0.9375,6.25],[0.3125,6.25],[-0.312500000000592,6.25],[-0.312500000000592,5.75],[-0.9375,5.75],[-0.9375,5.25],[-0.9375,4.75],[-0.312500000000592,4.75],[0.3125,4.75],[0.3125,4.25],[0.9375,4.25],[1.5625,4.25],[2.1875,4.25],[2.8125,4.25],[2.8125,4.75],[3.4375,4.75],[4.0625,4.75],[4.6875,4.75],[5.3125,4.75],[5.9375,4.75],[6.5625,4.75],[7.1875,4.75],[7.1875,5.25],[7.8125,5.25],[7.8125,5.75],[8.4375,5.75],[9.0625,5.75],[9.0625,5.25],[9.6875,5.25],[9.6875,4.75],[9.6875,4.25],[9.0625,4.25],[9.0625,3.75],[8.4375,3.75],[8.4375,3.25],[8.4375,2.75],[7.8125,2.75],[7.8125,2.25],[7.8125,1.75],[7.8125,1.25],[8.4375,1.25],[9.0625,1.25],[9.0625,1.75],[9.6875,1.75],[10.3125,1.75],[10.3125,2.25],[10.9375,2.25],[11.5625,2.25],[11.5625,2.75],[12.1875,2.75],[12.8125,2.75],[12.8125,2.25],[12.1875,2.25],[12.1875,1.75],[12.1875,1.25],[12.8125,1.25],[12.8125,0.75],[13.4375,0.75],[14.0625,0.75],[14.6875,0.75],[15.3125,0.75],[15.9375,0.75],[16.5625,0.75],[16.5625,1.25],[17.1875,1.25],[17.8125,1.25],[18.4375,1.25],[18.4375,0.75],[17.8125,0.75],[17.8125,0.25],[17.8125,-0.25000000000017975],[18.4375,-0.25000000000017975],[19.0625,-0.25000000000017975],[19.6875,-0.25000000000017975],[19.6875,-0.75],[20.3125,-0.75],[20.9375,-0.75],[21.5625,-0.75],[21.5625,-0.25000000000017975],[22.1875,-0.25000000000017975],[22.1875,-0.75],[22.8125,-0.75],[23.4375,-0.75],[23.4375,-1.25],[24.0625,-1.25],[24.0625,-0.75],[24.6875,-0.75],[25.3125,-0.75],[25.3125,-0.25000000000017975],[25.9375,-0.25000000000017975],[25.9375,0.25],[25.9375,0.75],[26.5625,0.75],[26.5625,1.25],[27.1875,1.25],[27.8125,1.25],[27.8125,1.75],[28.4375,1.75],[28.4375,2.25],[28.4375,2.75],[28.4375,3.25],[29.0625,3.25],[29.6875,3.25],[30.3125,3.25],[30.3125,3.75],[30.9375,3.75],[30.9375,4.25],[31.5625,4.25],[32.1875,4.25],[32.8125,4.25],[33.4375,4.25],[33.4375,3.75],[34.0625,3.75],[34.0625,3.25],[34.6875,3.25],[34.6875,2.75],[35.3125,2.75],[35.3125,2.25],[35.9375,2.25],[35.9375,1.75],[36.5625,1.75],[37.1875,1.75],[37.1875,1.25],[37.1875,0.75],[37.8125,0.75],[37.8125,0.25],[38.4375,0.25],[38.4375,-0.25000000000017975],[38.4375,-0.75],[38.4375,-1.25],[38.4375,-1.75],[38.4375,-2.25],[37.8125,-2.25],[37.1875,-2.25],[37.1875,-2.75],[37.8125,-2.75],[37.8125,-3.25],[37.1875,-3.25],[36.5625,-3.25],[35.9375,-3.25],[35.9375,-3.75],[35.9375,-4.25],[35.9375,-4.75],[35.3125,-4.75],[34.6875,-4.75],[34.0625,-4.75],[33.4375,-4.75],[32.8125,-4.75],[32.8125,-4.25],[33.4375,-4.25],[33.4375,-3.75],[34.0625,-3.75],[34.0625,-3.25],[33.4375,-3.25],[32.8125,-3.25],[32.8125,-3.75],[32.1875,-3.75],[32.1875,-4.25],[31.5625,-4.25],[31.5625,-3.75],[31.5625,-3.25],[30.9375,-3.25],[30.9375,-2.75],[30.3125,-2.75],[29.6875,-2.75],[29.0625,-2.75],[29.0625,-3.25],[29.0625,-3.75],[28.4375,-3.75],[27.8125,-3.75],[27.1875,-3.75],[27.1875,-4.25],[27.1875,-4.75],[27.1875,-5.25],[26.5625,-5.25],[26.5625,-4.75],[26.5625,-4.25],[25.9375,-4.25],[25.9375,-3.75],[25.9375,-3.25],[25.3125,-3.25],[24.6875,-3.25],[24.0625,-3.25],[24.0625,-3.75],[23.4375,-3.75],[23.4375,-4.25],[24.0625,-4.25],[24.0625,-4.75],[23.4375,-4.75],[23.4375,-5.25],[23.4375,-5.75],[22.8125,-5.75],[22.8125,-6.25],[22.1875,-6.25],[21.5625,-6.25],[20.9375,-6.25],[20.3125,-6.25],[19.6875,-6.25],[19.0625,-6.25],[18.4375,-6.25],[18.4375,-5.75],[18.4375,-5.25],[18.4375,-4.75],[17.8125,-4.75],[17.1875,-4.75],[16.5625,-4.75],[15.9375,-4.75],[15.3125,-4.75],[14.6875,-4.75],[14.0625,-4.75],[13.4375,-4.75],[13.4375,-4.25],[12.8125,-4.25],[12.1875,-4.25],[12.1875,-3.75],[11.5625,-3.75],[10.9375,-3.75],[10.9375,-4.25],[10.3125,-4.25],[10.3125,-3.75],[9.6875,-3.75],[9.0625,-3.75],[9.0625,-3.25],[8.4375,-3.25],[7.8125,-3.25],[7.1875,-3.25],[6.5625,-3.25],[6.5625,-3.75],[5.9375,-3.75],[5.9375,-4.25],[5.3125,-4.25],[4.6875,-4.25],[4.0625,-4.25],[3.4375,-4.25],[2.8125,-4.25],[2.1875,-4.25],[2.1875,-4.75],[1.5625,-4.75],[0.9375,-4.75],[0.9375,-4.25],[0.3125,-4.25],[-0.312500000000592,-4.25],[-0.9375,-4.25],[-1.5625,-4.25],[-2.1875,-4.25],[-2.8125,-4.25],[-3.4375,-4.25],[-4.0625,-4.25],[-4.0625,-3.75],[-4.6875,-3.75],[-5.3125,-3.75],[-5.9375,-3.75],[-6.5625,-3.75],[-7.1875,-3.75],[-7.8125,-3.75],[-7.8125,-4.25],[-8.4375,-4.25],[-9.0625,-4.25],[-9.6875,-4.25],[-10.3125,-4.25],[-10.3125,-3.75],[-10.9375,-3.75],[-11.5625,-3.75],[-12.1875,-3.75],[-12.1875,-4.25],[-12.8125,-4.25],[-13.4375,-4.25],[-13.4375,-3.75],[-14.0625,-3.75],[-14.6875,-3.75],[-15.3125,-3.75],[-15.3125,-4.25],[-15.9375,-4.25],[-16.5625,-4.25],[-17.1875,-4.25],[-17.8125,-4.25],[-18.4375,-4.25],[-18.4375,-4.75],[-19.0625,-4.75],[-19.6875,-4.75],[-19.6875,-5.25],[-20.3125,-5.25],[-20.9375,-5.25],[-21.5625,-5.25],[-22.1875,-5.25],[-22.1875,-4.75],[-22.1875,-4.25],[-22.1875,-3.75],[-22.1875,-3.25],[-21.5625,-3.25],[-21.5625,-2.75],[-21.5625,-2.25],[-21.5625,-1.75],[-21.5625,-1.25],[-22.1875,-1.25],[-22.8125,-1.25],[-22.8125,-0.75],[-23.4375,-0.75],[-24.0625,-0.75],[-24.0625,-0.25000000000017975],[-24.0625,0.25],[-24.6875,0.25],[-24.6875,0.75],[-24.6875,1.25],[-25.3125,1.25],[-25.9375,1.25],[-25.9375,1.75],[-26.5625,1.75],[-26.5625,1.25],[-27.1875,1.25],[-27.8125,1.25],[-27.8125,0.75],[-28.4375,0.75],[-28.4375,0.25],[-29.0625,0.25],[-29.0625,0.75],[-29.0625,1.25],[-29.0625,1.75],[-29.0625,2.25],[-29.6875,2.25],[-29.6875,2.75],[-30.3125,2.75],[-30.9375,2.75],[-31.5625,2.75],[-31.5625,3.25],[-32.1875,3.25],[-32.8125,3.25],[-33.4375,3.25],[-33.4375,3.75],[-33.4375,4.25],[-34.0625,4.25],[-34.0625,4.75],[-34.0625,5.25],[-34.0625,5.75],[-33.4375,5.75],[-33.4375,6.25],[-32.8125,6.25],[-32.8125,6.75],[-32.1875,6.75],[-32.1875,7.25],[-31.5625,7.25],[-30.9375,7.25],[-30.3125,7.25],[-29.6875,7.25],[-29.0625,7.25],[-29.0625,7.75],[-28.4375,7.75],[-27.8125,7.75],[-27.1875,7.75],[-26.5625,7.75],[-25.9375,7.75],[-25.9375,8.25],[-25.3125,8.25],[-24.6875,8.25],[-24.6875,7.75],[-25.3125,7.75],[-25.3125,7.25],[-24.6875,7.25],[-24.6875,6.75],[-24.6875,6.25],[-25.3125,6.25],[-25.3125,5.75],[-25.3125,5.25],[-24.6875,5.25],[-24.6875,4.75],[-24.6875,4.25],[-24.6875,3.75],[-24.6875,3.25],[-24.6875,2.75],[-24.0625,2.75],[-24.0625,2.25],[-23.4375,2.25],[-22.8125,2.25],[-22.8125,1.75],[-22.1875,1.75],[-21.5625,1.75],[-20.9375,1.75],[-20.9375,1.25],[-20.3125,1.25],[-19.6875,1.25],[-19.6875,0.75],[-19.6875,0.25],[-19.0625,0.25],[-19.0625,-0.25000000000017975],[-18.4375,-0.25000000000017975],[-18.4375,-0.75],[-17.8125,-0.75],[-17.8125,-1.25],[-17.1875,-1.25],[-16.5625,-1.25],[-15.9375,-1.25],[-15.9375,-0.75],[-15.3125,-0.75],[-14.6875,-0.75],[-14.0625,-0.75],[-13.4375,-0.75],[-13.4375,-0.25000000000017975],[-12.8125,-0.25000000000017975],[-12.1875,-0.25000000000017975],[-12.1875,0.25],[-11.5625,0.25],[-11.5625,0.75],[-11.5625,1.25],[-12.1875,1.25],[-12.1875,1.75],[-11.5625,1.75],[-11.5625,2.25],[-10.9375,2.25],[-10.9375,2.75],[-10.3125,2.75],[-9.6875,2.75],[-9.0625,2.75],[-9.0625,3.25],[-8.4375,3.25],[-8.4375,3.75],[-7.8125,3.75],[-7.8125,4.25],[-7.8125,4.75],[-7.8125,5.25],[-8.4375,5.25],[-8.4375,5.75],[-9.0625,5.75],[-9.6875,5.75],[-9.6875,6.25],[-9.6875,6.75],[-9.0625,6.75],[-9.0625,7.25],[-9.0625,7.75],[-9.6875,7.75],[-10.3125,7.75],[-10.9375,7.75],[-11.5625,7.75],[-12.1875,7.75],[-12.1875,7.25],[-12.1875,6.75],[-12.1875,6.25],[-11.5625,6.25],[-11.5625,5.75],[-12.1875,5.75],[-12.8125,5.75],[-12.8125,5.25],[-13.4375,5.25],[-13.4375,5.75],[-14.0625,5.75],[-14.6875,5.75],[-14.6875,6.25],[-15.3125,6.25],[-15.9375,6.25],[-15.9375,5.75],[-16.5625,5.75],[-17.1875,5.75],[-17.8125,5.75],[-17.8125,5.25],[-18.4375,5.25],[-19.0625,5.25],[-19.6875,5.25],[-19.6875,5.75],[-20.3125,5.75],[-20.9375,5.75],[-20.9375,6.25],[-21.5625,6.25],[-21.5625,6.75],[-21.5625,7.25],[-21.5625,7.75],[-20.9375,7.75],[-20.3125,7.75],[-20.3125,8.25],[-19.6875,8.25],[-19.6875,8.75],[-19.0625,8.75],[-18.4375,8.75],[-18.4375,9.25],[-18.4375,9.75],[-19.0625,9.75],[-19.0625,10.25],[-19.6875,10.25],[-20.3125,10.25],[-20.9375,10.25],[-20.9375,10.75],[-21.5625,10.75],[-21.5625,10.25],[-21.5625,9.75],[-22.1875,9.75],[-22.1875,9.25],[-22.8125,9.25],[-23.4375,9.25],[-23.4375,9.75],[-24.0625,9.75],[-24.0625,10.25],[-24.6875,10.25],[-24.6875,10.75],[-24.0625,10.75],[-24.0625,11.25],[-23.4375,11.25],[-23.4375,11.75],[-24.0625,11.75],[-24.6875,11.75],[-25.3125,11.75],[-25.3125,11.25],[-25.9375,11.25],[-26.5625,11.25],[-26.5625,10.75],[-27.1875,10.75],[-27.8125,10.75],[-28.4375,10.75],[-29.0625,10.75],[-29.6875,10.75],[-30.3125,10.75],[-30.9375,10.75],[-31.5625,10.75],[-32.1875,10.75],[-32.8125,10.75],[-33.4375,10.75],[-34.0625,10.75],[-34.0625,11.25],[-34.6875,11.25],[-35.3125,11.25],[-35.3125,11.75],[-35.9375,11.75],[-36.5625,11.75],[-36.5625,12.25],[-37.1875,12.25],[-37.8125,12.25],[-38.4375,12.25],[-38.4375,12.75],[-39.0625,12.75],[-39.6875,12.75],[-39.6875,13.25],[-39.6875,13.75],[-40.3125,13.75],[-40.3125,14.25],[-40.9375,14.25],[-41.5625,14.25],[-41.5625,14.75],[-42.1875,14.75],[-42.1875,15.25],[-42.8125,15.25],[-42.8125,15.75],[-43.4375,15.75],[-44.0625,15.75],[-44.0625,15.25],[-44.6875,15.25],[-44.6875,14.75],[-45.3125,14.75],[-45.3125,15.25],[-45.9375,15.25],[-46.5625,15.25],[-47.1875,15.25],[-47.1875,14.75],[-47.8125,14.75],[-48.4375,14.75],[-49.0625,14.75],[-49.0625,14.25],[-49.6875,14.25],[-50.3125,14.25],[-50.3125,13.75],[-50.9375,13.75],[-50.9375,13.25],[-51.5625,13.25],[-52.1875,13.25],[-52.8125,13.25],[-52.8125,13.75],[-53.4375,13.75],[-54.0625,13.75],[-54.6875,13.75],[-54.6875,13.25],[-55.3125,13.25],[-55.3125,12.75],[-55.9375,12.75],[-56.5625,12.75],[-57.1875,12.75],[-57.8125,12.75],[-57.8125,12.25],[-58.4375,12.25],[-59.0625,12.25],[-59.0625,11.75],[-59.6875,11.75],[-59.6875,11.25],[-60.3125,11.25],[-60.9375,11.25],[-61.5625,11.25],[-61.5625,11.75],[-62.1875,11.75],[-62.1875,12.25],[-62.8125,12.25],[-63.4375,12.25],[-64.0625,12.25],[-64.0625,11.75],[-64.6875,11.75],[-65.3125,11.75],[-65.9375,11.75],[-66.5625,11.75],[-66.5625,12.25],[-67.1875,12.25],[-67.8125,12.25],[-68.4375,12.25],[-69.0625,12.25],[-69.0625,12.75],[-69.0625,13.25],[-68.4375,13.25],[-67.8125,13.25],[-67.8125,13.75],[-67.1875,13.75],[-66.5625,13.75],[-66.5625,14.25],[-65.9375,14.25],[-65.3125,14.25],[-65.3125,14.75],[-64.6875,14.75],[-64.0625,14.75],[-64.0625,15.25],[-63.4375,15.25],[-63.4375,15.75],[-62.8125,15.75],[-62.8125,16.25],[-63.4375,16.25],[-64.0625,16.25],[-64.6875,16.25],[-64.6875,15.75],[-65.3125,15.75],[-65.9375,15.75],[-66.5625,15.75],[-67.1875,15.75],[-67.1875,16.25],[-67.8125,16.25],[-68.4375,16.25],[-69.0625,16.25],[-69.6875,16.25],[-70.3125,16.25],[-70.3125,16.75],[-70.9375,16.75],[-70.9375,17.25],[-70.9375,17.75],[-71.5625,17.75],[-72.1875,17.75],[-72.8125,17.75],[-73.4375,17.75],[-74.0625,17.75],[-74.0625,17.25],[-74.6875,17.25],[-74.6875,16.75],[-75.3125,16.75],[-75.3125,16.25],[-75.9375,16.25],[-76.5625,16.25],[-76.5625,16.75],[-77.1875,16.75],[-77.1875,17.25],[-77.8125,17.25],[-78.4375,17.25],[-79.0625,17.25],[-79.6875,17.25],[-80.3125,17.25],[-80.9375,17.25],[-80.9375,17.75],[-81.5625,17.75],[-82.1875,17.75],[-82.1875,18.25],[-82.8125,18.25],[-83.4375,18.25],[-83.4375,18.75],[-84.0625,18.75],[-84.6875,18.75],[-84.6875,19.25],[-84.6875,19.75],[-85.3125,19.75],[-85.3125,20.25],[-85.9375,20.25],[-85.9375,20.75],[-86.5625,20.75],[-87.1875,20.75],[-87.8125,20.75],[-87.8125,20.25],[-88.4375,20.25],[-88.4375,20.75],[-88.4375,21.25],[-88.4375,21.75],[-87.8125,21.75],[-87.8125,22.25],[-87.8125,22.75],[-87.1875,22.75],[-87.1875,23.25],[-87.8125,23.25],[-88.4375,23.25],[-88.4375,22.75],[-89.0625,22.75],[-89.6875,22.75],[-89.6875,22.25],[-90.3125,22.25],[-90.9375,22.25],[-91.5625,22.25],[-91.5625,21.75],[-92.1875,21.75],[-92.1875,22.25],[-92.8125,22.25],[-93.4375,22.25],[-94.0625,22.25],[-94.6875,22.25],[-94.6875,21.75],[-95.3125,21.75],[-95.9375,21.75],[-95.9375,21.25],[-96.5625,21.25],[-97.1875,21.25],[-97.1875,20.75],[-97.1875,20.25],[-97.1875,19.75],[-96.5625,19.75],[-96.5625,19.25],[-96.5625,18.75],[-97.1875,18.75],[-97.1875,18.25],[-97.8125,18.25],[-98.4375,18.25],[-99.0625,18.25],[-99.6875,18.25],[-99.6875,17.75],[-99.6875,17.25],[-100.3125,17.25],[-100.9375,17.25],[-100.9375,16.75],[-100.9375,16.25],[-100.9375,15.75],[-100.9375,15.25],[-100.9375,14.75],[-101.5625,14.75],[-102.1875,14.75],[-102.8125,14.75],[-102.8125,14.25],[-103.4375,14.25],[-104.0625,14.25],[-104.6875,14.25],[-104.6875,14.75],[-105.3125,14.75],[-105.3125,15.25],[-105.9375,15.25],[-106.5625,15.25],[-107.1875,15.25],[-107.8125,15.25],[-108.4375,15.25],[-109.0625,15.25],[-109.0625,14.75],[-109.6875,14.75],[-109.6875,14.25],[-110.3125,14.25],[-110.9375,14.25],[-110.9375,13.75],[-111.5625,13.75],[-111.5625,13.25],[-112.1875,13.25],[-112.8125,13.25],[-113.4375,13.25],[-113.4375,13.75],[-114.0625,13.75],[-114.6875,13.75],[-114.6875,14.25],[-115.3125,14.25],[-115.9375,14.25],[-116.5625,14.25],[-116.5625,14.75],[-117.1875,14.75],[-117.8125,14.75],[-117.8125,15.25],[-118.4375,15.25],[-119.0625,15.25],[-119.6875,15.25],[-120.3125,15.25],[-120.3125,15.75],[-120.9375,15.75],[-121.5625,15.75],[-122.1875,15.75],[-122.8125,15.75],[-123.4375,15.75],[-123.4375,16.25],[-124.0625,16.25],[-124.6875,16.25],[-125.3125,16.25],[-125.9375,16.25],[-126.5625,16.25],[-127.1875,16.25],[-127.1875,15.75],[-127.8125,15.75],[-128.4375,15.75],[-129.0625,15.75],[-129.0625,15.25],[-129.6875,15.25],[-129.6875,14.75],[-130.3125,14.75],[-130.9375,14.75],[-130.9375,14.25],[-131.5625,14.25],[-132.1875,14.25],[-132.8125,14.25],[-132.8125,13.75],[-133.4375,13.75],[-134.0625,13.75],[-134.0625,13.25],[-134.6875,13.25],[-135.3125,13.25],[-135.3125,13.75],[-135.9375,13.75],[-136.5625,13.75],[-137.1875,13.75],[-137.8125,13.75],[-138.4375,13.75],[-139.0625,13.75],[-139.6875,13.75],[-140.3125,13.75],[-140.9375,13.75],[-140.9375,14.25],[-141.5625,14.25],[-141.5625,13.75],[-142.1875,13.75],[-142.8125,13.75],[-143.4375,13.75],[-144.0625,13.75],[-144.6875,13.75],[-145.3125,13.75],[-145.3125,14.25],[-144.6875,14.25],[-144.6875,14.75],[-144.6875,15.25],[-144.6875,15.75],[-144.0625,15.75],[-144.0625,16.25],[-144.6875,16.25],[-145.3125,16.25],[-145.3125,15.75],[-145.9375,15.75],[-146.5625,15.75],[-147.1875,15.75],[-147.1875,16.25],[-147.8125,16.25],[-147.8125,16.75],[-148.4375,16.75],[-149.0625,16.75],[-149.6875,16.75],[-149.6875,16.25],[-150.3125,16.25],[-150.9375,16.25],[-151.5625,16.25],[-152.1875,16.25],[-152.8125,16.25],[-152.8125,15.75],[-152.8125,15.25],[-152.8125,14.75],[-152.8125,14.25],[-152.8125,13.75],[-153.4375,13.75],[-153.4375,14.25],[-154.0625,14.25],[-154.6875,14.25],[-155.3125,14.25],[-155.3125,14.75],[-155.9375,14.75],[-156.5625,14.75],[-156.5625,15.25],[-157.1875,15.25],[-157.8125,15.25],[-157.8125,15.75],[-158.4375,15.75],[-159.0625,15.75],[-159.6875,15.75],[-159.6875,15.25],[-160.3125,15.25],[-160.3125,14.75],[-160.9375,14.75],[-160.9375,14.25],[-160.9375,13.75],[-161.5625,13.75],[-161.5625,13.25],[-161.5625,12.75],[-162.1875,12.75],[-162.1875,12.25],[-162.8125,12.25],[-162.8125,11.75],[-163.4375,11.75],[-164.0625,11.75],[-164.6875,11.75],[-164.6875,12.25],[-165.3125,12.25],[-165.3125,12.75],[-165.9375,12.75],[-166.5625,12.75],[-167.1875,12.75],[-167.8125,12.75],[-167.8125,13.25],[-168.4375,13.25],[-168.4375,13.75],[-168.4375,14.25],[-167.8125,14.25],[-167.1875,14.25],[-167.1875,14.75],[-166.5625,14.75],[-166.5625,15.25],[-166.5625,15.75],[-167.1875,15.75],[-167.8125,15.75],[-168.4375,15.75],[-169.0625,15.75],[-169.6875,15.75],[-170.3125,15.75],[-170.3125,16.25],[-170.9375,16.25],[-171.5625,16.25],[-171.5625,16.75],[-171.5625,17.25],[-171.5625,17.75],[-172.1875,17.75],[-172.1875,18.25],[-172.8125,18.25],[-173.4375,18.25],[-174.0625,18.25],[-174.6875,18.25],[-175.3125,18.25],[-175.9375,18.25],[-176.5625,18.25],[-177.1875,18.25],[-177.8125,18.25],[-178.4375,18.25],[-179.0625,18.25],[-179.6875,18.25],[-179.6875,18.75],[-179.0625,18.75],[-179.0625,19.25],[-178.4375,19.25],[-177.8125,19.25],[-177.1875,19.25],[-177.1875,19.75],[-176.5625,19.75],[-175.9375,19.75],[-175.9375,20.25],[-175.3125,20.25],[-175.3125,20.75],[-175.9375,20.75],[-176.5625,20.75],[-177.1875,20.75],[-177.8125,20.75],[-178.4375,20.75],[-179.0625,20.75],[-179.6875,20.75],[179.6875,20.75],[179.0625,20.75],[178.4375,20.75],[178.4375,20.25],[177.8125,20.25],[177.1875,20.25],[176.5625,20.25],[176.5625,20.75],[175.9375,20.75],[175.3125,20.75],[174.6875,20.75],[174.0625,20.75],[173.4375,20.75],[172.8125,20.75],[172.8125,21.25],[172.1875,21.25],[171.5625,21.25],[170.9375,21.25],[170.9375,21.75],[170.3125,21.75],[169.6875,21.75],[169.0625,21.75],[168.4375,21.75],[167.8125,21.75],[167.8125,21.25],[167.1875,21.25],[166.5625,21.25],[166.5625,20.75],[165.9375,20.75],[165.9375,20.25],[165.3125,20.25],[164.6875,20.25],[164.0625,20.25],[163.4375,20.25],[162.8125,20.25],[162.8125,20.75],[162.1875,20.75],[162.1875,21.25],[161.5625,21.25],[160.9375,21.25],[160.3125,21.25],[160.3125,21.75],[159.6875,21.75],[159.0625,21.75],[158.4375,21.75],[157.8125,21.75],[157.1875,21.75],[156.5625,21.75],[156.5625,22.25],[155.9375,22.25],[155.3125,22.25],[155.3125,22.75],[154.6875,22.75],[154.6875,23.25],[154.0625,23.25],[153.4375,23.25],[153.4375,23.75],[152.8125,23.75],[152.8125,24.25],[152.1875,24.25],[152.1875,24.75],[151.5625,24.75],[151.5625,25.25],[150.9375,25.25],[150.9375,25.75],[150.3125,25.75],[149.6875,25.75],[149.6875,26.25],[149.0625,26.25]] + # ring1rev = [[-32.1875,-21.25],[-31.5625,-21.25],[-30.9375,-21.25],[-30.3125,-21.25],[-29.6875,-21.25],[-29.0625,-21.25],[-28.4375,-21.25],[-27.8125,-21.25],[-27.1875,-21.25],[-26.5625,-21.25],[-25.9375,-21.25],[-25.9375,-20.75],[-25.3125,-20.75],[-25.3125,-20.25],[-25.3125,-19.75],[-25.3125,-19.25],[-24.6875,-19.25],[-24.6875,-18.75],[-24.0625,-18.75],[-23.4375,-18.75],[-23.4375,-18.25],[-22.8125,-18.25],[-22.1875,-18.25],[-22.1875,-17.75],[-21.5625,-17.75],[-20.9375,-17.75],[-20.3125,-17.75],[-20.3125,-17.25],[-20.3125,-16.75],[-19.6875,-16.75],[-19.0625,-16.75],[-19.0625,-17.25],[-18.4375,-17.25],[-17.8125,-17.25],[-17.8125,-16.75],[-17.1875,-16.75],[-17.1875,-16.25],[-17.1875,-15.75],[-16.5625,-15.75],[-16.5625,-15.25],[-15.9375,-15.25],[-15.3125,-15.25],[-14.6875,-15.25],[-14.0625,-15.25],[-14.0625,-14.75],[-14.0625,-14.25],[-13.4375,-14.25],[-12.8125,-14.25],[-12.8125,-13.75],[-12.1875,-13.75],[-11.5625,-13.75],[-11.5625,-13.25],[-10.9375,-13.25],[-10.3125,-13.25],[-10.3125,-12.75],[-9.6875,-12.75],[-9.0625,-12.75],[-9.0625,-12.25],[-8.4375,-12.25],[-7.8125,-12.25],[-7.1875,-12.25],[-7.1875,-11.75],[-6.5625,-11.75],[-5.9375,-11.75],[-5.9375,-11.25],[-5.3125,-11.25],[-5.3125,-10.75],[-4.6875,-10.75],[-4.6875,-10.25],[-4.0625,-10.25],[-4.0625,-9.75],[-3.4375,-9.75],[-2.8125,-9.75],[-2.1875,-9.75],[-1.5625,-9.75],[-1.5625,-10.25],[-0.9375,-10.25],[-0.312500000000592,-10.25],[-0.312500000000592,-10.75],[0.3125,-10.75],[0.9375,-10.75],[1.5625,-10.75],[1.5625,-10.25],[2.1875,-10.25],[2.8125,-10.25],[3.4375,-10.25],[4.0625,-10.25],[4.0625,-9.75],[4.6875,-9.75],[5.3125,-9.75],[5.3125,-9.25],[5.3125,-8.75],[5.3125,-8.25],[5.3125,-7.75],[4.6875,-7.75],[4.6875,-7.25],[5.3125,-7.25],[5.9375,-7.25],[6.5625,-7.25],[6.5625,-7.75],[7.1875,-7.75],[7.8125,-7.75],[8.4375,-7.75],[8.4375,-8.25],[9.0625,-8.25],[9.6875,-8.25],[9.6875,-8.75],[10.3125,-8.75],[10.9375,-8.75],[10.9375,-9.25],[11.5625,-9.25],[12.1875,-9.25],[12.1875,-9.75],[12.8125,-9.75],[13.4375,-9.75],[14.0625,-9.75],[14.6875,-9.75],[14.6875,-10.25],[14.0625,-10.25],[14.0625,-10.75],[14.6875,-10.75],[15.3125,-10.75],[15.3125,-10.25],[15.9375,-10.25],[16.5625,-10.25],[16.5625,-10.75],[17.1875,-10.75],[17.8125,-10.75],[18.4375,-10.75],[18.4375,-10.25],[19.0625,-10.25],[19.6875,-10.25],[20.3125,-10.25],[20.3125,-9.75],[20.9375,-9.75],[20.9375,-9.25],[21.5625,-9.25],[22.1875,-9.25],[22.1875,-8.75],[22.8125,-8.75],[23.4375,-8.75],[23.4375,-8.25],[24.0625,-8.25],[24.0625,-7.75],[24.0625,-7.25],[24.6875,-7.25],[25.3125,-7.25],[25.9375,-7.25],[26.5625,-7.25],[26.5625,-7.75],[25.9375,-7.75],[25.9375,-8.25],[26.5625,-8.25],[26.5625,-8.75],[26.5625,-9.25],[26.5625,-9.75],[25.9375,-9.75],[25.9375,-10.25],[25.3125,-10.25],[24.6875,-10.25],[24.0625,-10.25],[24.0625,-9.75],[23.4375,-9.75],[23.4375,-9.25],[22.8125,-9.25],[22.8125,-9.75],[22.1875,-9.75],[22.1875,-10.25],[22.8125,-10.25],[23.4375,-10.25],[23.4375,-10.75],[24.0625,-10.75],[24.6875,-10.75],[24.6875,-11.25],[25.3125,-11.25],[25.3125,-11.75],[25.9375,-11.75],[26.5625,-11.75],[27.1875,-11.75],[27.8125,-11.75],[28.4375,-11.75],[29.0625,-11.75],[29.0625,-11.25],[29.0625,-10.75],[28.4375,-10.75],[28.4375,-10.25],[28.4375,-9.75],[29.0625,-9.75],[29.0625,-9.25],[29.0625,-8.75],[29.6875,-8.75],[29.6875,-8.25],[29.0625,-8.25],[28.4375,-8.25],[27.8125,-8.25],[27.8125,-7.75],[27.8125,-7.25],[28.4375,-7.25],[29.0625,-7.25],[29.6875,-7.25],[30.3125,-7.25],[30.3125,-7.75],[30.9375,-7.75],[30.9375,-7.25],[31.5625,-7.25],[32.1875,-7.25],[32.8125,-7.25],[32.8125,-6.75],[33.4375,-6.75],[33.4375,-7.25],[34.0625,-7.25],[34.6875,-7.25],[35.3125,-7.25],[35.3125,-7.75],[35.9375,-7.75],[35.9375,-8.25],[35.9375,-8.75],[35.3125,-8.75],[35.3125,-9.25],[35.9375,-9.25],[35.9375,-9.75],[35.3125,-9.75],[35.3125,-10.25],[34.6875,-10.25],[34.0625,-10.25],[34.0625,-10.75],[34.6875,-10.75],[34.6875,-11.25],[34.6875,-11.75],[34.0625,-11.75],[34.0625,-12.25],[34.0625,-12.75],[34.6875,-12.75],[34.6875,-12.25],[35.3125,-12.25],[35.3125,-12.75],[35.9375,-12.75],[36.5625,-12.75],[37.1875,-12.75],[37.8125,-12.75],[38.4375,-12.75],[39.0625,-12.75],[39.6875,-12.75],[39.6875,-13.25],[40.3125,-13.25],[40.9375,-13.25],[41.5625,-13.25],[42.1875,-13.25],[42.8125,-13.25],[43.4375,-13.25],[43.4375,-12.75],[44.0625,-12.75],[44.6875,-12.75],[45.3125,-12.75],[45.3125,-13.25],[45.3125,-13.75],[45.3125,-14.25],[45.3125,-14.75],[45.9375,-14.75],[45.9375,-15.25],[46.5625,-15.25],[47.1875,-15.25],[47.8125,-15.25],[47.8125,-14.75],[47.1875,-14.75],[47.1875,-14.25],[46.5625,-14.25],[46.5625,-13.75],[45.9375,-13.75],[45.9375,-13.25],[46.5625,-13.25],[46.5625,-12.75],[47.1875,-12.75],[47.8125,-12.75],[48.4375,-12.75],[48.4375,-13.25],[49.0625,-13.25],[49.0625,-13.75],[49.6875,-13.75],[49.6875,-14.25],[50.3125,-14.25],[50.3125,-14.75],[50.3125,-15.25],[50.9375,-15.25],[50.9375,-15.75],[51.5625,-15.75],[52.1875,-15.75],[52.8125,-15.75],[53.4375,-15.75],[53.4375,-16.25],[54.0625,-16.25],[54.0625,-16.75],[54.0625,-17.25],[54.6875,-17.25],[55.3125,-17.25],[55.9375,-17.25],[55.9375,-16.75],[56.5625,-16.75],[56.5625,-16.25],[57.1875,-16.25],[57.1875,-15.75],[57.1875,-15.25],[56.5625,-15.25],[56.5625,-14.75],[55.9375,-14.75],[55.3125,-14.75],[54.6875,-14.75],[54.0625,-14.75],[54.0625,-14.25],[53.4375,-14.25],[53.4375,-13.75],[52.8125,-13.75],[52.8125,-13.25],[52.1875,-13.25],[52.1875,-12.75],[51.5625,-12.75],[51.5625,-12.25],[51.5625,-11.75],[51.5625,-11.25],[52.1875,-11.25],[52.8125,-11.25],[52.8125,-11.75],[53.4375,-11.75],[53.4375,-12.25],[54.0625,-12.25],[54.6875,-12.25],[55.3125,-12.25],[55.9375,-12.25],[55.9375,-11.75],[55.9375,-11.25],[55.9375,-10.75],[55.3125,-10.75],[55.3125,-10.25],[55.3125,-9.75],[54.6875,-9.75],[54.6875,-9.25],[54.6875,-8.75],[55.3125,-8.75],[55.3125,-8.25],[55.9375,-8.25],[56.5625,-8.25],[57.1875,-8.25],[57.1875,-8.75],[57.8125,-8.75],[58.4375,-8.75],[58.4375,-9.25],[59.0625,-9.25],[59.6875,-9.25],[59.6875,-9.75],[60.3125,-9.75],[60.3125,-10.25],[60.9375,-10.25],[60.9375,-10.75],[61.5625,-10.75],[61.5625,-11.25],[62.1875,-11.25],[62.1875,-11.75],[62.8125,-11.75],[62.8125,-12.25],[63.4375,-12.25],[63.4375,-12.75],[63.4375,-13.25],[64.0625,-13.25],[64.0625,-13.75],[64.6875,-13.75],[65.3125,-13.75],[65.9375,-13.75],[65.9375,-14.25],[66.5625,-14.25],[67.1875,-14.25],[67.8125,-14.25],[68.4375,-14.25],[69.0625,-14.25],[69.6875,-14.25],[70.3125,-14.25],[70.9375,-14.25],[71.5625,-14.25],[72.1875,-14.25],[72.1875,-13.75],[72.8125,-13.75],[73.4375,-13.75],[74.0625,-13.75],[74.0625,-13.25],[74.6875,-13.25],[74.6875,-12.75],[75.3125,-12.75],[75.9375,-12.75],[75.9375,-12.25],[76.5625,-12.25],[77.1875,-12.25],[77.1875,-11.75],[77.8125,-11.75],[77.8125,-12.25],[78.4375,-12.25],[79.0625,-12.25],[79.0625,-12.75],[79.6875,-12.75],[80.3125,-12.75],[80.9375,-12.75],[80.9375,-13.25],[81.5625,-13.25],[82.1875,-13.25],[82.8125,-13.25],[82.8125,-12.75],[83.4375,-12.75],[83.4375,-12.25],[84.0625,-12.25],[84.0625,-11.75],[84.0625,-11.25],[83.4375,-11.25],[83.4375,-10.75],[83.4375,-10.25],[84.0625,-10.25],[84.0625,-9.75],[83.4375,-9.75],[82.8125,-9.75],[82.1875,-9.75],[82.1875,-9.25],[82.1875,-8.75],[81.5625,-8.75],[80.9375,-8.75],[80.3125,-8.75],[80.3125,-8.25],[79.6875,-8.25],[79.6875,-7.75],[79.6875,-7.25],[79.6875,-6.75],[80.3125,-6.75],[80.3125,-6.25],[80.3125,-5.75],[80.3125,-5.25],[80.9375,-5.25],[80.9375,-4.75],[80.9375,-4.25],[81.5625,-4.25],[81.5625,-3.75],[82.1875,-3.75],[82.1875,-3.25],[82.8125,-3.25],[83.4375,-3.25],[84.0625,-3.25],[84.0625,-2.75],[84.6875,-2.75],[84.6875,-2.25],[85.3125,-2.25],[85.9375,-2.25],[85.9375,-1.75],[86.5625,-1.75],[86.5625,-1.25],[87.1875,-1.25],[87.1875,-0.75],[87.8125,-0.75],[87.8125,-0.25000000000017975],[87.8125,0.25],[88.4375,0.25],[88.4375,0.75],[89.0625,0.75],[89.0625,1.25],[89.0625,1.75],[89.0625,2.25],[89.6875,2.25],[89.6875,2.75],[89.0625,2.75],[89.0625,3.25],[89.0625,3.75],[89.0625,4.25],[88.4375,4.25],[88.4375,4.75],[88.4375,5.25],[88.4375,5.75],[88.4375,6.25],[88.4375,6.75],[89.0625,6.75],[89.0625,7.25],[89.6875,7.25],[90.3125,7.25],[90.9375,7.25],[90.9375,7.75],[91.5625,7.75],[92.1875,7.75],[92.1875,7.25],[92.8125,7.25],[92.8125,6.75],[93.4375,6.75],[93.4375,6.25],[94.0625,6.25],[94.0625,5.75],[94.6875,5.75],[94.6875,5.25],[95.3125,5.25],[95.9375,5.25],[96.5625,5.25],[97.1875,5.25],[97.8125,5.25],[98.4375,5.25],[99.0625,5.25],[99.6875,5.25],[100.3125,5.25],[100.3125,4.75],[100.9375,4.75],[101.5625,4.75],[101.5625,4.25],[101.5625,3.75],[100.9375,3.75],[100.9375,3.25],[100.9375,2.75],[101.5625,2.75],[101.5625,2.25],[102.1875,2.25],[102.1875,1.75],[102.8125,1.75],[103.4375,1.75],[103.4375,2.25],[104.0625,2.25],[104.6875,2.25],[104.6875,2.75],[105.3125,2.75],[105.9375,2.75],[105.9375,3.25],[106.5625,3.25],[107.1875,3.25],[107.1875,3.75],[107.8125,3.75],[108.4375,3.75],[108.4375,4.25],[109.0625,4.25],[109.0625,4.75],[109.0625,5.25],[109.6875,5.25],[109.6875,5.75],[110.3125,5.75],[110.9375,5.75],[111.5625,5.75],[111.5625,6.25],[112.1875,6.25],[112.8125,6.25],[112.8125,6.75],[113.4375,6.75],[114.0625,6.75],[114.0625,6.25],[114.6875,6.25],[115.3125,6.25],[115.9375,6.25],[115.9375,6.75],[115.9375,7.25],[115.3125,7.25],[115.3125,7.75],[114.6875,7.75],[114.6875,8.25],[115.3125,8.25],[115.9375,8.25],[116.5625,8.25],[117.1875,8.25],[117.1875,7.75],[117.8125,7.75],[118.4375,7.75],[119.0625,7.75],[119.6875,7.75],[120.3125,7.75],[120.3125,8.25],[120.9375,8.25],[121.5625,8.25],[122.1875,8.25],[122.8125,8.25],[122.8125,8.75],[122.8125,9.25],[122.1875,9.25],[122.1875,9.75],[122.1875,10.25],[121.5625,10.25],[121.5625,9.75],[121.5625,9.25],[121.5625,8.75],[120.9375,8.75],[120.3125,8.75],[120.3125,9.25],[120.3125,9.75],[120.3125,10.25],[120.9375,10.25],[120.9375,10.75],[120.9375,11.25],[121.5625,11.25],[121.5625,11.75],[122.1875,11.75],[122.1875,12.25],[122.1875,12.75],[122.8125,12.75],[123.4375,12.75],[123.4375,13.25],[123.4375,13.75],[124.0625,13.75],[124.0625,13.25],[124.0625,12.75],[124.6875,12.75],[125.3125,12.75],[125.9375,12.75],[125.9375,12.25],[125.9375,11.75],[125.9375,11.25],[125.9375,10.75],[125.9375,10.25],[125.3125,10.25],[125.3125,9.75],[125.9375,9.75],[125.9375,9.25],[126.5625,9.25],[126.5625,8.75],[126.5625,8.25],[126.5625,7.75],[127.1875,7.75],[127.1875,8.25],[127.1875,8.75],[127.8125,8.75],[128.4375,8.75],[128.4375,9.25],[128.4375,9.75],[128.4375,10.25],[129.0625,10.25],[129.0625,10.75],[129.6875,10.75],[129.6875,11.25],[130.3125,11.25],[130.3125,11.75],[130.3125,12.25],[130.9375,12.25],[131.5625,12.25],[131.5625,12.75],[132.1875,12.75],[132.8125,12.75],[132.8125,13.25],[133.4375,13.25],[134.0625,13.25],[134.0625,13.75],[134.6875,13.75],[135.3125,13.75],[135.3125,14.25],[135.9375,14.25],[135.9375,14.75],[136.5625,14.75],[137.1875,14.75],[137.1875,15.25],[137.8125,15.25],[138.4375,15.25],[138.4375,15.75],[139.0625,15.75],[139.6875,15.75],[139.6875,16.25],[140.3125,16.25],[140.9375,16.25],[141.5625,16.25],[142.1875,16.25],[142.8125,16.25],[143.4375,16.25],[144.0625,16.25],[144.6875,16.25],[144.6875,16.75],[144.6875,17.25],[144.6875,17.75],[144.6875,18.25],[145.3125,18.25],[145.3125,18.75],[145.3125,19.25],[145.3125,19.75],[145.9375,19.75],[146.5625,19.75],[147.1875,19.75],[147.1875,19.25],[147.1875,18.75],[147.1875,18.25],[147.8125,18.25],[147.8125,17.75],[147.8125,17.25],[148.4375,17.25],[148.4375,16.75],[148.4375,16.25],[149.0625,16.25],[149.0625,15.75],[149.0625,15.25],[149.6875,15.25],[149.6875,15.75],[150.3125,15.75],[150.3125,16.25],[150.9375,16.25],[150.9375,16.75],[150.9375,17.25],[151.5625,17.25],[151.5625,17.75],[152.1875,17.75],[152.1875,18.25],[152.8125,18.25],[152.8125,18.75],[153.4375,18.75],[153.4375,18.25],[154.0625,18.25],[154.0625,17.75],[154.6875,17.75],[154.6875,17.25],[154.6875,16.75],[155.3125,16.75],[155.3125,16.25],[155.9375,16.25],[155.9375,15.75],[156.5625,15.75],[156.5625,15.25],[156.5625,14.75],[157.1875,14.75],[157.1875,14.25],[157.1875,13.75],[157.8125,13.75],[157.8125,13.25],[157.8125,12.75],[157.1875,12.75],[156.5625,12.75],[156.5625,12.25],[155.9375,12.25],[155.9375,11.75],[155.3125,11.75],[155.3125,11.25],[154.6875,11.25],[154.0625,11.25],[154.0625,10.75],[153.4375,10.75],[153.4375,10.25],[152.8125,10.25],[152.8125,9.75],[152.1875,9.75],[152.1875,9.25],[151.5625,9.25],[151.5625,8.75],[150.9375,8.75],[150.9375,8.25],[150.9375,7.75],[150.3125,7.75],[150.3125,7.25],[150.3125,6.75],[149.6875,6.75],[149.6875,6.25],[149.6875,5.75],[149.6875,5.25],[149.6875,4.75],[150.3125,4.75],[150.9375,4.75],[150.9375,4.25],[151.5625,4.25],[151.5625,3.75],[152.1875,3.75],[152.1875,3.25],[152.8125,3.25],[152.8125,2.75],[153.4375,2.75],[154.0625,2.75],[154.0625,3.25],[154.6875,3.25],[154.6875,3.75],[155.3125,3.75],[155.9375,3.75],[156.5625,3.75],[156.5625,3.25],[156.5625,2.75],[157.1875,2.75],[157.8125,2.75],[158.4375,2.75],[158.4375,3.25],[157.8125,3.25],[157.8125,3.75],[157.1875,3.75],[157.1875,4.25],[157.1875,4.75],[157.8125,4.75],[157.8125,5.25],[158.4375,5.25],[159.0625,5.25],[159.6875,5.25],[159.6875,4.75],[160.3125,4.75],[160.9375,4.75],[161.5625,4.75],[161.5625,4.25],[162.1875,4.25],[162.8125,4.25],[163.4375,4.25],[163.4375,4.75],[164.0625,4.75],[164.6875,4.75],[164.6875,5.25],[164.6875,5.75],[164.0625,5.75],[164.0625,6.25],[164.0625,6.75],[163.4375,6.75],[163.4375,7.25],[162.8125,7.25],[162.8125,7.75],[162.8125,8.25],[162.8125,8.75],[162.1875,8.75],[162.1875,9.25],[162.8125,9.25],[163.4375,9.25],[164.0625,9.25],[164.0625,8.75],[164.6875,8.75],[165.3125,8.75],[165.9375,8.75],[165.9375,8.25],[166.5625,8.25],[167.1875,8.25],[167.1875,7.75],[167.8125,7.75],[167.8125,7.25],[167.1875,7.25],[166.5625,7.25],[166.5625,6.75],[166.5625,6.25],[167.1875,6.25],[167.1875,6.75],[167.8125,6.75],[168.4375,6.75],[168.4375,6.25],[168.4375,5.75],[167.8125,5.75],[167.8125,5.25],[167.8125,4.75],[167.1875,4.75],[167.1875,4.25],[167.1875,3.75],[167.1875,3.25],[167.1875,2.75],[167.1875,2.25],[167.1875,1.75],[167.1875,1.25],[167.1875,0.75],[167.8125,0.75],[167.8125,0.25],[167.8125,-0.25000000000017975],[168.4375,-0.25000000000017975],[168.4375,-0.75],[168.4375,-1.25],[168.4375,-1.75],[167.8125,-1.75],[167.8125,-2.25],[167.8125,-2.75],[167.8125,-3.25],[167.8125,-3.75],[167.8125,-4.25],[168.4375,-4.25],[168.4375,-4.75],[168.4375,-5.25],[168.4375,-5.75],[169.0625,-5.75],[169.0625,-6.25],[169.0625,-6.75],[169.6875,-6.75],[169.6875,-7.25],[170.3125,-7.25],[170.3125,-7.75],[170.3125,-8.25],[170.3125,-8.75],[170.9375,-8.75],[171.5625,-8.75],[171.5625,-8.25],[170.9375,-8.25],[170.9375,-7.75],[171.5625,-7.75],[172.1875,-7.75],[172.8125,-7.75],[172.8125,-7.25],[172.8125,-6.75],[173.4375,-6.75],[173.4375,-6.25],[173.4375,-5.75],[173.4375,-5.25],[172.8125,-5.25],[172.8125,-4.75],[172.8125,-4.25],[172.1875,-4.25],[172.1875,-3.75],[172.1875,-3.25],[171.5625,-3.25],[171.5625,-2.75],[170.9375,-2.75],[170.9375,-2.25],[170.9375,-1.75],[170.3125,-1.75],[170.3125,-1.25],[170.3125,-0.75],[169.6875,-0.75],[169.6875,-0.25000000000017975],[169.6875,0.25],[169.0625,0.25],[169.0625,0.75],[168.4375,0.75],[168.4375,1.25],[169.0625,1.25],[169.0625,1.75],[169.6875,1.75],[169.6875,2.25],[170.3125,2.25],[170.3125,1.75],[170.9375,1.75],[170.9375,1.25],[171.5625,1.25],[171.5625,0.75],[172.1875,0.75],[172.1875,1.25],[172.1875,1.75],[172.1875,2.25],[172.8125,2.25],[172.8125,2.75],[173.4375,2.75],[173.4375,3.25],[174.0625,3.25],[174.6875,3.25],[174.6875,3.75],[175.3125,3.75],[175.3125,4.25],[175.9375,4.25],[175.9375,4.75],[175.9375,5.25],[175.9375,5.75],[176.5625,5.75],[177.1875,5.75],[177.8125,5.75],[177.8125,5.25],[178.4375,5.25],[179.0625,5.25],[179.0625,5.75],[179.6875,5.75],[179.6875,5.25],[-179.6875,5.25],[-179.6875,4.75],[-179.6875,4.25],[-179.6875,3.75],[-179.6875,3.25],[-179.6875,2.75],[-179.0625,2.75],[-178.4375,2.75],[-178.4375,2.25],[-178.4375,1.75],[-178.4375,1.25],[-177.8125,1.25],[-177.8125,1.75],[-177.1875,1.75],[-176.5625,1.75],[-176.5625,2.25],[-175.9375,2.25],[-175.3125,2.25],[-175.3125,2.75],[-174.6875,2.75],[-174.6875,3.25],[-174.6875,3.75],[-174.0625,3.75],[-174.0625,3.25],[-173.4375,3.25],[-173.4375,3.75],[-172.8125,3.75],[-172.1875,3.75],[-171.5625,3.75],[-170.9375,3.75],[-170.9375,3.25],[-170.3125,3.25],[-169.6875,3.25],[-169.0625,3.25],[-168.4375,3.25],[-167.8125,3.25],[-167.1875,3.25],[-166.5625,3.25],[-165.9375,3.25],[-165.9375,3.75],[-165.3125,3.75],[-164.6875,3.75],[-164.0625,3.75],[-163.4375,3.75],[-163.4375,4.25],[-162.8125,4.25],[-162.1875,4.25],[-162.1875,4.75],[-161.5625,4.75],[-161.5625,5.25],[-160.9375,5.25],[-160.3125,5.25],[-160.3125,5.75],[-159.6875,5.75],[-159.0625,5.75],[-158.4375,5.75],[-157.8125,5.75],[-157.1875,5.75],[-157.1875,6.25],[-156.5625,6.25],[-155.9375,6.25],[-155.3125,6.25],[-155.3125,5.75],[-154.6875,5.75],[-154.0625,5.75],[-153.4375,5.75],[-152.8125,5.75],[-152.1875,5.75],[-151.5625,5.75],[-150.9375,5.75],[-150.3125,5.75],[-149.6875,5.75],[-149.6875,6.25],[-149.0625,6.25],[-148.4375,6.25],[-147.8125,6.25],[-147.8125,5.75],[-147.8125,5.25],[-147.1875,5.25],[-146.5625,5.25],[-146.5625,4.75],[-146.5625,4.25],[-146.5625,3.75],[-145.9375,3.75],[-145.3125,3.75],[-145.3125,4.25],[-144.6875,4.25],[-144.0625,4.25],[-144.0625,4.75],[-143.4375,4.75],[-143.4375,5.25],[-142.8125,5.25],[-142.8125,4.75],[-142.1875,4.75],[-141.5625,4.75],[-140.9375,4.75],[-140.9375,5.25],[-140.3125,5.25],[-139.6875,5.25],[-139.6875,4.75],[-139.6875,4.25],[-139.0625,4.25],[-138.4375,4.25],[-138.4375,4.75],[-137.8125,4.75],[-137.8125,5.25],[-137.1875,5.25],[-137.1875,4.75],[-136.5625,4.75],[-136.5625,4.25],[-136.5625,3.75],[-136.5625,3.25],[-136.5625,2.75],[-136.5625,2.25],[-136.5625,1.75],[-135.9375,1.75],[-135.9375,1.25],[-135.3125,1.25],[-135.3125,0.75],[-135.3125,0.25],[-135.3125,-0.25000000000017975],[-135.3125,-0.75],[-134.6875,-0.75],[-134.6875,-1.25],[-135.3125,-1.25],[-135.3125,-1.75],[-135.3125,-2.25],[-135.3125,-2.75],[-135.3125,-3.25],[-134.6875,-3.25],[-134.6875,-3.75],[-134.0625,-3.75],[-134.0625,-4.25],[-133.4375,-4.25],[-132.8125,-4.25],[-132.1875,-4.25],[-132.1875,-4.75],[-131.5625,-4.75],[-131.5625,-5.25],[-130.9375,-5.25],[-130.9375,-5.75],[-130.3125,-5.75],[-130.3125,-6.25],[-130.3125,-6.75],[-129.6875,-6.75],[-129.0625,-6.75],[-129.0625,-7.25],[-128.4375,-7.25],[-127.8125,-7.25],[-127.8125,-6.75],[-127.8125,-6.25],[-127.1875,-6.25],[-126.5625,-6.25],[-126.5625,-5.75],[-125.9375,-5.75],[-125.9375,-6.25],[-125.3125,-6.25],[-124.6875,-6.25],[-124.0625,-6.25],[-124.0625,-6.75],[-123.4375,-6.75],[-122.8125,-6.75],[-122.8125,-7.25],[-122.1875,-7.25],[-121.5625,-7.25],[-121.5625,-6.75],[-121.5625,-6.25],[-120.9375,-6.25],[-120.9375,-5.75],[-120.9375,-5.25],[-120.9375,-4.75],[-120.9375,-4.25],[-120.9375,-3.75],[-120.9375,-3.25],[-120.9375,-2.75],[-120.9375,-2.25],[-121.5625,-2.25],[-121.5625,-1.75],[-122.1875,-1.75],[-122.1875,-1.25],[-122.1875,-0.75],[-122.1875,-0.25000000000017975],[-122.1875,0.25],[-121.5625,0.25],[-121.5625,0.75],[-120.9375,0.75],[-120.3125,0.75],[-120.3125,1.25],[-119.6875,1.25],[-119.6875,1.75],[-119.6875,2.25],[-119.0625,2.25],[-119.0625,2.75],[-118.4375,2.75],[-117.8125,2.75],[-117.1875,2.75],[-116.5625,2.75],[-115.9375,2.75],[-115.3125,2.75],[-115.3125,3.25],[-114.6875,3.25],[-114.6875,3.75],[-114.6875,4.25],[-115.3125,4.25],[-115.3125,4.75],[-115.3125,5.25],[-115.9375,5.25],[-115.9375,5.75],[-116.5625,5.75],[-116.5625,6.25],[-117.1875,6.25],[-117.8125,6.25],[-118.4375,6.25],[-118.4375,5.75],[-119.0625,5.75],[-119.6875,5.75],[-120.3125,5.75],[-120.9375,5.75],[-121.5625,5.75],[-122.1875,5.75],[-122.8125,5.75],[-122.8125,6.25],[-123.4375,6.25],[-124.0625,6.25],[-124.0625,6.75],[-124.6875,6.75],[-125.3125,6.75],[-125.3125,7.25],[-125.9375,7.25],[-125.9375,7.75],[-125.9375,8.25],[-125.9375,8.75],[-126.5625,8.75],[-126.5625,9.25],[-126.5625,9.75],[-126.5625,10.25],[-125.9375,10.25],[-125.9375,10.75],[-125.9375,11.25],[-125.3125,11.25],[-125.3125,11.75],[-124.6875,11.75],[-124.6875,12.25],[-124.0625,12.25],[-123.4375,12.25],[-122.8125,12.25],[-122.1875,12.25],[-122.1875,11.75],[-121.5625,11.75],[-120.9375,11.75],[-120.3125,11.75],[-120.3125,11.25],[-119.6875,11.25],[-119.0625,11.25],[-119.0625,10.75],[-118.4375,10.75],[-117.8125,10.75],[-117.8125,10.25],[-117.1875,10.25],[-116.5625,10.25],[-116.5625,9.75],[-115.9375,9.75],[-115.3125,9.75],[-114.6875,9.75],[-114.0625,9.75],[-113.4375,9.75],[-113.4375,9.25],[-112.8125,9.25],[-112.8125,8.75],[-112.1875,8.75],[-112.1875,8.25],[-111.5625,8.25],[-110.9375,8.25],[-110.9375,8.75],[-110.3125,8.75],[-109.6875,8.75],[-109.0625,8.75],[-109.0625,9.25],[-108.4375,9.25],[-107.8125,9.25],[-107.1875,9.25],[-106.5625,9.25],[-106.5625,8.75],[-105.9375,8.75],[-105.3125,8.75],[-105.3125,8.25],[-105.3125,7.75],[-104.6875,7.75],[-104.6875,7.25],[-104.0625,7.25],[-103.4375,7.25],[-102.8125,7.25],[-102.1875,7.25],[-101.5625,7.25],[-100.9375,7.25],[-100.9375,6.75],[-100.3125,6.75],[-99.6875,6.75],[-99.0625,6.75],[-98.4375,6.75],[-98.4375,7.25],[-97.8125,7.25],[-97.1875,7.25],[-96.5625,7.25],[-96.5625,7.75],[-95.9375,7.75],[-95.3125,7.75],[-94.6875,7.75],[-94.0625,7.75],[-94.0625,8.25],[-93.4375,8.25],[-92.8125,8.25],[-92.8125,8.75],[-92.1875,8.75],[-91.5625,8.75],[-91.5625,9.25],[-90.9375,9.25],[-90.9375,9.75],[-90.3125,9.75],[-89.6875,9.75],[-89.6875,10.25],[-89.0625,10.25],[-88.4375,10.25],[-88.4375,10.75],[-87.8125,10.75],[-87.8125,11.25],[-87.1875,11.25],[-87.1875,11.75],[-86.5625,11.75],[-86.5625,12.25],[-86.5625,12.75],[-86.5625,13.25],[-86.5625,13.75],[-85.9375,13.75],[-85.9375,13.25],[-85.3125,13.25],[-85.3125,12.75],[-84.6875,12.75],[-84.0625,12.75],[-84.0625,13.25],[-83.4375,13.25],[-82.8125,13.25],[-82.8125,12.75],[-82.1875,12.75],[-82.1875,12.25],[-81.5625,12.25],[-81.5625,11.75],[-80.9375,11.75],[-80.3125,11.75],[-80.3125,11.25],[-79.6875,11.25],[-79.0625,11.25],[-78.4375,11.25],[-77.8125,11.25],[-77.8125,10.75],[-77.1875,10.75],[-76.5625,10.75],[-75.9375,10.75],[-75.3125,10.75],[-75.3125,11.25],[-74.6875,11.25],[-74.0625,11.25],[-73.4375,11.25],[-72.8125,11.25],[-72.1875,11.25],[-72.1875,10.75],[-71.5625,10.75],[-70.9375,10.75],[-70.3125,10.75],[-69.6875,10.75],[-69.6875,11.25],[-69.0625,11.25],[-69.0625,10.75],[-68.4375,10.75],[-67.8125,10.75],[-67.1875,10.75],[-66.5625,10.75],[-65.9375,10.75],[-65.9375,10.25],[-65.3125,10.25],[-64.6875,10.25],[-64.6875,10.75],[-64.0625,10.75],[-64.0625,10.25],[-63.4375,10.25],[-63.4375,9.75],[-64.0625,9.75],[-64.6875,9.75],[-65.3125,9.75],[-65.9375,9.75],[-66.5625,9.75],[-66.5625,9.25],[-67.1875,9.25],[-67.8125,9.25],[-67.8125,8.75],[-67.8125,8.25],[-68.4375,8.25],[-68.4375,7.75],[-68.4375,7.25],[-69.0625,7.25],[-69.0625,6.75],[-69.0625,6.25],[-69.0625,5.75],[-68.4375,5.75],[-67.8125,5.75],[-67.8125,6.25],[-67.1875,6.25],[-66.5625,6.25],[-66.5625,6.75],[-66.5625,7.25],[-65.9375,7.25],[-65.9375,6.75],[-65.3125,6.75],[-64.6875,6.75],[-64.6875,6.25],[-64.6875,5.75],[-64.0625,5.75],[-63.4375,5.75],[-62.8125,5.75],[-62.8125,6.25],[-62.1875,6.25],[-61.5625,6.25],[-60.9375,6.25],[-60.3125,6.25],[-60.3125,5.75],[-59.6875,5.75],[-59.6875,5.25],[-59.6875,4.75],[-60.3125,4.75],[-60.9375,4.75],[-60.9375,4.25],[-61.5625,4.25],[-62.1875,4.25],[-62.1875,3.75],[-62.1875,3.25],[-62.1875,2.75],[-62.1875,2.25],[-62.1875,1.75],[-61.5625,1.75],[-61.5625,1.25],[-61.5625,0.75],[-61.5625,0.25],[-61.5625,-0.25000000000017975],[-61.5625,-0.75],[-61.5625,-1.25],[-62.1875,-1.25],[-62.1875,-1.75],[-61.5625,-1.75],[-60.9375,-1.75],[-60.9375,-1.25],[-60.3125,-1.25],[-59.6875,-1.25],[-59.6875,-1.75],[-59.6875,-2.25],[-59.6875,-2.75],[-60.3125,-2.75],[-60.9375,-2.75],[-60.9375,-2.25],[-61.5625,-2.25],[-61.5625,-2.75],[-62.1875,-2.75],[-62.1875,-3.25],[-61.5625,-3.25],[-61.5625,-3.75],[-61.5625,-4.25],[-62.1875,-4.25],[-62.1875,-4.75],[-61.5625,-4.75],[-61.5625,-5.25],[-61.5625,-5.75],[-60.9375,-5.75],[-60.9375,-6.25],[-60.9375,-6.75],[-60.9375,-7.25],[-60.9375,-7.75],[-61.5625,-7.75],[-61.5625,-8.25],[-61.5625,-8.75],[-62.1875,-8.75],[-62.1875,-9.25],[-62.1875,-9.75],[-61.5625,-9.75],[-61.5625,-10.25],[-60.9375,-10.25],[-60.9375,-10.75],[-60.9375,-11.25],[-60.3125,-11.25],[-59.6875,-11.25],[-59.6875,-10.75],[-59.6875,-10.25],[-59.6875,-9.75],[-59.6875,-9.25],[-59.6875,-8.75],[-59.6875,-8.25],[-59.0625,-8.25],[-58.4375,-8.25],[-58.4375,-7.75],[-57.8125,-7.75],[-57.8125,-7.25],[-57.1875,-7.25],[-57.1875,-6.75],[-57.1875,-6.25],[-56.5625,-6.25],[-56.5625,-5.75],[-55.9375,-5.75],[-55.9375,-5.25],[-55.3125,-5.25],[-54.6875,-5.25],[-54.0625,-5.25],[-54.0625,-5.75],[-54.6875,-5.75],[-54.6875,-6.25],[-54.6875,-6.75],[-54.0625,-6.75],[-54.0625,-7.25],[-54.0625,-7.75],[-54.6875,-7.75],[-54.6875,-8.25],[-55.3125,-8.25],[-55.3125,-8.75],[-55.3125,-9.25],[-55.9375,-9.25],[-55.9375,-9.75],[-55.9375,-10.25],[-55.9375,-10.75],[-56.5625,-10.75],[-56.5625,-11.25],[-55.9375,-11.25],[-55.3125,-11.25],[-55.3125,-10.75],[-54.6875,-10.75],[-54.6875,-10.25],[-54.6875,-9.75],[-54.0625,-9.75],[-54.0625,-9.25],[-53.4375,-9.25],[-53.4375,-8.75],[-53.4375,-8.25],[-53.4375,-7.75],[-53.4375,-7.25],[-53.4375,-6.75],[-53.4375,-6.25],[-53.4375,-5.75],[-53.4375,-5.25],[-53.4375,-4.75],[-52.8125,-4.75],[-52.1875,-4.75],[-52.1875,-5.25],[-51.5625,-5.25],[-51.5625,-5.75],[-50.9375,-5.75],[-50.9375,-6.25],[-50.9375,-6.75],[-50.9375,-7.25],[-50.3125,-7.25],[-50.3125,-7.75],[-50.3125,-8.25],[-50.3125,-8.75],[-49.6875,-8.75],[-49.0625,-8.75],[-49.0625,-8.25],[-48.4375,-8.25],[-47.8125,-8.25],[-47.1875,-8.25],[-47.1875,-7.75],[-46.5625,-7.75],[-45.9375,-7.75],[-45.3125,-7.75],[-45.3125,-8.25],[-44.6875,-8.25],[-44.0625,-8.25],[-43.4375,-8.25],[-42.8125,-8.25],[-42.1875,-8.25],[-41.5625,-8.25],[-41.5625,-8.75],[-40.9375,-8.75],[-40.3125,-8.75],[-40.3125,-8.25],[-40.3125,-7.75],[-40.9375,-7.75],[-40.9375,-7.25],[-41.5625,-7.25],[-41.5625,-6.75],[-40.9375,-6.75],[-40.9375,-6.25],[-40.3125,-6.25],[-40.3125,-6.75],[-39.6875,-6.75],[-39.0625,-6.75],[-38.4375,-6.75],[-38.4375,-6.25],[-38.4375,-5.75],[-37.8125,-5.75],[-37.1875,-5.75],[-37.1875,-6.25],[-37.1875,-6.75],[-36.5625,-6.75],[-35.9375,-6.75],[-35.9375,-7.25],[-35.9375,-7.75],[-35.3125,-7.75],[-35.3125,-8.25],[-34.6875,-8.25],[-34.6875,-8.75],[-34.6875,-9.25],[-35.3125,-9.25],[-35.9375,-9.25],[-35.9375,-9.75],[-36.5625,-9.75],[-36.5625,-9.25],[-37.1875,-9.25],[-37.8125,-9.25],[-38.4375,-9.25],[-38.4375,-9.75],[-37.8125,-9.75],[-37.8125,-10.25],[-38.4375,-10.25],[-38.4375,-10.75],[-37.8125,-10.75],[-37.8125,-11.25],[-37.8125,-11.75],[-37.8125,-12.25],[-37.1875,-12.25],[-37.1875,-12.75],[-37.1875,-13.25],[-36.5625,-13.25],[-36.5625,-13.75],[-36.5625,-14.25],[-36.5625,-14.75],[-35.9375,-14.75],[-35.9375,-15.25],[-35.9375,-15.75],[-35.9375,-16.25],[-35.9375,-16.75],[-35.3125,-16.75],[-35.3125,-17.25],[-34.6875,-17.25],[-34.6875,-17.75],[-34.6875,-18.25],[-34.0625,-18.25],[-34.0625,-18.75],[-34.0625,-19.25],[-34.0625,-19.75],[-33.4375,-19.75],[-33.4375,-20.25],[-33.4375,-20.75],[-32.8125,-20.75],[-32.8125,-21.25],[-32.1875,-21.25]] + # ring1rev.reverse() + # ring2rev = [[149.0625,26.25],[148.4375,26.25],[147.8125,26.25],[147.8125,25.75],[147.1875,25.75],[146.5625,25.75],[145.9375,25.75],[145.9375,25.25],[145.3125,25.25],[144.6875,25.25],[144.6875,24.75],[144.0625,24.75],[144.0625,24.25],[143.4375,24.25],[142.8125,24.25],[142.8125,24.75],[142.1875,24.75],[142.1875,24.25],[141.5625,24.25],[140.9375,24.25],[140.9375,23.75],[140.3125,23.75],[140.3125,23.25],[139.6875,23.25],[139.0625,23.25],[139.0625,22.75],[139.0625,22.25],[138.4375,22.25],[138.4375,21.75],[138.4375,21.25],[137.8125,21.25],[137.8125,20.75],[137.8125,20.25],[137.8125,19.75],[137.1875,19.75],[137.1875,19.25],[136.5625,19.25],[135.9375,19.25],[135.9375,18.75],[135.3125,18.75],[134.6875,18.75],[134.6875,18.25],[134.0625,18.25],[134.0625,17.75],[133.4375,17.75],[133.4375,17.25],[132.8125,17.25],[132.8125,16.75],[132.1875,16.75],[132.1875,16.25],[131.5625,16.25],[131.5625,15.75],[130.9375,15.75],[130.3125,15.75],[129.6875,15.75],[129.6875,15.25],[129.0625,15.25],[128.4375,15.25],[128.4375,15.75],[128.4375,16.25],[129.0625,16.25],[129.0625,16.75],[129.0625,17.25],[129.0625,17.75],[129.0625,18.25],[129.6875,18.25],[129.6875,18.75],[130.3125,18.75],[130.3125,19.25],[130.9375,19.25],[130.9375,19.75],[130.3125,19.75],[129.6875,19.75],[129.0625,19.75],[128.4375,19.75],[127.8125,19.75],[127.8125,19.25],[127.1875,19.25],[126.5625,19.25],[125.9375,19.25],[125.9375,18.75],[125.3125,18.75],[124.6875,18.75],[124.6875,18.25],[124.0625,18.25],[123.4375,18.25],[123.4375,17.75],[122.8125,17.75],[122.1875,17.75],[122.1875,17.25],[121.5625,17.25],[121.5625,16.75],[121.5625,16.25],[120.9375,16.25],[120.9375,15.75],[120.3125,15.75],[119.6875,15.75],[119.6875,15.25],[119.0625,15.25],[118.4375,15.25],[117.8125,15.25],[117.8125,15.75],[117.1875,15.75],[116.5625,15.75],[115.9375,15.75],[115.9375,16.25],[115.9375,16.75],[115.3125,16.75],[114.6875,16.75],[114.0625,16.75],[113.4375,16.75],[112.8125,16.75],[112.1875,16.75],[111.5625,16.75],[111.5625,16.25],[110.9375,16.25],[110.9375,15.75],[110.3125,15.75],[109.6875,15.75],[109.6875,15.25],[109.6875,14.75],[109.0625,14.75],[109.0625,14.25],[108.4375,14.25],[108.4375,13.75],[107.8125,13.75],[107.1875,13.75],[107.1875,13.25],[106.5625,13.25],[106.5625,12.75],[105.9375,12.75],[105.9375,12.25],[106.5625,12.25],[107.1875,12.25],[107.8125,12.25],[108.4375,12.25],[108.4375,11.75],[107.8125,11.75],[107.8125,11.25],[107.1875,11.25],[106.5625,11.25],[106.5625,10.75],[105.9375,10.75],[105.3125,10.75],[104.6875,10.75],[104.6875,11.25],[104.6875,11.75],[104.6875,12.25],[104.0625,12.25],[104.0625,11.75],[103.4375,11.75],[102.8125,11.75],[102.8125,11.25],[102.8125,10.75],[102.8125,10.25],[102.1875,10.25],[101.5625,10.25],[100.9375,10.25],[100.9375,10.75],[100.3125,10.75],[100.3125,11.25],[99.6875,11.25],[99.0625,11.25],[98.4375,11.25],[97.8125,11.25],[97.1875,11.25],[96.5625,11.25],[95.9375,11.25],[95.3125,11.25],[94.6875,11.25],[94.0625,11.25],[94.0625,11.75],[93.4375,11.75],[92.8125,11.75],[92.8125,12.25],[92.1875,12.25],[92.1875,12.75],[91.5625,12.75],[91.5625,13.25],[90.9375,13.25],[90.9375,13.75],[90.3125,13.75],[90.3125,14.25],[89.6875,14.25],[89.6875,14.75],[89.0625,14.75],[88.4375,14.75],[88.4375,15.25],[87.8125,15.25],[87.8125,15.75],[87.1875,15.75],[87.1875,16.25],[86.5625,16.25],[86.5625,16.75],[85.9375,16.75],[85.3125,16.75],[84.6875,16.75],[84.0625,16.75],[83.4375,16.75],[83.4375,17.25],[82.8125,17.25],[82.1875,17.25],[82.1875,16.75],[81.5625,16.75],[80.9375,16.75],[80.3125,16.75],[79.6875,16.75],[79.6875,16.25],[79.0625,16.25],[78.4375,16.25],[78.4375,15.75],[77.8125,15.75],[77.8125,15.25],[77.1875,15.25],[77.1875,14.75],[76.5625,14.75],[76.5625,14.25],[76.5625,13.75],[76.5625,13.25],[76.5625,12.75],[76.5625,12.25],[77.1875,12.25],[77.8125,12.25],[77.8125,11.75],[77.8125,11.25],[78.4375,11.25],[78.4375,10.75],[78.4375,10.25],[78.4375,9.75],[78.4375,9.25],[78.4375,8.75],[79.0625,8.75],[79.0625,8.25],[79.0625,7.75],[79.6875,7.75],[79.6875,7.25],[80.3125,7.25],[80.3125,6.75],[80.9375,6.75],[80.9375,6.25],[80.9375,5.75],[81.5625,5.75],[81.5625,5.25],[80.9375,5.25],[80.9375,4.75],[80.9375,4.25],[81.5625,4.25],[81.5625,3.75],[80.9375,3.75],[80.9375,3.25],[80.9375,2.75],[80.9375,2.25],[80.3125,2.25],[80.3125,1.75],[79.6875,1.75],[79.6875,2.25],[79.0625,2.25],[79.0625,1.75],[78.4375,1.75],[78.4375,1.25],[77.8125,1.25],[77.8125,0.75],[77.1875,0.75],[77.1875,0.25],[76.5625,0.25],[76.5625,-0.25000000000017975],[75.9375,-0.25000000000017975],[75.9375,-0.75],[75.9375,-1.25],[75.9375,-1.75],[75.3125,-1.75],[75.3125,-2.25],[75.3125,-2.75],[75.3125,-3.25],[75.3125,-3.75],[75.3125,-4.25],[75.9375,-4.25],[76.5625,-4.25],[76.5625,-4.75],[77.1875,-4.75],[77.1875,-5.25],[77.1875,-5.75],[77.8125,-5.75],[77.8125,-6.25],[78.4375,-6.25],[78.4375,-6.75],[78.4375,-7.25],[78.4375,-7.75],[77.8125,-7.75],[77.8125,-8.25],[77.8125,-8.75],[77.8125,-9.25],[77.8125,-9.75],[77.8125,-10.25],[77.1875,-10.25],[77.1875,-10.75],[77.1875,-11.25],[76.5625,-11.25],[76.5625,-10.75],[76.5625,-10.25],[75.9375,-10.25],[75.3125,-10.25],[74.6875,-10.25],[74.0625,-10.25],[74.0625,-9.75],[73.4375,-9.75],[73.4375,-9.25],[72.8125,-9.25],[72.1875,-9.25],[71.5625,-9.25],[70.9375,-9.25],[70.9375,-9.75],[70.3125,-9.75],[69.6875,-9.75],[69.0625,-9.75],[68.4375,-9.75],[68.4375,-9.25],[67.8125,-9.25],[67.1875,-9.25],[67.1875,-8.75],[66.5625,-8.75],[66.5625,-8.25],[65.9375,-8.25],[65.3125,-8.25],[65.3125,-7.75],[64.6875,-7.75],[64.0625,-7.75],[64.0625,-7.25],[63.4375,-7.25],[62.8125,-7.25],[62.8125,-6.75],[62.1875,-6.75],[62.1875,-6.25],[61.5625,-6.25],[61.5625,-5.75],[60.9375,-5.75],[60.9375,-5.25],[60.3125,-5.25],[59.6875,-5.25],[59.0625,-5.25],[58.4375,-5.25],[57.8125,-5.25],[57.8125,-5.75],[57.1875,-5.75],[57.1875,-6.25],[57.1875,-6.75],[56.5625,-6.75],[55.9375,-6.75],[55.9375,-7.25],[55.3125,-7.25],[54.6875,-7.25],[54.6875,-6.75],[54.0625,-6.75],[54.0625,-6.25],[54.0625,-5.75],[53.4375,-5.75],[52.8125,-5.75],[52.1875,-5.75],[52.1875,-5.25],[52.1875,-4.75],[51.5625,-4.75],[51.5625,-4.25],[50.9375,-4.25],[50.3125,-4.25],[49.6875,-4.25],[49.0625,-4.25],[48.4375,-4.25],[47.8125,-4.25],[47.1875,-4.25],[47.1875,-3.75],[46.5625,-3.75],[45.9375,-3.75],[45.3125,-3.75],[45.3125,-3.25],[45.3125,-2.75],[44.6875,-2.75],[44.6875,-2.25],[44.0625,-2.25],[44.0625,-1.75],[43.4375,-1.75],[42.8125,-1.75],[42.8125,-1.25],[42.1875,-1.25],[42.1875,-0.75],[41.5625,-0.75],[40.9375,-0.75],[40.3125,-0.75],[40.3125,-0.25000000000017975],[40.3125,0.25],[39.6875,0.25],[39.6875,0.75],[39.6875,1.25],[39.0625,1.25],[39.0625,1.75],[39.0625,2.25],[39.0625,2.75],[38.4375,2.75],[38.4375,3.25],[38.4375,3.75],[37.8125,3.75],[37.8125,4.25],[37.1875,4.25],[37.1875,4.75],[37.8125,4.75],[37.8125,5.25],[37.1875,5.25],[37.1875,5.75],[37.1875,6.25],[36.5625,6.25],[35.9375,6.25],[35.3125,6.25],[35.3125,6.75],[35.3125,7.25],[34.6875,7.25],[34.0625,7.25],[33.4375,7.25],[32.8125,7.25],[32.8125,7.75],[32.8125,8.25],[32.8125,8.75],[32.1875,8.75],[31.5625,8.75],[31.5625,9.25],[30.9375,9.25],[30.3125,9.25],[29.6875,9.25],[29.0625,9.25],[28.4375,9.25],[27.8125,9.25],[27.8125,8.75],[27.1875,8.75],[26.5625,8.75],[25.9375,8.75],[25.3125,8.75],[25.3125,9.25],[24.6875,9.25],[24.0625,9.25],[23.4375,9.25],[23.4375,8.75],[22.8125,8.75],[22.8125,9.25],[22.1875,9.25],[21.5625,9.25],[21.5625,9.75],[20.9375,9.75],[20.3125,9.75],[20.3125,9.25],[19.6875,9.25],[19.0625,9.25],[19.0625,8.75],[18.4375,8.75],[17.8125,8.75],[17.8125,8.25],[17.1875,8.25],[17.1875,7.75],[16.5625,7.75],[16.5625,7.25],[15.9375,7.25],[15.3125,7.25],[15.3125,6.75],[14.6875,6.75],[14.0625,6.75],[13.4375,6.75],[12.8125,6.75],[12.8125,7.25],[12.1875,7.25],[11.5625,7.25],[10.9375,7.25],[10.3125,7.25],[10.3125,6.75],[9.6875,6.75],[9.0625,6.75],[8.4375,6.75],[7.8125,6.75],[7.1875,6.75],[6.5625,6.75],[5.9375,6.75],[5.3125,6.75],[5.3125,7.25],[4.6875,7.25],[4.0625,7.25],[3.4375,7.25],[2.8125,7.25],[2.8125,6.75],[2.1875,6.75],[1.5625,6.75],[1.5625,6.25],[0.9375,6.25],[0.3125,6.25],[-0.312500000000592,6.25],[-0.312500000000592,5.75],[-0.9375,5.75],[-0.9375,5.25],[-0.9375,4.75],[-0.312500000000592,4.75],[0.3125,4.75],[0.3125,4.25],[0.9375,4.25],[1.5625,4.25],[2.1875,4.25],[2.8125,4.25],[2.8125,4.75],[3.4375,4.75],[4.0625,4.75],[4.6875,4.75],[5.3125,4.75],[5.9375,4.75],[6.5625,4.75],[7.1875,4.75],[7.1875,5.25],[7.8125,5.25],[7.8125,5.75],[8.4375,5.75],[9.0625,5.75],[9.0625,5.25],[9.6875,5.25],[9.6875,4.75],[9.6875,4.25],[9.0625,4.25],[9.0625,3.75],[8.4375,3.75],[8.4375,3.25],[8.4375,2.75],[7.8125,2.75],[7.8125,2.25],[7.8125,1.75],[7.8125,1.25],[8.4375,1.25],[9.0625,1.25],[9.0625,1.75],[9.6875,1.75],[10.3125,1.75],[10.3125,2.25],[10.9375,2.25],[11.5625,2.25],[11.5625,2.75],[12.1875,2.75],[12.8125,2.75],[12.8125,2.25],[12.1875,2.25],[12.1875,1.75],[12.1875,1.25],[12.8125,1.25],[12.8125,0.75],[13.4375,0.75],[14.0625,0.75],[14.6875,0.75],[15.3125,0.75],[15.9375,0.75],[16.5625,0.75],[16.5625,1.25],[17.1875,1.25],[17.8125,1.25],[18.4375,1.25],[18.4375,0.75],[17.8125,0.75],[17.8125,0.25],[17.8125,-0.25000000000017975],[18.4375,-0.25000000000017975],[19.0625,-0.25000000000017975],[19.6875,-0.25000000000017975],[19.6875,-0.75],[20.3125,-0.75],[20.9375,-0.75],[21.5625,-0.75],[21.5625,-0.25000000000017975],[22.1875,-0.25000000000017975],[22.1875,-0.75],[22.8125,-0.75],[23.4375,-0.75],[23.4375,-1.25],[24.0625,-1.25],[24.0625,-0.75],[24.6875,-0.75],[25.3125,-0.75],[25.3125,-0.25000000000017975],[25.9375,-0.25000000000017975],[25.9375,0.25],[25.9375,0.75],[26.5625,0.75],[26.5625,1.25],[27.1875,1.25],[27.8125,1.25],[27.8125,1.75],[28.4375,1.75],[28.4375,2.25],[28.4375,2.75],[28.4375,3.25],[29.0625,3.25],[29.6875,3.25],[30.3125,3.25],[30.3125,3.75],[30.9375,3.75],[30.9375,4.25],[31.5625,4.25],[32.1875,4.25],[32.8125,4.25],[33.4375,4.25],[33.4375,3.75],[34.0625,3.75],[34.0625,3.25],[34.6875,3.25],[34.6875,2.75],[35.3125,2.75],[35.3125,2.25],[35.9375,2.25],[35.9375,1.75],[36.5625,1.75],[37.1875,1.75],[37.1875,1.25],[37.1875,0.75],[37.8125,0.75],[37.8125,0.25],[38.4375,0.25],[38.4375,-0.25000000000017975],[38.4375,-0.75],[38.4375,-1.25],[38.4375,-1.75],[38.4375,-2.25],[37.8125,-2.25],[37.1875,-2.25],[37.1875,-2.75],[37.8125,-2.75],[37.8125,-3.25],[37.1875,-3.25],[36.5625,-3.25],[35.9375,-3.25],[35.9375,-3.75],[35.9375,-4.25],[35.9375,-4.75],[35.3125,-4.75],[34.6875,-4.75],[34.0625,-4.75],[33.4375,-4.75],[32.8125,-4.75],[32.8125,-4.25],[33.4375,-4.25],[33.4375,-3.75],[34.0625,-3.75],[34.0625,-3.25],[33.4375,-3.25],[32.8125,-3.25],[32.8125,-3.75],[32.1875,-3.75],[32.1875,-4.25],[31.5625,-4.25],[31.5625,-3.75],[31.5625,-3.25],[30.9375,-3.25],[30.9375,-2.75],[30.3125,-2.75],[29.6875,-2.75],[29.0625,-2.75],[29.0625,-3.25],[29.0625,-3.75],[28.4375,-3.75],[27.8125,-3.75],[27.1875,-3.75],[27.1875,-4.25],[27.1875,-4.75],[27.1875,-5.25],[26.5625,-5.25],[26.5625,-4.75],[26.5625,-4.25],[25.9375,-4.25],[25.9375,-3.75],[25.9375,-3.25],[25.3125,-3.25],[24.6875,-3.25],[24.0625,-3.25],[24.0625,-3.75],[23.4375,-3.75],[23.4375,-4.25],[24.0625,-4.25],[24.0625,-4.75],[23.4375,-4.75],[23.4375,-5.25],[23.4375,-5.75],[22.8125,-5.75],[22.8125,-6.25],[22.1875,-6.25],[21.5625,-6.25],[20.9375,-6.25],[20.3125,-6.25],[19.6875,-6.25],[19.0625,-6.25],[18.4375,-6.25],[18.4375,-5.75],[18.4375,-5.25],[18.4375,-4.75],[17.8125,-4.75],[17.1875,-4.75],[16.5625,-4.75],[15.9375,-4.75],[15.3125,-4.75],[14.6875,-4.75],[14.0625,-4.75],[13.4375,-4.75],[13.4375,-4.25],[12.8125,-4.25],[12.1875,-4.25],[12.1875,-3.75],[11.5625,-3.75],[10.9375,-3.75],[10.9375,-4.25],[10.3125,-4.25],[10.3125,-3.75],[9.6875,-3.75],[9.0625,-3.75],[9.0625,-3.25],[8.4375,-3.25],[7.8125,-3.25],[7.1875,-3.25],[6.5625,-3.25],[6.5625,-3.75],[5.9375,-3.75],[5.9375,-4.25],[5.3125,-4.25],[4.6875,-4.25],[4.0625,-4.25],[3.4375,-4.25],[2.8125,-4.25],[2.1875,-4.25],[2.1875,-4.75],[1.5625,-4.75],[0.9375,-4.75],[0.9375,-4.25],[0.3125,-4.25],[-0.312500000000592,-4.25],[-0.9375,-4.25],[-1.5625,-4.25],[-2.1875,-4.25],[-2.8125,-4.25],[-3.4375,-4.25],[-4.0625,-4.25],[-4.0625,-3.75],[-4.6875,-3.75],[-5.3125,-3.75],[-5.9375,-3.75],[-6.5625,-3.75],[-7.1875,-3.75],[-7.8125,-3.75],[-7.8125,-4.25],[-8.4375,-4.25],[-9.0625,-4.25],[-9.6875,-4.25],[-10.3125,-4.25],[-10.3125,-3.75],[-10.9375,-3.75],[-11.5625,-3.75],[-12.1875,-3.75],[-12.1875,-4.25],[-12.8125,-4.25],[-13.4375,-4.25],[-13.4375,-3.75],[-14.0625,-3.75],[-14.6875,-3.75],[-15.3125,-3.75],[-15.3125,-4.25],[-15.9375,-4.25],[-16.5625,-4.25],[-17.1875,-4.25],[-17.8125,-4.25],[-18.4375,-4.25],[-18.4375,-4.75],[-19.0625,-4.75],[-19.6875,-4.75],[-19.6875,-5.25],[-20.3125,-5.25],[-20.9375,-5.25],[-21.5625,-5.25],[-22.1875,-5.25],[-22.1875,-4.75],[-22.1875,-4.25],[-22.1875,-3.75],[-22.1875,-3.25],[-21.5625,-3.25],[-21.5625,-2.75],[-21.5625,-2.25],[-21.5625,-1.75],[-21.5625,-1.25],[-22.1875,-1.25],[-22.8125,-1.25],[-22.8125,-0.75],[-23.4375,-0.75],[-24.0625,-0.75],[-24.0625,-0.25000000000017975],[-24.0625,0.25],[-24.6875,0.25],[-24.6875,0.75],[-24.6875,1.25],[-25.3125,1.25],[-25.9375,1.25],[-25.9375,1.75],[-26.5625,1.75],[-26.5625,1.25],[-27.1875,1.25],[-27.8125,1.25],[-27.8125,0.75],[-28.4375,0.75],[-28.4375,0.25],[-29.0625,0.25],[-29.0625,0.75],[-29.0625,1.25],[-29.0625,1.75],[-29.0625,2.25],[-29.6875,2.25],[-29.6875,2.75],[-30.3125,2.75],[-30.9375,2.75],[-31.5625,2.75],[-31.5625,3.25],[-32.1875,3.25],[-32.8125,3.25],[-33.4375,3.25],[-33.4375,3.75],[-33.4375,4.25],[-34.0625,4.25],[-34.0625,4.75],[-34.0625,5.25],[-34.0625,5.75],[-33.4375,5.75],[-33.4375,6.25],[-32.8125,6.25],[-32.8125,6.75],[-32.1875,6.75],[-32.1875,7.25],[-31.5625,7.25],[-30.9375,7.25],[-30.3125,7.25],[-29.6875,7.25],[-29.0625,7.25],[-29.0625,7.75],[-28.4375,7.75],[-27.8125,7.75],[-27.1875,7.75],[-26.5625,7.75],[-25.9375,7.75],[-25.9375,8.25],[-25.3125,8.25],[-24.6875,8.25],[-24.6875,7.75],[-25.3125,7.75],[-25.3125,7.25],[-24.6875,7.25],[-24.6875,6.75],[-24.6875,6.25],[-25.3125,6.25],[-25.3125,5.75],[-25.3125,5.25],[-24.6875,5.25],[-24.6875,4.75],[-24.6875,4.25],[-24.6875,3.75],[-24.6875,3.25],[-24.6875,2.75],[-24.0625,2.75],[-24.0625,2.25],[-23.4375,2.25],[-22.8125,2.25],[-22.8125,1.75],[-22.1875,1.75],[-21.5625,1.75],[-20.9375,1.75],[-20.9375,1.25],[-20.3125,1.25],[-19.6875,1.25],[-19.6875,0.75],[-19.6875,0.25],[-19.0625,0.25],[-19.0625,-0.25000000000017975],[-18.4375,-0.25000000000017975],[-18.4375,-0.75],[-17.8125,-0.75],[-17.8125,-1.25],[-17.1875,-1.25],[-16.5625,-1.25],[-15.9375,-1.25],[-15.9375,-0.75],[-15.3125,-0.75],[-14.6875,-0.75],[-14.0625,-0.75],[-13.4375,-0.75],[-13.4375,-0.25000000000017975],[-12.8125,-0.25000000000017975],[-12.1875,-0.25000000000017975],[-12.1875,0.25],[-11.5625,0.25],[-11.5625,0.75],[-11.5625,1.25],[-12.1875,1.25],[-12.1875,1.75],[-11.5625,1.75],[-11.5625,2.25],[-10.9375,2.25],[-10.9375,2.75],[-10.3125,2.75],[-9.6875,2.75],[-9.0625,2.75],[-9.0625,3.25],[-8.4375,3.25],[-8.4375,3.75],[-7.8125,3.75],[-7.8125,4.25],[-7.8125,4.75],[-7.8125,5.25],[-8.4375,5.25],[-8.4375,5.75],[-9.0625,5.75],[-9.6875,5.75],[-9.6875,6.25],[-9.6875,6.75],[-9.0625,6.75],[-9.0625,7.25],[-9.0625,7.75],[-9.6875,7.75],[-10.3125,7.75],[-10.9375,7.75],[-11.5625,7.75],[-12.1875,7.75],[-12.1875,7.25],[-12.1875,6.75],[-12.1875,6.25],[-11.5625,6.25],[-11.5625,5.75],[-12.1875,5.75],[-12.8125,5.75],[-12.8125,5.25],[-13.4375,5.25],[-13.4375,5.75],[-14.0625,5.75],[-14.6875,5.75],[-14.6875,6.25],[-15.3125,6.25],[-15.9375,6.25],[-15.9375,5.75],[-16.5625,5.75],[-17.1875,5.75],[-17.8125,5.75],[-17.8125,5.25],[-18.4375,5.25],[-19.0625,5.25],[-19.6875,5.25],[-19.6875,5.75],[-20.3125,5.75],[-20.9375,5.75],[-20.9375,6.25],[-21.5625,6.25],[-21.5625,6.75],[-21.5625,7.25],[-21.5625,7.75],[-20.9375,7.75],[-20.3125,7.75],[-20.3125,8.25],[-19.6875,8.25],[-19.6875,8.75],[-19.0625,8.75],[-18.4375,8.75],[-18.4375,9.25],[-18.4375,9.75],[-19.0625,9.75],[-19.0625,10.25],[-19.6875,10.25],[-20.3125,10.25],[-20.9375,10.25],[-20.9375,10.75],[-21.5625,10.75],[-21.5625,10.25],[-21.5625,9.75],[-22.1875,9.75],[-22.1875,9.25],[-22.8125,9.25],[-23.4375,9.25],[-23.4375,9.75],[-24.0625,9.75],[-24.0625,10.25],[-24.6875,10.25],[-24.6875,10.75],[-24.0625,10.75],[-24.0625,11.25],[-23.4375,11.25],[-23.4375,11.75],[-24.0625,11.75],[-24.6875,11.75],[-25.3125,11.75],[-25.3125,11.25],[-25.9375,11.25],[-26.5625,11.25],[-26.5625,10.75],[-27.1875,10.75],[-27.8125,10.75],[-28.4375,10.75],[-29.0625,10.75],[-29.6875,10.75],[-30.3125,10.75],[-30.9375,10.75],[-31.5625,10.75],[-32.1875,10.75],[-32.8125,10.75],[-33.4375,10.75],[-34.0625,10.75],[-34.0625,11.25],[-34.6875,11.25],[-35.3125,11.25],[-35.3125,11.75],[-35.9375,11.75],[-36.5625,11.75],[-36.5625,12.25],[-37.1875,12.25],[-37.8125,12.25],[-38.4375,12.25],[-38.4375,12.75],[-39.0625,12.75],[-39.6875,12.75],[-39.6875,13.25],[-39.6875,13.75],[-40.3125,13.75],[-40.3125,14.25],[-40.9375,14.25],[-41.5625,14.25],[-41.5625,14.75],[-42.1875,14.75],[-42.1875,15.25],[-42.8125,15.25],[-42.8125,15.75],[-43.4375,15.75],[-44.0625,15.75],[-44.0625,15.25],[-44.6875,15.25],[-44.6875,14.75],[-45.3125,14.75],[-45.3125,15.25],[-45.9375,15.25],[-46.5625,15.25],[-47.1875,15.25],[-47.1875,14.75],[-47.8125,14.75],[-48.4375,14.75],[-49.0625,14.75],[-49.0625,14.25],[-49.6875,14.25],[-50.3125,14.25],[-50.3125,13.75],[-50.9375,13.75],[-50.9375,13.25],[-51.5625,13.25],[-52.1875,13.25],[-52.8125,13.25],[-52.8125,13.75],[-53.4375,13.75],[-54.0625,13.75],[-54.6875,13.75],[-54.6875,13.25],[-55.3125,13.25],[-55.3125,12.75],[-55.9375,12.75],[-56.5625,12.75],[-57.1875,12.75],[-57.8125,12.75],[-57.8125,12.25],[-58.4375,12.25],[-59.0625,12.25],[-59.0625,11.75],[-59.6875,11.75],[-59.6875,11.25],[-60.3125,11.25],[-60.9375,11.25],[-61.5625,11.25],[-61.5625,11.75],[-62.1875,11.75],[-62.1875,12.25],[-62.8125,12.25],[-63.4375,12.25],[-64.0625,12.25],[-64.0625,11.75],[-64.6875,11.75],[-65.3125,11.75],[-65.9375,11.75],[-66.5625,11.75],[-66.5625,12.25],[-67.1875,12.25],[-67.8125,12.25],[-68.4375,12.25],[-69.0625,12.25],[-69.0625,12.75],[-69.0625,13.25],[-68.4375,13.25],[-67.8125,13.25],[-67.8125,13.75],[-67.1875,13.75],[-66.5625,13.75],[-66.5625,14.25],[-65.9375,14.25],[-65.3125,14.25],[-65.3125,14.75],[-64.6875,14.75],[-64.0625,14.75],[-64.0625,15.25],[-63.4375,15.25],[-63.4375,15.75],[-62.8125,15.75],[-62.8125,16.25],[-63.4375,16.25],[-64.0625,16.25],[-64.6875,16.25],[-64.6875,15.75],[-65.3125,15.75],[-65.9375,15.75],[-66.5625,15.75],[-67.1875,15.75],[-67.1875,16.25],[-67.8125,16.25],[-68.4375,16.25],[-69.0625,16.25],[-69.6875,16.25],[-70.3125,16.25],[-70.3125,16.75],[-70.9375,16.75],[-70.9375,17.25],[-70.9375,17.75],[-71.5625,17.75],[-72.1875,17.75],[-72.8125,17.75],[-73.4375,17.75],[-74.0625,17.75],[-74.0625,17.25],[-74.6875,17.25],[-74.6875,16.75],[-75.3125,16.75],[-75.3125,16.25],[-75.9375,16.25],[-76.5625,16.25],[-76.5625,16.75],[-77.1875,16.75],[-77.1875,17.25],[-77.8125,17.25],[-78.4375,17.25],[-79.0625,17.25],[-79.6875,17.25],[-80.3125,17.25],[-80.9375,17.25],[-80.9375,17.75],[-81.5625,17.75],[-82.1875,17.75],[-82.1875,18.25],[-82.8125,18.25],[-83.4375,18.25],[-83.4375,18.75],[-84.0625,18.75],[-84.6875,18.75],[-84.6875,19.25],[-84.6875,19.75],[-85.3125,19.75],[-85.3125,20.25],[-85.9375,20.25],[-85.9375,20.75],[-86.5625,20.75],[-87.1875,20.75],[-87.8125,20.75],[-87.8125,20.25],[-88.4375,20.25],[-88.4375,20.75],[-88.4375,21.25],[-88.4375,21.75],[-87.8125,21.75],[-87.8125,22.25],[-87.8125,22.75],[-87.1875,22.75],[-87.1875,23.25],[-87.8125,23.25],[-88.4375,23.25],[-88.4375,22.75],[-89.0625,22.75],[-89.6875,22.75],[-89.6875,22.25],[-90.3125,22.25],[-90.9375,22.25],[-91.5625,22.25],[-91.5625,21.75],[-92.1875,21.75],[-92.1875,22.25],[-92.8125,22.25],[-93.4375,22.25],[-94.0625,22.25],[-94.6875,22.25],[-94.6875,21.75],[-95.3125,21.75],[-95.9375,21.75],[-95.9375,21.25],[-96.5625,21.25],[-97.1875,21.25],[-97.1875,20.75],[-97.1875,20.25],[-97.1875,19.75],[-96.5625,19.75],[-96.5625,19.25],[-96.5625,18.75],[-97.1875,18.75],[-97.1875,18.25],[-97.8125,18.25],[-98.4375,18.25],[-99.0625,18.25],[-99.6875,18.25],[-99.6875,17.75],[-99.6875,17.25],[-100.3125,17.25],[-100.9375,17.25],[-100.9375,16.75],[-100.9375,16.25],[-100.9375,15.75],[-100.9375,15.25],[-100.9375,14.75],[-101.5625,14.75],[-102.1875,14.75],[-102.8125,14.75],[-102.8125,14.25],[-103.4375,14.25],[-104.0625,14.25],[-104.6875,14.25],[-104.6875,14.75],[-105.3125,14.75],[-105.3125,15.25],[-105.9375,15.25],[-106.5625,15.25],[-107.1875,15.25],[-107.8125,15.25],[-108.4375,15.25],[-109.0625,15.25],[-109.0625,14.75],[-109.6875,14.75],[-109.6875,14.25],[-110.3125,14.25],[-110.9375,14.25],[-110.9375,13.75],[-111.5625,13.75],[-111.5625,13.25],[-112.1875,13.25],[-112.8125,13.25],[-113.4375,13.25],[-113.4375,13.75],[-114.0625,13.75],[-114.6875,13.75],[-114.6875,14.25],[-115.3125,14.25],[-115.9375,14.25],[-116.5625,14.25],[-116.5625,14.75],[-117.1875,14.75],[-117.8125,14.75],[-117.8125,15.25],[-118.4375,15.25],[-119.0625,15.25],[-119.6875,15.25],[-120.3125,15.25],[-120.3125,15.75],[-120.9375,15.75],[-121.5625,15.75],[-122.1875,15.75],[-122.8125,15.75],[-123.4375,15.75],[-123.4375,16.25],[-124.0625,16.25],[-124.6875,16.25],[-125.3125,16.25],[-125.9375,16.25],[-126.5625,16.25],[-127.1875,16.25],[-127.1875,15.75],[-127.8125,15.75],[-128.4375,15.75],[-129.0625,15.75],[-129.0625,15.25],[-129.6875,15.25],[-129.6875,14.75],[-130.3125,14.75],[-130.9375,14.75],[-130.9375,14.25],[-131.5625,14.25],[-132.1875,14.25],[-132.8125,14.25],[-132.8125,13.75],[-133.4375,13.75],[-134.0625,13.75],[-134.0625,13.25],[-134.6875,13.25],[-135.3125,13.25],[-135.3125,13.75],[-135.9375,13.75],[-136.5625,13.75],[-137.1875,13.75],[-137.8125,13.75],[-138.4375,13.75],[-139.0625,13.75],[-139.6875,13.75],[-140.3125,13.75],[-140.9375,13.75],[-140.9375,14.25],[-141.5625,14.25],[-141.5625,13.75],[-142.1875,13.75],[-142.8125,13.75],[-143.4375,13.75],[-144.0625,13.75],[-144.6875,13.75],[-145.3125,13.75],[-145.3125,14.25],[-144.6875,14.25],[-144.6875,14.75],[-144.6875,15.25],[-144.6875,15.75],[-144.0625,15.75],[-144.0625,16.25],[-144.6875,16.25],[-145.3125,16.25],[-145.3125,15.75],[-145.9375,15.75],[-146.5625,15.75],[-147.1875,15.75],[-147.1875,16.25],[-147.8125,16.25],[-147.8125,16.75],[-148.4375,16.75],[-149.0625,16.75],[-149.6875,16.75],[-149.6875,16.25],[-150.3125,16.25],[-150.9375,16.25],[-151.5625,16.25],[-152.1875,16.25],[-152.8125,16.25],[-152.8125,15.75],[-152.8125,15.25],[-152.8125,14.75],[-152.8125,14.25],[-152.8125,13.75],[-153.4375,13.75],[-153.4375,14.25],[-154.0625,14.25],[-154.6875,14.25],[-155.3125,14.25],[-155.3125,14.75],[-155.9375,14.75],[-156.5625,14.75],[-156.5625,15.25],[-157.1875,15.25],[-157.8125,15.25],[-157.8125,15.75],[-158.4375,15.75],[-159.0625,15.75],[-159.6875,15.75],[-159.6875,15.25],[-160.3125,15.25],[-160.3125,14.75],[-160.9375,14.75],[-160.9375,14.25],[-160.9375,13.75],[-161.5625,13.75],[-161.5625,13.25],[-161.5625,12.75],[-162.1875,12.75],[-162.1875,12.25],[-162.8125,12.25],[-162.8125,11.75],[-163.4375,11.75],[-164.0625,11.75],[-164.6875,11.75],[-164.6875,12.25],[-165.3125,12.25],[-165.3125,12.75],[-165.9375,12.75],[-166.5625,12.75],[-167.1875,12.75],[-167.8125,12.75],[-167.8125,13.25],[-168.4375,13.25],[-168.4375,13.75],[-168.4375,14.25],[-167.8125,14.25],[-167.1875,14.25],[-167.1875,14.75],[-166.5625,14.75],[-166.5625,15.25],[-166.5625,15.75],[-167.1875,15.75],[-167.8125,15.75],[-168.4375,15.75],[-169.0625,15.75],[-169.6875,15.75],[-170.3125,15.75],[-170.3125,16.25],[-170.9375,16.25],[-171.5625,16.25],[-171.5625,16.75],[-171.5625,17.25],[-171.5625,17.75],[-172.1875,17.75],[-172.1875,18.25],[-172.8125,18.25],[-173.4375,18.25],[-174.0625,18.25],[-174.6875,18.25],[-175.3125,18.25],[-175.9375,18.25],[-176.5625,18.25],[-177.1875,18.25],[-177.8125,18.25],[-178.4375,18.25],[-179.0625,18.25],[-179.6875,18.25],[-179.6875,18.75],[-179.0625,18.75],[-179.0625,19.25],[-178.4375,19.25],[-177.8125,19.25],[-177.1875,19.25],[-177.1875,19.75],[-176.5625,19.75],[-175.9375,19.75],[-175.9375,20.25],[-175.3125,20.25],[-175.3125,20.75],[-175.9375,20.75],[-176.5625,20.75],[-177.1875,20.75],[-177.8125,20.75],[-178.4375,20.75],[-179.0625,20.75],[-179.6875,20.75],[179.6875,20.75],[179.0625,20.75],[178.4375,20.75],[178.4375,20.25],[177.8125,20.25],[177.1875,20.25],[176.5625,20.25],[176.5625,20.75],[175.9375,20.75],[175.3125,20.75],[174.6875,20.75],[174.0625,20.75],[173.4375,20.75],[172.8125,20.75],[172.8125,21.25],[172.1875,21.25],[171.5625,21.25],[170.9375,21.25],[170.9375,21.75],[170.3125,21.75],[169.6875,21.75],[169.0625,21.75],[168.4375,21.75],[167.8125,21.75],[167.8125,21.25],[167.1875,21.25],[166.5625,21.25],[166.5625,20.75],[165.9375,20.75],[165.9375,20.25],[165.3125,20.25],[164.6875,20.25],[164.0625,20.25],[163.4375,20.25],[162.8125,20.25],[162.8125,20.75],[162.1875,20.75],[162.1875,21.25],[161.5625,21.25],[160.9375,21.25],[160.3125,21.25],[160.3125,21.75],[159.6875,21.75],[159.0625,21.75],[158.4375,21.75],[157.8125,21.75],[157.1875,21.75],[156.5625,21.75],[156.5625,22.25],[155.9375,22.25],[155.3125,22.25],[155.3125,22.75],[154.6875,22.75],[154.6875,23.25],[154.0625,23.25],[153.4375,23.25],[153.4375,23.75],[152.8125,23.75],[152.8125,24.25],[152.1875,24.25],[152.1875,24.75],[151.5625,24.75],[151.5625,25.25],[150.9375,25.25],[150.9375,25.75],[150.3125,25.75],[149.6875,25.75],[149.6875,26.25],[149.0625,26.25]] + # ring2rev.reverse() + # globe = [[-180,-90],[-180,90],[180,90],[180,-90],[-180,-90]] + # artificial_seam = [[-154.0625,14.25],[-154.6875,14.25],[-155.3125,14.25],[-155.3125,14.75],[-155.9375,14.75],[-156.5625,14.75],[-156.5625,15.25],[-157.1875,15.25],[-157.8125,15.25],[-157.8125,15.75],[-158.4375,15.75],[-159.0625,15.75],[-159.6875,15.75],[-159.6875,15.25],[-160.3125,15.25],[-160.3125,14.75],[-160.9375,14.75],[-160.9375,14.25],[-160.9375,13.75],[-161.5625,13.75],[-161.5625,13.25],[-161.5625,12.75],[-162.1875,12.75],[-162.1875,12.25],[-162.8125,12.25],[-162.8125,11.75],[-163.4375,11.75],[-164.0625,11.75],[-164.6875,11.75],[-164.6875,12.25],[-165.3125,12.25],[-165.3125,12.75],[-165.9375,12.75],[-166.5625,12.75],[-167.1875,12.75],[-167.8125,12.75],[-167.8125,13.25],[-168.4375,13.25],[-168.4375,13.75],[-168.4375,14.25],[-167.8125,14.25],[-167.1875,14.25],[-167.1875,14.75],[-166.5625,14.75],[-166.5625,15.25],[-166.5625,15.75],[-167.1875,15.75],[-167.8125,15.75],[-168.4375,15.75],[-169.0625,15.75],[-169.6875,15.75],[-170.3125,15.75],[-170.3125,16.25],[-170.9375,16.25],[-171.5625,16.25],[-171.5625,16.75],[-171.5625,17.25],[-171.5625,17.75],[-172.1875,17.75],[-172.1875,18.25],[-172.8125,18.25],[-173.4375,18.25],[-174.0625,18.25],[-174.6875,18.25],[-175.3125,18.25],[-175.9375,18.25],[-176.5625,18.25],[-177.1875,18.25],[-177.8125,18.25],[-178.4375,18.25],[-179.0625,18.25],[-179.6875,18.25],[-179.6875,18.75],[-179.0625,18.75],[-179.0625,19.25],[-178.4375,19.25],[-177.8125,19.25],[-177.1875,19.25],[-177.1875,19.75],[-176.5625,19.75],[-175.9375,19.75],[-175.9375,20.25],[-175.3125,20.25],[-175.3125,20.75],[-175.9375,20.75],[-176.5625,20.75],[-177.1875,20.75],[-177.8125,20.75],[-178.4375,20.75],[-179.0625,20.75],[-179.6875,20.75],[179.6875,20.75],[179.0625,20.75],[178.4375,20.75],[178.4375,20.25],[177.8125,20.25],[177.1875,20.25],[176.5625,20.25],[176.5625,20.75],[175.9375,20.75],[175.3125,20.75],[174.6875,20.75],[174.0625,20.75],[173.4375,20.75],[172.8125,20.75],[172.8125,21.25],[172.1875,21.25],[171.5625,21.25],[170.9375,21.25],[170.9375,21.75],[170.3125,21.75],[169.6875,21.75],[169.0625,21.75],[168.4375,21.75],[167.8125,21.75],[167.8125,21.25],[167.1875,21.25],[166.5625,21.25],[166.5625,20.75],[165.9375,20.75],[165.9375,20.25],[165.3125,20.25],[164.6875,20.25],[164.0625,20.25],[163.4375,20.25],[162.8125,20.25],[162.8125,20.75],[162.1875,20.75],[162.1875,21.25],[161.5625,21.25],[160.9375,21.25],[160.3125,21.25],[160.3125,21.75],[159.6875,21.75],[159.0625,21.75],[158.4375,21.75],[157.8125,21.75],[157.1875,21.75],[156.5625,21.75],[156.5625,22.25],[155.9375,22.25],[155.3125,22.25],[155.3125,22.75],[154.6875,22.75],[154.6875,23.25],[154.0625,23.25],[153.4375,23.25],[153.4375,23.75],[152.8125,23.75],[152.8125,24.25],[152.1875,24.25],[152.1875,24.75],[151.5625,24.75],[151.5625,25.25],[150.9375,25.25],[150.9375,25.75],[150.3125,25.75],[149.6875,25.75],[149.6875,26.25],[149.0625,26.25],[148.4375,26.25],[147.8125,26.25],[147.8125,25.75],[147.1875,25.75],[146.5625,25.75],[145.9375,25.75],[145.9375,25.25],[145.3125,25.25],[144.6875,25.25],[144.6875,24.75],[144.0625,24.75],[144.0625,24.25],[143.4375,24.25],[142.8125,24.25],[142.8125,24.75],[142.1875,24.75],[142.1875,24.25],[141.5625,24.25],[140.9375,24.25],[140.9375,23.75],[140.3125,23.75],[140.3125,23.25],[139.6875,23.25],[139.0625,23.25],[139.0625,22.75],[139.0625,22.25],[138.4375,22.25],[138.4375,21.75],[138.4375,21.25],[137.8125,21.25],[137.8125,20.75],[137.8125,20.25],[137.8125,19.75],[137.1875,19.75],[137.1875,19.25],[136.5625,19.25],[135.9375,19.25],[135.9375,18.75],[135.3125,18.75],[134.6875,18.75],[134.6875,18.25],[134.0625,18.25],[134.0625,17.75],[133.4375,17.75],[133.4375,17.25],[132.8125,17.25],[132.8125,16.75],[132.1875,16.75],[132.1875,16.25],[131.5625,16.25],[131.5625,15.75],[130.9375,15.75],[130.3125,15.75],[129.6875,15.75],[129.6875,15.25],[129.0625,15.25],[128.4375,15.25],[128.4375,15.75],[128.4375,16.25],[129.0625,16.25],[129.0625,16.75],[129.0625,17.25],[129.0625,17.75],[129.0625,18.25],[129.6875,18.25],[129.6875,18.75],[130.3125,18.75],[130.3125,19.25],[130.9375,19.25],[130.9375,19.75],[130.3125,19.75],[129.6875,19.75],[129.0625,19.75],[128.4375,19.75],[127.8125,19.75],[127.8125,19.25],[127.1875,19.25],[126.5625,19.25],[125.9375,19.25],[125.9375,18.75],[125.3125,18.75],[124.6875,18.75],[124.6875,18.25],[124.0625,18.25],[123.4375,18.25],[123.4375,17.75],[122.8125,17.75],[122.1875,17.75],[122.1875,17.25],[121.5625,17.25],[121.5625,16.75],[121.5625,16.25],[120.9375,16.25],[120.9375,15.75],[120.3125,15.75],[119.6875,15.75],[119.6875,15.25],[119.0625,15.25],[118.4375,15.25],[117.8125,15.25],[117.8125,15.75],[117.1875,15.75],[116.5625,15.75],[115.9375,15.75],[115.9375,16.25],[115.9375,16.75],[115.3125,16.75],[114.6875,16.75],[114.0625,16.75],[113.4375,16.75],[112.8125,16.75],[112.1875,16.75],[111.5625,16.75],[111.5625,16.25],[110.9375,16.25],[110.9375,15.75],[110.3125,15.75],[109.6875,15.75],[109.6875,15.25],[109.6875,14.75],[109.0625,14.75],[109.0625,14.25],[108.4375,14.25],[108.4375,13.75],[107.8125,13.75],[107.1875,13.75],[107.1875,13.25],[106.5625,13.25],[106.5625,12.75],[105.9375,12.75],[105.9375,12.25],[106.5625,12.25],[107.1875,12.25],[107.8125,12.25],[108.4375,12.25],[108.4375,11.75],[107.8125,11.75],[107.8125,11.25],[107.1875,11.25],[106.5625,11.25],[106.5625,10.75],[105.9375,10.75],[105.3125,10.75],[104.6875,10.75],[104.6875,11.25],[104.6875,11.75],[104.6875,12.25],[104.0625,12.25],[104.0625,11.75],[103.4375,11.75],[102.8125,11.75],[102.8125,11.25],[102.8125,10.75],[102.8125,10.25],[102.1875,10.25],[101.5625,10.25],[100.9375,10.25],[100.9375,10.75],[100.3125,10.75],[100.3125,11.25],[99.6875,11.25],[99.0625,11.25],[98.4375,11.25],[97.8125,11.25],[97.1875,11.25],[96.5625,11.25],[95.9375,11.25],[95.3125,11.25],[94.6875,11.25],[94.0625,11.25],[94.0625,11.75],[93.4375,11.75],[92.8125,11.75],[92.8125,12.25],[92.1875,12.25],[92.1875,12.75],[91.5625,12.75],[91.5625,13.25],[90.9375,13.25],[90.9375,13.75],[90.3125,13.75],[90.3125,14.25],[89.6875,14.25],[89.6875,14.75],[89.0625,14.75],[88.4375,14.75],[88.4375,15.25],[87.8125,15.25],[87.8125,15.75],[87.1875,15.75],[87.1875,16.25],[86.5625,16.25],[86.5625,16.75],[85.9375,16.75],[85.3125,16.75],[84.6875,16.75],[84.0625,16.75],[83.4375,16.75],[83.4375,17.25],[82.8125,17.25],[82.1875,17.25],[82.1875,16.75],[81.5625,16.75],[80.9375,16.75],[80.3125,16.75],[79.6875,16.75],[79.6875,16.25],[79.0625,16.25],[78.4375,16.25],[78.4375,15.75],[77.8125,15.75],[77.8125,15.25],[77.1875,15.25],[77.1875,14.75],[76.5625,14.75],[76.5625,14.25],[76.5625,13.75],[76.5625,13.25],[76.5625,12.75],[76.5625,12.25],[77.1875,12.25],[77.8125,12.25],[77.8125,11.75],[77.8125,11.25],[78.4375,11.25],[78.4375,10.75],[78.4375,10.25],[78.4375,9.75],[78.4375,9.25],[78.4375,8.75],[79.0625,8.75],[79.0625,8.25],[79.0625,7.75],[79.6875,7.75],[79.6875,7.25],[80.3125,7.25],[80.3125,6.75],[80.9375,6.75],[80.9375,6.25],[80.9375,5.75],[81.5625,5.75],[81.5625,5.25],[80.9375,5.25],[80.9375,4.75],[80.9375,4.25],[81.5625,4.25],[81.5625,3.75],[80.9375,3.75],[80.9375,3.25],[80.9375,2.75],[80.9375,2.25],[80.3125,2.25],[80.3125,1.75],[79.6875,1.75],[79.6875,2.25],[79.0625,2.25],[79.0625,1.75],[78.4375,1.75],[78.4375,1.25],[77.8125,1.25],[77.8125,0.75],[77.1875,0.75],[77.1875,0.25],[76.5625,0.25],[76.5625,-0.25000000000017975],[75.9375,-0.25000000000017975],[75.9375,-0.75],[75.9375,-1.25],[75.9375,-1.75],[75.3125,-1.75],[75.3125,-2.25],[75.3125,-2.75],[75.3125,-3.25],[75.3125,-3.75],[75.3125,-4.25],[75.9375,-4.25],[76.5625,-4.25],[76.5625,-4.75],[77.1875,-4.75],[77.1875,-5.25],[77.1875,-5.75],[77.8125,-5.75],[77.8125,-6.25],[78.4375,-6.25],[78.4375,-6.75],[78.4375,-7.25],[78.4375,-7.75],[77.8125,-7.75],[77.8125,-8.25],[77.8125,-8.75],[77.8125,-9.25],[77.8125,-9.75],[77.8125,-10.25],[77.1875,-10.25],[77.1875,-10.75],[77.1875,-11.25],[76.5625,-11.25],[76.5625,-10.75],[76.5625,-10.25],[75.9375,-10.25],[75.3125,-10.25],[74.6875,-10.25],[74.0625,-10.25],[74.0625,-9.75],[73.4375,-9.75],[73.4375,-9.25],[72.8125,-9.25],[72.1875,-9.25],[71.5625,-9.25],[70.9375,-9.25],[70.9375,-9.75],[70.3125,-9.75],[69.6875,-9.75],[69.0625,-9.75],[68.4375,-9.75],[68.4375,-9.25],[67.8125,-9.25],[67.1875,-9.25],[67.1875,-8.75],[66.5625,-8.75],[66.5625,-8.25],[65.9375,-8.25],[65.3125,-8.25],[65.3125,-7.75],[64.6875,-7.75],[64.0625,-7.75],[64.0625,-7.25],[63.4375,-7.25],[62.8125,-7.25],[62.8125,-6.75],[62.1875,-6.75],[62.1875,-6.25],[61.5625,-6.25],[61.5625,-5.75],[60.9375,-5.75],[60.9375,-5.25],[60.3125,-5.25],[59.6875,-5.25],[59.0625,-5.25],[58.4375,-5.25],[57.8125,-5.25],[57.8125,-5.75],[57.1875,-5.75],[57.1875,-6.25],[57.1875,-6.75],[56.5625,-6.75],[55.9375,-6.75],[55.9375,-7.25],[55.3125,-7.25],[54.6875,-7.25],[54.6875,-6.75],[54.0625,-6.75],[54.0625,-6.25],[54.0625,-5.75],[53.4375,-5.75],[52.8125,-5.75],[52.1875,-5.75],[52.1875,-5.25],[52.1875,-4.75],[51.5625,-4.75],[51.5625,-4.25],[50.9375,-4.25],[50.3125,-4.25],[49.6875,-4.25],[49.0625,-4.25],[48.4375,-4.25],[47.8125,-4.25],[47.1875,-4.25],[47.1875,-3.75],[46.5625,-3.75],[45.9375,-3.75],[45.3125,-3.75],[45.3125,-3.25],[45.3125,-2.75],[44.6875,-2.75],[44.6875,-2.25],[44.0625,-2.25],[44.0625,-1.75],[43.4375,-1.75],[42.8125,-1.75],[42.8125,-1.25],[42.1875,-1.25],[42.1875,-0.75],[41.5625,-0.75],[40.9375,-0.75],[40.3125,-0.75],[40.3125,-0.25000000000017975],[40.3125,0.25],[39.6875,0.25],[39.6875,0.75],[39.6875,1.25],[39.0625,1.25],[39.0625,1.75],[39.0625,2.25],[39.0625,2.75],[38.4375,2.75],[38.4375,3.25],[38.4375,3.75],[37.8125,3.75],[37.8125,4.25],[37.1875,4.25],[37.1875,4.75],[37.8125,4.75],[37.8125,5.25],[37.1875,5.25],[37.1875,5.75],[37.1875,6.25],[36.5625,6.25],[35.9375,6.25],[35.3125,6.25],[35.3125,6.75],[35.3125,7.25],[34.6875,7.25],[34.0625,7.25],[33.4375,7.25],[32.8125,7.25],[32.8125,7.75],[32.8125,8.25],[32.8125,8.75],[32.1875,8.75],[31.5625,8.75],[31.5625,9.25],[30.9375,9.25],[30.3125,9.25],[29.6875,9.25],[29.0625,9.25],[28.4375,9.25],[27.8125,9.25],[27.8125,8.75],[27.1875,8.75],[26.5625,8.75],[25.9375,8.75],[25.3125,8.75],[25.3125,9.25],[24.6875,9.25],[24.0625,9.25],[23.4375,9.25],[23.4375,8.75],[22.8125,8.75],[22.8125,9.25],[22.1875,9.25],[21.5625,9.25],[21.5625,9.75],[20.9375,9.75],[20.3125,9.75],[20.3125,9.25],[19.6875,9.25],[19.0625,9.25],[19.0625,8.75],[18.4375,8.75],[17.8125,8.75],[17.8125,8.25],[17.1875,8.25],[17.1875,7.75],[16.5625,7.75],[16.5625,7.25],[15.9375,7.25],[15.3125,7.25],[15.3125,6.75],[14.6875,6.75],[14.0625,6.75],[13.4375,6.75],[12.8125,6.75],[12.8125,7.25],[12.1875,7.25],[11.5625,7.25],[10.9375,7.25],[10.3125,7.25],[10.3125,6.75],[9.6875,6.75],[9.0625,6.75],[8.4375,6.75],[7.8125,6.75],[7.1875,6.75],[6.5625,6.75],[5.9375,6.75],[5.3125,6.75],[5.3125,7.25],[4.6875,7.25],[4.0625,7.25],[3.4375,7.25],[2.8125,7.25],[2.8125,6.75],[2.1875,6.75],[1.5625,6.75],[1.5625,6.25],[0.9375,6.25],[0.3125,6.25],[-0.312500000000592,6.25],[-0.312500000000592,5.75],[-0.9375,5.75],[-0.9375,5.25],[-0.9375,4.75],[-0.312500000000592,4.75],[0.3125,4.75],[0.3125,4.25],[0.9375,4.25],[1.5625,4.25],[2.1875,4.25],[2.8125,4.25],[2.8125,4.75],[3.4375,4.75],[4.0625,4.75],[4.6875,4.75],[5.3125,4.75],[5.9375,4.75],[6.5625,4.75],[7.1875,4.75],[7.1875,5.25],[7.8125,5.25],[7.8125,5.75],[8.4375,5.75],[9.0625,5.75],[9.0625,5.25],[9.6875,5.25],[9.6875,4.75],[9.6875,4.25],[9.0625,4.25],[9.0625,3.75],[8.4375,3.75],[8.4375,3.25],[8.4375,2.75],[7.8125,2.75],[7.8125,2.25],[7.8125,1.75],[7.8125,1.25],[8.4375,1.25],[9.0625,1.25],[9.0625,1.75],[9.6875,1.75],[10.3125,1.75],[10.3125,2.25],[10.9375,2.25],[11.5625,2.25],[11.5625,2.75],[12.1875,2.75],[12.8125,2.75],[12.8125,2.25],[12.1875,2.25],[12.1875,1.75],[12.1875,1.25],[12.8125,1.25],[12.8125,0.75],[13.4375,0.75],[14.0625,0.75],[14.6875,0.75],[15.3125,0.75],[15.9375,0.75],[16.5625,0.75],[16.5625,1.25],[17.1875,1.25],[17.8125,1.25],[18.4375,1.25],[18.4375,0.75],[17.8125,0.75],[17.8125,0.25],[17.8125,-0.25000000000017975],[18.4375,-0.25000000000017975],[19.0625,-0.25000000000017975],[19.6875,-0.25000000000017975],[19.6875,-0.75],[20.3125,-0.75],[20.9375,-0.75],[21.5625,-0.75],[21.5625,-0.25000000000017975],[22.1875,-0.25000000000017975],[22.1875,-0.75],[22.8125,-0.75],[23.4375,-0.75],[23.4375,-1.25],[24.0625,-1.25],[24.0625,-0.75],[24.6875,-0.75],[25.3125,-0.75],[25.3125,-0.25000000000017975],[25.9375,-0.25000000000017975],[25.9375,0.25],[25.9375,0.75],[26.5625,0.75],[26.5625,1.25],[27.1875,1.25],[27.8125,1.25],[27.8125,1.75],[28.4375,1.75],[28.4375,2.25],[28.4375,2.75],[28.4375,3.25],[29.0625,3.25],[29.6875,3.25],[30.3125,3.25],[30.3125,3.75],[30.9375,3.75],[30.9375,4.25],[31.5625,4.25],[32.1875,4.25],[32.8125,4.25],[33.4375,4.25],[33.4375,3.75],[34.0625,3.75],[34.0625,3.25],[34.6875,3.25],[34.6875,2.75],[35.3125,2.75],[35.3125,2.25],[35.9375,2.25],[35.9375,1.75],[36.5625,1.75],[37.1875,1.75],[37.1875,1.25],[37.1875,0.75],[37.8125,0.75],[37.8125,0.25],[38.4375,0.25],[38.4375,-0.25000000000017975],[38.4375,-0.75],[38.4375,-1.25],[38.4375,-1.75],[38.4375,-2.25],[37.8125,-2.25],[37.1875,-2.25],[37.1875,-2.75],[37.8125,-2.75],[37.8125,-3.25],[37.1875,-3.25],[36.5625,-3.25],[35.9375,-3.25],[35.9375,-3.75],[35.9375,-4.25],[35.9375,-4.75],[35.3125,-4.75],[34.6875,-4.75],[34.0625,-4.75],[33.4375,-4.75],[32.8125,-4.75],[32.8125,-4.25],[33.4375,-4.25],[33.4375,-3.75],[34.0625,-3.75],[34.0625,-3.25],[33.4375,-3.25],[32.8125,-3.25],[32.8125,-3.75],[32.1875,-3.75],[32.1875,-4.25],[31.5625,-4.25],[31.5625,-3.75],[31.5625,-3.25],[30.9375,-3.25],[30.9375,-2.75],[30.3125,-2.75],[29.6875,-2.75],[29.0625,-2.75],[29.0625,-3.25],[29.0625,-3.75],[28.4375,-3.75],[27.8125,-3.75],[27.1875,-3.75],[27.1875,-4.25],[27.1875,-4.75],[27.1875,-5.25],[26.5625,-5.25],[26.5625,-4.75],[26.5625,-4.25],[25.9375,-4.25],[25.9375,-3.75],[25.9375,-3.25],[25.3125,-3.25],[24.6875,-3.25],[24.0625,-3.25],[24.0625,-3.75],[23.4375,-3.75],[23.4375,-4.25],[24.0625,-4.25],[24.0625,-4.75],[23.4375,-4.75],[23.4375,-5.25],[23.4375,-5.75],[22.8125,-5.75],[22.8125,-6.25],[22.1875,-6.25],[21.5625,-6.25],[20.9375,-6.25],[20.3125,-6.25],[19.6875,-6.25],[19.0625,-6.25],[18.4375,-6.25],[18.4375,-5.75],[18.4375,-5.25],[18.4375,-4.75],[17.8125,-4.75],[17.1875,-4.75],[16.5625,-4.75],[15.9375,-4.75],[15.3125,-4.75],[14.6875,-4.75],[14.0625,-4.75],[13.4375,-4.75],[13.4375,-4.25],[12.8125,-4.25],[12.1875,-4.25],[12.1875,-3.75],[11.5625,-3.75],[10.9375,-3.75],[10.9375,-4.25],[10.3125,-4.25],[10.3125,-3.75],[9.6875,-3.75],[9.0625,-3.75],[9.0625,-3.25],[8.4375,-3.25],[7.8125,-3.25],[7.1875,-3.25],[6.5625,-3.25],[6.5625,-3.75],[5.9375,-3.75],[5.9375,-4.25],[5.3125,-4.25],[4.6875,-4.25],[4.0625,-4.25],[3.4375,-4.25],[2.8125,-4.25],[2.1875,-4.25],[2.1875,-4.75],[1.5625,-4.75],[0.9375,-4.75],[0.9375,-4.25],[0.3125,-4.25],[-0.312500000000592,-4.25],[-0.9375,-4.25],[-1.5625,-4.25],[-2.1875,-4.25],[-2.8125,-4.25],[-3.4375,-4.25],[-4.0625,-4.25],[-4.0625,-3.75],[-4.6875,-3.75],[-5.3125,-3.75],[-5.9375,-3.75],[-6.5625,-3.75],[-7.1875,-3.75],[-7.8125,-3.75],[-7.8125,-4.25],[-8.4375,-4.25],[-9.0625,-4.25],[-9.6875,-4.25],[-10.3125,-4.25],[-10.3125,-3.75],[-10.9375,-3.75],[-11.5625,-3.75],[-12.1875,-3.75],[-12.1875,-4.25],[-12.8125,-4.25],[-13.4375,-4.25],[-13.4375,-3.75],[-14.0625,-3.75],[-14.6875,-3.75],[-15.3125,-3.75],[-15.3125,-4.25],[-15.9375,-4.25],[-16.5625,-4.25],[-17.1875,-4.25],[-17.8125,-4.25],[-18.4375,-4.25],[-18.4375,-4.75],[-19.0625,-4.75],[-19.6875,-4.75],[-19.6875,-5.25],[-20.3125,-5.25],[-20.9375,-5.25],[-21.5625,-5.25],[-22.1875,-5.25],[-22.1875,-4.75],[-22.1875,-4.25],[-22.1875,-3.75],[-22.1875,-3.25],[-21.5625,-3.25],[-21.5625,-2.75],[-21.5625,-2.25],[-21.5625,-1.75],[-21.5625,-1.25],[-22.1875,-1.25],[-22.8125,-1.25],[-22.8125,-0.75],[-23.4375,-0.75],[-24.0625,-0.75],[-24.0625,-0.25000000000017975],[-24.0625,0.25],[-24.6875,0.25],[-24.6875,0.75],[-24.6875,1.25],[-25.3125,1.25],[-25.9375,1.25],[-25.9375,1.75],[-26.5625,1.75],[-26.5625,1.25],[-27.1875,1.25],[-27.8125,1.25],[-27.8125,0.75],[-28.4375,0.75],[-28.4375,0.25],[-29.0625,0.25],[-29.0625,0.75],[-29.0625,1.25],[-29.0625,1.75],[-29.0625,2.25],[-29.6875,2.25],[-29.6875,2.75],[-30.3125,2.75],[-30.9375,2.75],[-31.5625,2.75],[-31.5625,3.25],[-32.1875,3.25],[-32.8125,3.25],[-33.4375,3.25],[-33.4375,3.75],[-33.4375,4.25],[-34.0625,4.25],[-34.0625,4.75],[-34.0625,5.25],[-34.0625,5.75],[-33.4375,5.75],[-33.4375,6.25],[-32.8125,6.25],[-32.8125,6.75],[-32.1875,6.75],[-32.1875,7.25],[-31.5625,7.25],[-30.9375,7.25],[-30.3125,7.25],[-29.6875,7.25],[-29.0625,7.25],[-29.0625,7.75],[-28.4375,7.75],[-27.8125,7.75],[-27.1875,7.75],[-26.5625,7.75],[-25.9375,7.75],[-25.9375,8.25],[-25.3125,8.25],[-24.6875,8.25],[-24.6875,7.75],[-25.3125,7.75],[-25.3125,7.25],[-24.6875,7.25],[-24.6875,6.75],[-24.6875,6.25],[-25.3125,6.25],[-25.3125,5.75],[-25.3125,5.25],[-24.6875,5.25],[-24.6875,4.75],[-24.6875,4.25],[-24.6875,3.75],[-24.6875,3.25],[-24.6875,2.75],[-24.0625,2.75],[-24.0625,2.25],[-23.4375,2.25],[-22.8125,2.25],[-22.8125,1.75],[-22.1875,1.75],[-21.5625,1.75],[-20.9375,1.75],[-20.9375,1.25],[-20.3125,1.25],[-19.6875,1.25],[-19.6875,0.75],[-19.6875,0.25],[-19.0625,0.25],[-19.0625,-0.25000000000017975],[-18.4375,-0.25000000000017975],[-18.4375,-0.75],[-17.8125,-0.75],[-17.8125,-1.25],[-17.1875,-1.25],[-16.5625,-1.25],[-15.9375,-1.25],[-15.9375,-0.75],[-15.3125,-0.75],[-14.6875,-0.75],[-14.0625,-0.75],[-13.4375,-0.75],[-13.4375,-0.25000000000017975],[-12.8125,-0.25000000000017975],[-12.1875,-0.25000000000017975],[-12.1875,0.25],[-11.5625,0.25],[-11.5625,0.75],[-11.5625,1.25],[-12.1875,1.25],[-12.1875,1.75],[-11.5625,1.75],[-11.5625,2.25],[-10.9375,2.25],[-10.9375,2.75],[-10.3125,2.75],[-9.6875,2.75],[-9.0625,2.75],[-9.0625,3.25],[-8.4375,3.25],[-8.4375,3.75],[-7.8125,3.75],[-7.8125,4.25],[-7.8125,4.75],[-7.8125,5.25],[-8.4375,5.25],[-8.4375,5.75],[-9.0625,5.75],[-9.6875,5.75],[-9.6875,6.25],[-9.6875,6.75],[-9.0625,6.75],[-9.0625,7.25],[-9.0625,7.75],[-9.6875,7.75],[-10.3125,7.75],[-10.9375,7.75],[-11.5625,7.75],[-12.1875,7.75],[-12.1875,7.25],[-12.1875,6.75],[-12.1875,6.25],[-11.5625,6.25],[-11.5625,5.75],[-12.1875,5.75],[-12.8125,5.75],[-12.8125,5.25],[-13.4375,5.25],[-13.4375,5.75],[-14.0625,5.75],[-14.6875,5.75],[-14.6875,6.25],[-15.3125,6.25],[-15.9375,6.25],[-15.9375,5.75],[-16.5625,5.75],[-17.1875,5.75],[-17.8125,5.75],[-17.8125,5.25],[-18.4375,5.25],[-19.0625,5.25],[-19.6875,5.25],[-19.6875,5.75],[-20.3125,5.75],[-20.9375,5.75],[-20.9375,6.25],[-21.5625,6.25],[-21.5625,6.75],[-21.5625,7.25],[-21.5625,7.75],[-20.9375,7.75],[-20.3125,7.75],[-20.3125,8.25],[-19.6875,8.25],[-19.6875,8.75],[-19.0625,8.75],[-18.4375,8.75],[-18.4375,9.25],[-18.4375,9.75],[-19.0625,9.75],[-19.0625,10.25],[-19.6875,10.25],[-20.3125,10.25],[-20.9375,10.25],[-20.9375,10.75],[-21.5625,10.75],[-21.5625,10.25],[-21.5625,9.75],[-22.1875,9.75],[-22.1875,9.25],[-22.8125,9.25],[-23.4375,9.25],[-23.4375,9.75],[-24.0625,9.75],[-24.0625,10.25],[-24.6875,10.25],[-24.6875,10.75],[-24.0625,10.75],[-24.0625,11.25],[-23.4375,11.25],[-23.4375,11.75],[-24.0625,11.75],[-24.6875,11.75],[-25.3125,11.75],[-25.3125,11.25],[-25.9375,11.25],[-26.5625,11.25],[-26.5625,10.75],[-27.1875,10.75],[-27.8125,10.75],[-28.4375,10.75],[-29.0625,10.75],[-29.6875,10.75],[-30.3125,10.75],[-30.9375,10.75],[-31.5625,10.75],[-32.1875,10.75],[-32.8125,10.75],[-33.4375,10.75],[-34.0625,10.75],[-34.0625,11.25],[-34.6875,11.25],[-35.3125,11.25],[-35.3125,11.75],[-35.9375,11.75],[-36.5625,11.75],[-36.5625,12.25],[-37.1875,12.25],[-37.8125,12.25],[-38.4375,12.25],[-38.4375,12.75],[-39.0625,12.75],[-39.6875,12.75],[-39.6875,13.25],[-39.6875,13.75],[-40.3125,13.75],[-40.3125,14.25],[-40.9375,14.25],[-41.5625,14.25],[-41.5625,14.75],[-42.1875,14.75],[-42.1875,15.25],[-42.8125,15.25],[-42.8125,15.75],[-43.4375,15.75],[-44.0625,15.75],[-44.0625,15.25],[-44.6875,15.25],[-44.6875,14.75],[-45.3125,14.75],[-45.3125,15.25],[-45.9375,15.25],[-46.5625,15.25],[-47.1875,15.25],[-47.1875,14.75],[-47.8125,14.75],[-48.4375,14.75],[-49.0625,14.75],[-49.0625,14.25],[-49.6875,14.25],[-50.3125,14.25],[-50.3125,13.75],[-50.9375,13.75],[-50.9375,13.25],[-51.5625,13.25],[-52.1875,13.25],[-52.8125,13.25],[-52.8125,13.75],[-53.4375,13.75],[-54.0625,13.75],[-54.6875,13.75],[-54.6875,13.25],[-55.3125,13.25],[-55.3125,12.75],[-55.9375,12.75],[-56.5625,12.75],[-57.1875,12.75],[-57.8125,12.75],[-57.8125,12.25],[-58.4375,12.25],[-59.0625,12.25],[-59.0625,11.75],[-59.6875,11.75],[-59.6875,11.25],[-60.3125,11.25],[-60.9375,11.25],[-61.5625,11.25],[-61.5625,11.75],[-62.1875,11.75],[-62.1875,12.25],[-62.8125,12.25],[-63.4375,12.25],[-64.0625,12.25],[-64.0625,11.75],[-64.6875,11.75],[-65.3125,11.75],[-65.9375,11.75],[-66.5625,11.75],[-66.5625,12.25],[-67.1875,12.25],[-67.8125,12.25],[-68.4375,12.25],[-69.0625,12.25],[-69.0625,12.75],[-69.0625,13.25],[-68.4375,13.25],[-67.8125,13.25],[-67.8125,13.75],[-67.1875,13.75],[-66.5625,13.75],[-66.5625,14.25],[-65.9375,14.25],[-65.3125,14.25],[-65.3125,14.75],[-64.6875,14.75],[-64.0625,14.75],[-64.0625,15.25],[-63.4375,15.25],[-63.4375,15.75],[-62.8125,15.75],[-62.8125,16.25],[-63.4375,16.25],[-64.0625,16.25],[-64.6875,16.25],[-64.6875,15.75],[-65.3125,15.75],[-65.9375,15.75],[-66.5625,15.75],[-67.1875,15.75],[-67.1875,16.25],[-67.8125,16.25],[-68.4375,16.25],[-69.0625,16.25],[-69.6875,16.25],[-70.3125,16.25],[-70.3125,16.75],[-70.9375,16.75],[-70.9375,17.25],[-70.9375,17.75],[-71.5625,17.75],[-72.1875,17.75],[-72.8125,17.75],[-73.4375,17.75],[-74.0625,17.75],[-74.0625,17.25],[-74.6875,17.25],[-74.6875,16.75],[-75.3125,16.75],[-75.3125,16.25],[-75.9375,16.25],[-76.5625,16.25],[-76.5625,16.75],[-77.1875,16.75],[-77.1875,17.25],[-77.8125,17.25],[-78.4375,17.25],[-79.0625,17.25],[-79.6875,17.25],[-80.3125,17.25],[-80.9375,17.25],[-80.9375,17.75],[-81.5625,17.75],[-82.1875,17.75],[-82.1875,18.25],[-82.8125,18.25],[-83.4375,18.25],[-83.4375,18.75],[-84.0625,18.75],[-84.6875,18.75],[-84.6875,19.25],[-84.6875,19.75],[-85.3125,19.75],[-85.3125,20.25],[-85.9375,20.25],[-85.9375,20.75],[-86.5625,20.75],[-87.1875,20.75],[-87.8125,20.75],[-87.8125,20.25],[-88.4375,20.25],[-88.4375,20.75],[-88.4375,21.25],[-88.4375,21.75],[-87.8125,21.75],[-87.8125,22.25],[-87.8125,22.75],[-87.1875,22.75],[-87.1875,23.25],[-87.8125,23.25],[-88.4375,23.25],[-88.4375,22.75],[-89.0625,22.75],[-89.6875,22.75],[-89.6875,22.25],[-90.3125,22.25],[-90.9375,22.25],[-91.5625,22.25],[-91.5625,21.75],[-92.1875,21.75],[-92.1875,22.25],[-92.8125,22.25],[-93.4375,22.25],[-94.0625,22.25],[-94.6875,22.25],[-94.6875,21.75],[-95.3125,21.75],[-95.9375,21.75],[-95.9375,21.25],[-96.5625,21.25],[-97.1875,21.25],[-97.1875,20.75],[-97.1875,20.25],[-97.1875,19.75],[-96.5625,19.75],[-96.5625,19.25],[-96.5625,18.75],[-97.1875,18.75],[-97.1875,18.25],[-97.8125,18.25],[-98.4375,18.25],[-99.0625,18.25],[-99.6875,18.25],[-99.6875,17.75],[-99.6875,17.25],[-100.3125,17.25],[-100.9375,17.25],[-100.9375,16.75],[-100.9375,16.25],[-100.9375,15.75],[-100.9375,15.25],[-100.9375,14.75],[-101.5625,14.75],[-102.1875,14.75],[-102.8125,14.75],[-102.8125,14.25],[-103.4375,14.25],[-104.0625,14.25],[-104.6875,14.25],[-104.6875,14.75],[-105.3125,14.75],[-105.3125,15.25],[-105.9375,15.25],[-106.5625,15.25],[-107.1875,15.25],[-107.8125,15.25],[-108.4375,15.25],[-109.0625,15.25],[-109.0625,14.75],[-109.6875,14.75],[-109.6875,14.25],[-110.3125,14.25],[-110.9375,14.25],[-110.9375,13.75],[-111.5625,13.75],[-111.5625,13.25],[-112.1875,13.25],[-112.8125,13.25],[-113.4375,13.25],[-113.4375,13.75],[-114.0625,13.75],[-114.6875,13.75],[-114.6875,14.25],[-115.3125,14.25],[-115.9375,14.25],[-116.5625,14.25],[-116.5625,14.75],[-117.1875,14.75],[-117.8125,14.75],[-117.8125,15.25],[-118.4375,15.25],[-119.0625,15.25],[-119.6875,15.25],[-120.3125,15.25],[-120.3125,15.75],[-120.9375,15.75],[-121.5625,15.75],[-122.1875,15.75],[-122.8125,15.75],[-123.4375,15.75],[-123.4375,16.25],[-124.0625,16.25],[-124.6875,16.25],[-125.3125,16.25],[-125.9375,16.25],[-126.5625,16.25],[-127.1875,16.25],[-127.1875,15.75],[-127.8125,15.75],[-128.4375,15.75],[-129.0625,15.75],[-129.0625,15.25],[-129.6875,15.25],[-129.6875,14.75],[-130.3125,14.75],[-130.9375,14.75],[-130.9375,14.25],[-131.5625,14.25],[-132.1875,14.25],[-132.8125,14.25],[-132.8125,13.75],[-133.4375,13.75],[-134.0625,13.75],[-134.0625,13.25],[-134.6875,13.25],[-135.3125,13.25],[-135.3125,13.75],[-135.9375,13.75],[-136.5625,13.75],[-137.1875,13.75],[-137.8125,13.75],[-138.4375,13.75],[-139.0625,13.75],[-139.6875,13.75],[-140.3125,13.75],[-140.9375,13.75],[-140.9375,14.25],[-141.5625,14.25],[-141.5625,13.75],[-142.1875,13.75],[-142.8125,13.75],[-143.4375,13.75],[-144.0625,13.75],[-144.6875,13.75],[-145.3125,13.75],[-145.3125,14.25],[-144.6875,14.25],[-144.6875,14.75],[-144.6875,15.25],[-144.6875,15.75],[-144.0625,15.75],[-144.0625,16.25],[-144.6875,16.25],[-145.3125,16.25],[-145.3125,15.75],[-145.9375,15.75],[-146.5625,15.75],[-147.1875,15.75],[-147.1875,16.25],[-147.8125,16.25],[-147.8125,16.75],[-148.4375,16.75],[-149.0625,16.75],[-149.6875,16.75],[-149.6875,16.25],[-150.3125,16.25],[-150.9375,16.25],[-151.5625,16.25],[-152.1875,16.25],[-152.8125,16.25],[-152.8125,15.75],[-152.8125,15.25],[-152.8125,14.75],[-152.8125,14.25],[-152.8125,13.75],[-153.4375,13.75],[-153.4375,14.25],[-154.0625,14.25],[-154.0624,5.75],[-153.4375,5.75],[-152.8125,5.75],[-152.1875,5.75],[-151.5625,5.75],[-150.9375,5.75],[-150.3125,5.75],[-149.6875,5.75],[-149.6875,6.25],[-149.0625,6.25],[-148.4375,6.25],[-147.8125,6.25],[-147.8125,5.75],[-147.8125,5.25],[-147.1875,5.25],[-146.5625,5.25],[-146.5625,4.75],[-146.5625,4.25],[-146.5625,3.75],[-145.9375,3.75],[-145.3125,3.75],[-145.3125,4.25],[-144.6875,4.25],[-144.0625,4.25],[-144.0625,4.75],[-143.4375,4.75],[-143.4375,5.25],[-142.8125,5.25],[-142.8125,4.75],[-142.1875,4.75],[-141.5625,4.75],[-140.9375,4.75],[-140.9375,5.25],[-140.3125,5.25],[-139.6875,5.25],[-139.6875,4.75],[-139.6875,4.25],[-139.0625,4.25],[-138.4375,4.25],[-138.4375,4.75],[-137.8125,4.75],[-137.8125,5.25],[-137.1875,5.25],[-137.1875,4.75],[-136.5625,4.75],[-136.5625,4.25],[-136.5625,3.75],[-136.5625,3.25],[-136.5625,2.75],[-136.5625,2.25],[-136.5625,1.75],[-135.9375,1.75],[-135.9375,1.25],[-135.3125,1.25],[-135.3125,0.75],[-135.3125,0.25],[-135.3125,-0.25000000000017975],[-135.3125,-0.75],[-134.6875,-0.75],[-134.6875,-1.25],[-135.3125,-1.25],[-135.3125,-1.75],[-135.3125,-2.25],[-135.3125,-2.75],[-135.3125,-3.25],[-134.6875,-3.25],[-134.6875,-3.75],[-134.0625,-3.75],[-134.0625,-4.25],[-133.4375,-4.25],[-132.8125,-4.25],[-132.1875,-4.25],[-132.1875,-4.75],[-131.5625,-4.75],[-131.5625,-5.25],[-130.9375,-5.25],[-130.9375,-5.75],[-130.3125,-5.75],[-130.3125,-6.25],[-130.3125,-6.75],[-129.6875,-6.75],[-129.0625,-6.75],[-129.0625,-7.25],[-128.4375,-7.25],[-127.8125,-7.25],[-127.8125,-6.75],[-127.8125,-6.25],[-127.1875,-6.25],[-126.5625,-6.25],[-126.5625,-5.75],[-125.9375,-5.75],[-125.9375,-6.25],[-125.3125,-6.25],[-124.6875,-6.25],[-124.0625,-6.25],[-124.0625,-6.75],[-123.4375,-6.75],[-122.8125,-6.75],[-122.8125,-7.25],[-122.1875,-7.25],[-121.5625,-7.25],[-121.5625,-6.75],[-121.5625,-6.25],[-120.9375,-6.25],[-120.9375,-5.75],[-120.9375,-5.25],[-120.9375,-4.75],[-120.9375,-4.25],[-120.9375,-3.75],[-120.9375,-3.25],[-120.9375,-2.75],[-120.9375,-2.25],[-121.5625,-2.25],[-121.5625,-1.75],[-122.1875,-1.75],[-122.1875,-1.25],[-122.1875,-0.75],[-122.1875,-0.25000000000017975],[-122.1875,0.25],[-121.5625,0.25],[-121.5625,0.75],[-120.9375,0.75],[-120.3125,0.75],[-120.3125,1.25],[-119.6875,1.25],[-119.6875,1.75],[-119.6875,2.25],[-119.0625,2.25],[-119.0625,2.75],[-118.4375,2.75],[-117.8125,2.75],[-117.1875,2.75],[-116.5625,2.75],[-115.9375,2.75],[-115.3125,2.75],[-115.3125,3.25],[-114.6875,3.25],[-114.6875,3.75],[-114.6875,4.25],[-115.3125,4.25],[-115.3125,4.75],[-115.3125,5.25],[-115.9375,5.25],[-115.9375,5.75],[-116.5625,5.75],[-116.5625,6.25],[-117.1875,6.25],[-117.8125,6.25],[-118.4375,6.25],[-118.4375,5.75],[-119.0625,5.75],[-119.6875,5.75],[-120.3125,5.75],[-120.9375,5.75],[-121.5625,5.75],[-122.1875,5.75],[-122.8125,5.75],[-122.8125,6.25],[-123.4375,6.25],[-124.0625,6.25],[-124.0625,6.75],[-124.6875,6.75],[-125.3125,6.75],[-125.3125,7.25],[-125.9375,7.25],[-125.9375,7.75],[-125.9375,8.25],[-125.9375,8.75],[-126.5625,8.75],[-126.5625,9.25],[-126.5625,9.75],[-126.5625,10.25],[-125.9375,10.25],[-125.9375,10.75],[-125.9375,11.25],[-125.3125,11.25],[-125.3125,11.75],[-124.6875,11.75],[-124.6875,12.25],[-124.0625,12.25],[-123.4375,12.25],[-122.8125,12.25],[-122.1875,12.25],[-122.1875,11.75],[-121.5625,11.75],[-120.9375,11.75],[-120.3125,11.75],[-120.3125,11.25],[-119.6875,11.25],[-119.0625,11.25],[-119.0625,10.75],[-118.4375,10.75],[-117.8125,10.75],[-117.8125,10.25],[-117.1875,10.25],[-116.5625,10.25],[-116.5625,9.75],[-115.9375,9.75],[-115.3125,9.75],[-114.6875,9.75],[-114.0625,9.75],[-113.4375,9.75],[-113.4375,9.25],[-112.8125,9.25],[-112.8125,8.75],[-112.1875,8.75],[-112.1875,8.25],[-111.5625,8.25],[-110.9375,8.25],[-110.9375,8.75],[-110.3125,8.75],[-109.6875,8.75],[-109.0625,8.75],[-109.0625,9.25],[-108.4375,9.25],[-107.8125,9.25],[-107.1875,9.25],[-106.5625,9.25],[-106.5625,8.75],[-105.9375,8.75],[-105.3125,8.75],[-105.3125,8.25],[-105.3125,7.75],[-104.6875,7.75],[-104.6875,7.25],[-104.0625,7.25],[-103.4375,7.25],[-102.8125,7.25],[-102.1875,7.25],[-101.5625,7.25],[-100.9375,7.25],[-100.9375,6.75],[-100.3125,6.75],[-99.6875,6.75],[-99.0625,6.75],[-98.4375,6.75],[-98.4375,7.25],[-97.8125,7.25],[-97.1875,7.25],[-96.5625,7.25],[-96.5625,7.75],[-95.9375,7.75],[-95.3125,7.75],[-94.6875,7.75],[-94.0625,7.75],[-94.0625,8.25],[-93.4375,8.25],[-92.8125,8.25],[-92.8125,8.75],[-92.1875,8.75],[-91.5625,8.75],[-91.5625,9.25],[-90.9375,9.25],[-90.9375,9.75],[-90.3125,9.75],[-89.6875,9.75],[-89.6875,10.25],[-89.0625,10.25],[-88.4375,10.25],[-88.4375,10.75],[-87.8125,10.75],[-87.8125,11.25],[-87.1875,11.25],[-87.1875,11.75],[-86.5625,11.75],[-86.5625,12.25],[-86.5625,12.75],[-86.5625,13.25],[-86.5625,13.75],[-85.9375,13.75],[-85.9375,13.25],[-85.3125,13.25],[-85.3125,12.75],[-84.6875,12.75],[-84.0625,12.75],[-84.0625,13.25],[-83.4375,13.25],[-82.8125,13.25],[-82.8125,12.75],[-82.1875,12.75],[-82.1875,12.25],[-81.5625,12.25],[-81.5625,11.75],[-80.9375,11.75],[-80.3125,11.75],[-80.3125,11.25],[-79.6875,11.25],[-79.0625,11.25],[-78.4375,11.25],[-77.8125,11.25],[-77.8125,10.75],[-77.1875,10.75],[-76.5625,10.75],[-75.9375,10.75],[-75.3125,10.75],[-75.3125,11.25],[-74.6875,11.25],[-74.0625,11.25],[-73.4375,11.25],[-72.8125,11.25],[-72.1875,11.25],[-72.1875,10.75],[-71.5625,10.75],[-70.9375,10.75],[-70.3125,10.75],[-69.6875,10.75],[-69.6875,11.25],[-69.0625,11.25],[-69.0625,10.75],[-68.4375,10.75],[-67.8125,10.75],[-67.1875,10.75],[-66.5625,10.75],[-65.9375,10.75],[-65.9375,10.25],[-65.3125,10.25],[-64.6875,10.25],[-64.6875,10.75],[-64.0625,10.75],[-64.0625,10.25],[-63.4375,10.25],[-63.4375,9.75],[-64.0625,9.75],[-64.6875,9.75],[-65.3125,9.75],[-65.9375,9.75],[-66.5625,9.75],[-66.5625,9.25],[-67.1875,9.25],[-67.8125,9.25],[-67.8125,8.75],[-67.8125,8.25],[-68.4375,8.25],[-68.4375,7.75],[-68.4375,7.25],[-69.0625,7.25],[-69.0625,6.75],[-69.0625,6.25],[-69.0625,5.75],[-68.4375,5.75],[-67.8125,5.75],[-67.8125,6.25],[-67.1875,6.25],[-66.5625,6.25],[-66.5625,6.75],[-66.5625,7.25],[-65.9375,7.25],[-65.9375,6.75],[-65.3125,6.75],[-64.6875,6.75],[-64.6875,6.25],[-64.6875,5.75],[-64.0625,5.75],[-63.4375,5.75],[-62.8125,5.75],[-62.8125,6.25],[-62.1875,6.25],[-61.5625,6.25],[-60.9375,6.25],[-60.3125,6.25],[-60.3125,5.75],[-59.6875,5.75],[-59.6875,5.25],[-59.6875,4.75],[-60.3125,4.75],[-60.9375,4.75],[-60.9375,4.25],[-61.5625,4.25],[-62.1875,4.25],[-62.1875,3.75],[-62.1875,3.25],[-62.1875,2.75],[-62.1875,2.25],[-62.1875,1.75],[-61.5625,1.75],[-61.5625,1.25],[-61.5625,0.75],[-61.5625,0.25],[-61.5625,-0.25000000000017975],[-61.5625,-0.75],[-61.5625,-1.25],[-62.1875,-1.25],[-62.1875,-1.75],[-61.5625,-1.75],[-60.9375,-1.75],[-60.9375,-1.25],[-60.3125,-1.25],[-59.6875,-1.25],[-59.6875,-1.75],[-59.6875,-2.25],[-59.6875,-2.75],[-60.3125,-2.75],[-60.9375,-2.75],[-60.9375,-2.25],[-61.5625,-2.25],[-61.5625,-2.75],[-62.1875,-2.75],[-62.1875,-3.25],[-61.5625,-3.25],[-61.5625,-3.75],[-61.5625,-4.25],[-62.1875,-4.25],[-62.1875,-4.75],[-61.5625,-4.75],[-61.5625,-5.25],[-61.5625,-5.75],[-60.9375,-5.75],[-60.9375,-6.25],[-60.9375,-6.75],[-60.9375,-7.25],[-60.9375,-7.75],[-61.5625,-7.75],[-61.5625,-8.25],[-61.5625,-8.75],[-62.1875,-8.75],[-62.1875,-9.25],[-62.1875,-9.75],[-61.5625,-9.75],[-61.5625,-10.25],[-60.9375,-10.25],[-60.9375,-10.75],[-60.9375,-11.25],[-60.3125,-11.25],[-59.6875,-11.25],[-59.6875,-10.75],[-59.6875,-10.25],[-59.6875,-9.75],[-59.6875,-9.25],[-59.6875,-8.75],[-59.6875,-8.25],[-59.0625,-8.25],[-58.4375,-8.25],[-58.4375,-7.75],[-57.8125,-7.75],[-57.8125,-7.25],[-57.1875,-7.25],[-57.1875,-6.75],[-57.1875,-6.25],[-56.5625,-6.25],[-56.5625,-5.75],[-55.9375,-5.75],[-55.9375,-5.25],[-55.3125,-5.25],[-54.6875,-5.25],[-54.0625,-5.25],[-54.0625,-5.75],[-54.6875,-5.75],[-54.6875,-6.25],[-54.6875,-6.75],[-54.0625,-6.75],[-54.0625,-7.25],[-54.0625,-7.75],[-54.6875,-7.75],[-54.6875,-8.25],[-55.3125,-8.25],[-55.3125,-8.75],[-55.3125,-9.25],[-55.9375,-9.25],[-55.9375,-9.75],[-55.9375,-10.25],[-55.9375,-10.75],[-56.5625,-10.75],[-56.5625,-11.25],[-55.9375,-11.25],[-55.3125,-11.25],[-55.3125,-10.75],[-54.6875,-10.75],[-54.6875,-10.25],[-54.6875,-9.75],[-54.0625,-9.75],[-54.0625,-9.25],[-53.4375,-9.25],[-53.4375,-8.75],[-53.4375,-8.25],[-53.4375,-7.75],[-53.4375,-7.25],[-53.4375,-6.75],[-53.4375,-6.25],[-53.4375,-5.75],[-53.4375,-5.25],[-53.4375,-4.75],[-52.8125,-4.75],[-52.1875,-4.75],[-52.1875,-5.25],[-51.5625,-5.25],[-51.5625,-5.75],[-50.9375,-5.75],[-50.9375,-6.25],[-50.9375,-6.75],[-50.9375,-7.25],[-50.3125,-7.25],[-50.3125,-7.75],[-50.3125,-8.25],[-50.3125,-8.75],[-49.6875,-8.75],[-49.0625,-8.75],[-49.0625,-8.25],[-48.4375,-8.25],[-47.8125,-8.25],[-47.1875,-8.25],[-47.1875,-7.75],[-46.5625,-7.75],[-45.9375,-7.75],[-45.3125,-7.75],[-45.3125,-8.25],[-44.6875,-8.25],[-44.0625,-8.25],[-43.4375,-8.25],[-42.8125,-8.25],[-42.1875,-8.25],[-41.5625,-8.25],[-41.5625,-8.75],[-40.9375,-8.75],[-40.3125,-8.75],[-40.3125,-8.25],[-40.3125,-7.75],[-40.9375,-7.75],[-40.9375,-7.25],[-41.5625,-7.25],[-41.5625,-6.75],[-40.9375,-6.75],[-40.9375,-6.25],[-40.3125,-6.25],[-40.3125,-6.75],[-39.6875,-6.75],[-39.0625,-6.75],[-38.4375,-6.75],[-38.4375,-6.25],[-38.4375,-5.75],[-37.8125,-5.75],[-37.1875,-5.75],[-37.1875,-6.25],[-37.1875,-6.75],[-36.5625,-6.75],[-35.9375,-6.75],[-35.9375,-7.25],[-35.9375,-7.75],[-35.3125,-7.75],[-35.3125,-8.25],[-34.6875,-8.25],[-34.6875,-8.75],[-34.6875,-9.25],[-35.3125,-9.25],[-35.9375,-9.25],[-35.9375,-9.75],[-36.5625,-9.75],[-36.5625,-9.25],[-37.1875,-9.25],[-37.8125,-9.25],[-38.4375,-9.25],[-38.4375,-9.75],[-37.8125,-9.75],[-37.8125,-10.25],[-38.4375,-10.25],[-38.4375,-10.75],[-37.8125,-10.75],[-37.8125,-11.25],[-37.8125,-11.75],[-37.8125,-12.25],[-37.1875,-12.25],[-37.1875,-12.75],[-37.1875,-13.25],[-36.5625,-13.25],[-36.5625,-13.75],[-36.5625,-14.25],[-36.5625,-14.75],[-35.9375,-14.75],[-35.9375,-15.25],[-35.9375,-15.75],[-35.9375,-16.25],[-35.9375,-16.75],[-35.3125,-16.75],[-35.3125,-17.25],[-34.6875,-17.25],[-34.6875,-17.75],[-34.6875,-18.25],[-34.0625,-18.25],[-34.0625,-18.75],[-34.0625,-19.25],[-34.0625,-19.75],[-33.4375,-19.75],[-33.4375,-20.25],[-33.4375,-20.75],[-32.8125,-20.75],[-32.8125,-21.25],[-32.1875,-21.25],[-32.1875,-21.25],[-31.5625,-21.25],[-30.9375,-21.25],[-30.3125,-21.25],[-29.6875,-21.25],[-29.0625,-21.25],[-28.4375,-21.25],[-27.8125,-21.25],[-27.1875,-21.25],[-26.5625,-21.25],[-25.9375,-21.25],[-25.9375,-20.75],[-25.3125,-20.75],[-25.3125,-20.25],[-25.3125,-19.75],[-25.3125,-19.25],[-24.6875,-19.25],[-24.6875,-18.75],[-24.0625,-18.75],[-23.4375,-18.75],[-23.4375,-18.25],[-22.8125,-18.25],[-22.1875,-18.25],[-22.1875,-17.75],[-21.5625,-17.75],[-20.9375,-17.75],[-20.3125,-17.75],[-20.3125,-17.25],[-20.3125,-16.75],[-19.6875,-16.75],[-19.0625,-16.75],[-19.0625,-17.25],[-18.4375,-17.25],[-17.8125,-17.25],[-17.8125,-16.75],[-17.1875,-16.75],[-17.1875,-16.25],[-17.1875,-15.75],[-16.5625,-15.75],[-16.5625,-15.25],[-15.9375,-15.25],[-15.3125,-15.25],[-14.6875,-15.25],[-14.0625,-15.25],[-14.0625,-14.75],[-14.0625,-14.25],[-13.4375,-14.25],[-12.8125,-14.25],[-12.8125,-13.75],[-12.1875,-13.75],[-11.5625,-13.75],[-11.5625,-13.25],[-10.9375,-13.25],[-10.3125,-13.25],[-10.3125,-12.75],[-9.6875,-12.75],[-9.0625,-12.75],[-9.0625,-12.25],[-8.4375,-12.25],[-7.8125,-12.25],[-7.1875,-12.25],[-7.1875,-11.75],[-6.5625,-11.75],[-5.9375,-11.75],[-5.9375,-11.25],[-5.3125,-11.25],[-5.3125,-10.75],[-4.6875,-10.75],[-4.6875,-10.25],[-4.0625,-10.25],[-4.0625,-9.75],[-3.4375,-9.75],[-2.8125,-9.75],[-2.1875,-9.75],[-1.5625,-9.75],[-1.5625,-10.25],[-0.9375,-10.25],[-0.312500000000592,-10.25],[-0.312500000000592,-10.75],[0.3125,-10.75],[0.9375,-10.75],[1.5625,-10.75],[1.5625,-10.25],[2.1875,-10.25],[2.8125,-10.25],[3.4375,-10.25],[4.0625,-10.25],[4.0625,-9.75],[4.6875,-9.75],[5.3125,-9.75],[5.3125,-9.25],[5.3125,-8.75],[5.3125,-8.25],[5.3125,-7.75],[4.6875,-7.75],[4.6875,-7.25],[5.3125,-7.25],[5.9375,-7.25],[6.5625,-7.25],[6.5625,-7.75],[7.1875,-7.75],[7.8125,-7.75],[8.4375,-7.75],[8.4375,-8.25],[9.0625,-8.25],[9.6875,-8.25],[9.6875,-8.75],[10.3125,-8.75],[10.9375,-8.75],[10.9375,-9.25],[11.5625,-9.25],[12.1875,-9.25],[12.1875,-9.75],[12.8125,-9.75],[13.4375,-9.75],[14.0625,-9.75],[14.6875,-9.75],[14.6875,-10.25],[14.0625,-10.25],[14.0625,-10.75],[14.6875,-10.75],[15.3125,-10.75],[15.3125,-10.25],[15.9375,-10.25],[16.5625,-10.25],[16.5625,-10.75],[17.1875,-10.75],[17.8125,-10.75],[18.4375,-10.75],[18.4375,-10.25],[19.0625,-10.25],[19.6875,-10.25],[20.3125,-10.25],[20.3125,-9.75],[20.9375,-9.75],[20.9375,-9.25],[21.5625,-9.25],[22.1875,-9.25],[22.1875,-8.75],[22.8125,-8.75],[23.4375,-8.75],[23.4375,-8.25],[24.0625,-8.25],[24.0625,-7.75],[24.0625,-7.25],[24.6875,-7.25],[25.3125,-7.25],[25.9375,-7.25],[26.5625,-7.25],[26.5625,-7.75],[25.9375,-7.75],[25.9375,-8.25],[26.5625,-8.25],[26.5625,-8.75],[26.5625,-9.25],[26.5625,-9.75],[25.9375,-9.75],[25.9375,-10.25],[25.3125,-10.25],[24.6875,-10.25],[24.0625,-10.25],[24.0625,-9.75],[23.4375,-9.75],[23.4375,-9.25],[22.8125,-9.25],[22.8125,-9.75],[22.1875,-9.75],[22.1875,-10.25],[22.8125,-10.25],[23.4375,-10.25],[23.4375,-10.75],[24.0625,-10.75],[24.6875,-10.75],[24.6875,-11.25],[25.3125,-11.25],[25.3125,-11.75],[25.9375,-11.75],[26.5625,-11.75],[27.1875,-11.75],[27.8125,-11.75],[28.4375,-11.75],[29.0625,-11.75],[29.0625,-11.25],[29.0625,-10.75],[28.4375,-10.75],[28.4375,-10.25],[28.4375,-9.75],[29.0625,-9.75],[29.0625,-9.25],[29.0625,-8.75],[29.6875,-8.75],[29.6875,-8.25],[29.0625,-8.25],[28.4375,-8.25],[27.8125,-8.25],[27.8125,-7.75],[27.8125,-7.25],[28.4375,-7.25],[29.0625,-7.25],[29.6875,-7.25],[30.3125,-7.25],[30.3125,-7.75],[30.9375,-7.75],[30.9375,-7.25],[31.5625,-7.25],[32.1875,-7.25],[32.8125,-7.25],[32.8125,-6.75],[33.4375,-6.75],[33.4375,-7.25],[34.0625,-7.25],[34.6875,-7.25],[35.3125,-7.25],[35.3125,-7.75],[35.9375,-7.75],[35.9375,-8.25],[35.9375,-8.75],[35.3125,-8.75],[35.3125,-9.25],[35.9375,-9.25],[35.9375,-9.75],[35.3125,-9.75],[35.3125,-10.25],[34.6875,-10.25],[34.0625,-10.25],[34.0625,-10.75],[34.6875,-10.75],[34.6875,-11.25],[34.6875,-11.75],[34.0625,-11.75],[34.0625,-12.25],[34.0625,-12.75],[34.6875,-12.75],[34.6875,-12.25],[35.3125,-12.25],[35.3125,-12.75],[35.9375,-12.75],[36.5625,-12.75],[37.1875,-12.75],[37.8125,-12.75],[38.4375,-12.75],[39.0625,-12.75],[39.6875,-12.75],[39.6875,-13.25],[40.3125,-13.25],[40.9375,-13.25],[41.5625,-13.25],[42.1875,-13.25],[42.8125,-13.25],[43.4375,-13.25],[43.4375,-12.75],[44.0625,-12.75],[44.6875,-12.75],[45.3125,-12.75],[45.3125,-13.25],[45.3125,-13.75],[45.3125,-14.25],[45.3125,-14.75],[45.9375,-14.75],[45.9375,-15.25],[46.5625,-15.25],[47.1875,-15.25],[47.8125,-15.25],[47.8125,-14.75],[47.1875,-14.75],[47.1875,-14.25],[46.5625,-14.25],[46.5625,-13.75],[45.9375,-13.75],[45.9375,-13.25],[46.5625,-13.25],[46.5625,-12.75],[47.1875,-12.75],[47.8125,-12.75],[48.4375,-12.75],[48.4375,-13.25],[49.0625,-13.25],[49.0625,-13.75],[49.6875,-13.75],[49.6875,-14.25],[50.3125,-14.25],[50.3125,-14.75],[50.3125,-15.25],[50.9375,-15.25],[50.9375,-15.75],[51.5625,-15.75],[52.1875,-15.75],[52.8125,-15.75],[53.4375,-15.75],[53.4375,-16.25],[54.0625,-16.25],[54.0625,-16.75],[54.0625,-17.25],[54.6875,-17.25],[55.3125,-17.25],[55.9375,-17.25],[55.9375,-16.75],[56.5625,-16.75],[56.5625,-16.25],[57.1875,-16.25],[57.1875,-15.75],[57.1875,-15.25],[56.5625,-15.25],[56.5625,-14.75],[55.9375,-14.75],[55.3125,-14.75],[54.6875,-14.75],[54.0625,-14.75],[54.0625,-14.25],[53.4375,-14.25],[53.4375,-13.75],[52.8125,-13.75],[52.8125,-13.25],[52.1875,-13.25],[52.1875,-12.75],[51.5625,-12.75],[51.5625,-12.25],[51.5625,-11.75],[51.5625,-11.25],[52.1875,-11.25],[52.8125,-11.25],[52.8125,-11.75],[53.4375,-11.75],[53.4375,-12.25],[54.0625,-12.25],[54.6875,-12.25],[55.3125,-12.25],[55.9375,-12.25],[55.9375,-11.75],[55.9375,-11.25],[55.9375,-10.75],[55.3125,-10.75],[55.3125,-10.25],[55.3125,-9.75],[54.6875,-9.75],[54.6875,-9.25],[54.6875,-8.75],[55.3125,-8.75],[55.3125,-8.25],[55.9375,-8.25],[56.5625,-8.25],[57.1875,-8.25],[57.1875,-8.75],[57.8125,-8.75],[58.4375,-8.75],[58.4375,-9.25],[59.0625,-9.25],[59.6875,-9.25],[59.6875,-9.75],[60.3125,-9.75],[60.3125,-10.25],[60.9375,-10.25],[60.9375,-10.75],[61.5625,-10.75],[61.5625,-11.25],[62.1875,-11.25],[62.1875,-11.75],[62.8125,-11.75],[62.8125,-12.25],[63.4375,-12.25],[63.4375,-12.75],[63.4375,-13.25],[64.0625,-13.25],[64.0625,-13.75],[64.6875,-13.75],[65.3125,-13.75],[65.9375,-13.75],[65.9375,-14.25],[66.5625,-14.25],[67.1875,-14.25],[67.8125,-14.25],[68.4375,-14.25],[69.0625,-14.25],[69.6875,-14.25],[70.3125,-14.25],[70.9375,-14.25],[71.5625,-14.25],[72.1875,-14.25],[72.1875,-13.75],[72.8125,-13.75],[73.4375,-13.75],[74.0625,-13.75],[74.0625,-13.25],[74.6875,-13.25],[74.6875,-12.75],[75.3125,-12.75],[75.9375,-12.75],[75.9375,-12.25],[76.5625,-12.25],[77.1875,-12.25],[77.1875,-11.75],[77.8125,-11.75],[77.8125,-12.25],[78.4375,-12.25],[79.0625,-12.25],[79.0625,-12.75],[79.6875,-12.75],[80.3125,-12.75],[80.9375,-12.75],[80.9375,-13.25],[81.5625,-13.25],[82.1875,-13.25],[82.8125,-13.25],[82.8125,-12.75],[83.4375,-12.75],[83.4375,-12.25],[84.0625,-12.25],[84.0625,-11.75],[84.0625,-11.25],[83.4375,-11.25],[83.4375,-10.75],[83.4375,-10.25],[84.0625,-10.25],[84.0625,-9.75],[83.4375,-9.75],[82.8125,-9.75],[82.1875,-9.75],[82.1875,-9.25],[82.1875,-8.75],[81.5625,-8.75],[80.9375,-8.75],[80.3125,-8.75],[80.3125,-8.25],[79.6875,-8.25],[79.6875,-7.75],[79.6875,-7.25],[79.6875,-6.75],[80.3125,-6.75],[80.3125,-6.25],[80.3125,-5.75],[80.3125,-5.25],[80.9375,-5.25],[80.9375,-4.75],[80.9375,-4.25],[81.5625,-4.25],[81.5625,-3.75],[82.1875,-3.75],[82.1875,-3.25],[82.8125,-3.25],[83.4375,-3.25],[84.0625,-3.25],[84.0625,-2.75],[84.6875,-2.75],[84.6875,-2.25],[85.3125,-2.25],[85.9375,-2.25],[85.9375,-1.75],[86.5625,-1.75],[86.5625,-1.25],[87.1875,-1.25],[87.1875,-0.75],[87.8125,-0.75],[87.8125,-0.25000000000017975],[87.8125,0.25],[88.4375,0.25],[88.4375,0.75],[89.0625,0.75],[89.0625,1.25],[89.0625,1.75],[89.0625,2.25],[89.6875,2.25],[89.6875,2.75],[89.0625,2.75],[89.0625,3.25],[89.0625,3.75],[89.0625,4.25],[88.4375,4.25],[88.4375,4.75],[88.4375,5.25],[88.4375,5.75],[88.4375,6.25],[88.4375,6.75],[89.0625,6.75],[89.0625,7.25],[89.6875,7.25],[90.3125,7.25],[90.9375,7.25],[90.9375,7.75],[91.5625,7.75],[92.1875,7.75],[92.1875,7.25],[92.8125,7.25],[92.8125,6.75],[93.4375,6.75],[93.4375,6.25],[94.0625,6.25],[94.0625,5.75],[94.6875,5.75],[94.6875,5.25],[95.3125,5.25],[95.9375,5.25],[96.5625,5.25],[97.1875,5.25],[97.8125,5.25],[98.4375,5.25],[99.0625,5.25],[99.6875,5.25],[100.3125,5.25],[100.3125,4.75],[100.9375,4.75],[101.5625,4.75],[101.5625,4.25],[101.5625,3.75],[100.9375,3.75],[100.9375,3.25],[100.9375,2.75],[101.5625,2.75],[101.5625,2.25],[102.1875,2.25],[102.1875,1.75],[102.8125,1.75],[103.4375,1.75],[103.4375,2.25],[104.0625,2.25],[104.6875,2.25],[104.6875,2.75],[105.3125,2.75],[105.9375,2.75],[105.9375,3.25],[106.5625,3.25],[107.1875,3.25],[107.1875,3.75],[107.8125,3.75],[108.4375,3.75],[108.4375,4.25],[109.0625,4.25],[109.0625,4.75],[109.0625,5.25],[109.6875,5.25],[109.6875,5.75],[110.3125,5.75],[110.9375,5.75],[111.5625,5.75],[111.5625,6.25],[112.1875,6.25],[112.8125,6.25],[112.8125,6.75],[113.4375,6.75],[114.0625,6.75],[114.0625,6.25],[114.6875,6.25],[115.3125,6.25],[115.9375,6.25],[115.9375,6.75],[115.9375,7.25],[115.3125,7.25],[115.3125,7.75],[114.6875,7.75],[114.6875,8.25],[115.3125,8.25],[115.9375,8.25],[116.5625,8.25],[117.1875,8.25],[117.1875,7.75],[117.8125,7.75],[118.4375,7.75],[119.0625,7.75],[119.6875,7.75],[120.3125,7.75],[120.3125,8.25],[120.9375,8.25],[121.5625,8.25],[122.1875,8.25],[122.8125,8.25],[122.8125,8.75],[122.8125,9.25],[122.1875,9.25],[122.1875,9.75],[122.1875,10.25],[121.5625,10.25],[121.5625,9.75],[121.5625,9.25],[121.5625,8.75],[120.9375,8.75],[120.3125,8.75],[120.3125,9.25],[120.3125,9.75],[120.3125,10.25],[120.9375,10.25],[120.9375,10.75],[120.9375,11.25],[121.5625,11.25],[121.5625,11.75],[122.1875,11.75],[122.1875,12.25],[122.1875,12.75],[122.8125,12.75],[123.4375,12.75],[123.4375,13.25],[123.4375,13.75],[124.0625,13.75],[124.0625,13.25],[124.0625,12.75],[124.6875,12.75],[125.3125,12.75],[125.9375,12.75],[125.9375,12.25],[125.9375,11.75],[125.9375,11.25],[125.9375,10.75],[125.9375,10.25],[125.3125,10.25],[125.3125,9.75],[125.9375,9.75],[125.9375,9.25],[126.5625,9.25],[126.5625,8.75],[126.5625,8.25],[126.5625,7.75],[127.1875,7.75],[127.1875,8.25],[127.1875,8.75],[127.8125,8.75],[128.4375,8.75],[128.4375,9.25],[128.4375,9.75],[128.4375,10.25],[129.0625,10.25],[129.0625,10.75],[129.6875,10.75],[129.6875,11.25],[130.3125,11.25],[130.3125,11.75],[130.3125,12.25],[130.9375,12.25],[131.5625,12.25],[131.5625,12.75],[132.1875,12.75],[132.8125,12.75],[132.8125,13.25],[133.4375,13.25],[134.0625,13.25],[134.0625,13.75],[134.6875,13.75],[135.3125,13.75],[135.3125,14.25],[135.9375,14.25],[135.9375,14.75],[136.5625,14.75],[137.1875,14.75],[137.1875,15.25],[137.8125,15.25],[138.4375,15.25],[138.4375,15.75],[139.0625,15.75],[139.6875,15.75],[139.6875,16.25],[140.3125,16.25],[140.9375,16.25],[141.5625,16.25],[142.1875,16.25],[142.8125,16.25],[143.4375,16.25],[144.0625,16.25],[144.6875,16.25],[144.6875,16.75],[144.6875,17.25],[144.6875,17.75],[144.6875,18.25],[145.3125,18.25],[145.3125,18.75],[145.3125,19.25],[145.3125,19.75],[145.9375,19.75],[146.5625,19.75],[147.1875,19.75],[147.1875,19.25],[147.1875,18.75],[147.1875,18.25],[147.8125,18.25],[147.8125,17.75],[147.8125,17.25],[148.4375,17.25],[148.4375,16.75],[148.4375,16.25],[149.0625,16.25],[149.0625,15.75],[149.0625,15.25],[149.6875,15.25],[149.6875,15.75],[150.3125,15.75],[150.3125,16.25],[150.9375,16.25],[150.9375,16.75],[150.9375,17.25],[151.5625,17.25],[151.5625,17.75],[152.1875,17.75],[152.1875,18.25],[152.8125,18.25],[152.8125,18.75],[153.4375,18.75],[153.4375,18.25],[154.0625,18.25],[154.0625,17.75],[154.6875,17.75],[154.6875,17.25],[154.6875,16.75],[155.3125,16.75],[155.3125,16.25],[155.9375,16.25],[155.9375,15.75],[156.5625,15.75],[156.5625,15.25],[156.5625,14.75],[157.1875,14.75],[157.1875,14.25],[157.1875,13.75],[157.8125,13.75],[157.8125,13.25],[157.8125,12.75],[157.1875,12.75],[156.5625,12.75],[156.5625,12.25],[155.9375,12.25],[155.9375,11.75],[155.3125,11.75],[155.3125,11.25],[154.6875,11.25],[154.0625,11.25],[154.0625,10.75],[153.4375,10.75],[153.4375,10.25],[152.8125,10.25],[152.8125,9.75],[152.1875,9.75],[152.1875,9.25],[151.5625,9.25],[151.5625,8.75],[150.9375,8.75],[150.9375,8.25],[150.9375,7.75],[150.3125,7.75],[150.3125,7.25],[150.3125,6.75],[149.6875,6.75],[149.6875,6.25],[149.6875,5.75],[149.6875,5.25],[149.6875,4.75],[150.3125,4.75],[150.9375,4.75],[150.9375,4.25],[151.5625,4.25],[151.5625,3.75],[152.1875,3.75],[152.1875,3.25],[152.8125,3.25],[152.8125,2.75],[153.4375,2.75],[154.0625,2.75],[154.0625,3.25],[154.6875,3.25],[154.6875,3.75],[155.3125,3.75],[155.9375,3.75],[156.5625,3.75],[156.5625,3.25],[156.5625,2.75],[157.1875,2.75],[157.8125,2.75],[158.4375,2.75],[158.4375,3.25],[157.8125,3.25],[157.8125,3.75],[157.1875,3.75],[157.1875,4.25],[157.1875,4.75],[157.8125,4.75],[157.8125,5.25],[158.4375,5.25],[159.0625,5.25],[159.6875,5.25],[159.6875,4.75],[160.3125,4.75],[160.9375,4.75],[161.5625,4.75],[161.5625,4.25],[162.1875,4.25],[162.8125,4.25],[163.4375,4.25],[163.4375,4.75],[164.0625,4.75],[164.6875,4.75],[164.6875,5.25],[164.6875,5.75],[164.0625,5.75],[164.0625,6.25],[164.0625,6.75],[163.4375,6.75],[163.4375,7.25],[162.8125,7.25],[162.8125,7.75],[162.8125,8.25],[162.8125,8.75],[162.1875,8.75],[162.1875,9.25],[162.8125,9.25],[163.4375,9.25],[164.0625,9.25],[164.0625,8.75],[164.6875,8.75],[165.3125,8.75],[165.9375,8.75],[165.9375,8.25],[166.5625,8.25],[167.1875,8.25],[167.1875,7.75],[167.8125,7.75],[167.8125,7.25],[167.1875,7.25],[166.5625,7.25],[166.5625,6.75],[166.5625,6.25],[167.1875,6.25],[167.1875,6.75],[167.8125,6.75],[168.4375,6.75],[168.4375,6.25],[168.4375,5.75],[167.8125,5.75],[167.8125,5.25],[167.8125,4.75],[167.1875,4.75],[167.1875,4.25],[167.1875,3.75],[167.1875,3.25],[167.1875,2.75],[167.1875,2.25],[167.1875,1.75],[167.1875,1.25],[167.1875,0.75],[167.8125,0.75],[167.8125,0.25],[167.8125,-0.25000000000017975],[168.4375,-0.25000000000017975],[168.4375,-0.75],[168.4375,-1.25],[168.4375,-1.75],[167.8125,-1.75],[167.8125,-2.25],[167.8125,-2.75],[167.8125,-3.25],[167.8125,-3.75],[167.8125,-4.25],[168.4375,-4.25],[168.4375,-4.75],[168.4375,-5.25],[168.4375,-5.75],[169.0625,-5.75],[169.0625,-6.25],[169.0625,-6.75],[169.6875,-6.75],[169.6875,-7.25],[170.3125,-7.25],[170.3125,-7.75],[170.3125,-8.25],[170.3125,-8.75],[170.9375,-8.75],[171.5625,-8.75],[171.5625,-8.25],[170.9375,-8.25],[170.9375,-7.75],[171.5625,-7.75],[172.1875,-7.75],[172.8125,-7.75],[172.8125,-7.25],[172.8125,-6.75],[173.4375,-6.75],[173.4375,-6.25],[173.4375,-5.75],[173.4375,-5.25],[172.8125,-5.25],[172.8125,-4.75],[172.8125,-4.25],[172.1875,-4.25],[172.1875,-3.75],[172.1875,-3.25],[171.5625,-3.25],[171.5625,-2.75],[170.9375,-2.75],[170.9375,-2.25],[170.9375,-1.75],[170.3125,-1.75],[170.3125,-1.25],[170.3125,-0.75],[169.6875,-0.75],[169.6875,-0.25000000000017975],[169.6875,0.25],[169.0625,0.25],[169.0625,0.75],[168.4375,0.75],[168.4375,1.25],[169.0625,1.25],[169.0625,1.75],[169.6875,1.75],[169.6875,2.25],[170.3125,2.25],[170.3125,1.75],[170.9375,1.75],[170.9375,1.25],[171.5625,1.25],[171.5625,0.75],[172.1875,0.75],[172.1875,1.25],[172.1875,1.75],[172.1875,2.25],[172.8125,2.25],[172.8125,2.75],[173.4375,2.75],[173.4375,3.25],[174.0625,3.25],[174.6875,3.25],[174.6875,3.75],[175.3125,3.75],[175.3125,4.25],[175.9375,4.25],[175.9375,4.75],[175.9375,5.25],[175.9375,5.75],[176.5625,5.75],[177.1875,5.75],[177.8125,5.75],[177.8125,5.25],[178.4375,5.25],[179.0625,5.25],[179.0625,5.75],[179.6875,5.75],[179.6875,5.25],[-179.6875,5.25],[-179.6875,4.75],[-179.6875,4.25],[-179.6875,3.75],[-179.6875,3.25],[-179.6875,2.75],[-179.0625,2.75],[-178.4375,2.75],[-178.4375,2.25],[-178.4375,1.75],[-178.4375,1.25],[-177.8125,1.25],[-177.8125,1.75],[-177.1875,1.75],[-176.5625,1.75],[-176.5625,2.25],[-175.9375,2.25],[-175.3125,2.25],[-175.3125,2.75],[-174.6875,2.75],[-174.6875,3.25],[-174.6875,3.75],[-174.0625,3.75],[-174.0625,3.25],[-173.4375,3.25],[-173.4375,3.75],[-172.8125,3.75],[-172.1875,3.75],[-171.5625,3.75],[-170.9375,3.75],[-170.9375,3.25],[-170.3125,3.25],[-169.6875,3.25],[-169.0625,3.25],[-168.4375,3.25],[-167.8125,3.25],[-167.1875,3.25],[-166.5625,3.25],[-165.9375,3.25],[-165.9375,3.75],[-165.3125,3.75],[-164.6875,3.75],[-164.0625,3.75],[-163.4375,3.75],[-163.4375,4.25],[-162.8125,4.25],[-162.1875,4.25],[-162.1875,4.75],[-161.5625,4.75],[-161.5625,5.25],[-160.9375,5.25],[-160.3125,5.25],[-160.3125,5.75],[-159.6875,5.75],[-159.0625,5.75],[-158.4375,5.75],[-157.8125,5.75],[-157.1875,5.75],[-157.1875,6.25],[-156.5625,6.25],[-155.9375,6.25],[-155.3125,6.25],[-155.3125,5.75],[-154.6875,5.75],[-154.0625,5.75],[-154.0625,14.25]] + # splitA = [[-154.0625,5.75],[-153.4375,5.75],[-152.8125,5.75],[-152.1875,5.75],[-151.5625,5.75],[-150.9375,5.75],[-150.3125,5.75],[-149.6875,5.75],[-149.6875,6.25],[-149.0625,6.25],[-148.4375,6.25],[-147.8125,6.25],[-147.8125,5.75],[-147.8125,5.25],[-147.1875,5.25],[-146.5625,5.25],[-146.5625,4.75],[-146.5625,4.25],[-146.5625,3.75],[-145.9375,3.75],[-145.3125,3.75],[-145.3125,4.25],[-144.6875,4.25],[-144.0625,4.25],[-144.0625,4.75],[-143.4375,4.75],[-143.4375,5.25],[-142.8125,5.25],[-142.8125,4.75],[-142.1875,4.75],[-141.5625,4.75],[-140.9375,4.75],[-140.9375,5.25],[-140.3125,5.25],[-139.6875,5.25],[-139.6875,4.75],[-139.6875,4.25],[-139.0625,4.25],[-138.4375,4.25],[-138.4375,4.75],[-137.8125,4.75],[-137.8125,5.25],[-137.1875,5.25],[-137.1875,4.75],[-136.5625,4.75],[-136.5625,4.25],[-136.5625,3.75],[-136.5625,3.25],[-136.5625,2.75],[-136.5625,2.25],[-136.5625,1.75],[-135.9375,1.75],[-135.9375,1.25],[-135.3125,1.25],[-135.3125,0.75],[-135.3125,0.25],[-135.3125,-0.25000000000017975],[-135.3125,-0.75],[-134.6875,-0.75],[-134.6875,-1.25],[-135.3125,-1.25],[-135.3125,-1.75],[-135.3125,-2.25],[-135.3125,-2.75],[-135.3125,-3.25],[-134.6875,-3.25],[-134.6875,-3.75],[-134.0625,-3.75],[-134.0625,-4.25],[-133.4375,-4.25],[-132.8125,-4.25],[-132.1875,-4.25],[-132.1875,-4.75],[-131.5625,-4.75],[-131.5625,-5.25],[-130.9375,-5.25],[-130.9375,-5.75],[-130.3125,-5.75],[-130.3125,-6.25],[-130.3125,-6.75],[-129.6875,-6.75],[-129.0625,-6.75],[-129.0625,-7.25],[-128.4375,-7.25],[-127.8125,-7.25],[-127.8125,-6.75],[-127.8125,-6.25],[-127.1875,-6.25],[-126.5625,-6.25],[-126.5625,-5.75],[-125.9375,-5.75],[-125.9375,-6.25],[-125.3125,-6.25],[-124.6875,-6.25],[-124.0625,-6.25],[-124.0625,-6.75],[-123.4375,-6.75],[-122.8125,-6.75],[-122.8125,-7.25],[-122.1875,-7.25],[-121.5625,-7.25],[-121.5625,-6.75],[-121.5625,-6.25],[-120.9375,-6.25],[-120.9375,-5.75],[-120.9375,-5.25],[-120.9375,-4.75],[-120.9375,-4.25],[-120.9375,-3.75],[-120.9375,-3.25],[-120.9375,-2.75],[-120.9375,-2.25],[-121.5625,-2.25],[-121.5625,-1.75],[-122.1875,-1.75],[-122.1875,-1.25],[-122.1875,-0.75],[-122.1875,-0.25000000000017975],[-122.1875,0.25],[-121.5625,0.25],[-121.5625,0.75],[-120.9375,0.75],[-120.3125,0.75],[-120.3125,1.25],[-119.6875,1.25],[-119.6875,1.75],[-119.6875,2.25],[-119.0625,2.25],[-119.0625,2.75],[-118.4375,2.75],[-117.8125,2.75],[-117.1875,2.75],[-116.5625,2.75],[-115.9375,2.75],[-115.3125,2.75],[-115.3125,3.25],[-114.6875,3.25],[-114.6875,3.75],[-114.6875,4.25],[-115.3125,4.25],[-115.3125,4.75],[-115.3125,5.25],[-115.9375,5.25],[-115.9375,5.75],[-116.5625,5.75],[-116.5625,6.25],[-117.1875,6.25],[-117.8125,6.25],[-118.4375,6.25],[-118.4375,5.75],[-119.0625,5.75],[-119.6875,5.75],[-120.3125,5.75],[-120.9375,5.75],[-121.5625,5.75],[-122.1875,5.75],[-122.8125,5.75],[-122.8125,6.25],[-123.4375,6.25],[-124.0625,6.25],[-124.0625,6.75],[-124.6875,6.75],[-125.3125,6.75],[-125.3125,7.25],[-125.9375,7.25],[-125.9375,7.75],[-125.9375,8.25],[-125.9375,8.75],[-126.5625,8.75],[-126.5625,9.25],[-126.5625,9.75],[-126.5625,10.25],[-125.9375,10.25],[-125.9375,10.75],[-125.9375,11.25],[-125.3125,11.25],[-125.3125,11.75],[-124.6875,11.75],[-124.6875,12.25],[-124.0625,12.25],[-123.4375,12.25],[-122.8125,12.25],[-122.1875,12.25],[-122.1875,11.75],[-121.5625,11.75],[-120.9375,11.75],[-120.3125,11.75],[-120.3125,11.25],[-119.6875,11.25],[-119.0625,11.25],[-119.0625,10.75],[-118.4375,10.75],[-117.8125,10.75],[-117.8125,10.25],[-117.1875,10.25],[-116.5625,10.25],[-116.5625,9.75],[-115.9375,9.75],[-115.3125,9.75],[-114.6875,9.75],[-114.0625,9.75],[-113.4375,9.75],[-113.4375,9.25],[-112.8125,9.25],[-112.8125,8.75],[-112.1875,8.75],[-112.1875,8.25],[-111.5625,8.25],[-110.9375,8.25],[-110.9375,8.75],[-110.3125,8.75],[-109.6875,8.75],[-109.0625,8.75],[-109.0625,9.25],[-108.4375,9.25],[-107.8125,9.25],[-107.1875,9.25],[-106.5625,9.25],[-106.5625,8.75],[-105.9375,8.75],[-105.3125,8.75],[-105.3125,8.25],[-105.3125,7.75],[-104.6875,7.75],[-104.6875,7.25],[-104.0625,7.25],[-103.4375,7.25],[-102.8125,7.25],[-102.1875,7.25],[-101.5625,7.25],[-100.9375,7.25],[-100.9375,6.75],[-100.3125,6.75],[-99.6875,6.75],[-99.0625,6.75],[-98.4375,6.75],[-98.4375,7.25],[-97.8125,7.25],[-97.1875,7.25],[-96.5625,7.25],[-96.5625,7.75],[-95.9375,7.75],[-95.3125,7.75],[-94.6875,7.75],[-94.0625,7.75],[-94.0625,8.25],[-93.4375,8.25],[-92.8125,8.25],[-92.8125,8.75],[-92.1875,8.75],[-91.5625,8.75],[-91.5625,9.25],[-90.9375,9.25],[-90.9375,9.75],[-90.3125,9.75],[-89.6875,9.75],[-89.6875,10.25],[-89.0625,10.25],[-88.4375,10.25],[-88.4375,10.75],[-87.8125,10.75],[-87.8125,11.25],[-87.1875,11.25],[-87.1875,11.75],[-86.5625,11.75],[-86.5625,12.25],[-86.5625,12.75],[-86.5625,13.25],[-86.5625,13.75],[-85.9375,13.75],[-85.9375,13.25],[-85.3125,13.25],[-85.3125,12.75],[-84.6875,12.75],[-84.0625,12.75],[-84.0625,13.25],[-83.4375,13.25],[-82.8125,13.25],[-82.8125,12.75],[-82.1875,12.75],[-82.1875,12.25],[-81.5625,12.25],[-81.5625,11.75],[-80.9375,11.75],[-80.3125,11.75],[-80.3125,11.25],[-79.6875,11.25],[-79.0625,11.25],[-78.4375,11.25],[-77.8125,11.25],[-77.8125,10.75],[-77.1875,10.75],[-76.5625,10.75],[-75.9375,10.75],[-75.3125,10.75],[-75.3125,11.25],[-74.6875,11.25],[-74.0625,11.25],[-73.4375,11.25],[-72.8125,11.25],[-72.1875,11.25],[-72.1875,10.75],[-71.5625,10.75],[-70.9375,10.75],[-70.3125,10.75],[-69.6875,10.75],[-69.6875,11.25],[-69.0625,11.25],[-69.0625,10.75],[-68.4375,10.75],[-67.8125,10.75],[-67.1875,10.75],[-66.5625,10.75],[-65.9375,10.75],[-65.9375,10.25],[-65.3125,10.25],[-64.6875,10.25],[-64.6875,10.75],[-64.0625,10.75],[-64.0625,10.25],[-63.4375,10.25],[-63.4375,9.75],[-64.0625,9.75],[-64.6875,9.75],[-65.3125,9.75],[-65.9375,9.75],[-66.5625,9.75],[-66.5625,9.25],[-67.1875,9.25],[-67.8125,9.25],[-67.8125,8.75],[-67.8125,8.25],[-68.4375,8.25],[-68.4375,7.75],[-68.4375,7.25],[-69.0625,7.25],[-69.0625,6.75],[-69.0625,6.25],[-69.0625,5.75],[-68.4375,5.75],[-67.8125,5.75],[-67.8125,6.25],[-67.1875,6.25],[-66.5625,6.25],[-66.5625,6.75],[-66.5625,7.25],[-65.9375,7.25],[-65.9375,6.75],[-65.3125,6.75],[-64.6875,6.75],[-64.6875,6.25],[-64.6875,5.75],[-64.0625,5.75],[-63.4375,5.75],[-62.8125,5.75],[-62.8125,6.25],[-62.1875,6.25],[-61.5625,6.25],[-60.9375,6.25],[-60.3125,6.25],[-60.3125,5.75],[-59.6875,5.75],[-59.6875,5.25],[-59.6875,4.75],[-60.3125,4.75],[-60.9375,4.75],[-60.9375,4.25],[-61.5625,4.25],[-62.1875,4.25],[-62.1875,3.75],[-62.1875,3.25],[-62.1875,2.75],[-62.1875,2.25],[-62.1875,1.75],[-61.5625,1.75],[-61.5625,1.25],[-61.5625,0.75],[-61.5625,0.25],[-61.5625,-0.25000000000017975],[-61.5625,-0.75],[-61.5625,-1.25],[-62.1875,-1.25],[-62.1875,-1.75],[-61.5625,-1.75],[-60.9375,-1.75],[-60.9375,-1.25],[-60.3125,-1.25],[-59.6875,-1.25],[-59.6875,-1.75],[-59.6875,-2.25],[-59.6875,-2.75],[-60.3125,-2.75],[-60.9375,-2.75],[-60.9375,-2.25],[-61.5625,-2.25],[-61.5625,-2.75],[-62.1875,-2.75],[-62.1875,-3.25],[-61.5625,-3.25],[-61.5625,-3.75],[-61.5625,-4.25],[-62.1875,-4.25],[-62.1875,-4.75],[-61.5625,-4.75],[-61.5625,-5.25],[-61.5625,-5.75],[-60.9375,-5.75],[-60.9375,-6.25],[-60.9375,-6.75],[-60.9375,-7.25],[-60.9375,-7.75],[-61.5625,-7.75],[-61.5625,-8.25],[-61.5625,-8.75],[-62.1875,-8.75],[-62.1875,-9.25],[-62.1875,-9.75],[-61.5625,-9.75],[-61.5625,-10.25],[-60.9375,-10.25],[-60.9375,-10.75],[-60.9375,-11.25],[-60.3125,-11.25],[-59.6875,-11.25],[-59.6875,-10.75],[-59.6875,-10.25],[-59.6875,-9.75],[-59.6875,-9.25],[-59.6875,-8.75],[-59.6875,-8.25],[-59.0625,-8.25],[-58.4375,-8.25],[-58.4375,-7.75],[-57.8125,-7.75],[-57.8125,-7.25],[-57.1875,-7.25],[-57.1875,-6.75],[-57.1875,-6.25],[-56.5625,-6.25],[-56.5625,-5.75],[-55.9375,-5.75],[-55.9375,-5.25],[-55.3125,-5.25],[-54.6875,-5.25],[-54.0625,-5.25],[-54.0625,-5.75],[-54.6875,-5.75],[-54.6875,-6.25],[-54.6875,-6.75],[-54.0625,-6.75],[-54.0625,-7.25],[-54.0625,-7.75],[-54.6875,-7.75],[-54.6875,-8.25],[-55.3125,-8.25],[-55.3125,-8.75],[-55.3125,-9.25],[-55.9375,-9.25],[-55.9375,-9.75],[-55.9375,-10.25],[-55.9375,-10.75],[-56.5625,-10.75],[-56.5625,-11.25],[-55.9375,-11.25],[-55.3125,-11.25],[-55.3125,-10.75],[-54.6875,-10.75],[-54.6875,-10.25],[-54.6875,-9.75],[-54.0625,-9.75],[-54.0625,-9.25],[-53.4375,-9.25],[-53.4375,-8.75],[-53.4375,-8.25],[-53.4375,-7.75],[-53.4375,-7.25],[-53.4375,-6.75],[-53.4375,-6.25],[-53.4375,-5.75],[-53.4375,-5.25],[-53.4375,-4.75],[-52.8125,-4.75],[-52.1875,-4.75],[-52.1875,-5.25],[-51.5625,-5.25],[-51.5625,-5.75],[-50.9375,-5.75],[-50.9375,-6.25],[-50.9375,-6.75],[-50.9375,-7.25],[-50.3125,-7.25],[-50.3125,-7.75],[-50.3125,-8.25],[-50.3125,-8.75],[-49.6875,-8.75],[-49.0625,-8.75],[-49.0625,-8.25],[-48.4375,-8.25],[-47.8125,-8.25],[-47.1875,-8.25],[-47.1875,-7.75],[-46.5625,-7.75],[-45.9375,-7.75],[-45.3125,-7.75],[-45.3125,-8.25],[-44.6875,-8.25],[-44.0625,-8.25],[-43.4375,-8.25],[-42.8125,-8.25],[-42.1875,-8.25],[-41.5625,-8.25],[-41.5625,-8.75],[-40.9375,-8.75],[-40.3125,-8.75],[-40.3125,-8.25],[-40.3125,-7.75],[-40.9375,-7.75],[-40.9375,-7.25],[-41.5625,-7.25],[-41.5625,-6.75],[-40.9375,-6.75],[-40.9375,-6.25],[-40.3125,-6.25],[-40.3125,-6.75],[-39.6875,-6.75],[-39.0625,-6.75],[-38.4375,-6.75],[-38.4375,-6.25],[-38.4375,-5.75],[-37.8125,-5.75],[-37.1875,-5.75],[-37.1875,-6.25],[-37.1875,-6.75],[-36.5625,-6.75],[-35.9375,-6.75],[-35.9375,-7.25],[-35.9375,-7.75],[-35.3125,-7.75],[-35.3125,-8.25],[-34.6875,-8.25],[-34.6875,-8.75],[-34.6875,-9.25],[-35.3125,-9.25],[-35.9375,-9.25],[-35.9375,-9.75],[-36.5625,-9.75],[-36.5625,-9.25],[-37.1875,-9.25],[-37.8125,-9.25],[-38.4375,-9.25],[-38.4375,-9.75],[-37.8125,-9.75],[-37.8125,-10.25],[-38.4375,-10.25],[-38.4375,-10.75],[-37.8125,-10.75],[-37.8125,-11.25],[-37.8125,-11.75],[-37.8125,-12.25],[-37.1875,-12.25],[-37.1875,-12.75],[-37.1875,-13.25],[-36.5625,-13.25],[-36.5625,-13.75],[-36.5625,-14.25],[-36.5625,-14.75],[-35.9375,-14.75],[-35.9375,-15.25],[-35.9375,-15.75],[-35.9375,-16.25],[-35.9375,-16.75],[-35.3125,-16.75],[-35.3125,-17.25],[-34.6875,-17.25],[-34.6875,-17.75],[-34.6875,-18.25],[-34.0625,-18.25],[-34.0625,-18.75],[-34.0625,-19.25],[-34.0625,-19.75],[-33.4375,-19.75],[-33.4375,-20.25],[-33.4375,-20.75],[-32.8125,-20.75],[-32.8125,-21.25],[-32.1875,-21.25],[-31.5625,-21.25],[-30.9375,-21.25],[-30.3125,-21.25],[-29.6875,-21.25],[-29.0625,-21.25],[-28.4375,-21.25],[-27.8125,-21.25],[-27.1875,-21.25],[-26.5625,-21.25],[-25.9375,-21.25],[-25.9375,-20.75],[-25.3125,-20.75],[-25.3125,-20.25],[-25.3125,-19.75],[-25.3125,-19.25],[-24.6875,-19.25],[-24.6875,-18.75],[-24.0625,-18.75],[-23.4375,-18.75],[-23.4375,-18.25],[-22.8125,-18.25],[-22.1875,-18.25],[-22.1875,-17.75],[-21.5625,-17.75],[-20.9375,-17.75],[-20.3125,-17.75],[-20.3125,-17.25],[-20.3125,-16.75],[-19.6875,-16.75],[-19.0625,-16.75],[-19.0625,-17.25],[-18.4375,-17.25],[-17.8125,-17.25],[-17.8125,-16.75],[-17.1875,-16.75],[-17.1875,-16.25],[-17.1875,-15.75],[-16.5625,-15.75],[-16.5625,-15.25],[-15.9375,-15.25],[-15.3125,-15.25],[-14.6875,-15.25],[-14.0625,-15.25],[-14.0625,-14.75],[-14.0625,-14.25],[-13.4375,-14.25],[-12.8125,-14.25],[-12.8125,-13.75],[-12.1875,-13.75],[-11.5625,-13.75],[-11.5625,-13.25],[-10.9375,-13.25],[-10.3125,-13.25],[-10.3125,-12.75],[-9.6875,-12.75],[-9.0625,-12.75],[-9.0625,-12.25],[-8.4375,-12.25],[-7.8125,-12.25],[-7.1875,-12.25],[-7.1875,-11.75],[-6.5625,-11.75],[-5.9375,-11.75],[-5.9375,-11.25],[-5.3125,-11.25],[-5.3125,-10.75],[-4.6875,-10.75],[-4.6875,-10.25],[-4.0625,-10.25],[-4.0625,-9.75],[-3.4375,-9.75],[-2.8126,-9.75],[-2.8126,-4.25],[-3.4375,-4.25],[-4.0625,-4.25],[-4.0625,-3.75],[-4.6875,-3.75],[-5.3125,-3.75],[-5.9375,-3.75],[-6.5625,-3.75],[-7.1875,-3.75],[-7.8125,-3.75],[-7.8125,-4.25],[-8.4375,-4.25],[-9.0625,-4.25],[-9.6875,-4.25],[-10.3125,-4.25],[-10.3125,-3.75],[-10.9375,-3.75],[-11.5625,-3.75],[-12.1875,-3.75],[-12.1875,-4.25],[-12.8125,-4.25],[-13.4375,-4.25],[-13.4375,-3.75],[-14.0625,-3.75],[-14.6875,-3.75],[-15.3125,-3.75],[-15.3125,-4.25],[-15.9375,-4.25],[-16.5625,-4.25],[-17.1875,-4.25],[-17.8125,-4.25],[-18.4375,-4.25],[-18.4375,-4.75],[-19.0625,-4.75],[-19.6875,-4.75],[-19.6875,-5.25],[-20.3125,-5.25],[-20.9375,-5.25],[-21.5625,-5.25],[-22.1875,-5.25],[-22.1875,-4.75],[-22.1875,-4.25],[-22.1875,-3.75],[-22.1875,-3.25],[-21.5625,-3.25],[-21.5625,-2.75],[-21.5625,-2.25],[-21.5625,-1.75],[-21.5625,-1.25],[-22.1875,-1.25],[-22.8125,-1.25],[-22.8125,-0.75],[-23.4375,-0.75],[-24.0625,-0.75],[-24.0625,-0.25000000000017975],[-24.0625,0.25],[-24.6875,0.25],[-24.6875,0.75],[-24.6875,1.25],[-25.3125,1.25],[-25.9375,1.25],[-25.9375,1.75],[-26.5625,1.75],[-26.5625,1.25],[-27.1875,1.25],[-27.8125,1.25],[-27.8125,0.75],[-28.4375,0.75],[-28.4375,0.25],[-29.0625,0.25],[-29.0625,0.75],[-29.0625,1.25],[-29.0625,1.75],[-29.0625,2.25],[-29.6875,2.25],[-29.6875,2.75],[-30.3125,2.75],[-30.9375,2.75],[-31.5625,2.75],[-31.5625,3.25],[-32.1875,3.25],[-32.8125,3.25],[-33.4375,3.25],[-33.4375,3.75],[-33.4375,4.25],[-34.0625,4.25],[-34.0625,4.75],[-34.0625,5.25],[-34.0625,5.75],[-33.4375,5.75],[-33.4375,6.25],[-32.8125,6.25],[-32.8125,6.75],[-32.1875,6.75],[-32.1875,7.25],[-31.5625,7.25],[-30.9375,7.25],[-30.3125,7.25],[-29.6875,7.25],[-29.0625,7.25],[-29.0625,7.75],[-28.4375,7.75],[-27.8125,7.75],[-27.1875,7.75],[-26.5625,7.75],[-25.9375,7.75],[-25.9375,8.25],[-25.3125,8.25],[-24.6875,8.25],[-24.6875,7.75],[-25.3125,7.75],[-25.3125,7.25],[-24.6875,7.25],[-24.6875,6.75],[-24.6875,6.25],[-25.3125,6.25],[-25.3125,5.75],[-25.3125,5.25],[-24.6875,5.25],[-24.6875,4.75],[-24.6875,4.25],[-24.6875,3.75],[-24.6875,3.25],[-24.6875,2.75],[-24.0625,2.75],[-24.0625,2.25],[-23.4375,2.25],[-22.8125,2.25],[-22.8125,1.75],[-22.1875,1.75],[-21.5625,1.75],[-20.9375,1.75],[-20.9375,1.25],[-20.3125,1.25],[-19.6875,1.25],[-19.6875,0.75],[-19.6875,0.25],[-19.0625,0.25],[-19.0625,-0.25000000000017975],[-18.4375,-0.25000000000017975],[-18.4375,-0.75],[-17.8125,-0.75],[-17.8125,-1.25],[-17.1875,-1.25],[-16.5625,-1.25],[-15.9375,-1.25],[-15.9375,-0.75],[-15.3125,-0.75],[-14.6875,-0.75],[-14.0625,-0.75],[-13.4375,-0.75],[-13.4375,-0.25000000000017975],[-12.8125,-0.25000000000017975],[-12.1875,-0.25000000000017975],[-12.1875,0.25],[-11.5625,0.25],[-11.5625,0.75],[-11.5625,1.25],[-12.1875,1.25],[-12.1875,1.75],[-11.5625,1.75],[-11.5625,2.25],[-10.9375,2.25],[-10.9375,2.75],[-10.3125,2.75],[-9.6875,2.75],[-9.0625,2.75],[-9.0625,3.25],[-8.4375,3.25],[-8.4375,3.75],[-7.8125,3.75],[-7.8125,4.25],[-7.8125,4.75],[-7.8125,5.25],[-8.4375,5.25],[-8.4375,5.75],[-9.0625,5.75],[-9.6875,5.75],[-9.6875,6.25],[-9.6875,6.75],[-9.0625,6.75],[-9.0625,7.25],[-9.0625,7.75],[-9.6875,7.75],[-10.3125,7.75],[-10.9375,7.75],[-11.5625,7.75],[-12.1875,7.75],[-12.1875,7.25],[-12.1875,6.75],[-12.1875,6.25],[-11.5625,6.25],[-11.5625,5.75],[-12.1875,5.75],[-12.8125,5.75],[-12.8125,5.25],[-13.4375,5.25],[-13.4375,5.75],[-14.0625,5.75],[-14.6875,5.75],[-14.6875,6.25],[-15.3125,6.25],[-15.9375,6.25],[-15.9375,5.75],[-16.5625,5.75],[-17.1875,5.75],[-17.8125,5.75],[-17.8125,5.25],[-18.4375,5.25],[-19.0625,5.25],[-19.6875,5.25],[-19.6875,5.75],[-20.3125,5.75],[-20.9375,5.75],[-20.9375,6.25],[-21.5625,6.25],[-21.5625,6.75],[-21.5625,7.25],[-21.5625,7.75],[-20.9375,7.75],[-20.3125,7.75],[-20.3125,8.25],[-19.6875,8.25],[-19.6875,8.75],[-19.0625,8.75],[-18.4375,8.75],[-18.4375,9.25],[-18.4375,9.75],[-19.0625,9.75],[-19.0625,10.25],[-19.6875,10.25],[-20.3125,10.25],[-20.9375,10.25],[-20.9375,10.75],[-21.5625,10.75],[-21.5625,10.25],[-21.5625,9.75],[-22.1875,9.75],[-22.1875,9.25],[-22.8125,9.25],[-23.4375,9.25],[-23.4375,9.75],[-24.0625,9.75],[-24.0625,10.25],[-24.6875,10.25],[-24.6875,10.75],[-24.0625,10.75],[-24.0625,11.25],[-23.4375,11.25],[-23.4375,11.75],[-24.0625,11.75],[-24.6875,11.75],[-25.3125,11.75],[-25.3125,11.25],[-25.9375,11.25],[-26.5625,11.25],[-26.5625,10.75],[-27.1875,10.75],[-27.8125,10.75],[-28.4375,10.75],[-29.0625,10.75],[-29.6875,10.75],[-30.3125,10.75],[-30.9375,10.75],[-31.5625,10.75],[-32.1875,10.75],[-32.8125,10.75],[-33.4375,10.75],[-34.0625,10.75],[-34.0625,11.25],[-34.6875,11.25],[-35.3125,11.25],[-35.3125,11.75],[-35.9375,11.75],[-36.5625,11.75],[-36.5625,12.25],[-37.1875,12.25],[-37.8125,12.25],[-38.4375,12.25],[-38.4375,12.75],[-39.0625,12.75],[-39.6875,12.75],[-39.6875,13.25],[-39.6875,13.75],[-40.3125,13.75],[-40.3125,14.25],[-40.9375,14.25],[-41.5625,14.25],[-41.5625,14.75],[-42.1875,14.75],[-42.1875,15.25],[-42.8125,15.25],[-42.8125,15.75],[-43.4375,15.75],[-44.0625,15.75],[-44.0625,15.25],[-44.6875,15.25],[-44.6875,14.75],[-45.3125,14.75],[-45.3125,15.25],[-45.9375,15.25],[-46.5625,15.25],[-47.1875,15.25],[-47.1875,14.75],[-47.8125,14.75],[-48.4375,14.75],[-49.0625,14.75],[-49.0625,14.25],[-49.6875,14.25],[-50.3125,14.25],[-50.3125,13.75],[-50.9375,13.75],[-50.9375,13.25],[-51.5625,13.25],[-52.1875,13.25],[-52.8125,13.25],[-52.8125,13.75],[-53.4375,13.75],[-54.0625,13.75],[-54.6875,13.75],[-54.6875,13.25],[-55.3125,13.25],[-55.3125,12.75],[-55.9375,12.75],[-56.5625,12.75],[-57.1875,12.75],[-57.8125,12.75],[-57.8125,12.25],[-58.4375,12.25],[-59.0625,12.25],[-59.0625,11.75],[-59.6875,11.75],[-59.6875,11.25],[-60.3125,11.25],[-60.9375,11.25],[-61.5625,11.25],[-61.5625,11.75],[-62.1875,11.75],[-62.1875,12.25],[-62.8125,12.25],[-63.4375,12.25],[-64.0625,12.25],[-64.0625,11.75],[-64.6875,11.75],[-65.3125,11.75],[-65.9375,11.75],[-66.5625,11.75],[-66.5625,12.25],[-67.1875,12.25],[-67.8125,12.25],[-68.4375,12.25],[-69.0625,12.25],[-69.0625,12.75],[-69.0625,13.25],[-68.4375,13.25],[-67.8125,13.25],[-67.8125,13.75],[-67.1875,13.75],[-66.5625,13.75],[-66.5625,14.25],[-65.9375,14.25],[-65.3125,14.25],[-65.3125,14.75],[-64.6875,14.75],[-64.0625,14.75],[-64.0625,15.25],[-63.4375,15.25],[-63.4375,15.75],[-62.8125,15.75],[-62.8125,16.25],[-63.4375,16.25],[-64.0625,16.25],[-64.6875,16.25],[-64.6875,15.75],[-65.3125,15.75],[-65.9375,15.75],[-66.5625,15.75],[-67.1875,15.75],[-67.1875,16.25],[-67.8125,16.25],[-68.4375,16.25],[-69.0625,16.25],[-69.6875,16.25],[-70.3125,16.25],[-70.3125,16.75],[-70.9375,16.75],[-70.9375,17.25],[-70.9375,17.75],[-71.5625,17.75],[-72.1875,17.75],[-72.8125,17.75],[-73.4375,17.75],[-74.0625,17.75],[-74.0625,17.25],[-74.6875,17.25],[-74.6875,16.75],[-75.3125,16.75],[-75.3125,16.25],[-75.9375,16.25],[-76.5625,16.25],[-76.5625,16.75],[-77.1875,16.75],[-77.1875,17.25],[-77.8125,17.25],[-78.4375,17.25],[-79.0625,17.25],[-79.6875,17.25],[-80.3125,17.25],[-80.9375,17.25],[-80.9375,17.75],[-81.5625,17.75],[-82.1875,17.75],[-82.1875,18.25],[-82.8125,18.25],[-83.4375,18.25],[-83.4375,18.75],[-84.0625,18.75],[-84.6875,18.75],[-84.6875,19.25],[-84.6875,19.75],[-85.3125,19.75],[-85.3125,20.25],[-85.9375,20.25],[-85.9375,20.75],[-86.5625,20.75],[-87.1875,20.75],[-87.8125,20.75],[-87.8125,20.25],[-88.4375,20.25],[-88.4375,20.75],[-88.4375,21.25],[-88.4375,21.75],[-87.8125,21.75],[-87.8125,22.25],[-87.8125,22.75],[-87.1875,22.75],[-87.1875,23.25],[-87.8125,23.25],[-88.4375,23.25],[-88.4375,22.75],[-89.0625,22.75],[-89.6875,22.75],[-89.6875,22.25],[-90.3125,22.25],[-90.9375,22.25],[-91.5625,22.25],[-91.5625,21.75],[-92.1875,21.75],[-92.1875,22.25],[-92.8125,22.25],[-93.4375,22.25],[-94.0625,22.25],[-94.6875,22.25],[-94.6875,21.75],[-95.3125,21.75],[-95.9375,21.75],[-95.9375,21.25],[-96.5625,21.25],[-97.1875,21.25],[-97.1875,20.75],[-97.1875,20.25],[-97.1875,19.75],[-96.5625,19.75],[-96.5625,19.25],[-96.5625,18.75],[-97.1875,18.75],[-97.1875,18.25],[-97.8125,18.25],[-98.4375,18.25],[-99.0625,18.25],[-99.6875,18.25],[-99.6875,17.75],[-99.6875,17.25],[-100.3125,17.25],[-100.9375,17.25],[-100.9375,16.75],[-100.9375,16.25],[-100.9375,15.75],[-100.9375,15.25],[-100.9375,14.75],[-101.5625,14.75],[-102.1875,14.75],[-102.8125,14.75],[-102.8125,14.25],[-103.4375,14.25],[-104.0625,14.25],[-104.6875,14.25],[-104.6875,14.75],[-105.3125,14.75],[-105.3125,15.25],[-105.9375,15.25],[-106.5625,15.25],[-107.1875,15.25],[-107.8125,15.25],[-108.4375,15.25],[-109.0625,15.25],[-109.0625,14.75],[-109.6875,14.75],[-109.6875,14.25],[-110.3125,14.25],[-110.9375,14.25],[-110.9375,13.75],[-111.5625,13.75],[-111.5625,13.25],[-112.1875,13.25],[-112.8125,13.25],[-113.4375,13.25],[-113.4375,13.75],[-114.0625,13.75],[-114.6875,13.75],[-114.6875,14.25],[-115.3125,14.25],[-115.9375,14.25],[-116.5625,14.25],[-116.5625,14.75],[-117.1875,14.75],[-117.8125,14.75],[-117.8125,15.25],[-118.4375,15.25],[-119.0625,15.25],[-119.6875,15.25],[-120.3125,15.25],[-120.3125,15.75],[-120.9375,15.75],[-121.5625,15.75],[-122.1875,15.75],[-122.8125,15.75],[-123.4375,15.75],[-123.4375,16.25],[-124.0625,16.25],[-124.6875,16.25],[-125.3125,16.25],[-125.9375,16.25],[-126.5625,16.25],[-127.1875,16.25],[-127.1875,15.75],[-127.8125,15.75],[-128.4375,15.75],[-129.0625,15.75],[-129.0625,15.25],[-129.6875,15.25],[-129.6875,14.75],[-130.3125,14.75],[-130.9375,14.75],[-130.9375,14.25],[-131.5625,14.25],[-132.1875,14.25],[-132.8125,14.25],[-132.8125,13.75],[-133.4375,13.75],[-134.0625,13.75],[-134.0625,13.25],[-134.6875,13.25],[-135.3125,13.25],[-135.3125,13.75],[-135.9375,13.75],[-136.5625,13.75],[-137.1875,13.75],[-137.8125,13.75],[-138.4375,13.75],[-139.0625,13.75],[-139.6875,13.75],[-140.3125,13.75],[-140.9375,13.75],[-140.9375,14.25],[-141.5625,14.25],[-141.5625,13.75],[-142.1875,13.75],[-142.8125,13.75],[-143.4375,13.75],[-144.0625,13.75],[-144.6875,13.75],[-145.3125,13.75],[-145.3125,14.25],[-144.6875,14.25],[-144.6875,14.75],[-144.6875,15.25],[-144.6875,15.75],[-144.0625,15.75],[-144.0625,16.25],[-144.6875,16.25],[-145.3125,16.25],[-145.3125,15.75],[-145.9375,15.75],[-146.5625,15.75],[-147.1875,15.75],[-147.1875,16.25],[-147.8125,16.25],[-147.8125,16.75],[-148.4375,16.75],[-149.0625,16.75],[-149.6875,16.75],[-149.6875,16.25],[-150.3125,16.25],[-150.9375,16.25],[-151.5625,16.25],[-152.1875,16.25],[-152.8125,16.25],[-152.8125,15.75],[-152.8125,15.25],[-152.8125,14.75],[-152.8125,14.25],[-152.8125,13.75],[-153.4375,13.75],[-153.4375,14.25],[-154.0625,14.25],[-154.0625,5.75]] + # splitB = [[-2.8125,-4.25],[-3.4375,-4.25],[-4.0625,-4.25],[-4.0625,-3.75],[-4.6875,-3.75],[-5.3125,-3.75],[-5.9375,-3.75],[-6.5625,-3.75],[-7.1875,-3.75],[-7.8125,-3.75],[-7.8125,-4.25],[-8.4375,-4.25],[-9.0625,-4.25],[-9.6875,-4.25],[-10.3125,-4.25],[-10.3125,-3.75],[-10.9375,-3.75],[-11.5625,-3.75],[-12.1875,-3.75],[-12.1875,-4.25],[-12.8125,-4.25],[-13.4375,-4.25],[-13.4375,-3.75],[-14.0625,-3.75],[-14.6875,-3.75],[-15.3125,-3.75],[-15.3125,-4.25],[-15.9375,-4.25],[-16.5625,-4.25],[-17.1875,-4.25],[-17.8125,-4.25],[-18.4375,-4.25],[-18.4375,-4.75],[-19.0625,-4.75],[-19.6875,-4.75],[-19.6875,-5.25],[-20.3125,-5.25],[-20.9375,-5.25],[-21.5625,-5.25],[-22.1875,-5.25],[-22.1875,-4.75],[-22.1875,-4.25],[-22.1875,-3.75],[-22.1875,-3.25],[-21.5625,-3.25],[-21.5625,-2.75],[-21.5625,-2.25],[-21.5625,-1.75],[-21.5625,-1.25],[-22.1875,-1.25],[-22.8125,-1.25],[-22.8125,-0.75],[-23.4375,-0.75],[-24.0625,-0.75],[-24.0625,-0.25000000000017975],[-24.0625,0.25],[-24.6875,0.25],[-24.6875,0.75],[-24.6875,1.25],[-25.3125,1.25],[-25.9375,1.25],[-25.9375,1.75],[-26.5625,1.75],[-26.5625,1.25],[-27.1875,1.25],[-27.8125,1.25],[-27.8125,0.75],[-28.4375,0.75],[-28.4375,0.25],[-29.0625,0.25],[-29.0625,0.75],[-29.0625,1.25],[-29.0625,1.75],[-29.0625,2.25],[-29.6875,2.25],[-29.6875,2.75],[-30.3125,2.75],[-30.9375,2.75],[-31.5625,2.75],[-31.5625,3.25],[-32.1875,3.25],[-32.8125,3.25],[-33.4375,3.25],[-33.4375,3.75],[-33.4375,4.25],[-34.0625,4.25],[-34.0625,4.75],[-34.0625,5.25],[-34.0625,5.75],[-33.4375,5.75],[-33.4375,6.25],[-32.8125,6.25],[-32.8125,6.75],[-32.1875,6.75],[-32.1875,7.25],[-31.5625,7.25],[-30.9375,7.25],[-30.3125,7.25],[-29.6875,7.25],[-29.0625,7.25],[-29.0625,7.75],[-28.4375,7.75],[-27.8125,7.75],[-27.1875,7.75],[-26.5625,7.75],[-25.9375,7.75],[-25.9375,8.25],[-25.3125,8.25],[-24.6875,8.25],[-24.6875,7.75],[-25.3125,7.75],[-25.3125,7.25],[-24.6875,7.25],[-24.6875,6.75],[-24.6875,6.25],[-25.3125,6.25],[-25.3125,5.75],[-25.3125,5.25],[-24.6875,5.25],[-24.6875,4.75],[-24.6875,4.25],[-24.6875,3.75],[-24.6875,3.25],[-24.6875,2.75],[-24.0625,2.75],[-24.0625,2.25],[-23.4375,2.25],[-22.8125,2.25],[-22.8125,1.75],[-22.1875,1.75],[-21.5625,1.75],[-20.9375,1.75],[-20.9375,1.25],[-20.3125,1.25],[-19.6875,1.25],[-19.6875,0.75],[-19.6875,0.25],[-19.0625,0.25],[-19.0625,-0.25000000000017975],[-18.4375,-0.25000000000017975],[-18.4375,-0.75],[-17.8125,-0.75],[-17.8125,-1.25],[-17.1875,-1.25],[-16.5625,-1.25],[-15.9375,-1.25],[-15.9375,-0.75],[-15.3125,-0.75],[-14.6875,-0.75],[-14.0625,-0.75],[-13.4375,-0.75],[-13.4375,-0.25000000000017975],[-12.8125,-0.25000000000017975],[-12.1875,-0.25000000000017975],[-12.1875,0.25],[-11.5625,0.25],[-11.5625,0.75],[-11.5625,1.25],[-12.1875,1.25],[-12.1875,1.75],[-11.5625,1.75],[-11.5625,2.25],[-10.9375,2.25],[-10.9375,2.75],[-10.3125,2.75],[-9.6875,2.75],[-9.0625,2.75],[-9.0625,3.25],[-8.4375,3.25],[-8.4375,3.75],[-7.8125,3.75],[-7.8125,4.25],[-7.8125,4.75],[-7.8125,5.25],[-8.4375,5.25],[-8.4375,5.75],[-9.0625,5.75],[-9.6875,5.75],[-9.6875,6.25],[-9.6875,6.75],[-9.0625,6.75],[-9.0625,7.25],[-9.0625,7.75],[-9.6875,7.75],[-10.3125,7.75],[-10.9375,7.75],[-11.5625,7.75],[-12.1875,7.75],[-12.1875,7.25],[-12.1875,6.75],[-12.1875,6.25],[-11.5625,6.25],[-11.5625,5.75],[-12.1875,5.75],[-12.8125,5.75],[-12.8125,5.25],[-13.4375,5.25],[-13.4375,5.75],[-14.0625,5.75],[-14.6875,5.75],[-14.6875,6.25],[-15.3125,6.25],[-15.9375,6.25],[-15.9375,5.75],[-16.5625,5.75],[-17.1875,5.75],[-17.8125,5.75],[-17.8125,5.25],[-18.4375,5.25],[-19.0625,5.25],[-19.6875,5.25],[-19.6875,5.75],[-20.3125,5.75],[-20.9375,5.75],[-20.9375,6.25],[-21.5625,6.25],[-21.5625,6.75],[-21.5625,7.25],[-21.5625,7.75],[-20.9375,7.75],[-20.3125,7.75],[-20.3125,8.25],[-19.6875,8.25],[-19.6875,8.75],[-19.0625,8.75],[-18.4375,8.75],[-18.4375,9.25],[-18.4375,9.75],[-19.0625,9.75],[-19.0625,10.25],[-19.6875,10.25],[-20.3125,10.25],[-20.9375,10.25],[-20.9375,10.75],[-21.5625,10.75],[-21.5625,10.25],[-21.5625,9.75],[-22.1875,9.75],[-22.1875,9.25],[-22.8125,9.25],[-23.4375,9.25],[-23.4375,9.75],[-24.0625,9.75],[-24.0625,10.25],[-24.6875,10.25],[-24.6875,10.75],[-24.0625,10.75],[-24.0625,11.25],[-23.4375,11.25],[-23.4375,11.75],[-24.0625,11.75],[-24.6875,11.75],[-25.3125,11.75],[-25.3125,11.25],[-25.9375,11.25],[-26.5625,11.25],[-26.5625,10.75],[-27.1875,10.75],[-27.8125,10.75],[-28.4375,10.75],[-29.0625,10.75],[-29.6875,10.75],[-30.3125,10.75],[-30.9375,10.75],[-31.5625,10.75],[-32.1875,10.75],[-32.8125,10.75],[-33.4375,10.75],[-34.0625,10.75],[-34.0625,11.25],[-34.6875,11.25],[-35.3125,11.25],[-35.3125,11.75],[-35.9375,11.75],[-36.5625,11.75],[-36.5625,12.25],[-37.1875,12.25],[-37.8125,12.25],[-38.4375,12.25],[-38.4375,12.75],[-39.0625,12.75],[-39.6875,12.75],[-39.6875,13.25],[-39.6875,13.75],[-40.3125,13.75],[-40.3125,14.25],[-40.9375,14.25],[-41.5625,14.25],[-41.5625,14.75],[-42.1875,14.75],[-42.1875,15.25],[-42.8125,15.25],[-42.8125,15.75],[-43.4375,15.75],[-44.0625,15.75],[-44.0625,15.25],[-44.6875,15.25],[-44.6875,14.75],[-45.3125,14.75],[-45.3125,15.25],[-45.9375,15.25],[-46.5625,15.25],[-47.1875,15.25],[-47.1875,14.75],[-47.8125,14.75],[-48.4375,14.75],[-49.0625,14.75],[-49.0625,14.25],[-49.6875,14.25],[-50.3125,14.25],[-50.3125,13.75],[-50.9375,13.75],[-50.9375,13.25],[-51.5625,13.25],[-52.1875,13.25],[-52.8125,13.25],[-52.8125,13.75],[-53.4375,13.75],[-54.0625,13.75],[-54.6875,13.75],[-54.6875,13.25],[-55.3125,13.25],[-55.3125,12.75],[-55.9375,12.75],[-56.5625,12.75],[-57.1875,12.75],[-57.8125,12.75],[-57.8125,12.25],[-58.4375,12.25],[-59.0625,12.25],[-59.0625,11.75],[-59.6875,11.75],[-59.6875,11.25],[-60.3125,11.25],[-60.9375,11.25],[-61.5625,11.25],[-61.5625,11.75],[-62.1875,11.75],[-62.1875,12.25],[-62.8125,12.25],[-63.4375,12.25],[-64.0625,12.25],[-64.0625,11.75],[-64.6875,11.75],[-65.3125,11.75],[-65.9375,11.75],[-66.5625,11.75],[-66.5625,12.25],[-67.1875,12.25],[-67.8125,12.25],[-68.4375,12.25],[-69.0625,12.25],[-69.0625,12.75],[-69.0625,13.25],[-68.4375,13.25],[-67.8125,13.25],[-67.8125,13.75],[-67.1875,13.75],[-66.5625,13.75],[-66.5625,14.25],[-65.9375,14.25],[-65.3125,14.25],[-65.3125,14.75],[-64.6875,14.75],[-64.0625,14.75],[-64.0625,15.25],[-63.4375,15.25],[-63.4375,15.75],[-62.8125,15.75],[-62.8125,16.25],[-63.4375,16.25],[-64.0625,16.25],[-64.6875,16.25],[-64.6875,15.75],[-65.3125,15.75],[-65.9375,15.75],[-66.5625,15.75],[-67.1875,15.75],[-67.1875,16.25],[-67.8125,16.25],[-68.4375,16.25],[-69.0625,16.25],[-69.6875,16.25],[-70.3125,16.25],[-70.3125,16.75],[-70.9375,16.75],[-70.9375,17.25],[-70.9375,17.75],[-71.5625,17.75],[-72.1875,17.75],[-72.8125,17.75],[-73.4375,17.75],[-74.0625,17.75],[-74.0625,17.25],[-74.6875,17.25],[-74.6875,16.75],[-75.3125,16.75],[-75.3125,16.25],[-75.9375,16.25],[-76.5625,16.25],[-76.5625,16.75],[-77.1875,16.75],[-77.1875,17.25],[-77.8125,17.25],[-78.4375,17.25],[-79.0625,17.25],[-79.6875,17.25],[-80.3125,17.25],[-80.9375,17.25],[-80.9375,17.75],[-81.5625,17.75],[-82.1875,17.75],[-82.1875,18.25],[-82.8125,18.25],[-83.4375,18.25],[-83.4375,18.75],[-84.0625,18.75],[-84.6875,18.75],[-84.6875,19.25],[-84.6875,19.75],[-85.3125,19.75],[-85.3125,20.25],[-85.9375,20.25],[-85.9375,20.75],[-86.5625,20.75],[-87.1875,20.75],[-87.8125,20.75],[-87.8125,20.25],[-88.4375,20.25],[-88.4375,20.75],[-88.4375,21.25],[-88.4375,21.75],[-87.8125,21.75],[-87.8125,22.25],[-87.8125,22.75],[-87.1875,22.75],[-87.1875,23.25],[-87.8125,23.25],[-88.4375,23.25],[-88.4375,22.75],[-89.0625,22.75],[-89.6875,22.75],[-89.6875,22.25],[-90.3125,22.25],[-90.9375,22.25],[-91.5625,22.25],[-91.5625,21.75],[-92.1875,21.75],[-92.1875,22.25],[-92.8125,22.25],[-93.4375,22.25],[-94.0625,22.25],[-94.6875,22.25],[-94.6875,21.75],[-95.3125,21.75],[-95.9375,21.75],[-95.9375,21.25],[-96.5625,21.25],[-97.1875,21.25],[-97.1875,20.75],[-97.1875,20.25],[-97.1875,19.75],[-96.5625,19.75],[-96.5625,19.25],[-96.5625,18.75],[-97.1875,18.75],[-97.1875,18.25],[-97.8125,18.25],[-98.4375,18.25],[-99.0625,18.25],[-99.6875,18.25],[-99.6875,17.75],[-99.6875,17.25],[-100.3125,17.25],[-100.9375,17.25],[-100.9375,16.75],[-100.9375,16.25],[-100.9375,15.75],[-100.9375,15.25],[-100.9375,14.75],[-101.5625,14.75],[-102.1875,14.75],[-102.8125,14.75],[-102.8125,14.25],[-103.4375,14.25],[-104.0625,14.25],[-104.6875,14.25],[-104.6875,14.75],[-105.3125,14.75],[-105.3125,15.25],[-105.9375,15.25],[-106.5625,15.25],[-107.1875,15.25],[-107.8125,15.25],[-108.4375,15.25],[-109.0625,15.25],[-109.0625,14.75],[-109.6875,14.75],[-109.6875,14.25],[-110.3125,14.25],[-110.9375,14.25],[-110.9375,13.75],[-111.5625,13.75],[-111.5625,13.25],[-112.1875,13.25],[-112.8125,13.25],[-113.4375,13.25],[-113.4375,13.75],[-114.0625,13.75],[-114.6875,13.75],[-114.6875,14.25],[-115.3125,14.25],[-115.9375,14.25],[-116.5625,14.25],[-116.5625,14.75],[-117.1875,14.75],[-117.8125,14.75],[-117.8125,15.25],[-118.4375,15.25],[-119.0625,15.25],[-119.6875,15.25],[-120.3125,15.25],[-120.3125,15.75],[-120.9375,15.75],[-121.5625,15.75],[-122.1875,15.75],[-122.8125,15.75],[-123.4375,15.75],[-123.4375,16.25],[-124.0625,16.25],[-124.6875,16.25],[-125.3125,16.25],[-125.9375,16.25],[-126.5625,16.25],[-127.1875,16.25],[-127.1875,15.75],[-127.8125,15.75],[-128.4375,15.75],[-129.0625,15.75],[-129.0625,15.25],[-129.6875,15.25],[-129.6875,14.75],[-130.3125,14.75],[-130.9375,14.75],[-130.9375,14.25],[-131.5625,14.25],[-132.1875,14.25],[-132.8125,14.25],[-132.8125,13.75],[-133.4375,13.75],[-134.0625,13.75],[-134.0625,13.25],[-134.6875,13.25],[-135.3125,13.25],[-135.3125,13.75],[-135.9375,13.75],[-136.5625,13.75],[-137.1875,13.75],[-137.8125,13.75],[-138.4375,13.75],[-139.0625,13.75],[-139.6875,13.75],[-140.3125,13.75],[-140.9375,13.75],[-140.9375,14.25],[-141.5625,14.25],[-141.5625,13.75],[-142.1875,13.75],[-142.8125,13.75],[-143.4375,13.75],[-144.0625,13.75],[-144.6875,13.75],[-145.3125,13.75],[-145.3125,14.25],[-144.6875,14.25],[-144.6875,14.75],[-144.6875,15.25],[-144.6875,15.75],[-144.0625,15.75],[-144.0625,16.25],[-144.6875,16.25],[-145.3125,16.25],[-145.3125,15.75],[-145.9375,15.75],[-146.5625,15.75],[-147.1875,15.75],[-147.1875,16.25],[-147.8125,16.25],[-147.8125,16.75],[-148.4375,16.75],[-149.0625,16.75],[-149.6875,16.75],[-149.6875,16.25],[-150.3125,16.25],[-150.9375,16.25],[-151.5625,16.25],[-152.1875,16.25],[-152.8125,16.25],[-152.8125,15.75],[-152.8125,15.25],[-152.8125,14.75],[-152.8125,14.25],[-152.8125,13.75],[-153.4375,13.75],[-153.4375,14.25],[-154.0626,14.25],[-154.0626,14.25],[-154.6875,14.25],[-155.3125,14.25],[-155.3125,14.75],[-155.9375,14.75],[-156.5625,14.75],[-156.5625,15.25],[-157.1875,15.25],[-157.8125,15.25],[-157.8125,15.75],[-158.4375,15.75],[-159.0625,15.75],[-159.6875,15.75],[-159.6875,15.25],[-160.3125,15.25],[-160.3125,14.75],[-160.9375,14.75],[-160.9375,14.25],[-160.9375,13.75],[-161.5625,13.75],[-161.5625,13.25],[-161.5625,12.75],[-162.1875,12.75],[-162.1875,12.25],[-162.8125,12.25],[-162.8125,11.75],[-163.4375,11.75],[-164.0625,11.75],[-164.6875,11.75],[-164.6875,12.25],[-165.3125,12.25],[-165.3125,12.75],[-165.9375,12.75],[-166.5625,12.75],[-167.1875,12.75],[-167.8125,12.75],[-167.8125,13.25],[-168.4375,13.25],[-168.4375,13.75],[-168.4375,14.25],[-167.8125,14.25],[-167.1875,14.25],[-167.1875,14.75],[-166.5625,14.75],[-166.5625,15.25],[-166.5625,15.75],[-167.1875,15.75],[-167.8125,15.75],[-168.4375,15.75],[-169.0625,15.75],[-169.6875,15.75],[-170.3125,15.75],[-170.3125,16.25],[-170.9375,16.25],[-171.5625,16.25],[-171.5625,16.75],[-171.5625,17.25],[-171.5625,17.75],[-172.1875,17.75],[-172.1875,18.25],[-172.8125,18.25],[-173.4375,18.25],[-174.0625,18.25],[-174.6875,18.25],[-175.3125,18.25],[-175.9375,18.25],[-176.5625,18.25],[-177.1875,18.25],[-177.8125,18.25],[-178.4375,18.25],[-179.0625,18.25],[-179.6875,18.25],[-179.6875,18.75],[-179.0625,18.75],[-179.0625,19.25],[-178.4375,19.25],[-177.8125,19.25],[-177.1875,19.25],[-177.1875,19.75],[-176.5625,19.75],[-175.9375,19.75],[-175.9375,20.25],[-175.3125,20.25],[-175.3125,20.75],[-175.9375,20.75],[-176.5625,20.75],[-177.1875,20.75],[-177.8125,20.75],[-178.4375,20.75],[-179.0625,20.75],[-179.6875,20.75],[179.6875,20.75],[179.0625,20.75],[178.4375,20.75],[178.4375,20.25],[177.8125,20.25],[177.1875,20.25],[176.5625,20.25],[176.5625,20.75],[175.9375,20.75],[175.3125,20.75],[174.6875,20.75],[174.0625,20.75],[173.4375,20.75],[172.8125,20.75],[172.8125,21.25],[172.1875,21.25],[171.5625,21.25],[170.9375,21.25],[170.9375,21.75],[170.3125,21.75],[169.6875,21.75],[169.0625,21.75],[168.4375,21.75],[167.8125,21.75],[167.8125,21.25],[167.1875,21.25],[166.5625,21.25],[166.5625,20.75],[165.9375,20.75],[165.9375,20.25],[165.3125,20.25],[164.6875,20.25],[164.0625,20.25],[163.4375,20.25],[162.8125,20.25],[162.8125,20.75],[162.1875,20.75],[162.1875,21.25],[161.5625,21.25],[160.9375,21.25],[160.3125,21.25],[160.3125,21.75],[159.6875,21.75],[159.0625,21.75],[158.4375,21.75],[157.8125,21.75],[157.1875,21.75],[156.5625,21.75],[156.5625,22.25],[155.9375,22.25],[155.3125,22.25],[155.3125,22.75],[154.6875,22.75],[154.6875,23.25],[154.0625,23.25],[153.4375,23.25],[153.4375,23.75],[152.8125,23.75],[152.8125,24.25],[152.1875,24.25],[152.1875,24.75],[151.5625,24.75],[151.5625,25.25],[150.9375,25.25],[150.9375,25.75],[150.3125,25.75],[149.6875,25.75],[149.6875,26.25],[149.0625,26.25],[148.4375,26.25],[147.8125,26.25],[147.8125,25.75],[147.1875,25.75],[146.5625,25.75],[145.9375,25.75],[145.9375,25.25],[145.3125,25.25],[144.6875,25.25],[144.6875,24.75],[144.0625,24.75],[144.0625,24.25],[143.4375,24.25],[142.8125,24.25],[142.8125,24.75],[142.1875,24.75],[142.1875,24.25],[141.5625,24.25],[140.9375,24.25],[140.9375,23.75],[140.3125,23.75],[140.3125,23.25],[139.6875,23.25],[139.0625,23.25],[139.0625,22.75],[139.0625,22.25],[138.4375,22.25],[138.4375,21.75],[138.4375,21.25],[137.8125,21.25],[137.8125,20.75],[137.8125,20.25],[137.8125,19.75],[137.1875,19.75],[137.1875,19.25],[136.5625,19.25],[135.9375,19.25],[135.9375,18.75],[135.3125,18.75],[134.6875,18.75],[134.6875,18.25],[134.0625,18.25],[134.0625,17.75],[133.4375,17.75],[133.4375,17.25],[132.8125,17.25],[132.8125,16.75],[132.1875,16.75],[132.1875,16.25],[131.5625,16.25],[131.5625,15.75],[130.9375,15.75],[130.3125,15.75],[129.6875,15.75],[129.6875,15.25],[129.0625,15.25],[128.4375,15.25],[128.4375,15.75],[128.4375,16.25],[129.0625,16.25],[129.0625,16.75],[129.0625,17.25],[129.0625,17.75],[129.0625,18.25],[129.6875,18.25],[129.6875,18.75],[130.3125,18.75],[130.3125,19.25],[130.9375,19.25],[130.9375,19.75],[130.3125,19.75],[129.6875,19.75],[129.0625,19.75],[128.4375,19.75],[127.8125,19.75],[127.8125,19.25],[127.1875,19.25],[126.5625,19.25],[125.9375,19.25],[125.9375,18.75],[125.3125,18.75],[124.6875,18.75],[124.6875,18.25],[124.0625,18.25],[123.4375,18.25],[123.4375,17.75],[122.8125,17.75],[122.1875,17.75],[122.1875,17.25],[121.5625,17.25],[121.5625,16.75],[121.5625,16.25],[120.9375,16.25],[120.9375,15.75],[120.3125,15.75],[119.6875,15.75],[119.6875,15.25],[119.0625,15.25],[118.4375,15.25],[117.8125,15.25],[117.8125,15.75],[117.1875,15.75],[116.5625,15.75],[115.9375,15.75],[115.9375,16.25],[115.9375,16.75],[115.3125,16.75],[114.6875,16.75],[114.0625,16.75],[113.4375,16.75],[112.8125,16.75],[112.1875,16.75],[111.5625,16.75],[111.5625,16.25],[110.9375,16.25],[110.9375,15.75],[110.3125,15.75],[109.6875,15.75],[109.6875,15.25],[109.6875,14.75],[109.0625,14.75],[109.0625,14.25],[108.4375,14.25],[108.4375,13.75],[107.8125,13.75],[107.1875,13.75],[107.1875,13.25],[106.5625,13.25],[106.5625,12.75],[105.9375,12.75],[105.9375,12.25],[106.5625,12.25],[107.1875,12.25],[107.8125,12.25],[108.4375,12.25],[108.4375,11.75],[107.8125,11.75],[107.8125,11.25],[107.1875,11.25],[106.5625,11.25],[106.5625,10.75],[105.9375,10.75],[105.3125,10.75],[104.6875,10.75],[104.6875,11.25],[104.6875,11.75],[104.6875,12.25],[104.0625,12.25],[104.0625,11.75],[103.4375,11.75],[102.8125,11.75],[102.8125,11.25],[102.8125,10.75],[102.8125,10.25],[102.1875,10.25],[101.5625,10.25],[100.9375,10.25],[100.9375,10.75],[100.3125,10.75],[100.3125,11.25],[99.6875,11.25],[99.0625,11.25],[98.4375,11.25],[97.8125,11.25],[97.1875,11.25],[96.5625,11.25],[95.9375,11.25],[95.3125,11.25],[94.6875,11.25],[94.0625,11.25],[94.0625,11.75],[93.4375,11.75],[92.8125,11.75],[92.8125,12.25],[92.1875,12.25],[92.1875,12.75],[91.5625,12.75],[91.5625,13.25],[90.9375,13.25],[90.9375,13.75],[90.3125,13.75],[90.3125,14.25],[89.6875,14.25],[89.6875,14.75],[89.0625,14.75],[88.4375,14.75],[88.4375,15.25],[87.8125,15.25],[87.8125,15.75],[87.1875,15.75],[87.1875,16.25],[86.5625,16.25],[86.5625,16.75],[85.9375,16.75],[85.3125,16.75],[84.6875,16.75],[84.0625,16.75],[83.4375,16.75],[83.4375,17.25],[82.8125,17.25],[82.1875,17.25],[82.1875,16.75],[81.5625,16.75],[80.9375,16.75],[80.3125,16.75],[79.6875,16.75],[79.6875,16.25],[79.0625,16.25],[78.4375,16.25],[78.4375,15.75],[77.8125,15.75],[77.8125,15.25],[77.1875,15.25],[77.1875,14.75],[76.5625,14.75],[76.5625,14.25],[76.5625,13.75],[76.5625,13.25],[76.5625,12.75],[76.5625,12.25],[77.1875,12.25],[77.8125,12.25],[77.8125,11.75],[77.8125,11.25],[78.4375,11.25],[78.4375,10.75],[78.4375,10.25],[78.4375,9.75],[78.4375,9.25],[78.4375,8.75],[79.0625,8.75],[79.0625,8.25],[79.0625,7.75],[79.6875,7.75],[79.6875,7.25],[80.3125,7.25],[80.3125,6.75],[80.9375,6.75],[80.9375,6.25],[80.9375,5.75],[81.5625,5.75],[81.5625,5.25],[80.9375,5.25],[80.9375,4.75],[80.9375,4.25],[81.5625,4.25],[81.5625,3.75],[80.9375,3.75],[80.9375,3.25],[80.9375,2.75],[80.9375,2.25],[80.3125,2.25],[80.3125,1.75],[79.6875,1.75],[79.6875,2.25],[79.0625,2.25],[79.0625,1.75],[78.4375,1.75],[78.4375,1.25],[77.8125,1.25],[77.8125,0.75],[77.1875,0.75],[77.1875,0.25],[76.5625,0.25],[76.5625,-0.25000000000017975],[75.9375,-0.25000000000017975],[75.9375,-0.75],[75.9375,-1.25],[75.9375,-1.75],[75.3125,-1.75],[75.3125,-2.25],[75.3125,-2.75],[75.3125,-3.25],[75.3125,-3.75],[75.3125,-4.25],[75.9375,-4.25],[76.5625,-4.25],[76.5625,-4.75],[77.1875,-4.75],[77.1875,-5.25],[77.1875,-5.75],[77.8125,-5.75],[77.8125,-6.25],[78.4375,-6.25],[78.4375,-6.75],[78.4375,-7.25],[78.4375,-7.75],[77.8125,-7.75],[77.8125,-8.25],[77.8125,-8.75],[77.8125,-9.25],[77.8125,-9.75],[77.8125,-10.25],[77.1875,-10.25],[77.1875,-10.75],[77.1875,-11.25],[76.5625,-11.25],[76.5625,-10.75],[76.5625,-10.25],[75.9375,-10.25],[75.3125,-10.25],[74.6875,-10.25],[74.0625,-10.25],[74.0625,-9.75],[73.4375,-9.75],[73.4375,-9.25],[72.8125,-9.25],[72.1875,-9.25],[71.5625,-9.25],[70.9375,-9.25],[70.9375,-9.75],[70.3125,-9.75],[69.6875,-9.75],[69.0625,-9.75],[68.4375,-9.75],[68.4375,-9.25],[67.8125,-9.25],[67.1875,-9.25],[67.1875,-8.75],[66.5625,-8.75],[66.5625,-8.25],[65.9375,-8.25],[65.3125,-8.25],[65.3125,-7.75],[64.6875,-7.75],[64.0625,-7.75],[64.0625,-7.25],[63.4375,-7.25],[62.8125,-7.25],[62.8125,-6.75],[62.1875,-6.75],[62.1875,-6.25],[61.5625,-6.25],[61.5625,-5.75],[60.9375,-5.75],[60.9375,-5.25],[60.3125,-5.25],[59.6875,-5.25],[59.0625,-5.25],[58.4375,-5.25],[57.8125,-5.25],[57.8125,-5.75],[57.1875,-5.75],[57.1875,-6.25],[57.1875,-6.75],[56.5625,-6.75],[55.9375,-6.75],[55.9375,-7.25],[55.3125,-7.25],[54.6875,-7.25],[54.6875,-6.75],[54.0625,-6.75],[54.0625,-6.25],[54.0625,-5.75],[53.4375,-5.75],[52.8125,-5.75],[52.1875,-5.75],[52.1875,-5.25],[52.1875,-4.75],[51.5625,-4.75],[51.5625,-4.25],[50.9375,-4.25],[50.3125,-4.25],[49.6875,-4.25],[49.0625,-4.25],[48.4375,-4.25],[47.8125,-4.25],[47.1875,-4.25],[47.1875,-3.75],[46.5625,-3.75],[45.9375,-3.75],[45.3125,-3.75],[45.3125,-3.25],[45.3125,-2.75],[44.6875,-2.75],[44.6875,-2.25],[44.0625,-2.25],[44.0625,-1.75],[43.4375,-1.75],[42.8125,-1.75],[42.8125,-1.25],[42.1875,-1.25],[42.1875,-0.75],[41.5625,-0.75],[40.9375,-0.75],[40.3125,-0.75],[40.3125,-0.25000000000017975],[40.3125,0.25],[39.6875,0.25],[39.6875,0.75],[39.6875,1.25],[39.0625,1.25],[39.0625,1.75],[39.0625,2.25],[39.0625,2.75],[38.4375,2.75],[38.4375,3.25],[38.4375,3.75],[37.8125,3.75],[37.8125,4.25],[37.1875,4.25],[37.1875,4.75],[37.8125,4.75],[37.8125,5.25],[37.1875,5.25],[37.1875,5.75],[37.1875,6.25],[36.5625,6.25],[35.9375,6.25],[35.3125,6.25],[35.3125,6.75],[35.3125,7.25],[34.6875,7.25],[34.0625,7.25],[33.4375,7.25],[32.8125,7.25],[32.8125,7.75],[32.8125,8.25],[32.8125,8.75],[32.1875,8.75],[31.5625,8.75],[31.5625,9.25],[30.9375,9.25],[30.3125,9.25],[29.6875,9.25],[29.0625,9.25],[28.4375,9.25],[27.8125,9.25],[27.8125,8.75],[27.1875,8.75],[26.5625,8.75],[25.9375,8.75],[25.3125,8.75],[25.3125,9.25],[24.6875,9.25],[24.0625,9.25],[23.4375,9.25],[23.4375,8.75],[22.8125,8.75],[22.8125,9.25],[22.1875,9.25],[21.5625,9.25],[21.5625,9.75],[20.9375,9.75],[20.3125,9.75],[20.3125,9.25],[19.6875,9.25],[19.0625,9.25],[19.0625,8.75],[18.4375,8.75],[17.8125,8.75],[17.8125,8.25],[17.1875,8.25],[17.1875,7.75],[16.5625,7.75],[16.5625,7.25],[15.9375,7.25],[15.3125,7.25],[15.3125,6.75],[14.6875,6.75],[14.0625,6.75],[13.4375,6.75],[12.8125,6.75],[12.8125,7.25],[12.1875,7.25],[11.5625,7.25],[10.9375,7.25],[10.3125,7.25],[10.3125,6.75],[9.6875,6.75],[9.0625,6.75],[8.4375,6.75],[7.8125,6.75],[7.1875,6.75],[6.5625,6.75],[5.9375,6.75],[5.3125,6.75],[5.3125,7.25],[4.6875,7.25],[4.0625,7.25],[3.4375,7.25],[2.8125,7.25],[2.8125,6.75],[2.1875,6.75],[1.5625,6.75],[1.5625,6.25],[0.9375,6.25],[0.3125,6.25],[-0.312500000000592,6.25],[-0.312500000000592,5.75],[-0.9375,5.75],[-0.9375,5.25],[-0.9375,4.75],[-0.312500000000592,4.75],[0.3125,4.75],[0.3125,4.25],[0.9375,4.25],[1.5625,4.25],[2.1875,4.25],[2.8125,4.25],[2.8125,4.75],[3.4375,4.75],[4.0625,4.75],[4.6875,4.75],[5.3125,4.75],[5.9375,4.75],[6.5625,4.75],[7.1875,4.75],[7.1875,5.25],[7.8125,5.25],[7.8125,5.75],[8.4375,5.75],[9.0625,5.75],[9.0625,5.25],[9.6875,5.25],[9.6875,4.75],[9.6875,4.25],[9.0625,4.25],[9.0625,3.75],[8.4375,3.75],[8.4375,3.25],[8.4375,2.75],[7.8125,2.75],[7.8125,2.25],[7.8125,1.75],[7.8125,1.25],[8.4375,1.25],[9.0625,1.25],[9.0625,1.75],[9.6875,1.75],[10.3125,1.75],[10.3125,2.25],[10.9375,2.25],[11.5625,2.25],[11.5625,2.75],[12.1875,2.75],[12.8125,2.75],[12.8125,2.25],[12.1875,2.25],[12.1875,1.75],[12.1875,1.25],[12.8125,1.25],[12.8125,0.75],[13.4375,0.75],[14.0625,0.75],[14.6875,0.75],[15.3125,0.75],[15.9375,0.75],[16.5625,0.75],[16.5625,1.25],[17.1875,1.25],[17.8125,1.25],[18.4375,1.25],[18.4375,0.75],[17.8125,0.75],[17.8125,0.25],[17.8125,-0.25000000000017975],[18.4375,-0.25000000000017975],[19.0625,-0.25000000000017975],[19.6875,-0.25000000000017975],[19.6875,-0.75],[20.3125,-0.75],[20.9375,-0.75],[21.5625,-0.75],[21.5625,-0.25000000000017975],[22.1875,-0.25000000000017975],[22.1875,-0.75],[22.8125,-0.75],[23.4375,-0.75],[23.4375,-1.25],[24.0625,-1.25],[24.0625,-0.75],[24.6875,-0.75],[25.3125,-0.75],[25.3125,-0.25000000000017975],[25.9375,-0.25000000000017975],[25.9375,0.25],[25.9375,0.75],[26.5625,0.75],[26.5625,1.25],[27.1875,1.25],[27.8125,1.25],[27.8125,1.75],[28.4375,1.75],[28.4375,2.25],[28.4375,2.75],[28.4375,3.25],[29.0625,3.25],[29.6875,3.25],[30.3125,3.25],[30.3125,3.75],[30.9375,3.75],[30.9375,4.25],[31.5625,4.25],[32.1875,4.25],[32.8125,4.25],[33.4375,4.25],[33.4375,3.75],[34.0625,3.75],[34.0625,3.25],[34.6875,3.25],[34.6875,2.75],[35.3125,2.75],[35.3125,2.25],[35.9375,2.25],[35.9375,1.75],[36.5625,1.75],[37.1875,1.75],[37.1875,1.25],[37.1875,0.75],[37.8125,0.75],[37.8125,0.25],[38.4375,0.25],[38.4375,-0.25000000000017975],[38.4375,-0.75],[38.4375,-1.25],[38.4375,-1.75],[38.4375,-2.25],[37.8125,-2.25],[37.1875,-2.25],[37.1875,-2.75],[37.8125,-2.75],[37.8125,-3.25],[37.1875,-3.25],[36.5625,-3.25],[35.9375,-3.25],[35.9375,-3.75],[35.9375,-4.25],[35.9375,-4.75],[35.3125,-4.75],[34.6875,-4.75],[34.0625,-4.75],[33.4375,-4.75],[32.8125,-4.75],[32.8125,-4.25],[33.4375,-4.25],[33.4375,-3.75],[34.0625,-3.75],[34.0625,-3.25],[33.4375,-3.25],[32.8125,-3.25],[32.8125,-3.75],[32.1875,-3.75],[32.1875,-4.25],[31.5625,-4.25],[31.5625,-3.75],[31.5625,-3.25],[30.9375,-3.25],[30.9375,-2.75],[30.3125,-2.75],[29.6875,-2.75],[29.0625,-2.75],[29.0625,-3.25],[29.0625,-3.75],[28.4375,-3.75],[27.8125,-3.75],[27.1875,-3.75],[27.1875,-4.25],[27.1875,-4.75],[27.1875,-5.25],[26.5625,-5.25],[26.5625,-4.75],[26.5625,-4.25],[25.9375,-4.25],[25.9375,-3.75],[25.9375,-3.25],[25.3125,-3.25],[24.6875,-3.25],[24.0625,-3.25],[24.0625,-3.75],[23.4375,-3.75],[23.4375,-4.25],[24.0625,-4.25],[24.0625,-4.75],[23.4375,-4.75],[23.4375,-5.25],[23.4375,-5.75],[22.8125,-5.75],[22.8125,-6.25],[22.1875,-6.25],[21.5625,-6.25],[20.9375,-6.25],[20.3125,-6.25],[19.6875,-6.25],[19.0625,-6.25],[18.4375,-6.25],[18.4375,-5.75],[18.4375,-5.25],[18.4375,-4.75],[17.8125,-4.75],[17.1875,-4.75],[16.5625,-4.75],[15.9375,-4.75],[15.3125,-4.75],[14.6875,-4.75],[14.0625,-4.75],[13.4375,-4.75],[13.4375,-4.25],[12.8125,-4.25],[12.1875,-4.25],[12.1875,-3.75],[11.5625,-3.75],[10.9375,-3.75],[10.9375,-4.25],[10.3125,-4.25],[10.3125,-3.75],[9.6875,-3.75],[9.0625,-3.75],[9.0625,-3.25],[8.4375,-3.25],[7.8125,-3.25],[7.1875,-3.25],[6.5625,-3.25],[6.5625,-3.75],[5.9375,-3.75],[5.9375,-4.25],[5.3125,-4.25],[4.6875,-4.25],[4.0625,-4.25],[3.4375,-4.25],[2.8125,-4.25],[2.1875,-4.25],[2.1875,-4.75],[1.5625,-4.75],[0.9375,-4.75],[0.9375,-4.25],[0.3125,-4.25],[-0.312500000000592,-4.25],[-0.9375,-4.25],[-1.5625,-4.25],[-2.1875,-4.25],[-2.8125,-4.25]] + # # ring 1 2 fails + # #AR = {'_id': '2004.011.05.09.0_11', 'timestamp': datetime.datetime(2004, 11, 5, 9, 0), 'basins': [1, 2, 3, 56, -1], 'flags': ['holes', 'dateline', 'annulus'], 'raster': [], 'geolocation': {'type': 'MultiPolygon', 'coordinates': [[ring1, ring2]]}, 'metadata': ['ar']} + # # ring 1 passes + # #AR = {'_id': '2004.011.05.09.0_11_ring1', 'timestamp': datetime.datetime(2004, 11, 5, 9, 0), 'basins': [1, 2, 3, 56, -1], 'flags': ['holes', 'dateline', 'annulus'], 'raster': [], 'geolocation': {'type': 'MultiPolygon', 'coordinates': [[ring1]]}, 'metadata': ['ar']} + # # ring 2 passes + # #AR = {'_id': '2004.011.05.09.0_11_ring2', 'timestamp': datetime.datetime(2004, 11, 5, 9, 0), 'basins': [1, 2, 3, 56, -1], 'flags': ['holes', 'dateline', 'annulus'], 'raster': [], 'geolocation': {'type': 'MultiPolygon', 'coordinates': [[ring2]]}, 'metadata': ['ar']} + # # ring 1rev passes + # #AR = {'_id': '2004.011.05.09.0_11_ring1rev', 'timestamp': datetime.datetime(2004, 11, 5, 9, 0), 'basins': [1, 2, 3, 56, -1], 'flags': ['holes', 'dateline', 'annulus'], 'raster': [], 'geolocation': {'type': 'MultiPolygon', 'coordinates': [[ring1rev]]}, 'metadata': ['ar']} + # # ring 2rev passes + # #AR = {'_id': '2004.011.05.09.0_11_ring2rev', 'timestamp': datetime.datetime(2004, 11, 5, 9, 0), 'basins': [1, 2, 3, 56, -1], 'flags': ['holes', 'dateline', 'annulus'], 'raster': [], 'geolocation': {'type': 'MultiPolygon', 'coordinates': [[ring2]]}, 'metadata': ['ar']} + # # ring 2 1 fails + # #AR = {'_id': '2004.011.05.09.0_11', 'timestamp': datetime.datetime(2004, 11, 5, 9, 0), 'basins': [1, 2, 3, 56, -1], 'flags': ['holes', 'dateline', 'annulus'], 'raster': [], 'geolocation': {'type': 'MultiPolygon', 'coordinates': [[ring2, ring1]]}, 'metadata': ['ar']} + # # ring 2reverse 1 fails + # #AR = {'_id': '2004.011.05.09.0_11', 'timestamp': datetime.datetime(2004, 11, 5, 9, 0), 'basins': [1, 2, 3, 56, -1], 'flags': ['holes', 'dateline', 'annulus'], 'raster': [], 'geolocation': {'type': 'MultiPolygon', 'coordinates': [[ring2rev, ring1]]}, 'metadata': ['ar']} + # # globe alone passes + # #AR = {'_id': '2004.011.05.09.0_11', 'timestamp': datetime.datetime(2004, 11, 5, 9, 0), 'basins': [1, 2, 3, 56, -1], 'flags': ['holes', 'dateline', 'annulus'], 'raster': [], 'geolocation': {'type': 'MultiPolygon', 'coordinates': [[globe]]}, 'metadata': ['ar']} + # # globe ring 2 1 fails + # #AR = {'_id': '2004.011.05.09.0_11', 'timestamp': datetime.datetime(2004, 11, 5, 9, 0), 'basins': [1, 2, 3, 56, -1], 'flags': ['holes', 'dateline', 'annulus'], 'raster': [], 'geolocation': {'type': 'MultiPolygon', 'coordinates': [[globe,ring2, ring1]]}, 'metadata': ['ar']} + # # loop with artificial seam fails + # #AR = {'_id': '2004.011.05.09.0_11', 'timestamp': datetime.datetime(2004, 11, 5, 9, 0), 'basins': [1, 2, 3, 56, -1], 'flags': ['holes', 'dateline', 'annulus'], 'raster': [], 'geolocation': {'type': 'MultiPolygon', 'coordinates': [[artificial_seam]]}, 'metadata': ['ar']} + # # split blob, passes with either but not both + # AR = {'_id': '2004.011.05.09.0_11', 'timestamp': datetime.datetime(2004, 11, 5, 9, 0), 'basins': [1, 2, 3, 56, -1], 'flags': ['holes', 'dateline', 'annulus'], 'raster': [], 'geolocation': {'type': 'MultiPolygon', 'coordinates': [[splitA],[splitB]]}, 'metadata': ['ar']} + try: db.ar.insert_one(AR) @@ -180,4 +202,4 @@ def add_noise(mp): print(f'unable to write AR {AR["_id"]}') - \ No newline at end of file +