Skip to content

Instantly share code, notes, and snippets.

@PardhavMaradani
Last active August 2, 2020 16:48
Show Gist options
  • Save PardhavMaradani/80f9960cb5d26858d625a4c6aa0869ef to your computer and use it in GitHub Desktop.
Save PardhavMaradani/80f9960cb5d26858d625a4c6aa0869ef to your computer and use it in GitHub Desktop.
Blog: Interactive Mandalas
# https://pardhav-m.blogspot.com/2020/07/interactive-mandalas.html
# https://trinket.io/embed/python/91d2965689
# Interactive Mandalas
# Mandala Creator
import json
import math
import turtle
from slider import Slider
from line_clip import cohensutherland
# global vars
g_sectors = 8
g_pensize = 1
g_mirror = 0
g_show_sectors = 1
g_color = 'black'
g_colors = ["black", "dark grey", "cornflower blue", "deep sky blue", "dark turquoise", "aquamarine", "medium sea green", "khaki", "sienna", "firebrick", "coral", "red", "crimson", "hot pink", "dark orchid", "medium slate blue"]
g_show_save = False
# screen setup
g_screen = turtle.Screen()
g_wh = int(g_screen.window_height())
g_ww = int(1.5 * g_wh)
g_screen_radius = g_wh / 2
g_screen.setup(g_ww, g_wh)
g_screen.tracer(0)
g_center = [g_ww / 6, 0]
g_minx = -g_ww / 6
g_maxx = g_ww / 2
g_miny = -g_wh / 2
g_maxy = g_wh / 2
# internal
g_undo_available = True
g_clicked = False
g_dragging = False
g_points = []
g_state = {}
[g_px, g_py] = [None, None]
g_prev_ct = None
g_save_data = []
# new turtle
def new_turtle():
t = turtle.Turtle()
t.ht()
t.speed(0)
return t
# sector turtle
st = new_turtle()
st.color('lightgray')
# undo turtle
ut = new_turtle()
# main drawing turtles
dt1 = new_turtle() # primary
dt2 = new_turtle() # secondary
# draw a border
def draw_border():
t = new_turtle()
t.pu()
t.goto(-g_ww/2, g_miny)
t.pd()
t.goto(g_ww/2, g_miny)
t.goto(g_ww/2, g_maxy)
t.goto(-g_ww/2, g_maxy)
t.goto(-g_ww/2, g_miny)
# partition
t.color('gray')
t.pu()
t.goto(g_minx, g_miny)
t.pd()
t.goto(g_minx, g_maxy)
t.update()
# handle slider updates
def handle_slider_update(id, value):
global g_sectors
global g_pensize
global g_mirror
global g_show_sectors
if id == 0:
g_sectors = value
draw_sectors()
elif id == 1:
g_pensize = value
elif id == 2:
g_mirror = value
elif id == 3:
g_show_sectors = value
draw_sectors()
# Color button class
class ColorButton(turtle.Turtle):
def __init__(self, x, y, color, click_callback = None):
turtle.Turtle.__init__(self)
self.shape('circle')
self.speed(0)
self.my_color = color
self.click_callback = click_callback
self.color(color)
self.pu()
self.goto(x, y)
self.left(90)
self.onclick(self.onclick_handler)
self.update()
# handle button click
def onclick_handler(self, x, y):
if self.click_callback:
self.click_callback(self, self.my_color)
self.shape('turtle')
self.update()
# color button click handler
def handle_color_click(ct, color):
global g_color
global g_prev_ct
g_prev_ct.shape('circle')
g_prev_ct.update()
g_color = color
g_prev_ct = ct
# set undo button state
def set_undo_state(available):
global g_undo_available
color = 'black' if available else 'lightgray'
ut.color(color)
g_undo_available = available
ut.update()
# handle undo button click
def handle_undo(x, y):
global g_points
g_points = []
dt2.clear()
dt2.update()
set_undo_state(False)
# setup undo button
def setup_undo_button(x, y):
ut.shape('circle')
ut.pu()
ut.goto(x + 20, y - 4)
ut.write('Undo', font=("Arial", 10, "normal"))
ut.goto(x, y)
ut.onclick(handle_undo)
ut.st()
set_undo_state(False)
# clear button click handler
def handle_clear(x, y):
global g_save_data
global g_points
g_points = []
g_save_data = []
dt1.clear()
dt1.update()
dt2.clear()
dt2.update()
set_undo_state(False)
# save button click handler
def handle_save(x, y):
if len(g_points) == 0:
return
g_save_data.append([g_state, g_points])
file = open("data.txt", "a")
ds = json.dumps(str(g_save_data))[1:-1]
ds = ds.replace('\'', '"') + '\n'
file.write(ds)
file.close()
# simple button
def setup_button(x, y, name, handler):
t = new_turtle()
t.shape('circle')
t.pu()
t.goto(x + 20, y - 4)
t.write(name, font=("Arial", 10, "normal"))
t.goto(x, y)
t.onclick(handler)
t.st()
# create UI
def create_ui():
global g_prev_ct
x = -g_ww / 2 + 20
y = g_wh / 2 - 20
normal_length = g_screen_radius * 0.55
toggle_length = g_screen_radius * 0.15
# sliders
Slider(0, x, y, normal_length, 1, 32, 1, g_sectors, 'sectors', handle_slider_update)
Slider(1, x, y - 30, normal_length, 1, 16, 1, g_pensize, 'pensize', handle_slider_update)
Slider(2, x, y - 60, toggle_length, 0, 1, 1, g_mirror, 'mirror', handle_slider_update)
Slider(3, x, y - 90, toggle_length, 0, 1, 1, g_show_sectors, 'show_sectors', handle_slider_update)
# color buttons
ci = 0
for r in range(2):
cx = x
cy = y - (150 + (30 * r))
for c in range(8):
color = g_colors[ci]
cb = ColorButton(cx + (c * 25), cy, color, handle_color_click)
if ci == 0:
cb.shape('turtle')
g_prev_ct = cb
ci += 1
# undo, clear and save buttons
setup_undo_button(x, y - 240)
setup_button(x, y - 270, 'Clear', handle_clear)
if g_show_save:
setup_button(x, y - 300, 'Save', handle_save)
# draw sectors
def draw_sectors():
st.clear()
if g_show_sectors == 0:
return
sector_angle = 360 / g_sectors
cx, cy = g_center
for i in range(g_sectors):
st.pu()
st.goto(cx, cy)
st.seth(sector_angle * (i + 1))
st.fd(g_ww)
(x, y) = st.pos()
(nx1, ny1, nx2, ny2) = cohensutherland(g_minx, g_maxy, g_maxx, g_miny, cx, cy, x, y)
if nx1 != None:
st.goto(nx1, ny1)
st.pd()
st.goto(nx2, ny2)
st.update()
# rotate point
def rotate_point(x, y, angle):
cx, cy = g_center
x -= cx
y -= cy
sin = math.sin(math.radians(angle))
cos = math.cos(math.radians(angle))
rx = cx + (x * cos - y * sin)
ry = cy + (x * sin + y * cos)
return (rx, ry)
# angle of point wrt center
def point_angle(x, y):
cx, cy = g_center
return math.degrees(math.atan2(y - cy, x - cx))
# draw line between two points
def draw_line(t, px, py, x, y, angle):
(rpx, rpy) = rotate_point(px, py, angle)
(rx, ry) = rotate_point(x, y, angle)
if rpx < g_minx or rx < g_minx:
return
t.pu()
t.goto(rpx, rpy)
t.pd()
t.goto(rx, ry)
# draw line segment
def draw_segment(t, px, py, x, y):
sector_angle = 360 / g_state["sectors"]
h_sector_angle = sector_angle / 2
for i in range(g_state["sectors"]):
draw_line(t, px, py, x, y, sector_angle * i)
if g_state["mirror"] == 1:
pa = point_angle(px, py) % sector_angle
pma = h_sector_angle - pa
(rpx, rpy) = rotate_point(px, py, 2 * pma)
a = point_angle(x, y) % sector_angle
ma = h_sector_angle - a
(rx, ry) = rotate_point(x, y, 2 * ma)
if abs(pma - ma) > h_sector_angle:
continue
draw_line(t, rpx, rpy, rx, ry, sector_angle * i)
# update primary turtle
def update_dt1():
dt1.pensize(g_state["pensize"])
dt1.color(g_state["color"])
(px, py) = g_points[0]
for v in g_points:
x, y = v
draw_segment(dt1, px, py, x, y)
px, py = x, y
dt1.update()
if g_show_save:
g_save_data.append([g_state, g_points])
# click handler
def handle_click(x, y):
global g_points
global g_state
global g_clicked
global g_px
global g_py
if g_clicked:
return
if len(g_points) > 0:
update_dt1()
g_clicked = True
g_dragging = False
g_state = {
"sectors": g_sectors,
"pensize": g_pensize,
"mirror": g_mirror,
"color": g_color,
"center": g_center,
"radius": g_screen_radius
}
g_points = []
g_points.append([x, y])
(g_px, g_py) = (x, y)
dt2.reset()
dt2.ht()
dt2.pensize(g_pensize)
dt2.color(g_color)
dt2.pu()
dt2.goto(x, y)
dt2.pd()
set_undo_state(False)
dt2.update()
# drag handler
def handle_drag(x, y):
global g_dragging
global g_px
global g_py
if g_dragging or not g_clicked:
return
g_dragging = True
g_points.append([x, y])
draw_segment(dt2, g_px, g_py, x, y)
dt2.update()
(g_px, g_py) = x, y
g_dragging = False
# release handler
def handle_release(x, y):
global g_clicked
g_clicked = False
g_dragging = False
set_undo_state(True)
# setup screen turtle to capture click/drag/release
def setup_screen_turtle():
s = g_screen_radius
g_screen.register_shape('st', ((-s, -s), (s, -s), (s, s), (-s, s)))
t = new_turtle()
t.shape('st')
t.pu()
t.goto(g_center)
t.onclick(handle_click)
t.ondrag(handle_drag)
t.onrelease(handle_release)
t.update()
# setup
def setup():
draw_border()
create_ui()
draw_sectors()
setup_screen_turtle()
# main
setup()
import turtle
# register square thumb shape
thumb_size = 7
screen = turtle.Screen()
screen.register_shape('thumb', ((-thumb_size, -thumb_size), (thumb_size, -thumb_size), (thumb_size, thumb_size), (-thumb_size, thumb_size)))
# Slider Class
class Slider(turtle.Turtle):
def __init__(self, id, x, y, length, min, max, step, initial_value, label, callback):
turtle.Turtle.__init__(self)
self.shape('thumb')
self.speed(0)
self.id = id
self.x = x
self.y = y
self.length = length
self.min = min
self.step = step
self.label = label
self.callback = callback
self.clicked = False
self.dragging = False
self.steps = (max - min) / step
# draw slider line
self.pu()
self.goto(x, y)
self.pd()
self.fd(length)
# turtle to write label text and value
self.lt = turtle.Turtle()
self.lt.speed(0)
self.lt.pu()
self.lt.goto(self.pos())
self.lt.fd(20)
self.lt.right(90)
self.lt.fd(thumb_size/2)
self.lt.ht()
# move thumb to initial position
self.bk(length)
initial_length = length * ((initial_value - min) / (max - min))
self.fd(initial_length)
self.value = initial_value
# update label
self.update_label()
# register mouse handlers
self.onclick(self.onclick_handler)
self.onrelease(self.onrelease_handler)
self.ondrag(self.ondrag_handler)
# write label text and value
def update_label(self):
self.lt.clear()
self.lt.write(self.label + ' = ' + str(self.value), font=("Arial", 10, "normal"))
self.update()
# get value based on slider position
def get_value(self, x):
unit_value = (x - self.x) / self.length
v1 = unit_value * self.steps * self.step
v1 = int(v1 / self.step) * self.step
return self.min + v1
# onclick handler
def onclick_handler(self, x, y):
self.clicked = True
# onrelease handler
def onrelease_handler(self, x, y):
self.clicked = False
# ondrag handler
def ondrag_handler(self, x, y):
if not self.clicked:
return
if self.dragging:
return
# stop drag if mouse moves away in y direction
if abs(y - self.y) > 20:
self.clicked = False
self.dragging = False
self.callback(self.id, self.value)
return
self.dragging = True
# limit drag within the slider
if x < self.x:
x = self.x
if x > self.x + self.length:
x = self.x + self.length
# move thumb to new position
self.goto(x, self.y)
new_value = self.get_value(x)
# call the callback function if value changes
if new_value != self.value:
self.value = new_value
self.update_label()
self.callback(self.id, self.value)
self.update()
self.dragging = False
# Source: https://github.com/scivision/lineclipping-python-fortran/blob/master/pylineclip/__init__.py
'''
The MIT License (MIT)
Copyright (c) 2014 Michael Hirsch
reference: http://en.wikipedia.org/wiki/Cohen%E2%80%93Sutherland_algorithm
* The best way to Numba JIT this would probably be in the function calling this,
to include the loop itself inside the jit decoration.
'''
def cohensutherland(xmin, ymax, xmax, ymin, x1, y1, x2, y2):
"""Clips a line to a rectangular area.
This implements the Cohen-Sutherland line clipping algorithm. xmin,
ymax, xmax and ymin denote the clipping area, into which the line
defined by x1, y1 (start point) and x2, y2 (end point) will be
clipped.
If the line does not intersect with the rectangular clipping area,
four None values will be returned as tuple. Otherwise a tuple of the
clipped line points will be returned in the form (cx1, cy1, cx2, cy2).
"""
INSIDE, LEFT, RIGHT, LOWER, UPPER = 0, 1, 2, 4, 8
def _getclip(xa, ya):
# if dbglvl>1: print('point: '),; print(xa,ya)
p = INSIDE # default is inside
# consider x
if xa < xmin:
p |= LEFT
elif xa > xmax:
p |= RIGHT
# consider y
if ya < ymin:
p |= LOWER # bitwise OR
elif ya > ymax:
p |= UPPER # bitwise OR
return p
# check for trivially outside lines
k1 = _getclip(x1, y1)
k2 = _getclip(x2, y2)
# %% examine non-trivially outside points
# bitwise OR |
while (k1 | k2) != 0: # if both points are inside box (0000) , ACCEPT trivial whole line in box
# if line trivially outside window, REJECT
if (k1 & k2) != 0: # bitwise AND &
# if dbglvl>1: print(' REJECT trivially outside box')
# return nan, nan, nan, nan
return None, None, None, None
# non-trivial case, at least one point outside window
# this is not a bitwise or, it's the word "or"
opt = k1 or k2 # take first non-zero point, short circuit logic
if opt & UPPER: # these are bitwise ANDS
x = x1 + (x2 - x1) * (ymax - y1) / (y2 - y1)
y = ymax
elif opt & LOWER:
x = x1 + (x2 - x1) * (ymin - y1) / (y2 - y1)
y = ymin
elif opt & RIGHT:
y = y1 + (y2 - y1) * (xmax - x1) / (x2 - x1)
x = xmax
elif opt & LEFT:
y = y1 + (y2 - y1) * (xmin - x1) / (x2 - x1)
x = xmin
else:
raise RuntimeError('Undefined clipping state')
if opt == k1:
x1, y1 = x, y
k1 = _getclip(x1, y1)
elif opt == k2:
x2, y2 = x, y
k2 = _getclip(x2, y2)
return x1, y1, x2, y2
# https://pardhav-m.blogspot.com/2020/07/interactive-mandalas.html
# https://trinket.io/embed/python/62211b93ee
# Interactive Mandalas
# Mandala Player
import json
import math
import turtle
import time
# screen setup
g_screen = turtle.Screen()
g_wh = int(g_screen.window_height())
g_ww = int(1.5 * g_wh)
g_screen_radius = g_wh / 2
g_screen.setup(g_ww, g_wh)
g_screen.tracer(0)
g_center = (0, 0)
# new turtle
def new_turtle():
t = turtle.Turtle()
t.ht()
t.speed(0)
return t
# main drawing turtle
t = new_turtle()
# draw a border
def draw_border():
t = new_turtle()
t.pu()
t.goto(-g_ww/2, -g_wh / 2)
t.pd()
t.goto(g_ww/2, -g_wh / 2)
t.goto(g_ww/2, g_wh / 2)
t.goto(-g_ww/2, g_wh / 2)
t.goto(-g_ww/2, -g_wh / 2)
t.update()
# rotate point
def rotate_point(x, y, angle):
cx, cy = g_center
x -= cx
y -= cy
sin = math.sin(math.radians(angle))
cos = math.cos(math.radians(angle))
rx = cx + (x * cos - y * sin)
ry = cy + (x * sin + y * cos)
return (rx, ry)
# angle of point wrt center
def point_angle(x, y):
cx, cy = g_center
return math.degrees(math.atan2(y - cy, x - cx))
# draw line between two points
def draw_line(t, px, py, x, y, angle):
(rpx, rpy) = rotate_point(px, py, angle)
(rx, ry) = rotate_point(x, y, angle)
t.pu()
t.goto(rpx, rpy)
t.pd()
t.goto(rx, ry)
# draw line segment
def draw_segment(t, px, py, x, y, sectors, mirror):
sector_angle = 360 / sectors
h_sector_angle = sector_angle / 2
for i in range(sectors):
draw_line(t, px, py, x, y, sector_angle * i)
if mirror == 1:
pa = point_angle(px, py) % sector_angle
pma = h_sector_angle - pa
(rpx, rpy) = rotate_point(px, py, 2 * pma)
a = point_angle(x, y) % sector_angle
ma = h_sector_angle - a
(rx, ry) = rotate_point(x, y, 2 * ma)
if abs(pma - ma) > h_sector_angle:
continue
draw_line(t, rpx, rpy, rx, ry, sector_angle * i)
# draw
def draw(path):
state, points = path
pensize = state["pensize"]
color = state["color"]
sectors = state["sectors"]
mirror = state["mirror"]
t.pensize(pensize)
t.color(color)
(px, py) = points[0]
for v in points:
x, y = v
draw_segment(t, px, py, x, y, sectors, mirror)
px, py = x, y
# time.sleep(0.01)
t.update()
# map points to our window size
def map_points(points, center, radius):
output = []
cx, cy = center
my_cx, my_cy = g_center
for point in points:
x, y = point
nx = (x - cx) / radius
ny = (y - cy) / radius
my_x = (nx * g_screen_radius) + my_cx
my_y = (ny * g_screen_radius) + my_cy
output.append([my_x, my_y])
return output
# display mandalas in a loop
def play():
global g_state
global g_points
# read from data file
file = open("data.txt", "r")
lines = file.readlines()
file.close()
# convert to this screen coordinates
mandalas = []
for line in lines:
if len(line) < 2 or line[0:1] == '#':
continue
paths = json.loads(line)
my_paths = []
for path in paths:
state, points = path
points = map_points(points, state["center"], state["radius"])
my_paths.append([state, points])
mandalas.append(my_paths)
# draw all mandalas in a loop
while True:
for mandala in mandalas:
for path in mandala:
draw(path)
time.sleep(1)
t.clear()
# main
draw_border()
play()
# comment
[[{"color": "red", "pensize": 1, "sectors": 32, "mirror": 1, "center": [133.166666667, 0], "radius": 266.5}, [[-19.5, 230.5], [-18.5, 229.5], [-17.5, 225.5], [-16.5, 221.5], [-15.5, 219.5], [-14.5, 216.5], [-13.5, 212.5], [-13.5, 209.5], [-12.5, 206.5], [-12.5, 203.5], [-11.5, 199.5], [-11.5, 195.5], [-11.5, 192.5], [-11.5, 189.5], [-11.5, 186.5], [-12.5, 181.5], [-12.5, 179.5], [-13.5, 173.5], [-13.5, 169.5], [-14.5, 165.5], [-14.5, 162.5], [-14.5, 159.5], [-15.5, 157.5], [-15.5, 155.5], [-16.5, 153.5], [-16.5, 151.5], [-16.5, 150.5], [-16.5, 149.5], [-16.5, 149.5], [-16.5, 147.5], [-17.5, 145.5], [-18.5, 143.5], [-18.5, 141.5], [-19.5, 140.5], [-19.5, 139.5], [-19.5, 138.5], [-19.5, 138.5], [-19.5, 137.5], [-19.5, 137.5], [-19.5, 136.5], [-19.5, 136.5], [-19.5, 134.5], [-19.5, 132.5], [-19.5, 133.5], [-18.5, 133.5], [-18.5, 134.5], [-17.5, 134.5], [-17.5, 134.5], [-17.5, 134.5], [-17.5, 134.5], [-17.5, 135.5], [-16.5, 135.5], [-16.5, 135.5], [-16.5, 136.5], [-15.5, 136.5], [-15.5, 136.5], [-14.5, 136.5], [-13.5, 136.5], [-12.5, 136.5], [-11.5, 136.5], [-10.5, 136.5], [-6.5, 136.5], [-4.5, 136.5], [-2.5, 136.5], [0.5, 135.5], [2.5, 135.5], [6.5, 134.5], [7.5, 134.5], [7.5, 134.5], [12.5, 133.5], [14.5, 132.5], [17.5, 131.5], [19.5, 131.5], [23.5, 131.5], [30.5, 130.5], [33.5, 130.5], [36.5, 129.5], [41.5, 129.5], [44.5, 128.5], [48.5, 128.5], [50.5, 128.5], [51.5, 128.5], [51.5, 128.5], [52.5, 128.5], [53.5, 128.5], [54.5, 128.5], [54.5, 128.5], [55.5, 128.5], [56.5, 128.5], [55.5, 128.5], [55.5, 127.5], [55.5, 127.5], [54.5, 127.5], [54.5, 127.5], [53.5, 126.5], [53.5, 125.5], [53.5, 125.5], [53.5, 124.5], [52.5, 123.5], [51.5, 122.5], [51.5, 121.5], [51.5, 120.5], [51.5, 119.5], [51.5, 118.5], [51.5, 116.5], [50.5, 115.5], [50.5, 114.5], [50.5, 113.5], [50.5, 111.5], [50.5, 108.5], [50.5, 104.5], [50.5, 101.5], [51.5, 99.5], [51.5, 97.5], [52.5, 95.5], [55.5, 93.5], [58.5, 91.5], [62.5, 90.5], [65.5, 89.5], [66.5, 89.5], [69.5, 90.5], [78.5, 94.5], [81.5, 94.5], [82.5, 94.5], [84.5, 93.5], [88.5, 91.5], [92.5, 89.5], [94.5, 86.5], [94.5, 85.5], [95.5, 84.5], [95.5, 82.5], [95.5, 78.5], [95.5, 76.5], [95.5, 73.5], [94.5, 72.5], [94.5, 72.5], [94.5, 72.5], [94.5, 72.5], [93.5, 73.5], [93.5, 73.5], [88.5, 74.5], [85.5, 74.5], [85.5, 74.5], [84.5, 72.5], [82.5, 68.5], [81.5, 65.5], [81.5, 62.5], [81.5, 60.5], [82.5, 59.5], [85.5, 57.5], [86.5, 55.5], [87.5, 55.5], [89.5, 55.5], [91.5, 56.5], [92.5, 56.5], [92.5, 56.5], [92.5, 57.5], [94.5, 58.5], [96.5, 59.5], [97.5, 59.5], [97.5, 59.5], [98.5, 59.5], [99.5, 58.5], [100.5, 57.5], [102.5, 55.5], [103.5, 53.5], [105.5, 50.5], [105.5, 49.5], [105.5, 48.5], [105.5, 47.5], [105.5, 46.5], [104.5, 46.5], [104.5, 46.5], [103.5, 45.5], [102.5, 44.5], [100.5, 42.5], [98.5, 41.5], [98.5, 39.5], [98.5, 38.5], [98.5, 37.5], [98.5, 37.5], [98.5, 36.5], [100.5, 36.5], [102.5, 37.5], [105.5, 37.5], [107.5, 37.5], [109.5, 37.5], [109.5, 37.5], [111.5, 35.5], [112.5, 34.5], [112.5, 33.5], [112.5, 33.5], [112.5, 28.5], [112.5, 25.5], [112.5, 24.5], [113.5, 24.5], [113.5, 24.5], [114.5, 25.5], [116.5, 26.5], [120.5, 27.5], [122.5, 27.5], [124.5, 26.5], [125.5, 25.5], [124.5, 25.5], [124.5, 25.5], [125.5, 22.5], [125.5, 21.5], [124.5, 20.5], [123.5, 19.5], [123.5, 17.5], [122.5, 16.5], [122.5, 16.5], [122.5, 15.5], [123.5, 14.5], [124.5, 12.5], [126.5, 11.5], [127.5, 11.5], [127.5, 11.5], [129.5, 11.5], [129.5, 11.5], [129.5, 11.5], [130.5, 10.5], [130.5, 8.5], [131.5, 7.5], [131.5, 8.5]]], [{"color": "red", "pensize": 1, "sectors": 32, "mirror": 1, "center": [133.166666667, 0], "radius": 266.5}, [[-19.5, 229.5]]], [{"color": "red", "pensize": 1, "sectors": 32, "mirror": 1, "center": [133.166666667, 0], "radius": 266.5}, [[-18.5, 228.5], [-18.5, 228.5], [-19.5, 228.5], [-19.5, 228.5], [-20.5, 228.5], [-20.5, 228.5], [-21.5, 228.5], [-21.5, 227.5], [-22.5, 227.5], [-22.5, 227.5], [-22.5, 227.5], [-23.5, 227.5], [-23.5, 227.5], [-24.5, 227.5], [-24.5, 227.5], [-25.5, 227.5], [-26.5, 228.5], [-27.5, 229.5], [-28.5, 229.5], [-28.5, 229.5], [-29.5, 229.5], [-29.5, 230.5], [-29.5, 231.5], [-29.5, 232.5], [-29.5, 233.5], [-29.5, 234.5], [-29.5, 236.5], [-29.5, 236.5], [-29.5, 237.5], [-29.5, 238.5], [-29.5, 238.5], [-29.5, 239.5], [-29.5, 239.5], [-29.5, 240.5], [-29.5, 240.5], [-29.5, 241.5], [-29.5, 241.5], [-29.5, 242.5], [-29.5, 242.5], [-29.5, 243.5], [-29.5, 243.5], [-29.5, 243.5]]], [{"color": "deep sky blue", "pensize": 1, "sectors": 32, "mirror": 1, "center": [133.166666667, 0], "radius": 266.5}, [[-6.5, 211.5], [-6.5, 206.5], [-5.5, 206.5], [-5.5, 205.5], [-5.5, 204.5], [-5.5, 204.5], [-5.5, 203.5], [-4.5, 201.5], [-4.5, 200.5], [-4.5, 200.5], [-4.5, 199.5], [-4.5, 197.5], [-4.5, 196.5], [-4.5, 193.5], [-4.5, 192.5], [-4.5, 191.5], [-4.5, 189.5], [-4.5, 188.5], [-4.5, 186.5], [-4.5, 185.5], [-4.5, 184.5], [-5.5, 184.5], [-5.5, 183.5], [-4.5, 183.5], [-4.5, 183.5], [-3.5, 183.5], [-3.5, 183.5], [-2.5, 183.5], [-2.5, 183.5], [-1.5, 183.5], [-0.5, 183.5], [1.5, 183.5], [1.5, 183.5], [2.5, 183.5], [5.5, 182.5], [6.5, 182.5], [7.5, 182.5], [7.5, 182.5], [8.5, 182.5], [9.5, 182.5], [9.5, 182.5], [9.5, 182.5], [10.5, 182.5], [10.5, 182.5], [11.5, 182.5], [12.5, 182.5], [12.5, 182.5]]], [{"color": "deep sky blue", "pensize": 1, "sectors": 32, "mirror": 1, "center": [133.166666667, 0], "radius": 266.5}, [[18.5, 171.5], [15.5, 169.5], [15.5, 168.5], [16.5, 168.5], [17.5, 167.5], [17.5, 167.5], [18.5, 167.5], [18.5, 167.5], [18.5, 167.5], [19.5, 167.5], [20.5, 166.5], [20.5, 166.5], [20.5, 166.5], [21.5, 166.5], [21.5, 165.5]]], [{"color": "medium slate blue", "pensize": 1, "sectors": 32, "mirror": 1, "center": [133.166666667, 0], "radius": 266.5}, [[25.5, 77.5], [24.5, 75.5], [24.5, 75.5], [23.5, 74.5], [23.5, 73.5], [22.5, 73.5], [22.5, 73.5], [22.5, 71.5], [22.5, 71.5], [22.5, 69.5], [22.5, 69.5], [22.5, 69.5], [22.5, 68.5], [22.5, 68.5], [23.5, 67.5], [23.5, 67.5], [24.5, 66.5], [26.5, 65.5], [26.5, 65.5], [27.5, 65.5], [29.5, 64.5], [30.5, 64.5], [31.5, 63.5], [32.5, 63.5], [33.5, 63.5], [33.5, 63.5], [33.5, 63.5], [34.5, 62.5], [35.5, 62.5], [35.5, 62.5], [36.5, 62.5], [36.5, 63.5], [36.5, 63.5], [36.5, 64.5], [36.5, 64.5], [36.5, 64.5], [36.5, 65.5], [36.5, 65.5], [36.5, 66.5], [36.5, 66.5], [36.5, 66.5], [36.5, 67.5]]], [{"color": "medium slate blue", "pensize": 1, "sectors": 32, "mirror": 1, "center": [133.166666667, 0], "radius": 266.5}, [[47.5, 47.5], [45.5, 47.5], [45.5, 46.5], [45.5, 46.5], [45.5, 45.5], [45.5, 45.5], [45.5, 44.5], [46.5, 44.5], [46.5, 44.5], [47.5, 43.5], [48.5, 42.5], [48.5, 42.5], [49.5, 42.5], [49.5, 42.5], [49.5, 42.5], [49.5, 42.5], [50.5, 42.5], [50.5, 42.5], [51.5, 42.5], [51.5, 42.5], [51.5, 42.5], [52.5, 42.5], [52.5, 42.5], [52.5, 43.5], [53.5, 43.5], [53.5, 43.5], [53.5, 43.5], [53.5, 44.5]]], [{"color": "dark turquoise", "pensize": 1, "sectors": 32, "mirror": 1, "center": [133.166666667, 0], "radius": 266.5}, [[101.5, 72.5], [105.5, 74.5], [106.5, 75.5], [107.5, 75.5], [108.5, 75.5], [108.5, 75.5], [107.5, 74.5], [107.5, 74.5], [107.5, 73.5], [106.5, 72.5], [106.5, 72.5], [106.5, 72.5], [106.5, 71.5], [106.5, 70.5], [106.5, 70.5], [105.5, 69.5], [105.5, 68.5], [105.5, 68.5], [105.5, 68.5], [105.5, 67.5], [105.5, 67.5], [105.5, 66.5], [105.5, 66.5]]], [{"color": "medium sea green", "pensize": 1, "sectors": 32, "mirror": 1, "center": [133.166666667, 0], "radius": 266.5}, [[33.5, 151.5], [33.5, 144.5], [33.5, 141.5], [33.5, 139.5], [33.5, 138.5], [33.5, 137.5], [33.5, 136.5], [33.5, 136.5], [33.5, 135.5], [33.5, 135.5], [33.5, 134.5], [33.5, 134.5], [34.5, 134.5], [35.5, 134.5], [38.5, 134.5], [41.5, 133.5], [42.5, 133.5], [43.5, 133.5], [44.5, 133.5], [44.5, 133.5], [45.5, 133.5], [46.5, 133.5], [46.5, 133.5]]], [{"color": "coral", "pensize": 1, "sectors": 32, "mirror": 1, "center": [133.166666667, 0], "radius": 266.5}, [[70.5, 210.5], [68.5, 203.5], [68.5, 202.5], [68.5, 201.5], [67.5, 201.5], [67.5, 200.5], [67.5, 200.5], [67.5, 200.5], [66.5, 199.5], [67.5, 199.5], [68.5, 199.5], [70.5, 199.5], [71.5, 198.5], [72.5, 198.5], [72.5, 198.5], [73.5, 197.5], [74.5, 197.5], [74.5, 196.5], [74.5, 196.5], [74.5, 196.5], [74.5, 195.5], [74.5, 194.5], [74.5, 194.5], [74.5, 193.5], [74.5, 190.5], [74.5, 188.5], [73.5, 187.5], [73.5, 186.5], [73.5, 185.5], [73.5, 185.5], [73.5, 185.5], [72.5, 185.5], [71.5, 183.5], [70.5, 182.5], [70.5, 181.5], [69.5, 181.5], [69.5, 181.5], [69.5, 181.5], [70.5, 181.5], [70.5, 180.5], [70.5, 179.5], [73.5, 178.5], [73.5, 178.5], [75.5, 177.5], [76.5, 177.5], [77.5, 176.5], [77.5, 176.5], [78.5, 176.5], [78.5, 176.5], [79.5, 175.5], [79.5, 175.5], [79.5, 175.5], [79.5, 174.5], [79.5, 174.5], [80.5, 174.5], [80.5, 174.5], [80.5, 173.5], [80.5, 173.5], [81.5, 173.5]]], [{"color": "coral", "pensize": 1, "sectors": 32, "mirror": 1, "center": [133.166666667, 0], "radius": 266.5}, [[243.5, -88.5], [243.5, -97.5], [243.5, -97.5], [244.5, -97.5], [244.5, -97.5], [245.5, -97.5], [246.5, -97.5], [247.5, -97.5], [248.5, -97.5], [248.5, -97.5], [249.5, -97.5], [249.5, -97.5], [249.5, -98.5], [249.5, -98.5], [250.5, -98.5], [251.5, -99.5], [251.5, -99.5], [252.5, -100.5], [253.5, -101.5], [253.5, -101.5], [253.5, -101.5], [254.5, -101.5], [254.5, -101.5], [254.5, -101.5], [255.5, -101.5], [255.5, -101.5], [255.5, -100.5], [256.5, -100.5], [256.5, -100.5], [256.5, -100.5], [256.5, -99.5], [257.5, -99.5]]], [{"color": "khaki", "pensize": 2, "sectors": 32, "mirror": 1, "center": [133.166666667, 0], "radius": 266.5}, [[-101.5, 159.5], [-102.5, 158.5], [-102.5, 158.5], [-101.5, 158.5], [-101.5, 158.5], [-100.5, 158.5], [-100.5, 158.5], [-100.5, 159.5], [-100.5, 159.5], [-100.5, 160.5], [-100.5, 160.5], [-101.5, 160.5], [-101.5, 160.5], [-102.5, 160.5], [-102.5, 159.5], [-102.5, 159.5], [-102.5, 158.5], [-102.5, 157.5], [-102.5, 156.5], [-102.5, 156.5], [-102.5, 156.5], [-102.5, 156.5], [-100.5, 155.5], [-98.5, 155.5], [-98.5, 155.5], [-98.5, 155.5], [-98.5, 156.5], [-98.5, 156.5], [-98.5, 156.5], [-98.5, 157.5], [-98.5, 156.5], [-99.5, 156.5], [-99.5, 156.5], [-99.5, 154.5], [-99.5, 154.5], [-99.5, 154.5], [-99.5, 154.5], [-99.5, 153.5], [-98.5, 153.5], [-97.5, 152.5], [-97.5, 152.5], [-96.5, 152.5], [-96.5, 152.5], [-96.5, 153.5], [-96.5, 154.5], [-96.5, 155.5], [-96.5, 155.5], [-97.5, 156.5], [-99.5, 158.5], [-101.5, 158.5], [-102.5, 157.5], [-102.5, 156.5], [-103.5, 155.5], [-103.5, 154.5], [-103.5, 153.5], [-102.5, 153.5], [-101.5, 153.5], [-100.5, 153.5]]]]
[[{"color": "red", "pensize": 1, "sectors": 32, "mirror": 1, "center": [133.166666667, 0], "radius": 266.5}, [[-62.5, 240.5], [-62.5, 239.5], [-61.5, 238.5], [-60.5, 236.5], [-59.5, 234.5], [-59.5, 232.5], [-58.5, 229.5], [-57.5, 228.5], [-57.5, 225.5], [-56.5, 223.5], [-56.5, 220.5], [-56.5, 214.5], [-56.5, 211.5], [-57.5, 207.5], [-57.5, 201.5], [-58.5, 197.5], [-59.5, 192.5], [-59.5, 190.5], [-59.5, 187.5], [-59.5, 182.5], [-60.5, 177.5], [-60.5, 173.5], [-61.5, 163.5], [-61.5, 151.5], [-61.5, 146.5], [-61.5, 142.5], [-61.5, 140.5], [-60.5, 136.5], [-58.5, 132.5], [-56.5, 130.5], [-55.5, 128.5], [-54.5, 127.5], [-52.5, 126.5], [-49.5, 124.5], [-47.5, 124.5], [-43.5, 122.5], [-38.5, 121.5], [-33.5, 119.5], [-31.5, 119.5], [-29.5, 119.5], [-27.5, 119.5], [-18.5, 119.5], [-12.5, 119.5], [-1.5, 119.5], [2.5, 119.5], [4.5, 119.5], [7.5, 119.5], [9.5, 119.5], [18.5, 118.5], [22.5, 118.5], [24.5, 117.5], [27.5, 116.5], [28.5, 116.5], [29.5, 116.5], [30.5, 115.5], [30.5, 114.5], [32.5, 113.5], [35.5, 110.5], [36.5, 109.5], [37.5, 106.5], [38.5, 104.5], [40.5, 101.5], [40.5, 96.5], [41.5, 94.5], [41.5, 89.5], [41.5, 86.5], [42.5, 83.5], [42.5, 74.5], [43.5, 63.5], [43.5, 54.5], [44.5, 51.5], [45.5, 45.5], [45.5, 43.5], [46.5, 40.5], [47.5, 39.5], [48.5, 38.5], [49.5, 38.5], [50.5, 38.5], [53.5, 38.5], [54.5, 38.5], [56.5, 39.5], [58.5, 41.5], [63.5, 42.5], [69.5, 43.5], [70.5, 44.5], [73.5, 44.5], [76.5, 45.5], [80.5, 45.5], [81.5, 44.5], [83.5, 43.5], [88.5, 41.5], [95.5, 38.5], [97.5, 37.5], [100.5, 35.5], [100.5, 34.5], [101.5, 34.5], [101.5, 33.5], [102.5, 32.5], [103.5, 31.5], [105.5, 29.5], [107.5, 28.5], [108.5, 27.5], [109.5, 27.5], [109.5, 27.5], [110.5, 27.5], [111.5, 27.5], [113.5, 28.5], [113.5, 28.5], [114.5, 28.5], [115.5, 28.5], [118.5, 28.5], [118.5, 28.5], [119.5, 28.5], [123.5, 25.5], [126.5, 21.5], [129.5, 19.5], [129.5, 19.5], [129.5, 18.5], [130.5, 18.5], [129.5, 18.5]]], [{"color": "dark turquoise", "pensize": 3, "sectors": 32, "mirror": 1, "center": [133.166666667, 0], "radius": 266.5}, [[-52.5, 157.5], [-43.5, 133.5], [-40.5, 133.5], [-38.5, 133.5], [-36.5, 133.5], [-36.5, 133.5], [-35.5, 133.5], [-34.5, 133.5], [-32.5, 132.5], [-32.5, 132.5], [-30.5, 131.5], [-29.5, 130.5], [-28.5, 130.5], [-28.5, 129.5], [-27.5, 129.5], [-27.5, 129.5], [-26.5, 129.5], [-26.5, 129.5], [-26.5, 130.5], [-25.5, 130.5], [-25.5, 130.5], [-24.5, 131.5], [-23.5, 131.5], [-22.5, 131.5], [-21.5, 132.5], [-21.5, 132.5], [-21.5, 132.5]]], [{"color": "firebrick", "pensize": 3, "sectors": 32, "mirror": 1, "center": [133.166666667, 0], "radius": 266.5}, [[102.5, 164.5], [114.5, 159.5], [116.5, 159.5], [118.5, 158.5], [119.5, 157.5], [119.5, 157.5], [120.5, 156.5], [121.5, 155.5], [122.5, 155.5], [122.5, 155.5], [123.5, 155.5], [123.5, 155.5], [124.5, 155.5], [124.5, 155.5], [125.5, 154.5], [125.5, 154.5], [125.5, 152.5], [125.5, 150.5], [125.5, 148.5], [125.5, 147.5], [125.5, 146.5], [125.5, 146.5], [125.5, 146.5], [125.5, 146.5], [124.5, 146.5], [123.5, 145.5], [123.5, 145.5], [122.5, 145.5], [121.5, 146.5], [121.5, 146.5], [120.5, 146.5], [120.5, 147.5], [119.5, 148.5], [118.5, 148.5], [117.5, 150.5], [116.5, 150.5], [116.5, 150.5], [115.5, 150.5], [114.5, 150.5], [113.5, 150.5], [113.5, 150.5], [112.5, 150.5], [112.5, 149.5], [111.5, 149.5], [111.5, 149.5]]], [{"color": "black", "pensize": 3, "sectors": 32, "mirror": 1, "center": [133.166666667, 0], "radius": 266.5}, [[130.5, 8.5], [127.5, 6.5], [126.5, 4.5], [126.5, 3.5], [126.5, 2.5], [126.5, 2.5], [126.5, 2.5], [126.5, 1.5], [126.5, 2.5], [126.5, 2.5], [126.5, 2.5], [126.5, 3.5], [126.5, 5.5], [126.5, 6.5], [126.5, 7.5], [126.5, 7.5], [126.5, 8.5], [126.5, 9.5], [126.5, 9.5], [126.5, 10.5]]], [{"color": "black", "pensize": 3, "sectors": 32, "mirror": 1, "center": [133.166666667, 0], "radius": 266.5}, [[-111.5, 244.5], [-109.5, 236.5], [-108.5, 233.5], [-106.5, 230.5], [-105.5, 229.5], [-105.5, 227.5], [-104.5, 226.5], [-103.5, 224.5], [-103.5, 223.5], [-103.5, 223.5], [-102.5, 221.5], [-102.5, 221.5], [-102.5, 220.5], [-102.5, 219.5], [-101.5, 218.5], [-101.5, 217.5], [-101.5, 216.5], [-101.5, 215.5], [-101.5, 215.5], [-101.5, 215.5], [-100.5, 213.5], [-100.5, 213.5], [-100.5, 213.5], [-100.5, 212.5], [-99.5, 211.5], [-99.5, 210.5], [-98.5, 210.5], [-98.5, 209.5], [-98.5, 209.5], [-97.5, 209.5], [-97.5, 208.5], [-97.5, 208.5], [-97.5, 208.5], [-97.5, 208.5], [-96.5, 207.5], [-96.5, 206.5], [-95.5, 206.5], [-95.5, 206.5], [-95.5, 206.5], [-95.5, 205.5], [-94.5, 205.5], [-94.5, 205.5], [-93.5, 205.5], [-93.5, 205.5], [-92.5, 205.5], [-92.5, 205.5], [-91.5, 205.5], [-91.5, 205.5], [-90.5, 204.5], [-89.5, 204.5], [-88.5, 204.5], [-87.5, 204.5], [-86.5, 203.5], [-86.5, 203.5], [-84.5, 203.5], [-83.5, 203.5], [-81.5, 203.5], [-79.5, 203.5], [-79.5, 203.5], [-78.5, 203.5], [-78.5, 203.5], [-77.5, 203.5], [-77.5, 203.5], [-76.5, 203.5], [-76.5, 203.5], [-75.5, 203.5], [-75.5, 203.5], [-75.5, 203.5], [-74.5, 203.5], [-74.5, 203.5], [-73.5, 203.5], [-73.5, 203.5], [-72.5, 203.5], [-72.5, 203.5], [-72.5, 203.5], [-71.5, 203.5], [-71.5, 203.5], [-71.5, 203.5], [-71.5, 204.5], [-70.5, 204.5]]]]
[[{"color": "black", "pensize": 1, "sectors": 32, "mirror": 1, "center": [133.166666667, 0], "radius": 266.5}, [[-77.5, 240.5], [-70.5, 234.5], [-69.5, 232.5], [-68.5, 231.5], [-67.5, 229.5], [-67.5, 229.5], [-66.5, 227.5], [-66.5, 225.5], [-66.5, 224.5], [-66.5, 223.5], [-66.5, 221.5], [-66.5, 217.5], [-66.5, 216.5], [-66.5, 214.5], [-66.5, 212.5], [-66.5, 210.5], [-67.5, 208.5], [-67.5, 206.5], [-68.5, 204.5], [-68.5, 203.5], [-69.5, 201.5], [-70.5, 198.5], [-70.5, 197.5], [-70.5, 196.5], [-71.5, 194.5], [-71.5, 192.5], [-72.5, 190.5], [-72.5, 188.5], [-72.5, 185.5], [-73.5, 184.5], [-73.5, 181.5], [-74.5, 178.5], [-74.5, 176.5], [-74.5, 174.5], [-75.5, 171.5], [-75.5, 170.5], [-75.5, 169.5], [-76.5, 167.5], [-76.5, 165.5], [-76.5, 163.5], [-76.5, 162.5], [-76.5, 161.5], [-76.5, 158.5], [-77.5, 156.5], [-77.5, 154.5], [-77.5, 153.5], [-77.5, 151.5], [-76.5, 148.5], [-76.5, 146.5], [-76.5, 145.5], [-75.5, 143.5], [-75.5, 140.5], [-74.5, 138.5], [-74.5, 137.5], [-73.5, 135.5], [-72.5, 133.5], [-72.5, 132.5], [-71.5, 128.5], [-70.5, 127.5], [-69.5, 124.5], [-68.5, 122.5], [-66.5, 121.5], [-65.5, 119.5], [-64.5, 118.5], [-63.5, 116.5], [-60.5, 114.5], [-59.5, 113.5], [-58.5, 112.5], [-56.5, 111.5], [-54.5, 111.5], [-54.5, 111.5], [-52.5, 110.5], [-50.5, 109.5], [-47.5, 108.5], [-45.5, 108.5], [-43.5, 108.5], [-42.5, 108.5], [-41.5, 108.5], [-39.5, 108.5], [-38.5, 108.5], [-34.5, 108.5], [-32.5, 108.5], [-28.5, 108.5], [-25.5, 108.5], [-23.5, 108.5], [-20.5, 109.5], [-17.5, 109.5], [-15.5, 109.5], [-13.5, 110.5], [-11.5, 110.5], [-8.5, 111.5], [-3.5, 112.5], [0.5, 113.5], [2.5, 114.5], [8.5, 115.5], [10.5, 115.5], [13.5, 116.5], [16.5, 116.5], [18.5, 116.5], [19.5, 116.5], [21.5, 116.5], [23.5, 116.5], [25.5, 115.5], [27.5, 115.5], [33.5, 113.5], [36.5, 113.5], [38.5, 112.5], [40.5, 112.5], [42.5, 112.5], [44.5, 111.5], [48.5, 109.5], [51.5, 107.5], [54.5, 106.5], [55.5, 105.5], [56.5, 104.5], [56.5, 103.5], [58.5, 100.5], [60.5, 97.5], [60.5, 95.5], [61.5, 93.5], [61.5, 90.5], [62.5, 87.5], [62.5, 85.5], [62.5, 83.5], [62.5, 81.5], [62.5, 79.5], [62.5, 77.5], [62.5, 76.5], [62.5, 74.5], [62.5, 72.5], [62.5, 70.5], [62.5, 67.5], [63.5, 64.5], [64.5, 62.5], [65.5, 61.5], [65.5, 61.5], [67.5, 60.5], [67.5, 60.5], [69.5, 60.5], [71.5, 59.5], [72.5, 59.5], [74.5, 58.5], [76.5, 58.5], [77.5, 57.5], [79.5, 56.5], [80.5, 56.5], [82.5, 56.5], [83.5, 56.5], [83.5, 56.5], [85.5, 56.5], [86.5, 56.5], [88.5, 56.5], [91.5, 55.5], [93.5, 55.5], [95.5, 54.5], [95.5, 54.5], [95.5, 54.5], [95.5, 53.5], [96.5, 52.5], [96.5, 52.5], [96.5, 51.5], [96.5, 49.5], [96.5, 48.5], [96.5, 46.5], [97.5, 43.5], [97.5, 42.5], [97.5, 40.5], [98.5, 39.5], [98.5, 37.5], [98.5, 36.5], [99.5, 34.5], [100.5, 33.5], [101.5, 31.5], [102.5, 30.5], [103.5, 30.5], [104.5, 30.5], [107.5, 32.5], [109.5, 33.5], [110.5, 33.5], [111.5, 33.5], [112.5, 33.5], [113.5, 33.5], [113.5, 34.5], [113.5, 35.5], [113.5, 35.5], [113.5, 37.5], [113.5, 39.5], [113.5, 40.5], [113.5, 41.5], [112.5, 41.5], [111.5, 42.5], [110.5, 43.5], [109.5, 44.5], [109.5, 44.5], [108.5, 45.5], [108.5, 45.5], [107.5, 46.5], [106.5, 47.5], [106.5, 48.5], [106.5, 49.5], [106.5, 51.5], [105.5, 53.5], [105.5, 56.5], [105.5, 58.5], [105.5, 60.5], [105.5, 60.5], [106.5, 61.5], [107.5, 62.5], [108.5, 63.5], [109.5, 64.5], [110.5, 64.5], [112.5, 65.5], [112.5, 65.5], [113.5, 66.5], [115.5, 67.5], [115.5, 67.5], [116.5, 68.5], [116.5, 68.5], [116.5, 69.5], [115.5, 70.5], [113.5, 72.5], [111.5, 74.5], [110.5, 76.5], [108.5, 79.5], [107.5, 80.5], [105.5, 82.5], [104.5, 83.5], [103.5, 85.5], [102.5, 87.5], [101.5, 89.5], [101.5, 90.5], [100.5, 92.5], [99.5, 93.5], [99.5, 94.5], [98.5, 95.5], [98.5, 96.5], [96.5, 97.5], [95.5, 98.5], [93.5, 99.5], [92.5, 101.5], [91.5, 102.5], [90.5, 103.5], [89.5, 103.5], [87.5, 103.5], [86.5, 104.5], [84.5, 105.5], [83.5, 105.5], [82.5, 106.5], [79.5, 106.5], [78.5, 106.5], [75.5, 107.5], [74.5, 107.5], [71.5, 107.5], [67.5, 107.5], [65.5, 107.5], [63.5, 107.5], [56.5, 108.5], [55.5, 108.5], [53.5, 108.5], [51.5, 109.5], [49.5, 110.5], [47.5, 112.5], [46.5, 114.5], [44.5, 115.5], [42.5, 118.5], [41.5, 120.5], [41.5, 122.5], [40.5, 125.5], [40.5, 129.5], [40.5, 131.5], [40.5, 133.5], [40.5, 137.5], [40.5, 139.5], [40.5, 141.5], [40.5, 143.5], [40.5, 144.5], [40.5, 146.5], [40.5, 148.5], [41.5, 149.5], [42.5, 151.5], [44.5, 153.5], [46.5, 155.5], [47.5, 157.5], [49.5, 160.5], [50.5, 162.5], [52.5, 164.5], [54.5, 166.5], [55.5, 168.5], [55.5, 170.5], [55.5, 173.5], [55.5, 175.5], [54.5, 179.5], [52.5, 183.5], [50.5, 187.5], [48.5, 190.5], [46.5, 193.5], [44.5, 195.5], [42.5, 197.5], [41.5, 199.5], [40.5, 201.5], [39.5, 203.5], [37.5, 205.5], [36.5, 207.5], [34.5, 209.5], [32.5, 210.5], [30.5, 211.5], [28.5, 212.5], [26.5, 213.5], [23.5, 214.5], [19.5, 215.5], [12.5, 216.5], [10.5, 216.5], [9.5, 217.5], [6.5, 217.5], [5.5, 218.5], [2.5, 218.5], [1.5, 218.5], [-0.5, 218.5], [-2.5, 219.5], [-3.5, 219.5], [-4.5, 219.5], [-7.5, 219.5], [-10.5, 219.5], [-11.5, 219.5], [-13.5, 219.5], [-15.5, 219.5], [-17.5, 219.5], [-20.5, 219.5], [-22.5, 219.5], [-22.5, 219.5], [-23.5, 219.5], [-25.5, 219.5], [-27.5, 220.5], [-29.5, 220.5], [-30.5, 221.5], [-32.5, 223.5], [-36.5, 226.5], [-42.5, 231.5], [-45.5, 234.5], [-46.5, 235.5], [-47.5, 236.5], [-47.5, 236.5], [-47.5, 237.5], [-48.5, 239.5], [-48.5, 241.5], [-48.5, 242.5], [-48.5, 242.5], [-48.5, 243.5], [-48.5, 244.5], [-48.5, 245.5], [-47.5, 246.5], [-47.5, 247.5], [-46.5, 248.5], [-45.5, 249.5], [-45.5, 251.5], [-44.5, 252.5], [-43.5, 254.5], [-42.5, 256.5], [-42.5, 257.5], [-41.5, 257.5], [-41.5, 258.5], [-40.5, 259.5], [-40.5, 260.5], [-39.5, 261.5], [-39.5, 262.5], [-39.5, 262.5], [-39.5, 263.5], [-39.5, 264.5], [-39.5, 265.5], [-54.5, 266.5], [-55.5, 265.5], [-56.5, 265.5], [-57.5, 265.5], [-58.5, 264.5], [-58.5, 263.5], [-59.5, 263.5], [-59.5, 262.5], [-60.5, 261.5], [-60.5, 261.5], [-61.5, 260.5], [-61.5, 260.5], [-62.5, 260.5], [-62.5, 259.5], [-62.5, 259.5], [-62.5, 259.5], [-62.5, 258.5], [-62.5, 258.5], [-62.5, 258.5], [-62.5, 257.5], [-62.5, 257.5], [-62.5, 256.5], [-62.5, 256.5], [-62.5, 256.5], [-62.5, 255.5], [-62.5, 255.5], [-62.5, 254.5], [-62.5, 254.5], [-62.5, 253.5], [-62.5, 252.5], [-62.5, 252.5], [-61.5, 252.5], [-62.5, 252.5], [-62.5, 250.5], [-63.5, 250.5], [-64.5, 249.5], [-66.5, 248.5], [-67.5, 246.5], [-68.5, 246.5], [-68.5, 246.5], [-68.5, 246.5], [-71.5, 245.5], [-72.5, 245.5], [-73.5, 245.5], [-74.5, 245.5], [-75.5, 245.5], [-75.5, 245.5], [-76.5, 245.5], [-78.5, 245.5], [-80.5, 245.5], [-82.5, 246.5], [-84.5, 246.5], [-86.5, 246.5], [-88.5, 246.5], [-91.5, 246.5], [-92.5, 246.5], [-93.5, 246.5], [-94.5, 245.5], [-94.5, 245.5], [-95.5, 244.5], [-95.5, 244.5], [-96.5, 244.5], [-96.5, 243.5], [-96.5, 242.5], [-97.5, 242.5], [-98.5, 241.5], [-98.5, 240.5], [-99.5, 239.5], [-99.5, 237.5], [-99.5, 237.5], [-99.5, 236.5], [-99.5, 236.5], [-99.5, 235.5], [-99.5, 235.5], [-98.5, 235.5], [-97.5, 233.5], [-96.5, 232.5], [-94.5, 230.5], [-94.5, 230.5], [-94.5, 230.5], [-94.5, 229.5], [-94.5, 229.5], [-93.5, 227.5], [-92.5, 225.5], [-91.5, 224.5], [-91.5, 223.5]]], [{"color": "black", "pensize": 1, "sectors": 32, "mirror": 1, "center": [133.166666667, 0], "radius": 266.5}, [[131.5, 16.5]]], [{"color": "black", "pensize": 1, "sectors": 32, "mirror": 1, "center": [133.166666667, 0], "radius": 266.5}, [[124.5, 20.5], [123.5, 20.5], [122.5, 18.5], [121.5, 17.5], [120.5, 16.5], [119.5, 15.5], [119.5, 14.5], [119.5, 14.5], [119.5, 14.5], [119.5, 13.5], [119.5, 12.5], [119.5, 12.5], [119.5, 12.5], [119.5, 12.5], [119.5, 12.5], [120.5, 12.5], [121.5, 12.5], [122.5, 11.5], [122.5, 11.5], [123.5, 11.5], [123.5, 11.5], [123.5, 12.5], [123.5, 12.5], [125.5, 12.5], [125.5, 13.5]]], [{"color": "black", "pensize": 1, "sectors": 32, "mirror": 1, "center": [133.166666667, 0], "radius": 266.5}, [[131.5, 3.5], [130.5, 3.5], [131.5, 4.5], [131.5, 4.5], [132.5, 4.5], [132.5, 3.5]]], [{"color": "red", "pensize": 1, "sectors": 32, "mirror": 0, "center": [133.166666667, 0], "radius": 266.5}, [[-16.5, 181.5], [-16.5, 181.5], [-15.5, 180.5], [-15.5, 180.5], [-15.5, 179.5], [-15.5, 178.5], [-14.5, 177.5], [-14.5, 177.5], [-13.5, 176.5], [-13.5, 175.5], [-13.5, 175.5], [-13.5, 174.5], [-12.5, 173.5], [-12.5, 173.5], [-11.5, 172.5], [-11.5, 172.5], [-10.5, 171.5], [-10.5, 170.5], [-9.5, 169.5], [-9.5, 169.5], [-7.5, 168.5], [-7.5, 167.5], [-7.5, 167.5], [-6.5, 166.5], [-6.5, 164.5], [-5.5, 164.5], [-4.5, 163.5], [-4.5, 162.5], [-4.5, 161.5], [-3.5, 160.5], [-3.5, 159.5], [-2.5, 158.5], [-2.5, 157.5], [-2.5, 156.5], [-2.5, 156.5], [-2.5, 156.5], [-2.5, 155.5], [-2.5, 155.5], [-1.5, 154.5], [-1.5, 154.5], [-0.5, 153.5], [-0.5, 152.5], [-0.5, 151.5], [0.5, 151.5], [0.5, 151.5], [1.5, 150.5], [1.5, 150.5], [2.5, 150.5], [3.5, 149.5], [3.5, 149.5], [3.5, 149.5], [4.5, 149.5], [4.5, 149.5], [5.5, 149.5], [6.5, 149.5], [7.5, 149.5], [8.5, 149.5], [8.5, 149.5], [9.5, 149.5], [9.5, 150.5], [9.5, 150.5], [10.5, 151.5], [11.5, 152.5], [12.5, 153.5], [13.5, 154.5], [13.5, 154.5], [13.5, 154.5], [13.5, 154.5], [12.5, 155.5], [11.5, 155.5], [10.5, 156.5], [9.5, 157.5], [8.5, 157.5], [7.5, 158.5], [7.5, 158.5], [6.5, 158.5], [5.5, 159.5], [5.5, 159.5], [4.5, 160.5], [3.5, 161.5], [2.5, 162.5], [0.5, 163.5], [-0.5, 163.5], [-1.5, 164.5], [-1.5, 165.5], [-2.5, 165.5], [-3.5, 166.5], [-3.5, 167.5], [-4.5, 168.5], [-4.5, 169.5], [-5.5, 170.5], [-5.5, 170.5], [-5.5, 170.5], [-6.5, 171.5], [-7.5, 172.5], [-7.5, 172.5], [-8.5, 173.5], [-9.5, 174.5], [-10.5, 175.5], [-10.5, 176.5], [-11.5, 177.5], [-12.5, 177.5], [-13.5, 178.5], [-14.5, 178.5], [-15.5, 178.5], [-15.5, 179.5], [-16.5, 179.5], [-16.5, 179.5], [-16.5, 179.5], [-17.5, 179.5]]], [{"color": "red", "pensize": 1, "sectors": 32, "mirror": 0, "center": [133.166666667, 0], "radius": 266.5}, [[-82.5, 219.5], [-84.5, 211.5], [-84.5, 210.5], [-84.5, 210.5], [-85.5, 210.5], [-86.5, 210.5], [-87.5, 209.5], [-87.5, 208.5], [-87.5, 208.5], [-87.5, 208.5], [-85.5, 208.5], [-84.5, 207.5], [-81.5, 207.5], [-80.5, 207.5], [-79.5, 207.5], [-79.5, 207.5], [-79.5, 207.5], [-78.5, 208.5], [-78.5, 208.5], [-77.5, 209.5], [-76.5, 210.5], [-75.5, 211.5], [-75.5, 212.5], [-75.5, 212.5], [-74.5, 213.5], [-74.5, 213.5], [-74.5, 214.5], [-74.5, 214.5], [-74.5, 215.5], [-74.5, 215.5], [-74.5, 215.5], [-74.5, 216.5], [-74.5, 217.5], [-74.5, 217.5], [-75.5, 217.5], [-75.5, 218.5], [-75.5, 218.5], [-76.5, 218.5], [-77.5, 218.5], [-79.5, 219.5], [-79.5, 219.5], [-80.5, 219.5], [-81.5, 219.5], [-82.5, 219.5], [-82.5, 219.5], [-82.5, 219.5], [-83.5, 219.5], [-83.5, 219.5], [-84.5, 218.5], [-84.5, 218.5], [-84.5, 217.5]]], [{"color": "red", "pensize": 1, "sectors": 32, "mirror": 0, "center": [133.166666667, 0], "radius": 266.5}, [[23.5, 111.5], [23.5, 108.5], [23.5, 107.5], [23.5, 106.5], [23.5, 105.5], [23.5, 105.5], [23.5, 104.5], [23.5, 104.5], [23.5, 103.5], [23.5, 103.5], [24.5, 102.5], [25.5, 101.5], [25.5, 101.5], [26.5, 101.5], [27.5, 101.5], [28.5, 101.5], [29.5, 101.5], [30.5, 101.5], [30.5, 101.5], [30.5, 101.5], [31.5, 101.5], [31.5, 101.5], [31.5, 101.5], [31.5, 102.5], [31.5, 102.5], [31.5, 103.5], [31.5, 104.5], [31.5, 105.5], [31.5, 107.5], [30.5, 108.5], [29.5, 109.5], [29.5, 109.5], [29.5, 110.5], [28.5, 110.5], [27.5, 110.5], [26.5, 110.5], [26.5, 110.5], [25.5, 111.5], [24.5, 111.5], [24.5, 111.5], [23.5, 111.5], [22.5, 111.5], [22.5, 111.5], [22.5, 111.5], [21.5, 111.5], [21.5, 110.5]]], [{"color": "red", "pensize": 1, "sectors": 32, "mirror": 0, "center": [133.166666667, 0], "radius": 266.5}, [[123.5, 27.5], [124.5, 29.5], [124.5, 29.5], [124.5, 30.5], [125.5, 30.5], [125.5, 30.5], [126.5, 30.5], [126.5, 31.5], [126.5, 32.5], [126.5, 32.5], [127.5, 33.5], [127.5, 34.5], [127.5, 34.5], [127.5, 34.5], [127.5, 35.5], [127.5, 35.5], [127.5, 36.5]]], [{"color": "red", "pensize": 1, "sectors": 32, "mirror": 0, "center": [133.166666667, 0], "radius": 266.5}, [[325.5, 199.5], [323.5, 199.5], [323.5, 199.5], [322.5, 199.5], [321.5, 199.5], [321.5, 198.5], [321.5, 197.5], [321.5, 196.5], [321.5, 195.5], [321.5, 195.5], [321.5, 194.5], [321.5, 193.5], [322.5, 192.5], [323.5, 192.5], [324.5, 191.5], [325.5, 191.5], [325.5, 190.5], [326.5, 190.5], [326.5, 190.5], [327.5, 190.5], [327.5, 190.5], [327.5, 190.5], [328.5, 190.5], [328.5, 190.5], [329.5, 190.5], [329.5, 190.5], [329.5, 191.5], [330.5, 191.5], [330.5, 191.5], [330.5, 192.5], [330.5, 192.5], [331.5, 193.5], [331.5, 193.5], [331.5, 195.5], [332.5, 195.5], [332.5, 196.5], [332.5, 196.5], [332.5, 197.5], [332.5, 197.5], [332.5, 197.5], [331.5, 197.5], [330.5, 198.5], [329.5, 198.5], [329.5, 198.5], [329.5, 198.5], [327.5, 198.5], [327.5, 198.5], [326.5, 198.5], [325.5, 198.5], [325.5, 198.5], [325.5, 199.5], [324.5, 199.5], [324.5, 199.5]]], [{"color": "deep sky blue", "pensize": 4, "sectors": 32, "mirror": 0, "center": [133.166666667, 0], "radius": 266.5}, [[27.5, 130.5], [27.5, 130.5], [27.5, 130.5], [27.5, 129.5], [27.5, 129.5], [27.5, 129.5], [26.5, 128.5], [26.5, 128.5], [25.5, 128.5], [25.5, 127.5], [25.5, 127.5], [25.5, 127.5], [25.5, 126.5], [25.5, 126.5], [25.5, 126.5], [25.5, 125.5], [26.5, 125.5], [27.5, 125.5], [27.5, 124.5], [29.5, 124.5], [29.5, 124.5], [30.5, 124.5], [30.5, 124.5], [30.5, 123.5], [31.5, 123.5], [31.5, 123.5], [31.5, 124.5], [31.5, 124.5], [31.5, 126.5], [31.5, 127.5], [30.5, 129.5], [30.5, 129.5], [30.5, 130.5], [30.5, 130.5], [30.5, 130.5], [30.5, 131.5], [30.5, 131.5], [30.5, 131.5], [30.5, 132.5], [30.5, 132.5]]], [{"color": "deep sky blue", "pensize": 4, "sectors": 32, "mirror": 0, "center": [133.166666667, 0], "radius": 266.5}, [[-31.5, 205.5], [-34.5, 200.5], [-35.5, 199.5], [-35.5, 198.5], [-36.5, 198.5], [-36.5, 197.5], [-37.5, 197.5], [-37.5, 197.5], [-37.5, 196.5], [-37.5, 196.5], [-37.5, 196.5], [-37.5, 196.5], [-35.5, 195.5], [-34.5, 195.5], [-33.5, 195.5], [-33.5, 195.5], [-32.5, 195.5], [-32.5, 195.5], [-31.5, 195.5], [-30.5, 195.5], [-30.5, 195.5], [-29.5, 195.5], [-29.5, 195.5], [-28.5, 195.5], [-28.5, 195.5], [-28.5, 196.5], [-28.5, 196.5], [-28.5, 197.5], [-28.5, 198.5], [-28.5, 199.5], [-27.5, 200.5], [-27.5, 200.5], [-26.5, 202.5], [-26.5, 202.5], [-26.5, 203.5], [-25.5, 203.5], [-25.5, 204.5], [-25.5, 205.5], [-24.5, 205.5], [-25.5, 205.5], [-26.5, 205.5], [-28.5, 204.5], [-30.5, 203.5], [-30.5, 203.5], [-31.5, 203.5], [-31.5, 202.5], [-32.5, 202.5], [-32.5, 202.5]]], [{"color": "medium sea green", "pensize": 4, "sectors": 32, "mirror": 0, "center": [133.166666667, 0], "radius": 266.5}, [[-58.5, 58.5], [-59.5, 58.5], [-60.5, 58.5], [-60.5, 58.5], [-61.5, 58.5], [-61.5, 58.5], [-61.5, 58.5], [-61.5, 58.5], [-61.5, 58.5], [-62.5, 57.5], [-61.5, 57.5], [-61.5, 57.5], [-61.5, 57.5]]]]
[[{"color": "black", "pensize": 1, "sectors": 8, "mirror": 0, "center": [133.166666667, 0], "radius": 266.5}, [[17.5, 117.5]]], [{"color": "black", "pensize": 1, "sectors": 8, "mirror": 0, "center": [133.166666667, 0], "radius": 266.5}, [[17.5, 116.5], [17.5, 116.5], [17.5, 116.5], [18.5, 116.5], [18.5, 117.5], [18.5, 117.5], [18.5, 117.5], [19.5, 118.5], [19.5, 119.5], [20.5, 120.5], [21.5, 122.5], [22.5, 124.5], [22.5, 125.5], [23.5, 127.5], [24.5, 127.5], [24.5, 128.5], [24.5, 129.5], [25.5, 131.5], [25.5, 133.5], [25.5, 134.5], [25.5, 134.5], [25.5, 135.5], [25.5, 136.5], [25.5, 136.5], [25.5, 138.5], [25.5, 139.5], [25.5, 141.5], [25.5, 142.5], [25.5, 143.5], [25.5, 145.5], [25.5, 146.5], [25.5, 147.5], [25.5, 149.5], [25.5, 151.5], [25.5, 152.5], [25.5, 153.5], [25.5, 154.5], [25.5, 155.5], [25.5, 157.5], [25.5, 157.5], [26.5, 159.5], [27.5, 161.5], [28.5, 162.5], [28.5, 164.5], [29.5, 165.5], [29.5, 166.5], [30.5, 166.5], [31.5, 168.5], [32.5, 169.5], [34.5, 171.5], [35.5, 173.5], [37.5, 174.5], [38.5, 176.5], [39.5, 177.5], [40.5, 179.5], [42.5, 180.5], [43.5, 182.5], [44.5, 184.5], [45.5, 185.5], [45.5, 187.5], [46.5, 189.5], [47.5, 192.5], [48.5, 195.5], [48.5, 197.5], [48.5, 199.5], [48.5, 201.5], [48.5, 203.5], [48.5, 205.5], [48.5, 207.5], [47.5, 209.5], [47.5, 211.5], [46.5, 212.5], [46.5, 213.5], [45.5, 216.5], [45.5, 217.5], [45.5, 218.5], [45.5, 217.5], [45.5, 217.5], [45.5, 216.5], [46.5, 215.5], [47.5, 213.5], [48.5, 212.5], [49.5, 210.5], [51.5, 209.5], [53.5, 207.5], [54.5, 206.5], [54.5, 206.5], [56.5, 205.5], [57.5, 204.5], [58.5, 203.5], [60.5, 203.5], [61.5, 202.5], [62.5, 202.5], [63.5, 202.5], [66.5, 201.5], [67.5, 201.5], [69.5, 201.5], [70.5, 201.5], [71.5, 201.5], [73.5, 202.5], [75.5, 202.5], [77.5, 203.5], [79.5, 203.5], [81.5, 203.5], [83.5, 203.5], [85.5, 204.5], [87.5, 205.5], [89.5, 205.5], [91.5, 206.5], [93.5, 207.5], [95.5, 207.5], [95.5, 207.5], [97.5, 207.5], [98.5, 207.5], [99.5, 207.5], [99.5, 207.5], [100.5, 207.5], [100.5, 207.5], [101.5, 207.5], [101.5, 207.5], [103.5, 206.5], [103.5, 205.5], [104.5, 205.5], [104.5, 205.5], [105.5, 204.5], [105.5, 203.5], [106.5, 203.5], [107.5, 201.5], [107.5, 201.5], [108.5, 200.5], [108.5, 199.5], [109.5, 197.5], [110.5, 196.5], [110.5, 194.5], [112.5, 192.5], [112.5, 191.5], [113.5, 190.5], [113.5, 189.5], [114.5, 188.5], [115.5, 188.5], [115.5, 186.5], [116.5, 185.5], [117.5, 184.5], [118.5, 184.5], [119.5, 183.5], [119.5, 182.5], [121.5, 181.5], [122.5, 180.5], [123.5, 179.5], [123.5, 178.5], [125.5, 177.5], [125.5, 177.5], [126.5, 176.5], [127.5, 175.5], [128.5, 174.5], [128.5, 173.5], [129.5, 173.5], [130.5, 172.5], [130.5, 171.5], [130.5, 171.5], [130.5, 171.5], [130.5, 170.5], [131.5, 169.5], [131.5, 169.5], [132.5, 168.5], [132.5, 167.5], [132.5, 167.5], [132.5, 167.5], [132.5, 166.5]]], [{"color": "black", "pensize": 1, "sectors": 8, "mirror": 0, "center": [133.166666667, 0], "radius": 266.5}, [[47.5, 167.5], [42.5, 161.5], [41.5, 159.5], [41.5, 158.5], [40.5, 157.5], [40.5, 156.5], [40.5, 154.5], [39.5, 152.5], [39.5, 150.5], [39.5, 148.5], [38.5, 146.5], [38.5, 144.5], [38.5, 142.5], [38.5, 140.5], [38.5, 137.5], [38.5, 135.5], [37.5, 133.5], [37.5, 131.5], [37.5, 127.5], [37.5, 125.5], [37.5, 123.5], [37.5, 122.5], [37.5, 121.5], [36.5, 119.5], [36.5, 118.5], [35.5, 116.5], [35.5, 115.5], [34.5, 114.5], [34.5, 113.5], [33.5, 112.5], [32.5, 111.5], [32.5, 110.5], [30.5, 109.5], [28.5, 108.5], [27.5, 106.5], [26.5, 106.5], [25.5, 104.5], [24.5, 104.5], [23.5, 104.5], [23.5, 103.5], [22.5, 103.5], [22.5, 103.5], [20.5, 103.5], [20.5, 103.5], [19.5, 103.5], [18.5, 102.5], [17.5, 102.5], [15.5, 102.5], [14.5, 102.5], [11.5, 102.5], [9.5, 102.5], [7.5, 102.5], [6.5, 103.5], [5.5, 103.5], [3.5, 103.5], [1.5, 104.5], [0.5, 104.5], [-2.5, 104.5], [-3.5, 105.5], [-4.5, 105.5], [-5.5, 105.5], [-7.5, 106.5], [-10.5, 106.5], [-14.5, 106.5], [-16.5, 107.5], [-19.5, 107.5], [-22.5, 107.5], [-23.5, 107.5], [-24.5, 107.5], [-26.5, 107.5], [-27.5, 107.5], [-28.5, 107.5], [-29.5, 106.5], [-31.5, 106.5], [-32.5, 105.5], [-32.5, 104.5], [-33.5, 104.5], [-33.5, 104.5], [-33.5, 104.5], [-33.5, 103.5], [-34.5, 102.5], [-35.5, 101.5], [-35.5, 100.5], [-36.5, 98.5], [-36.5, 97.5], [-37.5, 96.5], [-37.5, 95.5], [-38.5, 94.5], [-38.5, 93.5], [-39.5, 92.5], [-39.5, 91.5], [-40.5, 91.5], [-40.5, 91.5], [-41.5, 90.5], [-42.5, 89.5], [-42.5, 89.5], [-43.5, 88.5], [-43.5, 88.5], [-44.5, 88.5], [-45.5, 87.5], [-46.5, 87.5], [-47.5, 86.5], [-48.5, 86.5], [-49.5, 86.5], [-50.5, 86.5], [-51.5, 86.5], [-52.5, 86.5], [-54.5, 86.5], [-55.5, 86.5], [-56.5, 85.5], [-56.5, 85.5], [-56.5, 84.5], [-56.5, 84.5], [-56.5, 84.5], [-56.5, 83.5], [-55.5, 82.5], [-54.5, 80.5], [-54.5, 79.5], [-53.5, 78.5], [-52.5, 78.5], [-52.5, 77.5], [-51.5, 76.5], [-51.5, 76.5], [-50.5, 75.5], [-50.5, 74.5], [-49.5, 74.5], [-49.5, 73.5], [-48.5, 73.5], [-48.5, 72.5], [-47.5, 71.5], [-47.5, 71.5], [-47.5, 71.5], [-47.5, 70.5], [-47.5, 69.5], [-47.5, 68.5], [-47.5, 67.5], [-47.5, 66.5], [-47.5, 65.5], [-47.5, 65.5], [-47.5, 64.5], [-47.5, 63.5], [-47.5, 63.5], [-47.5, 62.5], [-47.5, 61.5], [-47.5, 61.5], [-47.5, 60.5], [-47.5, 60.5], [-47.5, 59.5], [-47.5, 59.5], [-47.5, 58.5], [-47.5, 57.5], [-47.5, 56.5], [-47.5, 56.5], [-47.5, 56.5], [-47.5, 55.5], [-46.5, 55.5]]], [{"color": "black", "pensize": 1, "sectors": 16, "mirror": 1, "center": [133.166666667, 0], "radius": 266.5}, [[71.5, 146.5], [71.5, 146.5], [72.5, 143.5], [72.5, 139.5], [72.5, 137.5], [72.5, 136.5], [72.5, 134.5], [72.5, 134.5], [72.5, 133.5], [72.5, 132.5], [72.5, 131.5], [72.5, 130.5], [72.5, 128.5], [71.5, 126.5], [71.5, 125.5], [71.5, 123.5], [70.5, 121.5], [70.5, 119.5], [69.5, 117.5], [69.5, 116.5], [69.5, 114.5], [68.5, 113.5], [68.5, 113.5], [68.5, 112.5], [67.5, 110.5], [66.5, 110.5], [65.5, 108.5], [64.5, 106.5], [64.5, 106.5], [63.5, 105.5], [63.5, 105.5], [62.5, 104.5], [61.5, 104.5], [61.5, 105.5], [61.5, 105.5], [61.5, 106.5], [61.5, 106.5], [61.5, 107.5], [61.5, 108.5], [59.5, 111.5], [58.5, 113.5], [56.5, 115.5], [54.5, 117.5], [53.5, 118.5], [52.5, 120.5], [51.5, 121.5], [50.5, 121.5], [50.5, 120.5], [49.5, 120.5], [48.5, 120.5], [47.5, 119.5], [47.5, 118.5], [46.5, 117.5], [46.5, 117.5], [46.5, 116.5], [45.5, 113.5], [45.5, 111.5], [45.5, 109.5], [45.5, 107.5], [45.5, 104.5], [45.5, 102.5], [45.5, 100.5], [45.5, 98.5], [46.5, 96.5], [46.5, 94.5], [46.5, 92.5], [46.5, 91.5], [46.5, 89.5], [46.5, 89.5], [46.5, 87.5], [47.5, 86.5], [47.5, 85.5], [48.5, 84.5], [49.5, 82.5], [50.5, 81.5], [52.5, 79.5], [54.5, 77.5], [55.5, 76.5], [57.5, 74.5], [58.5, 73.5], [60.5, 73.5], [60.5, 73.5], [62.5, 72.5], [67.5, 72.5], [71.5, 72.5], [76.5, 72.5], [80.5, 72.5], [84.5, 72.5], [88.5, 72.5], [91.5, 73.5], [95.5, 73.5], [99.5, 73.5], [103.5, 73.5], [106.5, 72.5], [108.5, 71.5], [111.5, 70.5], [112.5, 69.5], [114.5, 68.5], [116.5, 66.5], [117.5, 65.5], [120.5, 61.5], [122.5, 58.5], [123.5, 56.5], [124.5, 54.5], [125.5, 52.5], [125.5, 51.5], [125.5, 49.5], [124.5, 47.5], [124.5, 46.5], [122.5, 45.5], [120.5, 44.5], [117.5, 44.5], [116.5, 43.5], [115.5, 42.5], [114.5, 42.5], [113.5, 42.5], [111.5, 43.5], [110.5, 43.5], [109.5, 43.5], [107.5, 43.5], [106.5, 42.5], [106.5, 42.5], [106.5, 42.5], [105.5, 42.5], [104.5, 41.5], [103.5, 39.5], [102.5, 37.5], [102.5, 37.5], [102.5, 36.5], [102.5, 35.5], [102.5, 33.5], [103.5, 31.5], [103.5, 29.5], [104.5, 27.5], [105.5, 26.5], [106.5, 25.5], [107.5, 22.5], [109.5, 20.5], [111.5, 19.5], [112.5, 18.5], [113.5, 18.5], [114.5, 17.5], [114.5, 17.5], [115.5, 17.5], [117.5, 16.5], [118.5, 16.5], [118.5, 16.5], [118.5, 16.5], [119.5, 16.5], [120.5, 16.5], [121.5, 16.5], [122.5, 14.5], [123.5, 13.5]]], [{"color": "red", "pensize": 1, "sectors": 16, "mirror": 0, "center": [133.166666667, 0], "radius": 266.5}, [[-109.5, 107.5], [-73.5, 123.5], [-71.5, 124.5]]], [{"color": "red", "pensize": 1, "sectors": 16, "mirror": 0, "center": [133.166666667, 0], "radius": 266.5}, [[-72.5, 124.5], [-72.5, 125.5], [-71.5, 125.5], [-69.5, 127.5], [-66.5, 129.5], [-65.5, 130.5], [-63.5, 131.5], [-63.5, 132.5], [-62.5, 134.5], [-61.5, 135.5], [-60.5, 136.5], [-60.5, 138.5], [-59.5, 138.5], [-59.5, 140.5], [-59.5, 141.5], [-61.5, 149.5], [-61.5, 150.5], [-63.5, 152.5], [-65.5, 153.5], [-66.5, 156.5], [-67.5, 158.5], [-68.5, 160.5], [-70.5, 164.5], [-70.5, 170.5], [-65.5, 178.5], [-62.5, 180.5], [-59.5, 181.5], [-57.5, 181.5], [-55.5, 181.5], [-54.5, 181.5], [-52.5, 181.5], [-52.5, 179.5], [-51.5, 177.5], [-50.5, 175.5], [-50.5, 172.5], [-49.5, 167.5], [-49.5, 165.5], [-48.5, 163.5], [-47.5, 160.5], [-47.5, 158.5], [-46.5, 156.5], [-43.5, 154.5], [-39.5, 152.5], [-36.5, 151.5], [-32.5, 150.5], [-30.5, 149.5], [-24.5, 149.5], [-18.5, 151.5], [-13.5, 153.5], [-11.5, 153.5], [-9.5, 155.5], [-8.5, 155.5], [-6.5, 157.5], [-4.5, 160.5], [-2.5, 162.5], [-2.5, 163.5], [-1.5, 165.5], [-1.5, 167.5], [-1.5, 170.5], [-1.5, 172.5], [-1.5, 174.5], [-1.5, 176.5], [-1.5, 177.5], [-1.5, 177.5], [-1.5, 178.5], [-1.5, 178.5], [-1.5, 178.5], [-2.5, 177.5], [-4.5, 176.5], [-7.5, 175.5], [-10.5, 173.5], [-13.5, 173.5], [-15.5, 173.5], [-18.5, 173.5], [-24.5, 173.5], [-26.5, 173.5], [-28.5, 173.5], [-30.5, 175.5], [-32.5, 176.5], [-34.5, 177.5], [-35.5, 178.5], [-37.5, 179.5], [-37.5, 180.5], [-39.5, 181.5], [-40.5, 183.5], [-41.5, 184.5], [-42.5, 185.5], [-44.5, 186.5], [-44.5, 187.5], [-46.5, 188.5], [-47.5, 190.5], [-48.5, 190.5], [-48.5, 191.5], [-49.5, 192.5], [-49.5, 192.5], [-50.5, 192.5], [-50.5, 192.5], [-50.5, 193.5]]], [{"color": "medium slate blue", "pensize": 1, "sectors": 16, "mirror": 0, "center": [133.166666667, 0], "radius": 266.5}, [[259.5, 247.5], [260.5, 245.5], [261.5, 243.5], [261.5, 240.5], [262.5, 238.5], [263.5, 236.5], [263.5, 234.5], [264.5, 232.5], [265.5, 227.5], [265.5, 225.5], [266.5, 224.5], [267.5, 221.5], [269.5, 219.5], [269.5, 218.5], [270.5, 217.5], [271.5, 216.5], [272.5, 214.5], [272.5, 214.5], [272.5, 214.5], [274.5, 213.5], [275.5, 213.5], [280.5, 213.5], [282.5, 213.5], [282.5, 213.5], [285.5, 212.5], [287.5, 212.5], [290.5, 212.5], [292.5, 212.5], [297.5, 212.5], [305.5, 210.5], [309.5, 209.5], [311.5, 209.5], [313.5, 209.5], [314.5, 209.5], [315.5, 209.5], [315.5, 209.5], [315.5, 208.5], [316.5, 208.5], [316.5, 208.5], [317.5, 207.5], [318.5, 205.5], [319.5, 205.5], [320.5, 203.5], [321.5, 202.5], [322.5, 201.5], [322.5, 201.5], [323.5, 200.5], [323.5, 200.5], [325.5, 199.5], [327.5, 197.5], [329.5, 197.5], [330.5, 197.5], [331.5, 196.5], [332.5, 196.5], [334.5, 196.5], [335.5, 196.5], [336.5, 196.5], [338.5, 196.5], [339.5, 196.5], [339.5, 196.5], [339.5, 196.5], [339.5, 195.5], [339.5, 194.5], [339.5, 194.5], [339.5, 192.5], [339.5, 191.5], [339.5, 191.5], [339.5, 190.5], [339.5, 188.5], [340.5, 186.5], [340.5, 185.5], [340.5, 184.5], [340.5, 184.5], [340.5, 183.5], [341.5, 183.5], [342.5, 182.5], [342.5, 181.5], [344.5, 180.5], [344.5, 179.5], [344.5, 179.5], [345.5, 179.5], [345.5, 179.5], [345.5, 179.5], [345.5, 179.5], [346.5, 180.5], [346.5, 180.5], [348.5, 182.5], [349.5, 183.5], [350.5, 184.5], [351.5, 185.5], [351.5, 186.5], [351.5, 186.5], [351.5, 187.5], [351.5, 187.5], [351.5, 188.5], [351.5, 189.5], [351.5, 190.5], [351.5, 190.5], [351.5, 190.5], [350.5, 190.5], [350.5, 191.5], [349.5, 191.5], [349.5, 191.5], [348.5, 192.5], [346.5, 195.5], [346.5, 197.5], [346.5, 198.5], [345.5, 200.5], [345.5, 202.5], [345.5, 202.5], [345.5, 203.5], [345.5, 204.5], [345.5, 204.5], [345.5, 204.5], [345.5, 205.5], [345.5, 206.5], [345.5, 208.5], [345.5, 209.5], [344.5, 209.5], [344.5, 209.5], [344.5, 209.5], [343.5, 209.5], [343.5, 208.5], [340.5, 208.5], [338.5, 207.5], [336.5, 207.5], [335.5, 207.5], [334.5, 207.5], [331.5, 208.5], [329.5, 209.5], [327.5, 209.5], [325.5, 210.5], [323.5, 211.5], [322.5, 211.5], [322.5, 211.5], [321.5, 212.5], [320.5, 212.5], [318.5, 214.5], [317.5, 215.5], [316.5, 215.5], [316.5, 214.5], [315.5, 214.5], [314.5, 213.5], [313.5, 213.5], [313.5, 212.5], [313.5, 212.5], [312.5, 211.5], [312.5, 211.5]]], [{"color": "medium slate blue", "pensize": 1, "sectors": 16, "mirror": 0, "center": [133.166666667, 0], "radius": 266.5}, [[343.5, 211.5], [334.5, 219.5], [334.5, 221.5], [334.5, 222.5], [335.5, 224.5], [336.5, 226.5], [337.5, 229.5], [339.5, 231.5], [339.5, 232.5], [341.5, 233.5], [343.5, 233.5], [348.5, 235.5], [348.5, 235.5], [349.5, 235.5], [349.5, 234.5], [349.5, 233.5], [350.5, 231.5], [350.5, 230.5], [351.5, 227.5], [351.5, 226.5], [351.5, 225.5], [351.5, 223.5], [351.5, 223.5], [352.5, 223.5], [353.5, 224.5], [356.5, 226.5], [361.5, 229.5], [364.5, 229.5], [367.5, 229.5], [368.5, 229.5], [370.5, 228.5], [372.5, 227.5], [374.5, 225.5], [374.5, 224.5], [375.5, 221.5], [375.5, 219.5], [374.5, 218.5], [374.5, 216.5], [372.5, 214.5], [368.5, 209.5], [363.5, 207.5], [360.5, 205.5], [358.5, 205.5], [355.5, 205.5], [347.5, 205.5], [344.5, 205.5], [342.5, 206.5], [342.5, 206.5], [341.5, 206.5], [341.5, 206.5], [340.5, 206.5]]], [{"color": "red", "pensize": 4, "sectors": 16, "mirror": 0, "center": [133.166666667, 0], "radius": 266.5}, [[347.5, 236.5], [347.5, 237.5], [347.5, 240.5], [346.5, 244.5], [346.5, 245.5], [346.5, 246.5], [346.5, 247.5], [346.5, 248.5], [347.5, 249.5], [347.5, 249.5], [348.5, 249.5], [350.5, 250.5], [351.5, 250.5], [353.5, 250.5], [354.5, 250.5], [355.5, 250.5], [356.5, 249.5], [357.5, 248.5], [357.5, 247.5], [357.5, 246.5], [357.5, 243.5], [357.5, 242.5], [357.5, 240.5], [357.5, 238.5], [357.5, 237.5], [357.5, 236.5], [358.5, 237.5], [358.5, 238.5], [363.5, 240.5], [368.5, 243.5], [370.5, 244.5], [371.5, 244.5], [372.5, 244.5], [373.5, 244.5], [374.5, 243.5], [376.5, 243.5], [376.5, 242.5], [377.5, 241.5], [378.5, 240.5], [378.5, 239.5], [378.5, 238.5], [377.5, 236.5], [376.5, 235.5], [374.5, 234.5], [372.5, 233.5], [370.5, 232.5], [367.5, 232.5], [364.5, 232.5], [362.5, 231.5], [360.5, 230.5], [359.5, 228.5], [357.5, 227.5], [356.5, 225.5], [355.5, 224.5], [354.5, 224.5], [354.5, 224.5], [353.5, 223.5], [352.5, 223.5], [351.5, 223.5], [351.5, 223.5], [351.5, 223.5], [351.5, 223.5], [350.5, 225.5], [348.5, 229.5], [346.5, 232.5], [345.5, 234.5], [344.5, 236.5], [344.5, 237.5], [344.5, 237.5], [344.5, 238.5]]], [{"color": "red", "pensize": 4, "sectors": 16, "mirror": 0, "center": [133.166666667, 0], "radius": 266.5}, [[38.5, 73.5], [39.5, 67.5], [39.5, 65.5], [39.5, 64.5], [39.5, 62.5], [38.5, 60.5], [37.5, 60.5], [34.5, 59.5], [32.5, 59.5], [30.5, 58.5], [30.5, 58.5], [29.5, 57.5], [28.5, 57.5], [28.5, 56.5], [29.5, 56.5], [31.5, 56.5], [35.5, 55.5], [38.5, 54.5], [41.5, 53.5], [41.5, 53.5], [42.5, 53.5], [43.5, 53.5], [44.5, 54.5], [47.5, 54.5], [48.5, 54.5], [50.5, 54.5], [51.5, 54.5], [51.5, 54.5], [50.5, 56.5], [49.5, 60.5], [47.5, 63.5], [47.5, 66.5], [47.5, 67.5], [47.5, 67.5], [47.5, 68.5], [47.5, 68.5], [46.5, 69.5], [45.5, 69.5], [45.5, 70.5], [44.5, 71.5], [42.5, 71.5], [41.5, 71.5], [40.5, 71.5], [40.5, 72.5], [39.5, 72.5], [38.5, 72.5], [37.5, 72.5], [37.5, 72.5]]], [{"color": "red", "pensize": 4, "sectors": 16, "mirror": 0, "center": [133.166666667, 0], "radius": 266.5}, [[131.5, 9.5], [130.5, 11.5], [129.5, 11.5], [128.5, 10.5], [127.5, 9.5], [127.5, 9.5], [127.5, 8.5]]], [{"color": "cornflower blue", "pensize": 4, "sectors": 16, "mirror": 0, "center": [133.166666667, 0], "radius": 266.5}, [[83.5, 47.5], [83.5, 46.5], [84.5, 46.5], [85.5, 45.5], [85.5, 45.5], [86.5, 44.5], [86.5, 44.5], [87.5, 44.5], [87.5, 44.5], [87.5, 43.5], [87.5, 43.5], [87.5, 42.5], [86.5, 42.5], [86.5, 42.5], [86.5, 42.5], [85.5, 42.5], [85.5, 41.5]]], [{"color": "medium sea green", "pensize": 4, "sectors": 16, "mirror": 0, "center": [133.166666667, 0], "radius": 266.5}, [[61.5, 182.5], [59.5, 178.5], [58.5, 176.5], [57.5, 174.5], [56.5, 171.5], [54.5, 168.5], [53.5, 166.5], [53.5, 164.5], [52.5, 163.5], [51.5, 160.5], [50.5, 158.5], [49.5, 155.5], [49.5, 155.5], [49.5, 153.5], [49.5, 152.5], [50.5, 149.5], [50.5, 148.5], [50.5, 147.5], [50.5, 145.5], [50.5, 144.5], [50.5, 143.5], [50.5, 142.5], [50.5, 141.5], [50.5, 140.5], [50.5, 139.5], [51.5, 139.5], [53.5, 140.5], [54.5, 140.5], [55.5, 140.5], [55.5, 141.5], [57.5, 140.5], [61.5, 139.5], [61.5, 138.5], [62.5, 138.5], [62.5, 137.5], [62.5, 136.5], [62.5, 136.5], [62.5, 134.5], [62.5, 134.5], [62.5, 134.5], [62.5, 133.5], [62.5, 134.5], [62.5, 135.5], [62.5, 136.5], [62.5, 140.5], [62.5, 144.5], [62.5, 147.5], [63.5, 149.5], [63.5, 152.5], [64.5, 154.5], [65.5, 157.5], [66.5, 158.5], [66.5, 158.5], [67.5, 158.5], [68.5, 157.5], [75.5, 154.5], [78.5, 152.5], [80.5, 151.5], [81.5, 150.5], [82.5, 149.5], [83.5, 149.5], [84.5, 148.5], [86.5, 146.5], [87.5, 146.5], [88.5, 145.5], [88.5, 145.5], [89.5, 145.5], [89.5, 145.5], [90.5, 147.5], [95.5, 150.5], [96.5, 152.5], [97.5, 153.5], [98.5, 154.5], [99.5, 156.5], [99.5, 156.5], [99.5, 157.5], [99.5, 157.5], [99.5, 158.5], [99.5, 158.5], [99.5, 158.5], [99.5, 161.5], [99.5, 163.5], [99.5, 166.5], [100.5, 168.5], [100.5, 169.5], [99.5, 169.5], [99.5, 169.5], [97.5, 169.5], [95.5, 170.5], [92.5, 170.5], [90.5, 171.5], [87.5, 172.5], [83.5, 173.5], [79.5, 174.5], [77.5, 175.5], [74.5, 176.5], [73.5, 176.5], [72.5, 176.5], [71.5, 177.5], [70.5, 177.5], [69.5, 177.5], [68.5, 178.5], [67.5, 178.5], [66.5, 179.5], [64.5, 180.5], [63.5, 181.5], [62.5, 181.5], [62.5, 182.5], [61.5, 182.5], [60.5, 182.5], [59.5, 182.5]]], [{"color": "dark turquoise", "pensize": 4, "sectors": 16, "mirror": 0, "center": [133.166666667, 0], "radius": 266.5}, [[-18.5, 185.5], [-4.5, 186.5], [0.5, 186.5], [5.5, 187.5], [6.5, 187.5], [8.5, 188.5], [9.5, 188.5], [10.5, 188.5], [10.5, 189.5], [11.5, 189.5], [11.5, 189.5], [12.5, 189.5], [14.5, 190.5], [15.5, 191.5], [16.5, 193.5], [16.5, 195.5], [17.5, 197.5], [17.5, 200.5], [17.5, 202.5], [17.5, 204.5], [17.5, 205.5], [17.5, 206.5], [17.5, 206.5], [17.5, 206.5], [18.5, 205.5], [18.5, 205.5], [18.5, 203.5], [20.5, 200.5], [22.5, 198.5], [23.5, 196.5], [23.5, 195.5], [25.5, 194.5], [25.5, 193.5], [25.5, 193.5], [26.5, 192.5], [27.5, 192.5], [28.5, 192.5], [31.5, 191.5], [31.5, 191.5], [31.5, 190.5], [31.5, 190.5], [31.5, 188.5], [27.5, 184.5], [25.5, 182.5], [25.5, 180.5], [23.5, 178.5], [23.5, 176.5], [22.5, 176.5], [22.5, 175.5], [21.5, 174.5], [20.5, 171.5], [20.5, 169.5], [19.5, 168.5], [19.5, 167.5], [18.5, 167.5], [18.5, 167.5], [17.5, 168.5], [15.5, 170.5], [15.5, 172.5], [13.5, 174.5], [13.5, 175.5], [13.5, 176.5], [12.5, 176.5], [11.5, 178.5], [10.5, 179.5], [10.5, 180.5], [9.5, 181.5], [9.5, 181.5], [8.5, 182.5], [6.5, 183.5], [4.5, 183.5], [0.5, 184.5], [-2.5, 185.5], [-3.5, 185.5], [-4.5, 186.5], [-6.5, 186.5], [-7.5, 186.5], [-9.5, 186.5], [-12.5, 186.5], [-14.5, 186.5], [-14.5, 186.5], [-16.5, 185.5], [-17.5, 185.5], [-18.5, 185.5], [-18.5, 186.5]]], [{"color": "coral", "pensize": 2, "sectors": 16, "mirror": 0, "center": [133.166666667, 0], "radius": 266.5}, [[-85.5, -128.5], [-79.5, -129.5], [-78.5, -129.5], [-76.5, -131.5], [-75.5, -132.5], [-74.5, -133.5], [-73.5, -134.5], [-73.5, -136.5], [-72.5, -137.5], [-71.5, -138.5], [-71.5, -139.5], [-70.5, -141.5], [-70.5, -143.5], [-69.5, -146.5], [-69.5, -148.5], [-69.5, -151.5], [-69.5, -153.5], [-69.5, -155.5], [-69.5, -156.5], [-69.5, -158.5], [-70.5, -160.5], [-71.5, -161.5], [-71.5, -163.5], [-72.5, -165.5], [-73.5, -167.5], [-73.5, -168.5], [-73.5, -170.5], [-73.5, -170.5], [-73.5, -170.5], [-72.5, -169.5], [-71.5, -169.5], [-69.5, -168.5], [-68.5, -167.5], [-67.5, -166.5], [-65.5, -164.5], [-65.5, -163.5], [-65.5, -163.5], [-65.5, -162.5], [-65.5, -161.5], [-65.5, -159.5], [-64.5, -155.5], [-63.5, -152.5], [-62.5, -150.5], [-62.5, -147.5], [-62.5, -146.5], [-62.5, -145.5], [-63.5, -145.5], [-63.5, -144.5], [-65.5, -142.5], [-66.5, -139.5], [-67.5, -136.5], [-68.5, -134.5], [-69.5, -132.5], [-69.5, -132.5], [-69.5, -131.5], [-70.5, -131.5], [-71.5, -130.5], [-72.5, -129.5], [-73.5, -128.5], [-75.5, -128.5], [-77.5, -127.5], [-79.5, -127.5], [-81.5, -126.5], [-83.5, -126.5], [-85.5, -126.5], [-86.5, -126.5], [-88.5, -126.5], [-88.5, -126.5], [-89.5, -126.5], [-90.5, -126.5]]], [{"color": "hot pink", "pensize": 16, "sectors": 16, "mirror": 0, "center": [133.166666667, 0], "radius": 266.5}, [[-88.5, 180.5], [-88.5, 178.5], [-88.5, 174.5], [-89.5, 171.5], [-90.5, 169.5], [-90.5, 167.5], [-90.5, 166.5], [-91.5, 164.5], [-91.5, 161.5], [-92.5, 159.5], [-92.5, 158.5], [-92.5, 158.5], [-92.5, 157.5], [-93.5, 156.5], [-93.5, 155.5], [-94.5, 154.5], [-94.5, 152.5], [-95.5, 151.5], [-96.5, 150.5], [-96.5, 149.5], [-97.5, 148.5], [-98.5, 146.5], [-99.5, 145.5], [-99.5, 145.5], [-99.5, 145.5], [-101.5, 144.5], [-102.5, 143.5], [-103.5, 143.5], [-105.5, 144.5], [-109.5, 145.5], [-114.5, 146.5], [-116.5, 147.5], [-118.5, 148.5], [-119.5, 148.5], [-120.5, 148.5], [-121.5, 149.5], [-122.5, 149.5], [-123.5, 149.5], [-124.5, 149.5], [-124.5, 149.5], [-125.5, 149.5], [-126.5, 149.5], [-126.5, 150.5], [-126.5, 151.5], [-126.5, 151.5], [-124.5, 154.5], [-124.5, 154.5], [-124.5, 154.5], [-121.5, 155.5], [-119.5, 156.5], [-118.5, 157.5], [-117.5, 157.5], [-114.5, 157.5], [-113.5, 157.5], [-111.5, 157.5], [-108.5, 157.5], [-108.5, 157.5], [-108.5, 157.5], [-107.5, 158.5], [-106.5, 158.5], [-105.5, 159.5], [-103.5, 160.5], [-102.5, 162.5], [-101.5, 163.5], [-100.5, 164.5], [-100.5, 165.5], [-100.5, 167.5], [-99.5, 168.5], [-99.5, 169.5], [-99.5, 170.5], [-99.5, 171.5], [-99.5, 173.5], [-98.5, 175.5], [-98.5, 177.5], [-97.5, 178.5], [-97.5, 180.5], [-97.5, 180.5], [-96.5, 180.5], [-96.5, 181.5], [-96.5, 181.5], [-95.5, 183.5], [-95.5, 183.5], [-93.5, 184.5], [-93.5, 184.5], [-92.5, 184.5]]]]
[[{"color": "deep sky blue", "pensize": 1, "sectors": 16, "mirror": 1, "center": [133.166666667, 0], "radius": 266.5}, [[-71.5, 221.5], [-72.5, 220.5], [-77.5, 214.5], [-78.5, 211.5], [-79.5, 208.5], [-79.5, 205.5], [-79.5, 200.5], [-79.5, 195.5], [-79.5, 194.5], [-78.5, 193.5], [-76.5, 195.5], [-73.5, 196.5], [-70.5, 197.5], [-67.5, 199.5], [-65.5, 200.5], [-62.5, 201.5], [-60.5, 202.5], [-51.5, 204.5], [-47.5, 204.5], [-46.5, 204.5], [-45.5, 204.5], [-45.5, 203.5], [-43.5, 194.5], [-43.5, 186.5], [-43.5, 181.5], [-43.5, 179.5], [-44.5, 175.5], [-44.5, 174.5], [-44.5, 173.5], [-45.5, 170.5], [-45.5, 168.5], [-46.5, 160.5], [-47.5, 158.5], [-47.5, 153.5], [-47.5, 151.5], [-47.5, 149.5], [-47.5, 149.5], [-46.5, 149.5], [-41.5, 149.5], [-37.5, 152.5], [-36.5, 152.5], [-36.5, 152.5], [-34.5, 153.5], [-32.5, 154.5], [-27.5, 157.5], [-19.5, 160.5], [-13.5, 162.5], [-12.5, 162.5], [-9.5, 162.5], [-8.5, 162.5], [-8.5, 162.5], [-7.5, 159.5], [-7.5, 157.5], [-7.5, 156.5], [-7.5, 151.5], [-7.5, 147.5], [-7.5, 142.5], [-7.5, 140.5], [-7.5, 137.5], [-7.5, 135.5], [-7.5, 135.5], [-7.5, 132.5], [-7.5, 130.5], [-7.5, 126.5], [-7.5, 121.5], [-7.5, 118.5], [-7.5, 117.5], [-7.5, 117.5], [-8.5, 114.5], [-8.5, 113.5], [-9.5, 109.5], [-10.5, 107.5], [-10.5, 104.5], [-10.5, 101.5], [-11.5, 97.5], [-11.5, 96.5], [-11.5, 95.5], [-11.5, 95.5], [-11.5, 95.5], [-11.5, 94.5], [-11.5, 93.5], [-11.5, 91.5], [-11.5, 90.5], [-11.5, 89.5], [-11.5, 88.5], [-11.5, 88.5], [-11.5, 87.5], [-11.5, 86.5], [-11.5, 84.5], [-11.5, 83.5], [-10.5, 82.5], [-10.5, 82.5], [-10.5, 81.5], [-10.5, 80.5], [-9.5, 79.5], [-8.5, 77.5], [-5.5, 73.5], [-4.5, 71.5], [-3.5, 69.5], [-2.5, 67.5], [-2.5, 66.5], [1.5, 62.5], [1.5, 61.5], [3.5, 58.5], [4.5, 57.5], [6.5, 55.5], [7.5, 54.5], [8.5, 54.5], [8.5, 54.5], [9.5, 54.5], [11.5, 54.5], [15.5, 55.5], [17.5, 56.5], [20.5, 59.5], [22.5, 61.5], [26.5, 64.5], [27.5, 65.5], [29.5, 66.5], [29.5, 66.5], [30.5, 66.5], [30.5, 66.5], [31.5, 66.5], [32.5, 66.5], [34.5, 65.5], [35.5, 64.5], [36.5, 63.5], [36.5, 63.5], [37.5, 61.5], [39.5, 59.5], [39.5, 58.5], [39.5, 57.5], [39.5, 55.5], [39.5, 54.5], [40.5, 53.5], [43.5, 47.5], [46.5, 41.5], [46.5, 40.5], [47.5, 39.5], [48.5, 38.5], [49.5, 37.5], [51.5, 37.5], [52.5, 37.5], [52.5, 37.5], [53.5, 38.5], [55.5, 38.5], [56.5, 39.5], [57.5, 40.5], [58.5, 41.5], [59.5, 42.5], [60.5, 42.5], [63.5, 42.5], [64.5, 42.5], [65.5, 42.5], [68.5, 42.5], [70.5, 42.5], [73.5, 42.5], [74.5, 42.5], [75.5, 42.5], [78.5, 41.5], [79.5, 40.5], [79.5, 39.5], [83.5, 36.5], [89.5, 32.5], [94.5, 26.5], [95.5, 25.5], [96.5, 22.5], [97.5, 22.5], [97.5, 21.5], [97.5, 20.5], [97.5, 19.5], [97.5, 18.5], [97.5, 18.5], [97.5, 16.5], [97.5, 15.5], [98.5, 11.5], [99.5, 6.5], [101.5, 2.5], [101.5, 1.5]]], [{"color": "red", "pensize": 4, "sectors": 16, "mirror": 1, "center": [133.166666667, 0], "radius": 266.5}, [[-34.5, 256.5], [-35.5, 257.5], [-35.5, 257.5], [-36.5, 257.5], [-37.5, 257.5], [-37.5, 256.5], [-38.5, 255.5], [-39.5, 254.5], [-40.5, 253.5], [-40.5, 253.5], [-41.5, 252.5], [-41.5, 251.5], [-41.5, 250.5], [-41.5, 248.5], [-41.5, 246.5], [-41.5, 245.5], [-42.5, 242.5], [-42.5, 238.5], [-42.5, 236.5], [-42.5, 234.5], [-42.5, 232.5], [-42.5, 228.5], [-42.5, 227.5], [-42.5, 226.5], [-41.5, 224.5], [-40.5, 222.5], [-40.5, 221.5], [-39.5, 219.5], [-36.5, 216.5], [-32.5, 213.5], [-26.5, 211.5], [-25.5, 211.5], [-23.5, 211.5], [-21.5, 210.5], [-20.5, 210.5], [-20.5, 210.5], [-19.5, 210.5], [-18.5, 210.5], [-17.5, 210.5], [-16.5, 210.5], [-15.5, 210.5], [-14.5, 210.5], [-14.5, 210.5], [-12.5, 210.5], [-10.5, 209.5], [-8.5, 207.5], [-3.5, 202.5], [-0.5, 201.5], [0.5, 199.5], [1.5, 198.5], [2.5, 197.5], [5.5, 194.5], [5.5, 193.5], [7.5, 191.5], [8.5, 190.5], [10.5, 188.5], [12.5, 185.5], [13.5, 184.5], [15.5, 180.5], [16.5, 178.5], [18.5, 176.5], [18.5, 175.5], [18.5, 174.5], [18.5, 173.5], [18.5, 173.5], [17.5, 171.5], [17.5, 170.5], [16.5, 169.5], [16.5, 168.5], [16.5, 167.5], [15.5, 165.5], [15.5, 164.5], [15.5, 163.5], [15.5, 162.5], [14.5, 160.5], [13.5, 159.5], [13.5, 159.5], [13.5, 158.5], [13.5, 158.5], [13.5, 157.5], [13.5, 156.5], [12.5, 155.5], [11.5, 154.5], [11.5, 153.5], [10.5, 152.5], [10.5, 151.5], [10.5, 150.5], [9.5, 149.5], [9.5, 149.5], [9.5, 148.5], [8.5, 148.5], [8.5, 147.5], [8.5, 146.5], [8.5, 145.5], [8.5, 145.5], [8.5, 144.5], [8.5, 143.5], [8.5, 142.5], [8.5, 141.5], [8.5, 140.5], [8.5, 139.5], [8.5, 138.5], [7.5, 138.5], [7.5, 138.5], [6.5, 137.5], [6.5, 136.5], [5.5, 136.5], [5.5, 135.5], [5.5, 134.5], [4.5, 132.5], [3.5, 131.5], [3.5, 130.5], [3.5, 129.5], [3.5, 129.5], [3.5, 129.5], [2.5, 128.5], [2.5, 128.5], [2.5, 127.5], [2.5, 127.5], [2.5, 126.5], [2.5, 126.5], [2.5, 124.5], [2.5, 123.5], [2.5, 123.5], [2.5, 123.5], [2.5, 120.5], [2.5, 119.5], [1.5, 116.5], [1.5, 115.5], [1.5, 114.5], [1.5, 114.5], [1.5, 112.5], [1.5, 112.5], [1.5, 111.5], [2.5, 111.5], [2.5, 111.5], [3.5, 111.5], [3.5, 111.5], [5.5, 111.5], [5.5, 111.5], [6.5, 111.5], [6.5, 111.5], [8.5, 111.5], [10.5, 111.5], [11.5, 111.5], [12.5, 111.5], [12.5, 111.5], [13.5, 111.5], [13.5, 111.5], [15.5, 111.5], [15.5, 111.5], [16.5, 111.5], [17.5, 110.5], [20.5, 108.5], [21.5, 107.5], [22.5, 107.5], [23.5, 107.5], [24.5, 106.5], [24.5, 104.5], [24.5, 103.5], [25.5, 103.5], [25.5, 103.5], [26.5, 103.5], [26.5, 103.5], [27.5, 102.5], [28.5, 102.5], [28.5, 101.5], [28.5, 101.5], [29.5, 101.5], [31.5, 100.5], [31.5, 100.5], [32.5, 100.5], [32.5, 100.5], [34.5, 100.5], [36.5, 99.5], [37.5, 98.5], [38.5, 97.5], [39.5, 97.5], [40.5, 96.5], [40.5, 96.5], [40.5, 95.5], [40.5, 95.5], [41.5, 94.5], [41.5, 94.5], [42.5, 94.5], [42.5, 93.5], [42.5, 92.5], [43.5, 92.5], [43.5, 91.5], [43.5, 91.5], [43.5, 89.5], [43.5, 88.5], [43.5, 88.5], [43.5, 85.5], [43.5, 84.5], [43.5, 83.5], [42.5, 82.5], [41.5, 81.5], [41.5, 81.5], [41.5, 80.5], [40.5, 79.5], [40.5, 78.5], [40.5, 78.5], [41.5, 78.5], [43.5, 78.5], [46.5, 78.5], [46.5, 78.5], [47.5, 78.5], [48.5, 78.5], [49.5, 78.5], [49.5, 78.5], [50.5, 78.5], [51.5, 78.5], [54.5, 78.5], [57.5, 78.5], [58.5, 77.5], [59.5, 77.5], [61.5, 76.5], [63.5, 75.5], [65.5, 73.5], [65.5, 73.5], [66.5, 73.5], [68.5, 72.5], [70.5, 71.5], [71.5, 70.5], [72.5, 69.5], [73.5, 69.5], [74.5, 69.5], [74.5, 68.5], [73.5, 68.5], [72.5, 67.5], [72.5, 66.5], [72.5, 65.5], [71.5, 65.5], [70.5, 64.5], [70.5, 62.5], [70.5, 62.5], [70.5, 61.5], [71.5, 60.5], [71.5, 59.5], [72.5, 58.5], [72.5, 57.5], [72.5, 57.5], [74.5, 55.5], [75.5, 53.5], [75.5, 52.5], [75.5, 52.5], [75.5, 51.5], [75.5, 50.5], [76.5, 49.5], [77.5, 48.5], [79.5, 48.5], [79.5, 47.5], [79.5, 46.5], [80.5, 46.5], [80.5, 44.5], [81.5, 43.5], [82.5, 42.5], [82.5, 42.5], [83.5, 41.5], [83.5, 41.5], [83.5, 41.5], [84.5, 40.5], [87.5, 36.5], [89.5, 34.5], [91.5, 32.5], [91.5, 31.5], [92.5, 31.5], [92.5, 30.5], [93.5, 30.5], [93.5, 30.5], [94.5, 29.5], [95.5, 29.5], [96.5, 29.5], [96.5, 29.5], [97.5, 29.5], [97.5, 29.5], [97.5, 31.5], [98.5, 32.5], [98.5, 33.5], [99.5, 33.5], [98.5, 34.5], [98.5, 34.5]]], [{"color": "medium sea green", "pensize": 4, "sectors": 16, "mirror": 1, "center": [133.166666667, 0], "radius": 266.5}, [[-8.5, 94.5], [-8.5, 92.5], [-8.5, 90.5], [-8.5, 90.5], [-7.5, 89.5], [-7.5, 88.5], [-6.5, 85.5], [-5.5, 84.5], [-5.5, 84.5], [-4.5, 82.5], [-4.5, 82.5], [-2.5, 79.5], [-1.5, 78.5], [-0.5, 77.5], [0.5, 76.5], [1.5, 75.5], [3.5, 72.5], [4.5, 71.5], [4.5, 69.5], [4.5, 68.5], [4.5, 67.5], [4.5, 67.5], [5.5, 66.5], [5.5, 65.5], [6.5, 65.5], [6.5, 64.5], [8.5, 63.5], [9.5, 62.5], [9.5, 61.5], [10.5, 61.5], [11.5, 61.5], [11.5, 61.5], [13.5, 61.5], [14.5, 62.5], [16.5, 64.5], [16.5, 66.5], [18.5, 66.5], [18.5, 67.5], [18.5, 67.5], [18.5, 67.5], [18.5, 68.5], [18.5, 69.5], [19.5, 69.5], [20.5, 70.5], [22.5, 71.5], [23.5, 71.5], [24.5, 71.5], [25.5, 71.5], [25.5, 71.5], [26.5, 71.5], [28.5, 71.5], [28.5, 71.5], [29.5, 71.5], [29.5, 70.5], [30.5, 70.5], [30.5, 70.5], [31.5, 70.5], [32.5, 70.5], [34.5, 70.5], [35.5, 69.5], [36.5, 68.5], [38.5, 67.5], [39.5, 67.5], [39.5, 67.5], [40.5, 66.5], [41.5, 65.5], [41.5, 64.5], [42.5, 64.5], [43.5, 64.5], [44.5, 64.5], [45.5, 63.5], [46.5, 63.5], [47.5, 63.5], [47.5, 63.5], [48.5, 63.5], [49.5, 63.5], [51.5, 62.5], [52.5, 62.5], [52.5, 62.5], [53.5, 62.5], [54.5, 62.5], [54.5, 62.5], [55.5, 62.5], [56.5, 62.5], [57.5, 61.5], [58.5, 61.5], [59.5, 60.5], [60.5, 59.5], [62.5, 57.5], [63.5, 57.5], [63.5, 56.5], [63.5, 55.5], [63.5, 54.5], [63.5, 54.5], [62.5, 53.5], [61.5, 52.5], [60.5, 52.5], [59.5, 52.5], [58.5, 51.5]]], [{"color": "hot pink", "pensize": 4, "sectors": 16, "mirror": 1, "center": [133.166666667, 0], "radius": 266.5}, [[24.5, 256.5], [23.5, 256.5], [23.5, 255.5], [23.5, 254.5], [22.5, 252.5], [21.5, 251.5], [21.5, 250.5], [21.5, 249.5], [20.5, 248.5], [19.5, 247.5], [19.5, 245.5], [18.5, 244.5], [17.5, 244.5], [17.5, 243.5], [17.5, 242.5], [17.5, 242.5], [17.5, 241.5], [17.5, 240.5], [18.5, 240.5], [20.5, 238.5], [21.5, 238.5], [26.5, 237.5], [27.5, 237.5], [35.5, 236.5], [37.5, 236.5], [38.5, 236.5], [39.5, 236.5], [39.5, 235.5], [39.5, 235.5], [41.5, 233.5], [42.5, 230.5], [42.5, 226.5], [43.5, 224.5], [41.5, 223.5], [40.5, 222.5], [39.5, 221.5], [38.5, 219.5], [37.5, 218.5], [36.5, 217.5], [35.5, 217.5], [34.5, 215.5], [34.5, 213.5], [33.5, 212.5], [33.5, 211.5], [35.5, 209.5], [37.5, 209.5], [39.5, 208.5], [42.5, 208.5], [43.5, 208.5], [44.5, 208.5], [45.5, 208.5], [45.5, 208.5], [46.5, 208.5], [47.5, 208.5], [47.5, 207.5], [48.5, 206.5], [49.5, 205.5], [50.5, 204.5], [49.5, 204.5], [49.5, 204.5], [47.5, 203.5], [46.5, 202.5], [45.5, 201.5], [45.5, 200.5], [44.5, 200.5], [44.5, 200.5], [44.5, 198.5], [44.5, 198.5], [45.5, 196.5], [46.5, 195.5], [48.5, 194.5], [49.5, 193.5], [49.5, 193.5], [50.5, 193.5], [50.5, 193.5], [51.5, 193.5], [52.5, 193.5], [52.5, 193.5], [53.5, 193.5], [53.5, 192.5], [54.5, 192.5], [57.5, 188.5], [58.5, 185.5], [59.5, 181.5], [60.5, 177.5], [62.5, 173.5], [63.5, 172.5], [63.5, 171.5], [64.5, 171.5], [64.5, 170.5], [65.5, 170.5], [66.5, 168.5], [67.5, 165.5], [67.5, 164.5], [67.5, 163.5], [68.5, 163.5], [69.5, 162.5], [69.5, 162.5], [69.5, 161.5], [69.5, 159.5], [70.5, 158.5]]], [{"color": "dark orchid", "pensize": 4, "sectors": 16, "mirror": 1, "center": [133.166666667, 0], "radius": 266.5}, [[78.5, 180.5], [91.5, 190.5], [92.5, 190.5], [92.5, 191.5], [93.5, 192.5], [94.5, 193.5], [95.5, 194.5], [95.5, 195.5], [95.5, 196.5], [96.5, 196.5], [96.5, 196.5], [96.5, 192.5], [96.5, 191.5], [96.5, 190.5], [96.5, 190.5], [96.5, 188.5], [97.5, 186.5], [98.5, 185.5], [98.5, 183.5], [99.5, 183.5], [100.5, 182.5], [100.5, 180.5], [101.5, 178.5], [101.5, 177.5], [101.5, 176.5], [102.5, 176.5], [102.5, 175.5], [102.5, 175.5], [102.5, 174.5], [103.5, 174.5], [103.5, 172.5], [105.5, 170.5], [106.5, 169.5], [106.5, 169.5], [108.5, 169.5], [109.5, 168.5], [110.5, 167.5], [111.5, 167.5], [112.5, 168.5], [113.5, 168.5], [113.5, 168.5], [114.5, 168.5], [115.5, 168.5], [116.5, 168.5], [116.5, 168.5], [117.5, 167.5], [118.5, 166.5], [119.5, 165.5], [120.5, 165.5], [120.5, 164.5], [120.5, 163.5], [120.5, 163.5], [120.5, 162.5], [121.5, 161.5], [121.5, 160.5], [123.5, 158.5], [123.5, 157.5]]], [{"color": "firebrick", "pensize": 4, "sectors": 16, "mirror": 1, "center": [133.166666667, 0], "radius": 266.5}, [[-29.5, 247.5], [-34.5, 234.5], [-34.5, 233.5], [-34.5, 233.5], [-34.5, 230.5], [-34.5, 228.5], [-33.5, 226.5], [-32.5, 225.5], [-32.5, 225.5], [-31.5, 223.5], [-30.5, 222.5], [-29.5, 221.5], [-28.5, 220.5], [-27.5, 220.5], [-26.5, 220.5], [-24.5, 219.5], [-23.5, 219.5], [-21.5, 219.5], [-20.5, 219.5], [-19.5, 219.5], [-19.5, 219.5], [-18.5, 219.5], [-18.5, 219.5], [-17.5, 219.5], [-17.5, 219.5], [-16.5, 220.5], [-16.5, 220.5]]], [{"color": "khaki", "pensize": 8, "sectors": 16, "mirror": 1, "center": [133.166666667, 0], "radius": 266.5}, [[-27.5, 240.5], [-27.5, 240.5], [-28.5, 237.5], [-28.5, 236.5], [-28.5, 234.5], [-28.5, 234.5], [-28.5, 233.5], [-28.5, 233.5], [-27.5, 232.5], [-26.5, 231.5], [-26.5, 231.5], [-25.5, 230.5], [-25.5, 229.5], [-25.5, 228.5], [-24.5, 227.5], [-23.5, 227.5], [-23.5, 226.5], [-22.5, 226.5], [-21.5, 226.5], [-20.5, 226.5], [-20.5, 226.5], [-20.5, 226.5], [-19.5, 226.5], [-18.5, 227.5], [-17.5, 228.5]]], [{"color": "khaki", "pensize": 8, "sectors": 16, "mirror": 1, "center": [133.166666667, 0], "radius": 266.5}, [[206.5, 111.5], [207.5, 112.5], [208.5, 112.5], [208.5, 114.5], [209.5, 115.5], [211.5, 118.5], [211.5, 119.5], [211.5, 120.5], [212.5, 121.5], [212.5, 121.5], [213.5, 122.5], [213.5, 122.5], [214.5, 123.5], [215.5, 124.5], [215.5, 124.5], [216.5, 126.5], [217.5, 126.5], [218.5, 127.5], [218.5, 129.5], [218.5, 130.5], [218.5, 131.5], [219.5, 132.5], [219.5, 133.5], [219.5, 134.5], [220.5, 135.5], [221.5, 136.5], [222.5, 136.5], [221.5, 136.5], [221.5, 134.5], [218.5, 132.5], [217.5, 131.5], [215.5, 129.5], [213.5, 128.5], [212.5, 128.5], [211.5, 128.5], [211.5, 127.5], [208.5, 125.5], [207.5, 123.5], [204.5, 122.5], [203.5, 122.5], [203.5, 122.5], [202.5, 121.5], [201.5, 121.5], [202.5, 121.5], [203.5, 121.5], [203.5, 120.5], [204.5, 119.5], [204.5, 119.5], [204.5, 119.5], [202.5, 118.5], [200.5, 118.5], [199.5, 119.5]]], [{"color": "medium slate blue", "pensize": 8, "sectors": 16, "mirror": 1, "center": [133.166666667, 0], "radius": 266.5}, [[28.5, 21.5], [35.5, 20.5], [35.5, 20.5], [36.5, 20.5], [36.5, 20.5], [37.5, 20.5], [37.5, 19.5], [38.5, 18.5], [38.5, 18.5], [39.5, 18.5], [39.5, 18.5], [40.5, 18.5], [41.5, 18.5], [42.5, 19.5], [43.5, 19.5], [42.5, 19.5], [42.5, 20.5], [41.5, 20.5], [39.5, 20.5], [37.5, 20.5], [36.5, 20.5], [35.5, 20.5], [35.5, 20.5], [36.5, 20.5], [37.5, 20.5], [38.5, 22.5], [40.5, 22.5], [41.5, 22.5], [41.5, 22.5], [41.5, 22.5], [41.5, 21.5]]], [{"color": "sienna", "pensize": 8, "sectors": 16, "mirror": 1, "center": [133.166666667, 0], "radius": 266.5}, [[142.5, 16.5], [142.5, 17.5], [143.5, 17.5], [144.5, 17.5], [144.5, 18.5], [145.5, 18.5]]]]
[[{"color": "deep sky blue", "pensize": 2, "sectors": 32, "mirror": 1, "center": [133.166666667, 0], "radius": 266.5}, [[137.5, 252.5], [135.5, 251.5], [129.5, 249.5], [127.5, 248.5], [126.5, 247.5], [125.5, 246.5], [125.5, 245.5], [125.5, 243.5], [125.5, 242.5], [125.5, 238.5], [133.5, 233.5], [140.5, 231.5], [147.5, 228.5], [144.5, 226.5], [141.5, 224.5], [135.5, 218.5], [135.5, 217.5], [135.5, 212.5], [139.5, 209.5], [144.5, 208.5], [146.5, 208.5], [143.5, 203.5], [135.5, 195.5], [130.5, 188.5], [130.5, 187.5], [131.5, 184.5], [134.5, 183.5], [137.5, 182.5], [137.5, 181.5], [133.5, 172.5], [130.5, 166.5], [130.5, 165.5], [130.5, 164.5], [135.5, 156.5], [135.5, 152.5], [135.5, 142.5], [135.5, 137.5], [135.5, 136.5], [136.5, 135.5], [137.5, 133.5], [137.5, 117.5], [135.5, 107.5], [134.5, 105.5], [134.5, 102.5], [134.5, 101.5], [135.5, 96.5], [137.5, 95.5], [138.5, 92.5], [135.5, 85.5], [134.5, 79.5], [134.5, 78.5], [134.5, 77.5], [137.5, 72.5], [135.5, 68.5], [132.5, 63.5], [129.5, 57.5], [129.5, 54.5], [129.5, 50.5], [130.5, 49.5], [130.5, 40.5], [130.5, 35.5]]], [{"color": "red", "pensize": 2, "sectors": 32, "mirror": 1, "center": [133.166666667, 0], "radius": 266.5}, [[-30.5, 199.5], [-30.5, 199.5], [-31.5, 199.5], [-31.5, 199.5], [-31.5, 198.5], [-33.5, 196.5], [-34.5, 195.5], [-35.5, 193.5], [-35.5, 192.5], [-35.5, 192.5], [-35.5, 190.5], [-35.5, 190.5], [-35.5, 189.5], [-35.5, 189.5], [-35.5, 187.5], [-35.5, 186.5], [-35.5, 185.5], [-35.5, 184.5], [-35.5, 184.5], [-35.5, 183.5], [-35.5, 183.5], [-35.5, 182.5], [-35.5, 181.5], [-34.5, 180.5], [-33.5, 179.5], [-32.5, 178.5], [-32.5, 177.5], [-32.5, 176.5], [-31.5, 176.5], [-30.5, 175.5], [-30.5, 174.5], [-28.5, 174.5], [-27.5, 174.5], [-27.5, 174.5], [-26.5, 174.5], [-25.5, 174.5], [-24.5, 174.5], [-24.5, 174.5], [-23.5, 173.5], [-22.5, 173.5], [-21.5, 172.5], [-20.5, 172.5], [-19.5, 171.5], [-18.5, 171.5], [-17.5, 170.5], [-16.5, 170.5], [-16.5, 169.5], [-16.5, 168.5], [-16.5, 168.5], [-16.5, 167.5], [-16.5, 167.5], [-16.5, 165.5], [-16.5, 164.5], [-16.5, 163.5], [-16.5, 163.5], [-16.5, 162.5], [-15.5, 161.5], [-15.5, 161.5], [-14.5, 160.5], [-13.5, 160.5], [-13.5, 159.5], [-13.5, 159.5], [-12.5, 159.5], [-12.5, 159.5], [-11.5, 159.5], [-10.5, 159.5], [-10.5, 159.5], [-9.5, 159.5], [-9.5, 159.5], [-9.5, 159.5], [-8.5, 159.5], [-7.5, 159.5], [-6.5, 159.5], [-6.5, 159.5], [-5.5, 159.5], [-4.5, 159.5], [-4.5, 159.5], [-3.5, 159.5], [-2.5, 159.5], [-1.5, 159.5], [-1.5, 159.5], [-0.5, 159.5], [3.5, 156.5], [7.5, 153.5], [9.5, 152.5], [10.5, 151.5], [11.5, 151.5], [11.5, 151.5], [12.5, 149.5], [14.5, 147.5], [16.5, 144.5], [17.5, 143.5], [17.5, 142.5], [17.5, 142.5], [17.5, 141.5], [18.5, 139.5], [19.5, 139.5], [19.5, 138.5], [19.5, 138.5], [19.5, 138.5], [19.5, 136.5], [19.5, 136.5], [20.5, 135.5], [20.5, 133.5], [20.5, 132.5], [20.5, 132.5], [20.5, 131.5], [20.5, 130.5], [20.5, 130.5], [20.5, 129.5], [20.5, 128.5], [20.5, 127.5], [20.5, 126.5], [21.5, 125.5], [22.5, 124.5], [22.5, 124.5], [23.5, 123.5], [23.5, 123.5], [23.5, 122.5], [24.5, 120.5], [24.5, 119.5], [25.5, 119.5], [25.5, 118.5], [26.5, 118.5], [26.5, 117.5], [27.5, 116.5], [27.5, 115.5], [28.5, 115.5], [28.5, 115.5], [29.5, 115.5], [29.5, 115.5], [30.5, 115.5], [31.5, 115.5], [31.5, 115.5], [32.5, 115.5], [33.5, 115.5], [33.5, 115.5], [34.5, 114.5], [34.5, 113.5], [35.5, 113.5], [35.5, 112.5], [36.5, 112.5], [36.5, 112.5], [37.5, 112.5], [37.5, 112.5], [37.5, 111.5], [38.5, 110.5], [39.5, 109.5], [39.5, 108.5], [40.5, 107.5], [40.5, 107.5], [40.5, 106.5], [40.5, 106.5], [40.5, 104.5], [40.5, 104.5], [40.5, 103.5], [40.5, 102.5], [40.5, 101.5], [41.5, 101.5], [41.5, 100.5], [42.5, 100.5], [42.5, 100.5], [43.5, 100.5], [44.5, 100.5], [44.5, 100.5], [44.5, 100.5], [45.5, 99.5], [45.5, 99.5], [46.5, 99.5], [46.5, 99.5], [48.5, 98.5], [49.5, 98.5], [52.5, 97.5], [54.5, 97.5], [56.5, 96.5], [56.5, 95.5], [56.5, 94.5], [56.5, 94.5], [56.5, 93.5], [56.5, 92.5], [56.5, 92.5], [56.5, 91.5], [56.5, 91.5], [56.5, 90.5], [56.5, 89.5], [56.5, 88.5], [56.5, 88.5], [57.5, 86.5], [58.5, 85.5], [58.5, 84.5], [58.5, 83.5], [59.5, 83.5], [60.5, 83.5], [60.5, 83.5], [60.5, 83.5], [60.5, 82.5], [60.5, 82.5], [61.5, 82.5], [62.5, 80.5], [62.5, 79.5], [62.5, 79.5], [62.5, 78.5], [62.5, 76.5], [62.5, 76.5], [62.5, 76.5], [63.5, 76.5], [64.5, 75.5], [65.5, 74.5], [65.5, 74.5], [66.5, 74.5], [67.5, 74.5], [67.5, 74.5], [68.5, 74.5], [68.5, 74.5], [69.5, 73.5], [69.5, 73.5], [70.5, 73.5], [71.5, 72.5], [73.5, 72.5], [74.5, 71.5], [73.5, 71.5], [73.5, 69.5], [73.5, 68.5], [74.5, 67.5], [74.5, 65.5], [76.5, 63.5], [77.5, 63.5], [78.5, 63.5], [79.5, 63.5], [83.5, 62.5], [84.5, 61.5], [85.5, 60.5], [86.5, 60.5], [86.5, 60.5], [86.5, 58.5], [87.5, 58.5], [88.5, 56.5], [88.5, 55.5], [88.5, 53.5], [89.5, 49.5], [91.5, 47.5], [91.5, 47.5], [92.5, 47.5], [92.5, 46.5], [93.5, 46.5], [94.5, 45.5], [104.5, 41.5], [106.5, 40.5], [107.5, 40.5], [108.5, 40.5], [108.5, 39.5], [108.5, 39.5], [108.5, 38.5], [108.5, 38.5], [109.5, 37.5], [110.5, 36.5], [111.5, 35.5], [111.5, 35.5], [112.5, 34.5], [113.5, 34.5], [113.5, 33.5], [115.5, 30.5], [116.5, 28.5], [116.5, 27.5], [117.5, 26.5], [118.5, 25.5], [118.5, 24.5], [118.5, 24.5], [119.5, 23.5], [119.5, 23.5], [119.5, 21.5], [119.5, 21.5]]], [{"color": "yellow", "pensize": 6, "sectors": 32, "mirror": 1, "center": [133.166666667, 0], "radius": 266.5}, [[17.5, 221.5], [17.5, 221.5], [16.5, 221.5], [16.5, 220.5], [15.5, 220.5], [15.5, 219.5], [15.5, 219.5], [14.5, 218.5], [14.5, 218.5], [14.5, 217.5], [14.5, 217.5], [14.5, 216.5], [14.5, 215.5], [14.5, 215.5], [14.5, 214.5], [14.5, 214.5], [14.5, 213.5], [15.5, 212.5], [15.5, 212.5], [16.5, 211.5], [17.5, 210.5], [18.5, 209.5], [19.5, 209.5], [19.5, 208.5], [20.5, 208.5], [20.5, 207.5], [22.5, 206.5], [23.5, 204.5], [25.5, 202.5], [26.5, 200.5], [27.5, 200.5], [28.5, 199.5], [28.5, 199.5], [28.5, 198.5], [28.5, 198.5], [28.5, 198.5], [28.5, 197.5], [28.5, 196.5], [28.5, 195.5], [29.5, 195.5], [29.5, 195.5], [29.5, 194.5], [29.5, 193.5], [30.5, 193.5], [31.5, 192.5], [31.5, 190.5], [32.5, 187.5]]], [{"color": "yellow", "pensize": 6, "sectors": 32, "mirror": 1, "center": [133.166666667, 0], "radius": 266.5}, [[133.5, 5.5], [133.5, 6.5], [133.5, 7.5], [131.5, 9.5], [130.5, 11.5], [130.5, 12.5], [129.5, 13.5]]], [{"color": "medium sea green", "pensize": 2, "sectors": 32, "mirror": 0, "center": [133.166666667, 0], "radius": 266.5}, [[-16.5, -140.5], [-15.5, -140.5], [-15.5, -140.5], [-14.5, -140.5], [-13.5, -140.5], [-12.5, -140.5], [-12.5, -140.5], [-12.5, -140.5], [-11.5, -140.5], [-11.5, -140.5], [-10.5, -141.5], [-9.5, -141.5], [-9.5, -141.5], [-8.5, -142.5], [-8.5, -142.5], [-7.5, -142.5], [-7.5, -142.5], [-7.5, -143.5], [-8.5, -144.5], [-8.5, -145.5], [-8.5, -145.5], [-8.5, -146.5], [-8.5, -146.5], [-9.5, -146.5], [-10.5, -146.5], [-11.5, -147.5], [-12.5, -146.5], [-12.5, -146.5], [-12.5, -145.5], [-12.5, -145.5], [-12.5, -144.5], [-12.5, -144.5], [-13.5, -143.5], [-14.5, -142.5], [-15.5, -141.5]]], [{"color": "medium sea green", "pensize": 2, "sectors": 32, "mirror": 0, "center": [133.166666667, 0], "radius": 266.5}, [[90.5, -149.5], [90.5, -149.5], [89.5, -149.5], [89.5, -149.5], [88.5, -149.5], [87.5, -149.5], [87.5, -149.5], [87.5, -149.5], [86.5, -149.5], [85.5, -149.5], [85.5, -149.5], [84.5, -149.5], [83.5, -150.5], [83.5, -150.5], [82.5, -151.5], [82.5, -151.5], [82.5, -152.5], [82.5, -152.5], [82.5, -153.5], [82.5, -153.5], [82.5, -154.5], [82.5, -155.5], [82.5, -156.5], [82.5, -156.5], [82.5, -157.5], [82.5, -157.5], [82.5, -158.5], [83.5, -158.5], [83.5, -158.5], [84.5, -158.5], [85.5, -158.5], [85.5, -158.5], [86.5, -158.5], [86.5, -158.5], [87.5, -158.5], [88.5, -157.5], [88.5, -156.5], [89.5, -156.5], [90.5, -154.5], [91.5, -153.5], [91.5, -152.5], [92.5, -152.5]]], [{"color": "medium sea green", "pensize": 2, "sectors": 32, "mirror": 0, "center": [133.166666667, 0], "radius": 266.5}, [[92.5, -148.5], [92.5, -149.5]]], [{"color": "dark orchid", "pensize": 2, "sectors": 32, "mirror": 0, "center": [133.166666667, 0], "radius": 266.5}, [[281.5, 131.5], [280.5, 130.5], [278.5, 130.5], [276.5, 130.5], [275.5, 130.5], [273.5, 129.5], [272.5, 129.5], [271.5, 128.5], [269.5, 127.5], [268.5, 127.5], [268.5, 126.5], [268.5, 126.5], [267.5, 126.5], [266.5, 125.5], [266.5, 125.5], [265.5, 124.5], [264.5, 123.5], [263.5, 123.5], [263.5, 123.5], [263.5, 123.5], [262.5, 122.5], [261.5, 122.5], [261.5, 122.5], [260.5, 121.5], [259.5, 120.5], [258.5, 120.5], [257.5, 119.5], [256.5, 119.5], [256.5, 119.5], [255.5, 118.5], [255.5, 118.5], [255.5, 117.5], [255.5, 116.5], [254.5, 116.5], [254.5, 115.5], [253.5, 114.5], [252.5, 113.5], [252.5, 113.5], [251.5, 113.5], [251.5, 113.5], [250.5, 113.5], [250.5, 113.5], [249.5, 112.5], [248.5, 111.5], [248.5, 110.5], [248.5, 110.5], [247.5, 109.5], [247.5, 108.5], [245.5, 107.5], [244.5, 105.5], [244.5, 103.5], [243.5, 102.5], [243.5, 99.5], [242.5, 97.5], [242.5, 97.5], [241.5, 97.5], [241.5, 97.5], [240.5, 97.5], [239.5, 97.5], [239.5, 97.5], [238.5, 98.5], [237.5, 99.5], [237.5, 99.5], [236.5, 99.5], [236.5, 99.5], [235.5, 100.5], [235.5, 100.5], [235.5, 100.5], [234.5, 100.5], [234.5, 100.5], [233.5, 100.5], [233.5, 100.5], [232.5, 99.5], [232.5, 99.5], [232.5, 98.5], [231.5, 97.5], [230.5, 95.5], [230.5, 94.5], [229.5, 93.5], [228.5, 92.5], [226.5, 91.5], [226.5, 90.5], [225.5, 89.5], [225.5, 89.5], [224.5, 89.5], [224.5, 89.5], [223.5, 88.5], [220.5, 86.5], [219.5, 86.5], [218.5, 85.5], [217.5, 84.5], [214.5, 83.5], [213.5, 83.5], [213.5, 82.5], [213.5, 82.5], [211.5, 81.5], [211.5, 80.5], [211.5, 78.5], [210.5, 77.5], [209.5, 76.5], [208.5, 75.5], [207.5, 74.5], [206.5, 73.5], [206.5, 72.5], [206.5, 72.5], [206.5, 71.5], [205.5, 70.5], [204.5, 69.5], [203.5, 68.5], [202.5, 67.5], [201.5, 67.5], [201.5, 66.5], [200.5, 66.5], [199.5, 65.5], [198.5, 64.5], [197.5, 63.5], [196.5, 62.5], [196.5, 61.5], [195.5, 61.5], [193.5, 58.5], [192.5, 57.5], [192.5, 57.5]]], [{"color": "aquamarine", "pensize": 2, "sectors": 32, "mirror": 1, "center": [133.166666667, 0], "radius": 266.5}, [[-19.5, 233.5], [-20.5, 233.5], [-22.5, 233.5], [-23.5, 233.5], [-25.5, 233.5], [-25.5, 233.5], [-27.5, 232.5], [-28.5, 230.5], [-29.5, 230.5], [-29.5, 229.5], [-31.5, 228.5], [-31.5, 227.5], [-32.5, 226.5], [-32.5, 225.5], [-33.5, 222.5], [-33.5, 221.5], [-33.5, 219.5], [-33.5, 218.5], [-33.5, 218.5], [-32.5, 217.5], [-30.5, 215.5], [-29.5, 214.5], [-28.5, 214.5], [-26.5, 214.5], [-25.5, 214.5], [-24.5, 214.5], [-22.5, 213.5], [-20.5, 213.5], [-18.5, 213.5], [-17.5, 211.5], [-16.5, 211.5], [-16.5, 211.5], [-15.5, 211.5], [-15.5, 211.5], [-14.5, 211.5], [-13.5, 211.5], [-13.5, 211.5], [-12.5, 211.5], [-11.5, 211.5], [-10.5, 210.5], [-10.5, 210.5], [-9.5, 210.5]]], [{"color": "aquamarine", "pensize": 2, "sectors": 32, "mirror": 1, "center": [133.166666667, 0], "radius": 266.5}, [[-19.5, 233.5], [-20.5, 233.5], [-22.5, 233.5], [-23.5, 233.5], [-25.5, 233.5], [-25.5, 233.5], [-27.5, 232.5], [-28.5, 230.5], [-29.5, 230.5], [-29.5, 229.5], [-31.5, 228.5], [-31.5, 227.5], [-32.5, 226.5], [-32.5, 225.5], [-33.5, 222.5], [-33.5, 221.5], [-33.5, 219.5], [-33.5, 218.5], [-33.5, 218.5], [-32.5, 217.5], [-30.5, 215.5], [-29.5, 214.5], [-28.5, 214.5], [-26.5, 214.5], [-25.5, 214.5], [-24.5, 214.5], [-22.5, 213.5], [-20.5, 213.5], [-18.5, 213.5], [-17.5, 211.5], [-16.5, 211.5], [-16.5, 211.5], [-15.5, 211.5], [-15.5, 211.5], [-14.5, 211.5], [-13.5, 211.5], [-13.5, 211.5], [-12.5, 211.5], [-11.5, 211.5], [-10.5, 210.5], [-10.5, 210.5], [-9.5, 210.5]]], [{"color": "hot pink", "pensize": 5, "sectors": 32, "mirror": 1, "center": [133.166666667, 0], "radius": 266.5}, [[-95.5, 153.5], [-96.5, 153.5], [-96.5, 153.5], [-97.5, 153.5], [-97.5, 153.5], [-98.5, 152.5], [-98.5, 152.5], [-98.5, 151.5], [-99.5, 149.5], [-99.5, 148.5], [-100.5, 147.5], [-98.5, 147.5], [-97.5, 147.5], [-97.5, 147.5], [-96.5, 147.5], [-94.5, 147.5], [-93.5, 147.5], [-93.5, 147.5], [-92.5, 147.5], [-91.5, 147.5], [-91.5, 147.5], [-90.5, 148.5], [-90.5, 148.5], [-89.5, 148.5], [-89.5, 148.5], [-88.5, 148.5], [-88.5, 148.5], [-86.5, 147.5], [-85.5, 146.5], [-84.5, 146.5], [-84.5, 146.5], [-83.5, 146.5], [-83.5, 146.5], [-82.5, 146.5], [-82.5, 145.5], [-81.5, 145.5], [-81.5, 145.5]]], [{"color": "hot pink", "pensize": 5, "sectors": 32, "mirror": 1, "center": [133.166666667, 0], "radius": 266.5}, [[-57.5, 128.5], [-60.5, 127.5], [-60.5, 126.5], [-60.5, 126.5], [-60.5, 125.5], [-60.5, 125.5], [-59.5, 124.5], [-58.5, 123.5], [-57.5, 123.5], [-57.5, 123.5], [-56.5, 124.5], [-56.5, 124.5], [-56.5, 125.5]]], [{"color": "hot pink", "pensize": 5, "sectors": 32, "mirror": 1, "center": [133.166666667, 0], "radius": 266.5}, [[1.5, 41.5], [1.5, 41.5], [1.5, 42.5]]], [{"color": "hot pink", "pensize": 5, "sectors": 32, "mirror": 1, "center": [133.166666667, 0], "radius": 266.5}, [[1.5, 41.5], [1.5, 41.5], [1.5, 42.5]]], [{"color": "crimson", "pensize": 3, "sectors": 16, "mirror": 0, "center": [133.166666667, 0], "radius": 266.5}, [[134.5, 12.5], [134.5, 13.5], [134.5, 13.5], [134.5, 14.5], [134.5, 14.5], [134.5, 15.5], [134.5, 17.5], [134.5, 17.5], [134.5, 18.5], [134.5, 18.5], [134.5, 19.5], [134.5, 20.5], [134.5, 21.5], [134.5, 21.5], [134.5, 22.5], [135.5, 23.5], [136.5, 24.5], [136.5, 25.5]]], [{"color": "crimson", "pensize": 3, "sectors": 16, "mirror": 0, "center": [133.166666667, 0], "radius": 266.5}, [[134.5, 12.5], [134.5, 13.5], [134.5, 13.5], [134.5, 14.5], [134.5, 14.5], [134.5, 15.5], [134.5, 17.5], [134.5, 17.5], [134.5, 18.5], [134.5, 18.5], [134.5, 19.5], [134.5, 20.5], [134.5, 21.5], [134.5, 21.5], [134.5, 22.5], [135.5, 23.5], [136.5, 24.5], [136.5, 25.5]]], [{"color": "dark orchid", "pensize": 4, "sectors": 32, "mirror": 1, "center": [133.166666667, 0], "radius": 266.5}, [[-67.5, -200.5], [-67.5, -200.5], [-68.5, -201.5], [-69.5, -201.5], [-71.5, -204.5], [-71.5, -205.5], [-72.5, -206.5], [-73.5, -209.5], [-74.5, -212.5], [-75.5, -213.5], [-76.5, -214.5], [-77.5, -217.5], [-77.5, -219.5], [-77.5, -220.5], [-77.5, -224.5], [-77.5, -227.5], [-77.5, -228.5], [-77.5, -228.5], [-77.5, -229.5], [-77.5, -229.5], [-75.5, -232.5], [-73.5, -233.5], [-72.5, -233.5], [-71.5, -234.5], [-70.5, -235.5], [-68.5, -236.5], [-68.5, -236.5], [-67.5, -236.5], [-67.5, -236.5], [-64.5, -236.5], [-63.5, -237.5], [-63.5, -237.5], [-63.5, -237.5], [-62.5, -237.5]]], [{"color": "dark orchid", "pensize": 4, "sectors": 32, "mirror": 1, "center": [133.166666667, 0], "radius": 266.5}, [[-62.5, -237.5], [-42.5, -228.5], [-42.5, -228.5], [-41.5, -227.5], [-40.5, -226.5], [-39.5, -225.5], [-38.5, -224.5], [-37.5, -223.5], [-36.5, -222.5], [-36.5, -222.5], [-35.5, -221.5], [-34.5, -220.5], [-33.5, -219.5], [-33.5, -216.5], [-32.5, -215.5], [-32.5, -215.5], [-31.5, -214.5], [-31.5, -214.5], [-30.5, -213.5], [-29.5, -211.5], [-29.5, -211.5], [-28.5, -211.5], [-28.5, -211.5], [-26.5, -211.5], [-25.5, -211.5], [-24.5, -211.5], [-23.5, -211.5], [-22.5, -211.5], [-22.5, -211.5], [-21.5, -211.5], [-20.5, -211.5], [-19.5, -210.5], [-17.5, -210.5], [-16.5, -210.5], [-15.5, -209.5], [-14.5, -209.5], [-12.5, -208.5], [-11.5, -207.5], [-11.5, -207.5]]], [{"color": "deep sky blue", "pensize": 4, "sectors": 32, "mirror": 1, "center": [133.166666667, 0], "radius": 266.5}, [[-99.5, -189.5], [-99.5, -189.5], [-99.5, -188.5], [-98.5, -187.5], [-98.5, -187.5], [-98.5, -186.5], [-98.5, -186.5], [-97.5, -186.5], [-96.5, -185.5], [-96.5, -184.5], [-96.5, -184.5], [-95.5, -183.5], [-95.5, -182.5], [-94.5, -182.5], [-94.5, -181.5], [-94.5, -181.5], [-93.5, -180.5], [-92.5, -179.5], [-92.5, -179.5], [-92.5, -178.5], [-91.5, -178.5], [-91.5, -177.5], [-90.5, -177.5], [-90.5, -176.5], [-89.5, -175.5], [-89.5, -174.5], [-88.5, -174.5], [-86.5, -173.5], [-86.5, -172.5], [-85.5, -172.5], [-85.5, -171.5], [-85.5, -171.5], [-84.5, -170.5], [-83.5, -169.5], [-83.5, -169.5], [-82.5, -169.5], [-82.5, -169.5], [-81.5, -168.5], [-80.5, -167.5], [-80.5, -167.5], [-79.5, -167.5], [-79.5, -166.5], [-77.5, -166.5], [-77.5, -165.5], [-76.5, -165.5], [-75.5, -164.5], [-75.5, -164.5], [-75.5, -163.5], [-75.5, -163.5], [-75.5, -162.5], [-74.5, -160.5], [-73.5, -159.5], [-73.5, -158.5], [-73.5, -158.5], [-73.5, -157.5], [-73.5, -157.5], [-73.5, -156.5], [-73.5, -156.5], [-73.5, -155.5], [-73.5, -155.5], [-73.5, -153.5], [-73.5, -153.5], [-73.5, -152.5], [-73.5, -152.5], [-73.5, -151.5], [-73.5, -150.5], [-73.5, -150.5], [-73.5, -149.5], [-73.5, -148.5], [-73.5, -147.5], [-73.5, -147.5], [-73.5, -146.5], [-72.5, -145.5], [-72.5, -145.5], [-72.5, -144.5], [-72.5, -144.5], [-72.5, -142.5]]], [{"color": "deep sky blue", "pensize": 4, "sectors": 32, "mirror": 1, "center": [133.166666667, 0], "radius": 266.5}, [[59.5, -138.5], [58.5, -138.5], [58.5, -138.5], [58.5, -139.5], [57.5, -139.5], [57.5, -140.5], [57.5, -140.5], [56.5, -141.5], [56.5, -141.5], [56.5, -142.5]]], [{"color": "deep sky blue", "pensize": 4, "sectors": 32, "mirror": 1, "center": [133.166666667, 0], "radius": 266.5}, [[29.5, -54.5], [30.5, -54.5], [31.5, -54.5], [31.5, -54.5], [32.5, -54.5], [32.5, -54.5], [33.5, -53.5], [33.5, -53.5], [34.5, -53.5], [34.5, -52.5], [35.5, -52.5], [36.5, -52.5], [36.5, -52.5], [37.5, -52.5], [37.5, -51.5], [38.5, -51.5], [39.5, -51.5], [39.5, -50.5], [40.5, -49.5], [41.5, -49.5], [41.5, -49.5], [42.5, -49.5], [43.5, -48.5], [45.5, -48.5], [45.5, -48.5], [46.5, -47.5]]], [{"color": "deep sky blue", "pensize": 4, "sectors": 32, "mirror": 1, "center": [133.166666667, 0], "radius": 266.5}, [[29.5, -54.5], [30.5, -54.5], [31.5, -54.5], [31.5, -54.5], [32.5, -54.5], [32.5, -54.5], [33.5, -53.5], [33.5, -53.5], [34.5, -53.5], [34.5, -52.5], [35.5, -52.5], [36.5, -52.5], [36.5, -52.5], [37.5, -52.5], [37.5, -51.5], [38.5, -51.5], [39.5, -51.5], [39.5, -50.5], [40.5, -49.5], [41.5, -49.5], [41.5, -49.5], [42.5, -49.5], [43.5, -48.5], [45.5, -48.5], [45.5, -48.5], [46.5, -47.5]]], [{"color": "medium sea green", "pensize": 4, "sectors": 32, "mirror": 1, "center": [133.166666667, 0], "radius": 266.5}, [[-28.5, 198.5], [-29.5, 196.5], [-29.5, 196.5], [-30.5, 196.5], [-31.5, 195.5], [-32.5, 195.5], [-33.5, 194.5], [-34.5, 193.5], [-34.5, 193.5], [-34.5, 193.5], [-34.5, 190.5], [-34.5, 189.5], [-34.5, 188.5], [-34.5, 186.5], [-34.5, 186.5], [-34.5, 185.5], [-34.5, 185.5], [-34.5, 185.5], [-33.5, 184.5], [-33.5, 184.5], [-32.5, 183.5], [-31.5, 182.5], [-30.5, 182.5], [-29.5, 182.5], [-29.5, 182.5], [-28.5, 182.5], [-28.5, 182.5], [-27.5, 182.5], [-27.5, 181.5], [-26.5, 181.5], [-26.5, 181.5], [-25.5, 180.5], [-25.5, 180.5], [-24.5, 179.5], [-24.5, 179.5], [-24.5, 179.5], [-23.5, 178.5], [-22.5, 178.5], [-21.5, 177.5], [-21.5, 177.5], [-20.5, 176.5], [-19.5, 176.5], [-19.5, 175.5], [-18.5, 174.5], [-16.5, 171.5], [-16.5, 171.5], [-16.5, 170.5], [-16.5, 170.5], [-16.5, 169.5], [-16.5, 168.5], [-15.5, 168.5], [-15.5, 167.5], [-14.5, 167.5], [-13.5, 166.5], [-13.5, 165.5], [-13.5, 164.5], [-13.5, 164.5], [-12.5, 163.5], [-12.5, 163.5], [-12.5, 162.5], [-11.5, 162.5], [-11.5, 162.5], [-10.5, 162.5], [-10.5, 162.5], [-9.5, 162.5], [-9.5, 162.5], [-8.5, 162.5], [-7.5, 162.5], [-7.5, 162.5], [-6.5, 162.5], [-6.5, 162.5], [-4.5, 162.5], [-3.5, 162.5], [-3.5, 162.5], [-2.5, 162.5], [-1.5, 162.5], [-1.5, 162.5]]], [{"color": "medium sea green", "pensize": 4, "sectors": 32, "mirror": 1, "center": [133.166666667, 0], "radius": 266.5}, [[118.5, 206.5], [118.5, 193.5], [119.5, 193.5], [119.5, 191.5], [119.5, 191.5], [120.5, 190.5], [120.5, 189.5], [120.5, 189.5], [120.5, 188.5], [120.5, 188.5], [120.5, 188.5], [120.5, 187.5], [120.5, 187.5], [120.5, 186.5], [120.5, 186.5], [120.5, 185.5], [120.5, 184.5], [120.5, 184.5], [120.5, 182.5], [120.5, 181.5], [120.5, 180.5], [120.5, 180.5], [120.5, 179.5], [120.5, 179.5], [120.5, 178.5], [120.5, 177.5], [120.5, 176.5], [120.5, 175.5], [120.5, 175.5], [121.5, 174.5], [122.5, 174.5], [122.5, 174.5], [123.5, 173.5], [123.5, 172.5], [124.5, 172.5], [125.5, 172.5], [125.5, 172.5], [126.5, 172.5], [126.5, 171.5], [126.5, 171.5], [127.5, 171.5], [129.5, 169.5], [129.5, 168.5], [130.5, 167.5], [130.5, 167.5], [130.5, 166.5], [130.5, 166.5], [130.5, 165.5], [130.5, 164.5], [130.5, 164.5], [130.5, 164.5], [130.5, 163.5], [130.5, 162.5], [129.5, 161.5], [128.5, 160.5], [128.5, 160.5], [127.5, 160.5], [127.5, 159.5], [127.5, 158.5], [127.5, 158.5], [127.5, 157.5], [127.5, 156.5], [127.5, 156.5], [126.5, 155.5], [125.5, 154.5], [125.5, 154.5], [125.5, 153.5], [125.5, 153.5], [125.5, 153.5], [124.5, 152.5], [124.5, 151.5], [124.5, 150.5], [124.5, 150.5], [124.5, 150.5], [124.5, 149.5], [124.5, 148.5], [124.5, 148.5], [124.5, 147.5], [124.5, 146.5], [124.5, 146.5], [124.5, 145.5], [124.5, 145.5], [124.5, 143.5], [124.5, 142.5], [125.5, 141.5]]], [{"color": "medium sea green", "pensize": 4, "sectors": 32, "mirror": 1, "center": [133.166666667, 0], "radius": 266.5}, [[118.5, 206.5], [118.5, 193.5], [119.5, 193.5], [119.5, 191.5], [119.5, 191.5], [120.5, 190.5], [120.5, 189.5], [120.5, 189.5], [120.5, 188.5], [120.5, 188.5], [120.5, 188.5], [120.5, 187.5], [120.5, 187.5], [120.5, 186.5], [120.5, 186.5], [120.5, 185.5], [120.5, 184.5], [120.5, 184.5], [120.5, 182.5], [120.5, 181.5], [120.5, 180.5], [120.5, 180.5], [120.5, 179.5], [120.5, 179.5], [120.5, 178.5], [120.5, 177.5], [120.5, 176.5], [120.5, 175.5], [120.5, 175.5], [121.5, 174.5], [122.5, 174.5], [122.5, 174.5], [123.5, 173.5], [123.5, 172.5], [124.5, 172.5], [125.5, 172.5], [125.5, 172.5], [126.5, 172.5], [126.5, 171.5], [126.5, 171.5], [127.5, 171.5], [129.5, 169.5], [129.5, 168.5], [130.5, 167.5], [130.5, 167.5], [130.5, 166.5], [130.5, 166.5], [130.5, 165.5], [130.5, 164.5], [130.5, 164.5], [130.5, 164.5], [130.5, 163.5], [130.5, 162.5], [129.5, 161.5], [128.5, 160.5], [128.5, 160.5], [127.5, 160.5], [127.5, 159.5], [127.5, 158.5], [127.5, 158.5], [127.5, 157.5], [127.5, 156.5], [127.5, 156.5], [126.5, 155.5], [125.5, 154.5], [125.5, 154.5], [125.5, 153.5], [125.5, 153.5], [125.5, 153.5], [124.5, 152.5], [124.5, 151.5], [124.5, 150.5], [124.5, 150.5], [124.5, 150.5], [124.5, 149.5], [124.5, 148.5], [124.5, 148.5], [124.5, 147.5], [124.5, 146.5], [124.5, 146.5], [124.5, 145.5], [124.5, 145.5], [124.5, 143.5], [124.5, 142.5], [125.5, 141.5]]], [{"color": "coral", "pensize": 4, "sectors": 32, "mirror": 1, "center": [133.166666667, 0], "radius": 266.5}, [[-100.5, 197.5], [-100.5, 198.5], [-100.5, 198.5], [-100.5, 199.5], [-100.5, 200.5], [-100.5, 200.5], [-100.5, 200.5], [-99.5, 201.5], [-97.5, 203.5], [-96.5, 204.5], [-96.5, 205.5], [-95.5, 205.5], [-95.5, 205.5], [-95.5, 205.5], [-93.5, 206.5], [-93.5, 207.5], [-93.5, 207.5], [-93.5, 207.5], [-92.5, 207.5], [-92.5, 207.5], [-91.5, 207.5], [-90.5, 207.5], [-90.5, 207.5], [-90.5, 207.5], [-88.5, 207.5], [-88.5, 207.5], [-87.5, 207.5], [-87.5, 207.5], [-86.5, 207.5], [-85.5, 207.5], [-85.5, 206.5], [-84.5, 206.5], [-83.5, 205.5], [-83.5, 205.5], [-82.5, 205.5], [-81.5, 205.5], [-80.5, 204.5], [-79.5, 203.5], [-79.5, 203.5], [-78.5, 203.5], [-77.5, 203.5], [-77.5, 203.5], [-76.5, 202.5], [-76.5, 202.5], [-75.5, 202.5], [-74.5, 202.5], [-74.5, 201.5], [-73.5, 201.5], [-73.5, 200.5], [-72.5, 200.5], [-71.5, 199.5], [-71.5, 198.5], [-71.5, 198.5], [-71.5, 198.5], [-71.5, 198.5], [-72.5, 198.5]]], [{"color": "dark turquoise", "pensize": 4, "sectors": 32, "mirror": 1, "center": [133.166666667, 0], "radius": 266.5}, [[-74.5, 209.5], [-73.5, 209.5], [-79.5, 219.5], [-80.5, 221.5], [-82.5, 223.5], [-83.5, 223.5], [-84.5, 224.5], [-85.5, 225.5], [-86.5, 226.5], [-87.5, 226.5], [-90.5, 227.5], [-93.5, 228.5], [-95.5, 229.5], [-97.5, 230.5], [-99.5, 231.5], [-102.5, 232.5], [-103.5, 232.5], [-103.5, 232.5], [-104.5, 232.5], [-105.5, 232.5], [-106.5, 232.5], [-106.5, 232.5], [-107.5, 232.5], [-109.5, 231.5], [-110.5, 230.5], [-110.5, 230.5], [-111.5, 228.5], [-112.5, 225.5], [-113.5, 225.5], [-114.5, 222.5], [-114.5, 218.5], [-114.5, 216.5], [-114.5, 215.5], [-114.5, 214.5], [-114.5, 213.5], [-114.5, 213.5], [-114.5, 210.5], [-114.5, 206.5], [-113.5, 205.5], [-112.5, 204.5], [-111.5, 204.5], [-110.5, 202.5], [-110.5, 201.5], [-109.5, 201.5], [-108.5, 200.5], [-107.5, 199.5], [-105.5, 198.5], [-104.5, 198.5], [-104.5, 197.5]]]]
[[{"color": "red", "pensize": 6, "sectors": 32, "mirror": 1, "center": [133.166666667, 0], "radius": 266.5}, [[-70.5, 225.5], [-70.5, 225.5], [-71.5, 224.5], [-73.5, 224.5], [-76.5, 222.5], [-79.5, 221.5], [-79.5, 221.5], [-79.5, 220.5], [-80.5, 219.5], [-81.5, 217.5], [-81.5, 215.5], [-82.5, 214.5], [-82.5, 212.5], [-82.5, 211.5], [-82.5, 210.5], [-81.5, 210.5], [-79.5, 208.5], [-77.5, 206.5], [-75.5, 205.5], [-74.5, 204.5], [-73.5, 204.5], [-71.5, 202.5], [-69.5, 202.5], [-68.5, 201.5], [-66.5, 200.5], [-62.5, 199.5], [-56.5, 198.5], [-50.5, 198.5], [-42.5, 197.5], [-39.5, 197.5], [-38.5, 196.5], [-36.5, 195.5], [-35.5, 195.5], [-33.5, 194.5], [-32.5, 193.5], [-31.5, 192.5], [-30.5, 191.5], [-30.5, 190.5], [-29.5, 190.5], [-29.5, 189.5], [-29.5, 188.5], [-28.5, 187.5], [-28.5, 186.5], [-28.5, 186.5], [-27.5, 185.5], [-27.5, 184.5], [-27.5, 183.5], [-27.5, 182.5], [-27.5, 182.5], [-27.5, 181.5], [-28.5, 181.5], [-28.5, 180.5], [-28.5, 179.5], [-29.5, 178.5], [-30.5, 178.5], [-30.5, 177.5], [-31.5, 176.5], [-31.5, 176.5], [-32.5, 175.5], [-32.5, 174.5], [-33.5, 174.5], [-33.5, 173.5], [-32.5, 173.5], [-32.5, 173.5], [-31.5, 173.5], [-30.5, 173.5], [-29.5, 173.5], [-28.5, 173.5], [-28.5, 173.5], [-27.5, 172.5], [-26.5, 172.5], [-25.5, 172.5], [-24.5, 172.5], [-23.5, 172.5], [-23.5, 172.5], [-22.5, 172.5], [-22.5, 172.5], [-21.5, 172.5], [-21.5, 172.5], [-20.5, 171.5], [-20.5, 171.5], [-19.5, 171.5], [-19.5, 171.5], [-17.5, 170.5], [-15.5, 169.5], [-15.5, 169.5], [-14.5, 168.5], [-13.5, 167.5], [-11.5, 167.5], [-9.5, 166.5], [-9.5, 165.5], [-8.5, 165.5], [-8.5, 164.5], [-8.5, 164.5], [-9.5, 164.5], [-9.5, 163.5], [-9.5, 163.5], [-9.5, 163.5], [-9.5, 163.5], [-10.5, 163.5], [-10.5, 163.5], [-11.5, 162.5], [-11.5, 162.5], [-11.5, 162.5], [-11.5, 161.5], [-12.5, 161.5], [-12.5, 160.5], [-12.5, 160.5], [-12.5, 160.5], [-13.5, 159.5], [-13.5, 158.5], [-14.5, 158.5], [-14.5, 157.5], [-14.5, 157.5], [-14.5, 156.5], [-13.5, 155.5], [-11.5, 153.5], [-9.5, 152.5], [-7.5, 152.5], [-4.5, 150.5], [-3.5, 150.5], [-3.5, 150.5], [-2.5, 149.5], [0.5, 148.5], [5.5, 147.5], [7.5, 146.5], [8.5, 146.5], [10.5, 146.5], [13.5, 145.5], [22.5, 143.5], [25.5, 143.5], [28.5, 142.5], [43.5, 141.5], [43.5, 141.5], [45.5, 141.5], [47.5, 140.5], [54.5, 136.5], [60.5, 133.5], [62.5, 131.5], [65.5, 128.5], [65.5, 128.5], [69.5, 124.5], [75.5, 118.5], [79.5, 114.5], [82.5, 112.5], [83.5, 110.5], [84.5, 107.5], [87.5, 101.5], [90.5, 94.5], [92.5, 89.5], [93.5, 86.5], [93.5, 83.5], [94.5, 79.5], [94.5, 75.5], [94.5, 72.5], [94.5, 68.5], [93.5, 66.5], [93.5, 64.5], [93.5, 63.5], [93.5, 63.5]]], [{"color": "deep sky blue", "pensize": 6, "sectors": 32, "mirror": 1, "center": [133.166666667, 0], "radius": 266.5}, [[196.5, 35.5], [197.5, 35.5], [197.5, 35.5], [198.5, 35.5], [198.5, 35.5], [198.5, 35.5], [199.5, 35.5], [199.5, 35.5], [200.5, 35.5], [200.5, 35.5], [201.5, 35.5], [201.5, 35.5], [201.5, 35.5], [202.5, 35.5], [202.5, 36.5], [203.5, 36.5], [203.5, 36.5], [203.5, 36.5], [204.5, 36.5], [205.5, 36.5], [205.5, 36.5], [205.5, 36.5], [206.5, 36.5], [206.5, 36.5], [207.5, 36.5], [207.5, 37.5], [209.5, 37.5], [211.5, 37.5], [211.5, 37.5], [214.5, 37.5], [215.5, 38.5], [216.5, 38.5], [216.5, 38.5], [218.5, 39.5], [219.5, 39.5], [220.5, 40.5], [220.5, 40.5], [222.5, 40.5], [223.5, 41.5], [223.5, 42.5], [224.5, 42.5], [225.5, 43.5], [227.5, 45.5], [227.5, 45.5], [227.5, 46.5], [227.5, 46.5], [228.5, 47.5], [228.5, 47.5], [228.5, 48.5], [228.5, 48.5], [228.5, 48.5], [229.5, 49.5], [229.5, 50.5], [231.5, 51.5], [231.5, 51.5], [232.5, 51.5], [233.5, 52.5], [233.5, 52.5], [233.5, 52.5], [234.5, 52.5], [234.5, 52.5], [235.5, 52.5], [235.5, 52.5], [236.5, 52.5], [237.5, 52.5], [237.5, 52.5], [238.5, 53.5], [239.5, 53.5], [240.5, 53.5], [241.5, 54.5], [242.5, 56.5], [242.5, 56.5], [243.5, 56.5], [244.5, 57.5], [245.5, 58.5], [246.5, 59.5], [248.5, 60.5], [249.5, 61.5], [250.5, 62.5], [250.5, 62.5], [252.5, 63.5], [254.5, 64.5], [255.5, 64.5], [256.5, 65.5], [257.5, 65.5], [258.5, 66.5], [259.5, 67.5], [261.5, 67.5], [262.5, 68.5], [262.5, 68.5], [263.5, 69.5], [263.5, 69.5], [266.5, 72.5], [269.5, 75.5], [269.5, 75.5], [269.5, 75.5], [270.5, 76.5], [271.5, 77.5], [272.5, 78.5], [273.5, 78.5], [273.5, 79.5], [274.5, 80.5], [276.5, 81.5], [276.5, 81.5], [277.5, 81.5], [278.5, 81.5], [278.5, 81.5], [279.5, 81.5], [279.5, 81.5], [279.5, 81.5], [280.5, 81.5], [281.5, 81.5], [282.5, 81.5], [283.5, 82.5], [284.5, 82.5], [284.5, 82.5], [285.5, 83.5], [286.5, 83.5], [286.5, 83.5], [288.5, 84.5], [288.5, 85.5], [289.5, 85.5], [290.5, 86.5], [290.5, 86.5], [291.5, 86.5], [291.5, 87.5], [292.5, 87.5], [293.5, 87.5], [294.5, 88.5], [295.5, 88.5], [295.5, 88.5], [296.5, 89.5], [296.5, 90.5], [297.5, 90.5], [299.5, 91.5], [303.5, 92.5], [305.5, 93.5], [305.5, 93.5], [305.5, 93.5], [307.5, 94.5], [309.5, 95.5], [309.5, 95.5], [310.5, 95.5], [311.5, 96.5], [314.5, 98.5], [318.5, 100.5], [318.5, 100.5], [319.5, 101.5], [320.5, 101.5], [321.5, 102.5], [321.5, 102.5], [322.5, 103.5], [325.5, 106.5], [327.5, 108.5], [327.5, 108.5], [328.5, 109.5], [329.5, 110.5], [331.5, 111.5], [332.5, 112.5], [332.5, 113.5], [332.5, 113.5], [333.5, 113.5], [336.5, 115.5], [336.5, 115.5], [337.5, 115.5], [338.5, 116.5], [340.5, 117.5], [341.5, 117.5], [341.5, 118.5], [342.5, 118.5], [344.5, 118.5], [345.5, 119.5], [346.5, 120.5], [347.5, 120.5], [347.5, 120.5], [349.5, 120.5], [351.5, 120.5], [352.5, 120.5], [353.5, 120.5], [353.5, 120.5], [354.5, 120.5], [355.5, 120.5], [355.5, 121.5], [356.5, 121.5], [357.5, 121.5], [358.5, 121.5], [359.5, 121.5], [360.5, 122.5], [360.5, 122.5], [361.5, 122.5], [362.5, 122.5], [362.5, 122.5], [364.5, 122.5], [365.5, 123.5], [365.5, 123.5], [367.5, 124.5], [372.5, 126.5], [375.5, 127.5], [376.5, 128.5], [376.5, 128.5], [377.5, 129.5], [377.5, 129.5], [378.5, 130.5], [378.5, 131.5], [379.5, 132.5], [379.5, 132.5], [380.5, 134.5], [382.5, 135.5], [382.5, 136.5], [382.5, 136.5], [382.5, 137.5], [382.5, 137.5], [382.5, 137.5], [382.5, 139.5], [382.5, 141.5], [381.5, 141.5], [381.5, 142.5], [380.5, 142.5], [380.5, 143.5], [380.5, 144.5], [379.5, 144.5], [378.5, 144.5], [378.5, 145.5], [378.5, 145.5], [377.5, 145.5], [377.5, 146.5], [378.5, 147.5], [378.5, 147.5], [379.5, 148.5], [379.5, 148.5], [380.5, 148.5], [380.5, 148.5], [380.5, 148.5], [381.5, 148.5], [381.5, 148.5], [382.5, 148.5], [382.5, 148.5], [382.5, 148.5], [383.5, 148.5], [383.5, 148.5], [384.5, 148.5], [384.5, 148.5], [384.5, 148.5], [384.5, 148.5], [385.5, 148.5], [385.5, 148.5], [386.5, 148.5], [386.5, 147.5], [386.5, 147.5], [386.5, 146.5], [387.5, 146.5], [388.5, 146.5], [388.5, 146.5], [389.5, 145.5], [389.5, 144.5], [389.5, 144.5], [389.5, 144.5], [389.5, 144.5], [390.5, 143.5], [390.5, 142.5], [390.5, 142.5], [391.5, 142.5], [391.5, 142.5], [391.5, 140.5], [392.5, 140.5], [392.5, 139.5]]], [{"color": "dark turquoise", "pensize": 6, "sectors": 16, "mirror": 0, "center": [133.166666667, 0], "radius": 266.5}, [[164.5, 163.5], [164.5, 163.5], [163.5, 162.5], [163.5, 162.5], [162.5, 161.5], [161.5, 161.5], [160.5, 160.5], [160.5, 159.5], [159.5, 158.5], [159.5, 158.5], [158.5, 157.5], [158.5, 157.5], [158.5, 156.5], [158.5, 156.5], [158.5, 155.5], [157.5, 154.5], [156.5, 153.5], [156.5, 153.5], [156.5, 153.5], [155.5, 152.5], [155.5, 151.5], [155.5, 150.5], [155.5, 150.5], [155.5, 149.5], [155.5, 149.5], [155.5, 148.5], [155.5, 148.5], [155.5, 147.5], [155.5, 146.5], [154.5, 145.5], [154.5, 144.5], [154.5, 143.5], [154.5, 143.5], [154.5, 143.5], [154.5, 141.5], [153.5, 141.5], [153.5, 140.5], [153.5, 139.5], [153.5, 139.5], [153.5, 139.5], [153.5, 138.5], [153.5, 138.5], [153.5, 137.5], [153.5, 137.5], [153.5, 135.5], [154.5, 135.5], [154.5, 134.5], [154.5, 134.5], [155.5, 133.5], [155.5, 133.5], [155.5, 132.5], [155.5, 131.5], [155.5, 131.5], [155.5, 131.5], [156.5, 131.5], [157.5, 131.5], [157.5, 130.5], [157.5, 130.5], [158.5, 130.5], [158.5, 130.5], [159.5, 130.5], [159.5, 130.5], [160.5, 130.5], [160.5, 130.5], [161.5, 130.5], [162.5, 130.5], [162.5, 130.5], [162.5, 130.5], [164.5, 131.5], [164.5, 131.5], [165.5, 132.5], [166.5, 133.5], [166.5, 135.5], [167.5, 136.5], [168.5, 137.5], [168.5, 138.5], [168.5, 140.5], [169.5, 142.5], [169.5, 143.5], [169.5, 144.5], [170.5, 145.5], [170.5, 146.5], [170.5, 146.5], [170.5, 148.5], [170.5, 149.5], [170.5, 149.5], [169.5, 150.5], [169.5, 150.5], [168.5, 151.5], [167.5, 152.5], [166.5, 152.5], [165.5, 152.5], [164.5, 152.5], [162.5, 151.5], [161.5, 149.5], [160.5, 146.5], [159.5, 144.5], [159.5, 143.5], [159.5, 141.5], [159.5, 139.5], [159.5, 138.5], [159.5, 138.5], [159.5, 140.5], [161.5, 143.5], [163.5, 149.5], [164.5, 152.5], [164.5, 154.5], [164.5, 154.5], [164.5, 155.5], [164.5, 155.5], [164.5, 156.5], [164.5, 156.5], [164.5, 157.5], [164.5, 158.5], [164.5, 158.5], [165.5, 159.5], [165.5, 159.5], [165.5, 159.5], [165.5, 159.5], [165.5, 158.5], [164.5, 155.5], [163.5, 151.5], [162.5, 146.5], [161.5, 144.5], [161.5, 144.5], [161.5, 143.5], [161.5, 143.5], [161.5, 142.5], [161.5, 140.5], [161.5, 140.5], [162.5, 140.5], [163.5, 141.5], [164.5, 142.5], [165.5, 142.5], [166.5, 143.5], [167.5, 145.5], [167.5, 148.5], [167.5, 150.5], [167.5, 151.5], [166.5, 151.5], [165.5, 150.5], [163.5, 148.5], [161.5, 145.5], [161.5, 144.5], [161.5, 144.5], [161.5, 144.5], [160.5, 144.5], [160.5, 143.5], [158.5, 143.5], [158.5, 143.5], [158.5, 142.5], [158.5, 142.5], [158.5, 143.5], [158.5, 144.5], [158.5, 147.5], [158.5, 147.5], [158.5, 148.5], [158.5, 149.5], [157.5, 150.5], [157.5, 150.5], [157.5, 151.5], [157.5, 151.5], [157.5, 151.5], [157.5, 152.5], [158.5, 154.5], [158.5, 157.5], [159.5, 157.5], [159.5, 157.5], [159.5, 157.5], [160.5, 157.5], [161.5, 157.5], [161.5, 158.5], [163.5, 158.5], [164.5, 158.5], [165.5, 158.5], [165.5, 159.5], [165.5, 159.5], [166.5, 160.5], [166.5, 159.5], [166.5, 158.5], [166.5, 158.5], [166.5, 157.5], [166.5, 156.5], [167.5, 154.5], [167.5, 153.5], [167.5, 152.5], [168.5, 151.5], [168.5, 150.5], [168.5, 150.5], [168.5, 151.5], [168.5, 153.5], [168.5, 155.5], [168.5, 155.5], [168.5, 156.5], [168.5, 157.5], [167.5, 158.5], [167.5, 159.5], [167.5, 159.5], [167.5, 162.5], [167.5, 162.5], [167.5, 162.5], [167.5, 163.5], [166.5, 163.5], [166.5, 163.5], [165.5, 164.5], [164.5, 164.5], [162.5, 163.5], [161.5, 161.5], [160.5, 157.5], [159.5, 154.5], [159.5, 152.5], [159.5, 150.5], [158.5, 150.5], [158.5, 150.5], [158.5, 149.5], [158.5, 148.5], [157.5, 146.5], [157.5, 145.5], [157.5, 145.5], [157.5, 144.5], [157.5, 144.5], [157.5, 143.5], [158.5, 143.5], [158.5, 141.5], [158.5, 141.5], [158.5, 141.5], [158.5, 141.5], [158.5, 143.5], [157.5, 145.5], [157.5, 145.5], [156.5, 146.5], [156.5, 146.5], [156.5, 147.5], [156.5, 148.5], [155.5, 148.5], [155.5, 148.5], [154.5, 148.5], [153.5, 148.5], [153.5, 146.5], [153.5, 146.5], [154.5, 146.5], [154.5, 146.5], [156.5, 146.5], [158.5, 146.5], [161.5, 146.5], [162.5, 146.5], [163.5, 146.5], [163.5, 146.5]]], [{"color": "dark turquoise", "pensize": 6, "sectors": 16, "mirror": 0, "center": [133.166666667, 0], "radius": 266.5}, [[163.5, 136.5], [163.5, 137.5], [162.5, 137.5], [162.5, 137.5], [161.5, 136.5], [161.5, 136.5], [161.5, 136.5], [160.5, 135.5], [160.5, 135.5], [160.5, 135.5], [159.5, 135.5]]], [{"color": "hot pink", "pensize": 6, "sectors": 16, "mirror": 0, "center": [133.166666667, 0], "radius": 266.5}, [[-20.5, 231.5], [-20.5, 230.5], [-20.5, 229.5], [-20.5, 228.5], [-20.5, 227.5], [-20.5, 227.5], [-20.5, 227.5], [-20.5, 226.5], [-20.5, 225.5], [-20.5, 225.5], [-20.5, 225.5], [-20.5, 224.5], [-20.5, 223.5], [-20.5, 223.5], [-20.5, 223.5], [-20.5, 222.5], [-20.5, 222.5], [-20.5, 221.5], [-20.5, 221.5], [-20.5, 220.5], [-20.5, 219.5], [-20.5, 219.5], [-20.5, 219.5], [-20.5, 218.5], [-20.5, 217.5], [-20.5, 216.5], [-20.5, 216.5], [-20.5, 215.5], [-20.5, 214.5], [-20.5, 213.5], [-20.5, 213.5], [-20.5, 212.5], [-20.5, 212.5], [-20.5, 212.5], [-20.5, 211.5], [-20.5, 210.5], [-20.5, 210.5], [-20.5, 209.5], [-20.5, 209.5], [-20.5, 208.5], [-20.5, 208.5], [-20.5, 208.5], [-20.5, 207.5], [-20.5, 207.5], [-20.5, 206.5], [-20.5, 206.5], [-20.5, 206.5], [-20.5, 206.5], [-20.5, 205.5], [-20.5, 205.5], [-19.5, 204.5], [-18.5, 204.5], [-18.5, 204.5], [-17.5, 203.5], [-17.5, 203.5], [-16.5, 203.5], [-16.5, 203.5], [-16.5, 203.5], [-16.5, 203.5], [-15.5, 203.5], [-15.5, 203.5], [-14.5, 203.5], [-14.5, 202.5], [-14.5, 202.5], [-13.5, 202.5], [-13.5, 202.5], [-12.5, 202.5], [-11.5, 202.5], [-10.5, 202.5], [-9.5, 202.5], [-9.5, 202.5], [-8.5, 202.5], [-7.5, 202.5], [-6.5, 202.5], [-6.5, 202.5], [-5.5, 203.5], [-4.5, 203.5], [-4.5, 203.5], [-3.5, 203.5], [-3.5, 203.5], [-3.5, 203.5], [-2.5, 203.5], [-2.5, 204.5], [-1.5, 204.5], [-1.5, 204.5], [-1.5, 205.5], [-0.5, 205.5], [-0.5, 206.5], [0.5, 206.5], [1.5, 207.5], [1.5, 208.5], [2.5, 208.5], [3.5, 209.5], [3.5, 209.5], [3.5, 209.5], [4.5, 210.5], [4.5, 210.5], [5.5, 210.5], [5.5, 211.5], [5.5, 211.5], [5.5, 212.5], [5.5, 212.5], [5.5, 213.5], [5.5, 213.5], [5.5, 214.5], [5.5, 214.5], [5.5, 215.5], [4.5, 215.5], [4.5, 215.5], [4.5, 216.5], [3.5, 217.5], [3.5, 218.5], [2.5, 219.5], [2.5, 219.5], [1.5, 220.5], [0.5, 220.5], [0.5, 221.5], [-0.5, 221.5], [-1.5, 222.5], [-1.5, 222.5], [-2.5, 223.5], [-3.5, 224.5], [-4.5, 224.5], [-5.5, 225.5], [-6.5, 225.5], [-7.5, 226.5], [-8.5, 226.5], [-8.5, 226.5], [-9.5, 226.5], [-10.5, 226.5], [-10.5, 226.5], [-11.5, 226.5], [-11.5, 227.5], [-12.5, 227.5], [-12.5, 227.5], [-13.5, 227.5], [-14.5, 227.5], [-14.5, 227.5], [-14.5, 227.5], [-15.5, 227.5], [-16.5, 228.5], [-17.5, 228.5], [-17.5, 228.5], [-18.5, 228.5], [-19.5, 229.5], [-19.5, 229.5], [-19.5, 229.5], [-20.5, 229.5], [-20.5, 228.5], [-20.5, 227.5], [-19.5, 227.5], [-19.5, 226.5], [-18.5, 225.5], [-16.5, 224.5], [-15.5, 223.5], [-14.5, 222.5], [-13.5, 222.5], [-12.5, 221.5], [-11.5, 221.5], [-10.5, 221.5], [-8.5, 221.5], [-7.5, 221.5], [-8.5, 221.5], [-8.5, 221.5], [-9.5, 221.5], [-10.5, 222.5], [-11.5, 223.5], [-13.5, 224.5], [-14.5, 226.5], [-14.5, 227.5], [-15.5, 228.5], [-15.5, 229.5], [-16.5, 229.5], [-16.5, 229.5], [-17.5, 229.5], [-17.5, 230.5], [-18.5, 230.5], [-17.5, 230.5], [-17.5, 230.5], [-15.5, 229.5], [-13.5, 228.5], [-13.5, 228.5], [-11.5, 227.5], [-10.5, 227.5], [-9.5, 226.5], [-8.5, 225.5], [-7.5, 224.5], [-6.5, 221.5], [-6.5, 220.5], [-6.5, 219.5], [-7.5, 218.5], [-9.5, 217.5], [-11.5, 217.5], [-14.5, 217.5], [-15.5, 217.5], [-15.5, 218.5], [-15.5, 218.5], [-15.5, 218.5], [-14.5, 221.5], [-14.5, 223.5], [-14.5, 223.5], [-15.5, 223.5], [-16.5, 223.5], [-16.5, 222.5], [-16.5, 220.5], [-16.5, 217.5], [-16.5, 216.5], [-15.5, 215.5], [-14.5, 215.5], [-12.5, 215.5], [-12.5, 215.5], [-10.5, 215.5], [-8.5, 216.5], [-8.5, 216.5], [-8.5, 218.5], [-9.5, 218.5], [-11.5, 219.5], [-12.5, 219.5], [-14.5, 217.5], [-16.5, 216.5], [-16.5, 215.5], [-16.5, 214.5], [-16.5, 214.5], [-16.5, 213.5], [-15.5, 212.5], [-14.5, 210.5], [-13.5, 210.5], [-12.5, 210.5], [-10.5, 210.5], [-9.5, 210.5], [-8.5, 210.5], [-7.5, 211.5], [-7.5, 211.5], [-7.5, 212.5], [-9.5, 212.5], [-11.5, 213.5], [-13.5, 212.5], [-15.5, 211.5], [-15.5, 210.5], [-15.5, 210.5], [-15.5, 210.5], [-15.5, 209.5], [-15.5, 209.5], [-14.5, 208.5], [-12.5, 208.5], [-10.5, 208.5], [-9.5, 208.5], [-8.5, 208.5], [-7.5, 208.5], [-5.5, 209.5], [-3.5, 210.5], [-2.5, 212.5], [-1.5, 213.5], [-1.5, 214.5]]], [{"color": "hot pink", "pensize": 6, "sectors": 16, "mirror": 0, "center": [133.166666667, 0], "radius": 266.5}, [[-3.5, 218.5], [-10.5, 215.5], [-10.5, 213.5], [-11.5, 212.5]]], [{"color": "hot pink", "pensize": 6, "sectors": 16, "mirror": 0, "center": [133.166666667, 0], "radius": 266.5}, [[-13.5, 208.5], [-11.5, 208.5], [-9.5, 210.5], [-8.5, 211.5], [-7.5, 211.5], [-7.5, 211.5], [-8.5, 211.5], [-9.5, 211.5], [-9.5, 211.5]]], [{"color": "hot pink", "pensize": 6, "sectors": 16, "mirror": 0, "center": [133.166666667, 0], "radius": 266.5}, [[1.5, 212.5], [1.5, 212.5], [0.5, 212.5], [-0.5, 212.5], [-2.5, 212.5], [-3.5, 212.5], [-5.5, 212.5], [-6.5, 212.5], [-7.5, 212.5], [-8.5, 212.5], [-9.5, 212.5], [-9.5, 211.5], [-10.5, 210.5], [-11.5, 210.5], [-11.5, 209.5], [-12.5, 208.5], [-12.5, 207.5], [-13.5, 206.5], [-14.5, 205.5], [-14.5, 205.5], [-15.5, 204.5], [-16.5, 204.5], [-16.5, 204.5], [-16.5, 204.5], [-16.5, 204.5], [-17.5, 204.5], [-17.5, 204.5], [-18.5, 204.5], [-18.5, 204.5], [-18.5, 204.5], [-19.5, 204.5], [-19.5, 203.5], [-19.5, 203.5], [-19.5, 202.5], [-19.5, 202.5], [-18.5, 201.5], [-18.5, 200.5], [-18.5, 200.5], [-18.5, 200.5], [-18.5, 199.5], [-17.5, 199.5], [-17.5, 199.5], [-16.5, 199.5], [-16.5, 199.5], [-16.5, 199.5], [-16.5, 199.5], [-16.5, 198.5], [-15.5, 198.5], [-15.5, 198.5], [-14.5, 198.5], [-14.5, 198.5], [-14.5, 198.5], [-13.5, 198.5], [-13.5, 198.5], [-12.5, 198.5], [-12.5, 198.5], [-12.5, 198.5], [-11.5, 198.5], [-11.5, 198.5], [-10.5, 198.5], [-10.5, 198.5], [-10.5, 198.5]]], [{"color": "cornflower blue", "pensize": 6, "sectors": 16, "mirror": 0, "center": [133.166666667, 0], "radius": 266.5}, [[116.5, 36.5], [115.5, 36.5], [115.5, 36.5], [115.5, 36.5], [114.5, 36.5], [113.5, 36.5], [113.5, 36.5], [113.5, 36.5], [112.5, 36.5], [112.5, 36.5], [111.5, 35.5], [111.5, 35.5], [111.5, 35.5], [110.5, 35.5], [110.5, 35.5], [110.5, 35.5], [110.5, 34.5], [109.5, 34.5], [109.5, 34.5], [108.5, 35.5], [108.5, 35.5], [108.5, 36.5], [108.5, 37.5], [108.5, 37.5], [108.5, 39.5], [108.5, 40.5], [109.5, 40.5], [109.5, 41.5], [109.5, 42.5], [110.5, 42.5], [110.5, 43.5], [110.5, 44.5], [110.5, 44.5], [111.5, 44.5], [111.5, 45.5], [112.5, 47.5], [114.5, 48.5], [115.5, 49.5], [115.5, 49.5], [116.5, 49.5], [118.5, 49.5], [119.5, 49.5], [120.5, 49.5], [121.5, 49.5], [121.5, 49.5], [121.5, 49.5], [122.5, 49.5], [122.5, 49.5], [122.5, 50.5], [123.5, 50.5], [123.5, 50.5], [123.5, 51.5], [123.5, 51.5], [123.5, 51.5], [122.5, 52.5], [122.5, 53.5], [122.5, 53.5], [122.5, 53.5], [121.5, 53.5], [121.5, 54.5], [121.5, 55.5], [120.5, 55.5], [120.5, 55.5], [119.5, 56.5], [119.5, 56.5], [119.5, 56.5], [118.5, 56.5], [117.5, 56.5], [117.5, 57.5], [117.5, 57.5], [116.5, 58.5], [114.5, 59.5], [113.5, 59.5], [113.5, 59.5], [112.5, 59.5], [112.5, 60.5], [112.5, 60.5], [112.5, 60.5], [111.5, 60.5], [111.5, 60.5], [110.5, 60.5], [110.5, 60.5], [110.5, 60.5], [109.5, 60.5], [109.5, 60.5], [109.5, 60.5], [108.5, 60.5], [108.5, 60.5], [107.5, 60.5], [107.5, 61.5], [107.5, 61.5], [106.5, 61.5], [105.5, 61.5], [105.5, 61.5], [104.5, 61.5], [103.5, 61.5], [103.5, 61.5], [103.5, 61.5], [103.5, 61.5], [102.5, 61.5], [102.5, 62.5]]], [{"color": "medium sea green", "pensize": 6, "sectors": 16, "mirror": 1, "center": [133.166666667, 0], "radius": 266.5}, [[-61.5, 194.5], [-61.5, 194.5], [-61.5, 194.5], [-61.5, 193.5], [-61.5, 193.5], [-61.5, 192.5], [-61.5, 192.5], [-61.5, 191.5], [-61.5, 191.5], [-61.5, 189.5], [-61.5, 188.5], [-61.5, 188.5], [-61.5, 187.5], [-61.5, 186.5], [-61.5, 185.5], [-60.5, 183.5], [-60.5, 183.5], [-60.5, 182.5], [-60.5, 181.5], [-59.5, 178.5], [-59.5, 176.5], [-59.5, 176.5], [-59.5, 176.5], [-58.5, 176.5], [-58.5, 175.5], [-57.5, 174.5], [-56.5, 172.5], [-56.5, 172.5], [-55.5, 172.5], [-55.5, 172.5], [-55.5, 172.5], [-54.5, 172.5], [-53.5, 172.5], [-53.5, 171.5], [-53.5, 171.5], [-51.5, 171.5], [-50.5, 171.5], [-50.5, 171.5], [-49.5, 171.5], [-49.5, 171.5], [-48.5, 171.5], [-47.5, 171.5], [-46.5, 171.5], [-45.5, 171.5], [-45.5, 171.5], [-44.5, 171.5], [-44.5, 171.5], [-43.5, 172.5], [-42.5, 172.5], [-42.5, 172.5], [-42.5, 172.5], [-41.5, 172.5], [-41.5, 172.5], [-40.5, 172.5], [-40.5, 172.5], [-40.5, 172.5], [-39.5, 172.5]]], [{"color": "medium sea green", "pensize": 6, "sectors": 16, "mirror": 1, "center": [133.166666667, 0], "radius": 266.5}, [[37.5, 142.5], [37.5, 141.5], [37.5, 140.5], [37.5, 140.5], [36.5, 140.5], [36.5, 139.5], [35.5, 137.5], [35.5, 137.5], [34.5, 135.5], [34.5, 135.5], [34.5, 134.5], [34.5, 133.5], [34.5, 132.5], [34.5, 132.5], [34.5, 130.5], [34.5, 130.5], [34.5, 129.5], [34.5, 129.5], [35.5, 127.5], [36.5, 126.5], [36.5, 126.5], [36.5, 125.5], [36.5, 124.5], [37.5, 122.5], [38.5, 121.5], [39.5, 121.5], [39.5, 120.5], [40.5, 118.5], [40.5, 117.5], [40.5, 117.5], [41.5, 116.5], [41.5, 115.5], [42.5, 114.5], [42.5, 113.5], [43.5, 112.5], [43.5, 112.5], [43.5, 111.5], [43.5, 110.5], [43.5, 110.5], [44.5, 110.5], [44.5, 109.5], [45.5, 109.5], [45.5, 109.5], [45.5, 109.5], [47.5, 108.5], [47.5, 107.5], [48.5, 107.5], [48.5, 107.5], [49.5, 107.5], [49.5, 106.5], [49.5, 106.5], [50.5, 106.5], [50.5, 106.5], [51.5, 106.5], [52.5, 106.5], [52.5, 106.5], [52.5, 106.5], [53.5, 106.5], [53.5, 105.5], [54.5, 105.5], [54.5, 105.5], [54.5, 105.5], [55.5, 105.5], [56.5, 105.5], [56.5, 105.5], [57.5, 105.5], [58.5, 105.5], [58.5, 105.5], [58.5, 105.5], [59.5, 105.5], [59.5, 105.5]]], [{"color": "medium sea green", "pensize": 6, "sectors": 16, "mirror": 1, "center": [133.166666667, 0], "radius": 266.5}, [[37.5, 142.5], [37.5, 141.5], [37.5, 140.5], [37.5, 140.5], [36.5, 140.5], [36.5, 139.5], [35.5, 137.5], [35.5, 137.5], [34.5, 135.5], [34.5, 135.5], [34.5, 134.5], [34.5, 133.5], [34.5, 132.5], [34.5, 132.5], [34.5, 130.5], [34.5, 130.5], [34.5, 129.5], [34.5, 129.5], [35.5, 127.5], [36.5, 126.5], [36.5, 126.5], [36.5, 125.5], [36.5, 124.5], [37.5, 122.5], [38.5, 121.5], [39.5, 121.5], [39.5, 120.5], [40.5, 118.5], [40.5, 117.5], [40.5, 117.5], [41.5, 116.5], [41.5, 115.5], [42.5, 114.5], [42.5, 113.5], [43.5, 112.5], [43.5, 112.5], [43.5, 111.5], [43.5, 110.5], [43.5, 110.5], [44.5, 110.5], [44.5, 109.5], [45.5, 109.5], [45.5, 109.5], [45.5, 109.5], [47.5, 108.5], [47.5, 107.5], [48.5, 107.5], [48.5, 107.5], [49.5, 107.5], [49.5, 106.5], [49.5, 106.5], [50.5, 106.5], [50.5, 106.5], [51.5, 106.5], [52.5, 106.5], [52.5, 106.5], [52.5, 106.5], [53.5, 106.5], [53.5, 105.5], [54.5, 105.5], [54.5, 105.5], [54.5, 105.5], [55.5, 105.5], [56.5, 105.5], [56.5, 105.5], [57.5, 105.5], [58.5, 105.5], [58.5, 105.5], [58.5, 105.5], [59.5, 105.5], [59.5, 105.5]]], [{"color": "crimson", "pensize": 6, "sectors": 16, "mirror": 1, "center": [133.166666667, 0], "radius": 266.5}, [[131.5, 21.5]]], [{"color": "crimson", "pensize": 6, "sectors": 16, "mirror": 1, "center": [133.166666667, 0], "radius": 266.5}, [[145.5, 14.5], [145.5, 14.5], [146.5, 14.5], [146.5, 14.5], [146.5, 14.5], [147.5, 14.5], [147.5, 14.5], [148.5, 14.5], [148.5, 14.5], [148.5, 14.5], [149.5, 14.5], [149.5, 15.5], [150.5, 15.5], [150.5, 15.5], [151.5, 15.5], [152.5, 15.5], [152.5, 16.5], [152.5, 16.5], [153.5, 16.5], [153.5, 16.5], [154.5, 17.5], [155.5, 18.5], [155.5, 18.5], [156.5, 18.5], [156.5, 18.5], [156.5, 18.5], [157.5, 18.5], [157.5, 19.5], [157.5, 19.5], [158.5, 19.5], [159.5, 20.5], [159.5, 20.5], [159.5, 20.5], [159.5, 20.5], [160.5, 20.5], [160.5, 20.5], [161.5, 20.5], [161.5, 20.5]]], [{"color": "sienna", "pensize": 6, "sectors": 16, "mirror": 1, "center": [133.166666667, 0], "radius": 266.5}, [[292.5, 109.5], [292.5, 109.5], [291.5, 109.5], [291.5, 109.5], [290.5, 109.5], [290.5, 109.5], [289.5, 109.5], [289.5, 109.5], [289.5, 109.5], [288.5, 109.5], [288.5, 109.5], [288.5, 109.5], [288.5, 109.5], [287.5, 109.5], [287.5, 108.5], [287.5, 108.5], [287.5, 107.5], [287.5, 106.5], [287.5, 105.5], [286.5, 103.5], [286.5, 103.5], [287.5, 102.5], [287.5, 102.5]]], [{"color": "coral", "pensize": 6, "sectors": 16, "mirror": 1, "center": [133.166666667, 0], "radius": 266.5}, [[132.5, 3.5], [131.5, 3.5], [131.5, 3.5]]], [{"color": "coral", "pensize": 6, "sectors": 16, "mirror": 1, "center": [133.166666667, 0], "radius": 266.5}, [[132.5, 3.5], [131.5, 3.5], [131.5, 3.5]]], [{"color": "khaki", "pensize": 6, "sectors": 16, "mirror": 0, "center": [133.166666667, 0], "radius": 266.5}, [[224.5, 222.5], [224.5, 222.5], [224.5, 221.5], [223.5, 221.5], [223.5, 220.5], [223.5, 220.5], [222.5, 219.5], [222.5, 219.5], [222.5, 218.5], [222.5, 217.5], [221.5, 217.5], [221.5, 216.5], [221.5, 215.5], [220.5, 215.5], [220.5, 213.5], [219.5, 212.5], [219.5, 211.5], [218.5, 210.5], [218.5, 209.5], [217.5, 208.5], [217.5, 207.5], [217.5, 206.5], [216.5, 206.5], [216.5, 205.5], [216.5, 205.5], [215.5, 204.5], [215.5, 204.5], [215.5, 203.5], [214.5, 202.5], [214.5, 202.5], [214.5, 202.5], [214.5, 201.5], [214.5, 201.5], [213.5, 201.5], [213.5, 200.5], [213.5, 200.5], [213.5, 199.5], [212.5, 199.5], [212.5, 198.5], [212.5, 198.5], [212.5, 198.5], [211.5, 196.5], [210.5, 194.5], [210.5, 193.5], [210.5, 192.5], [209.5, 191.5], [208.5, 189.5], [208.5, 189.5], [208.5, 189.5], [208.5, 187.5], [207.5, 187.5], [207.5, 186.5], [207.5, 186.5], [206.5, 185.5], [206.5, 184.5], [206.5, 183.5], [205.5, 183.5], [205.5, 182.5], [205.5, 181.5], [205.5, 180.5], [204.5, 179.5], [204.5, 179.5], [204.5, 178.5], [204.5, 178.5], [204.5, 177.5], [203.5, 176.5], [203.5, 176.5], [202.5, 174.5], [202.5, 174.5], [201.5, 172.5], [201.5, 172.5], [201.5, 172.5], [201.5, 171.5], [201.5, 171.5], [201.5, 170.5], [201.5, 170.5], [201.5, 169.5], [201.5, 168.5], [200.5, 168.5], [200.5, 168.5], [200.5, 167.5], [200.5, 166.5], [201.5, 165.5], [201.5, 163.5], [201.5, 162.5], [202.5, 162.5], [202.5, 162.5], [203.5, 162.5], [203.5, 162.5], [203.5, 162.5], [204.5, 162.5], [204.5, 162.5], [205.5, 161.5], [205.5, 161.5], [205.5, 161.5], [206.5, 161.5], [206.5, 161.5], [207.5, 161.5], [207.5, 161.5]]], [{"color": "khaki", "pensize": 6, "sectors": 16, "mirror": 0, "center": [133.166666667, 0], "radius": 266.5}, [[224.5, 222.5], [224.5, 222.5], [224.5, 221.5], [223.5, 221.5], [223.5, 220.5], [223.5, 220.5], [222.5, 219.5], [222.5, 219.5], [222.5, 218.5], [222.5, 217.5], [221.5, 217.5], [221.5, 216.5], [221.5, 215.5], [220.5, 215.5], [220.5, 213.5], [219.5, 212.5], [219.5, 211.5], [218.5, 210.5], [218.5, 209.5], [217.5, 208.5], [217.5, 207.5], [217.5, 206.5], [216.5, 206.5], [216.5, 205.5], [216.5, 205.5], [215.5, 204.5], [215.5, 204.5], [215.5, 203.5], [214.5, 202.5], [214.5, 202.5], [214.5, 202.5], [214.5, 201.5], [214.5, 201.5], [213.5, 201.5], [213.5, 200.5], [213.5, 200.5], [213.5, 199.5], [212.5, 199.5], [212.5, 198.5], [212.5, 198.5], [212.5, 198.5], [211.5, 196.5], [210.5, 194.5], [210.5, 193.5], [210.5, 192.5], [209.5, 191.5], [208.5, 189.5], [208.5, 189.5], [208.5, 189.5], [208.5, 187.5], [207.5, 187.5], [207.5, 186.5], [207.5, 186.5], [206.5, 185.5], [206.5, 184.5], [206.5, 183.5], [205.5, 183.5], [205.5, 182.5], [205.5, 181.5], [205.5, 180.5], [204.5, 179.5], [204.5, 179.5], [204.5, 178.5], [204.5, 178.5], [204.5, 177.5], [203.5, 176.5], [203.5, 176.5], [202.5, 174.5], [202.5, 174.5], [201.5, 172.5], [201.5, 172.5], [201.5, 172.5], [201.5, 171.5], [201.5, 171.5], [201.5, 170.5], [201.5, 170.5], [201.5, 169.5], [201.5, 168.5], [200.5, 168.5], [200.5, 168.5], [200.5, 167.5], [200.5, 166.5], [201.5, 165.5], [201.5, 163.5], [201.5, 162.5], [202.5, 162.5], [202.5, 162.5], [203.5, 162.5], [203.5, 162.5], [203.5, 162.5], [204.5, 162.5], [204.5, 162.5], [205.5, 161.5], [205.5, 161.5], [205.5, 161.5], [206.5, 161.5], [206.5, 161.5], [207.5, 161.5], [207.5, 161.5]]], [{"color": "dark orchid", "pensize": 4, "sectors": 16, "mirror": 0, "center": [133.166666667, 0], "radius": 266.5}, [[90.5, 58.5], [90.5, 58.5], [91.5, 58.5], [91.5, 58.5], [92.5, 58.5], [92.5, 58.5], [93.5, 58.5], [93.5, 58.5], [93.5, 57.5], [93.5, 57.5], [94.5, 57.5], [94.5, 57.5], [95.5, 57.5], [95.5, 57.5], [95.5, 56.5], [95.5, 56.5], [96.5, 56.5], [97.5, 56.5], [97.5, 56.5], [98.5, 56.5], [99.5, 56.5], [99.5, 55.5], [101.5, 55.5], [103.5, 55.5], [103.5, 54.5], [104.5, 54.5], [105.5, 54.5], [105.5, 54.5], [106.5, 53.5], [106.5, 53.5], [107.5, 53.5], [107.5, 52.5], [108.5, 52.5], [108.5, 52.5], [108.5, 51.5], [108.5, 51.5], [109.5, 51.5], [110.5, 51.5], [110.5, 50.5], [110.5, 50.5], [110.5, 50.5], [111.5, 50.5]]], [{"color": "dark orchid", "pensize": 4, "sectors": 16, "mirror": 0, "center": [133.166666667, 0], "radius": 266.5}, [[188.5, 141.5], [188.5, 141.5], [187.5, 141.5], [187.5, 141.5], [187.5, 141.5], [186.5, 141.5], [186.5, 141.5], [186.5, 141.5], [186.5, 140.5], [185.5, 140.5], [185.5, 140.5], [185.5, 139.5], [185.5, 139.5], [185.5, 139.5], [184.5, 138.5], [184.5, 138.5], [184.5, 137.5], [184.5, 137.5], [184.5, 137.5], [184.5, 137.5], [183.5, 136.5], [183.5, 135.5], [183.5, 134.5], [183.5, 133.5], [183.5, 132.5], [183.5, 131.5], [183.5, 130.5], [183.5, 129.5], [184.5, 129.5], [184.5, 129.5], [185.5, 129.5], [185.5, 129.5], [185.5, 129.5], [185.5, 129.5], [186.5, 129.5], [186.5, 129.5], [187.5, 129.5], [188.5, 129.5], [189.5, 129.5], [189.5, 129.5], [190.5, 129.5], [190.5, 130.5], [190.5, 130.5], [191.5, 130.5], [191.5, 131.5], [191.5, 131.5], [191.5, 132.5], [192.5, 133.5], [192.5, 133.5], [192.5, 134.5], [192.5, 134.5], [192.5, 135.5], [192.5, 135.5], [192.5, 135.5], [192.5, 136.5], [192.5, 137.5], [192.5, 138.5], [192.5, 139.5], [192.5, 139.5], [191.5, 140.5], [191.5, 140.5], [190.5, 140.5], [189.5, 141.5], [189.5, 142.5], [188.5, 142.5], [188.5, 142.5], [187.5, 142.5], [187.5, 142.5]]]]
[[{"color": "deep sky blue", "pensize": 4, "sectors": 32, "mirror": 1, "center": [133.166666667, 0], "radius": 266.5}, [[-70.5, 225.5], [-70.5, 225.5], [-71.5, 225.5], [-73.5, 225.5], [-76.5, 224.5], [-80.5, 223.5], [-84.5, 221.5], [-87.5, 219.5], [-88.5, 217.5], [-88.5, 216.5], [-89.5, 213.5], [-90.5, 206.5], [-90.5, 204.5], [-89.5, 202.5], [-88.5, 201.5], [-88.5, 200.5], [-86.5, 199.5], [-84.5, 197.5], [-77.5, 194.5], [-68.5, 191.5], [-63.5, 190.5], [-60.5, 190.5], [-57.5, 189.5], [-53.5, 189.5], [-48.5, 189.5], [-45.5, 188.5], [-41.5, 188.5], [-39.5, 187.5], [-34.5, 185.5], [-31.5, 184.5], [-28.5, 182.5], [-27.5, 182.5], [-26.5, 181.5], [-23.5, 178.5], [-22.5, 176.5], [-20.5, 172.5], [-19.5, 170.5], [-19.5, 169.5], [-18.5, 167.5], [-17.5, 164.5], [-16.5, 162.5], [-16.5, 160.5], [-15.5, 158.5], [-15.5, 157.5], [-15.5, 154.5], [-15.5, 152.5], [-15.5, 149.5], [-15.5, 145.5], [-15.5, 143.5], [-15.5, 140.5], [-15.5, 137.5], [-15.5, 132.5], [-15.5, 128.5], [-14.5, 126.5], [-14.5, 125.5], [-14.5, 123.5], [-14.5, 121.5], [-14.5, 120.5], [-14.5, 116.5], [-14.5, 113.5], [-14.5, 113.5], [-14.5, 111.5], [-12.5, 109.5], [-12.5, 109.5], [-12.5, 108.5], [-12.5, 108.5], [-11.5, 107.5], [-11.5, 107.5], [-10.5, 105.5], [-8.5, 104.5], [-4.5, 102.5], [0.5, 101.5], [2.5, 100.5], [3.5, 100.5], [4.5, 100.5], [5.5, 100.5], [8.5, 100.5], [10.5, 101.5], [11.5, 101.5], [12.5, 101.5], [15.5, 101.5], [18.5, 101.5], [19.5, 101.5], [22.5, 100.5], [22.5, 100.5], [22.5, 100.5], [23.5, 100.5], [26.5, 100.5], [29.5, 99.5], [31.5, 99.5], [33.5, 99.5], [35.5, 99.5], [37.5, 98.5], [40.5, 97.5], [42.5, 97.5], [42.5, 97.5], [43.5, 97.5], [43.5, 97.5], [44.5, 97.5], [44.5, 97.5], [44.5, 97.5], [45.5, 96.5], [45.5, 96.5], [46.5, 96.5], [46.5, 96.5], [46.5, 96.5], [47.5, 96.5]]], [{"color": "red", "pensize": 4, "sectors": 16, "mirror": 1, "center": [133.166666667, 0], "radius": 266.5}, [[48.5, 97.5], [49.5, 94.5], [50.5, 94.5], [50.5, 93.5], [50.5, 92.5], [50.5, 92.5], [51.5, 92.5], [51.5, 91.5], [51.5, 90.5], [52.5, 90.5], [52.5, 89.5], [52.5, 89.5], [52.5, 89.5], [52.5, 88.5], [52.5, 88.5], [52.5, 88.5], [52.5, 87.5], [52.5, 87.5], [53.5, 86.5], [53.5, 86.5], [53.5, 86.5], [53.5, 86.5], [53.5, 85.5], [53.5, 85.5], [53.5, 84.5], [53.5, 84.5], [53.5, 83.5], [53.5, 82.5], [53.5, 81.5], [53.5, 80.5], [53.5, 79.5], [53.5, 78.5], [53.5, 78.5], [53.5, 77.5], [53.5, 76.5], [53.5, 75.5], [53.5, 74.5], [52.5, 73.5], [52.5, 71.5], [52.5, 70.5], [52.5, 69.5], [51.5, 67.5], [51.5, 66.5], [50.5, 65.5], [50.5, 64.5], [50.5, 63.5], [49.5, 62.5], [49.5, 60.5], [48.5, 60.5], [48.5, 59.5], [48.5, 58.5], [48.5, 58.5], [48.5, 57.5], [48.5, 56.5], [47.5, 56.5], [47.5, 55.5], [47.5, 53.5], [47.5, 53.5], [47.5, 53.5], [47.5, 52.5], [47.5, 52.5], [47.5, 51.5], [48.5, 50.5], [48.5, 49.5], [48.5, 48.5], [48.5, 47.5], [48.5, 47.5], [48.5, 46.5], [48.5, 45.5], [48.5, 44.5], [48.5, 43.5], [49.5, 42.5], [49.5, 41.5], [50.5, 40.5], [50.5, 38.5], [51.5, 38.5], [51.5, 36.5], [52.5, 35.5], [52.5, 34.5], [53.5, 33.5], [54.5, 32.5], [54.5, 31.5], [54.5, 30.5], [55.5, 30.5], [55.5, 29.5], [55.5, 29.5], [56.5, 28.5], [56.5, 27.5], [57.5, 26.5], [58.5, 25.5], [58.5, 25.5], [59.5, 24.5], [59.5, 23.5], [59.5, 23.5], [61.5, 21.5], [62.5, 20.5], [62.5, 20.5]]], [{"color": "cornflower blue", "pensize": 4, "sectors": 32, "mirror": 1, "center": [133.166666667, 0], "radius": 266.5}, [[-68.5, 226.5], [-68.5, 225.5], [-68.5, 225.5], [-66.5, 223.5], [-65.5, 222.5], [-64.5, 221.5], [-63.5, 220.5], [-63.5, 218.5], [-62.5, 216.5], [-61.5, 216.5], [-61.5, 215.5], [-60.5, 214.5], [-60.5, 212.5], [-59.5, 211.5], [-58.5, 210.5], [-58.5, 209.5], [-58.5, 208.5], [-57.5, 207.5], [-56.5, 205.5], [-56.5, 204.5], [-55.5, 203.5], [-55.5, 202.5], [-54.5, 201.5], [-54.5, 200.5], [-54.5, 199.5], [-53.5, 198.5], [-53.5, 197.5], [-52.5, 195.5], [-52.5, 195.5], [-52.5, 195.5], [-52.5, 194.5], [-51.5, 194.5], [-50.5, 193.5], [-50.5, 192.5], [-49.5, 192.5], [-49.5, 192.5], [-48.5, 191.5], [-48.5, 191.5], [-47.5, 191.5], [-47.5, 190.5], [-46.5, 190.5], [-45.5, 190.5], [-45.5, 190.5], [-43.5, 190.5], [-43.5, 189.5], [-42.5, 189.5], [-41.5, 189.5], [-40.5, 189.5], [-39.5, 189.5], [-39.5, 189.5], [-38.5, 189.5], [-38.5, 189.5], [-37.5, 189.5], [-36.5, 189.5], [-36.5, 189.5], [-35.5, 189.5], [-34.5, 189.5], [-33.5, 190.5], [-32.5, 191.5], [-32.5, 191.5], [-31.5, 191.5], [-31.5, 192.5], [-31.5, 193.5], [-30.5, 193.5], [-30.5, 193.5], [-30.5, 193.5], [-30.5, 193.5], [-29.5, 194.5], [-29.5, 194.5], [-29.5, 194.5], [-29.5, 195.5], [-28.5, 195.5], [-28.5, 195.5], [-28.5, 195.5]]], [{"color": "cornflower blue", "pensize": 4, "sectors": 32, "mirror": 1, "center": [133.166666667, 0], "radius": 266.5}, [[-12.5, 175.5], [-12.5, 172.5], [-12.5, 170.5], [-12.5, 170.5], [-12.5, 169.5], [-12.5, 168.5], [-12.5, 167.5], [-12.5, 167.5], [-12.5, 167.5], [-12.5, 167.5], [-12.5, 166.5], [-12.5, 165.5], [-12.5, 165.5], [-12.5, 165.5], [-12.5, 164.5], [-12.5, 164.5], [-12.5, 163.5], [-12.5, 162.5], [-12.5, 161.5], [-13.5, 161.5], [-13.5, 160.5], [-13.5, 159.5], [-12.5, 159.5], [-12.5, 157.5], [-11.5, 155.5], [-10.5, 153.5], [-9.5, 152.5], [-9.5, 152.5], [-8.5, 152.5], [-8.5, 152.5], [-8.5, 152.5], [-7.5, 152.5], [-7.5, 152.5], [-6.5, 152.5], [-6.5, 152.5], [-6.5, 152.5], [-5.5, 152.5], [-5.5, 152.5], [-4.5, 152.5], [-4.5, 152.5], [-4.5, 152.5], [-3.5, 152.5], [-3.5, 152.5], [-2.5, 152.5], [-2.5, 152.5], [-2.5, 152.5], [-1.5, 152.5], [-1.5, 153.5], [-0.5, 153.5], [-0.5, 153.5], [-0.5, 154.5], [0.5, 154.5], [0.5, 154.5], [0.5, 154.5], [0.5, 154.5], [0.5, 155.5], [1.5, 155.5], [1.5, 156.5], [1.5, 156.5], [1.5, 157.5], [2.5, 157.5], [2.5, 157.5], [2.5, 158.5]]], [{"color": "dark turquoise", "pensize": 4, "sectors": 32, "mirror": 1, "center": [133.166666667, 0], "radius": 266.5}, [[89.5, 178.5], [91.5, 179.5], [91.5, 179.5], [92.5, 179.5], [92.5, 179.5], [92.5, 179.5], [93.5, 179.5], [93.5, 179.5], [93.5, 179.5], [93.5, 178.5], [93.5, 178.5], [93.5, 177.5], [93.5, 177.5], [93.5, 177.5], [93.5, 176.5], [93.5, 176.5], [93.5, 175.5], [93.5, 175.5], [93.5, 175.5], [93.5, 174.5], [93.5, 173.5], [93.5, 173.5], [93.5, 172.5], [93.5, 172.5], [93.5, 171.5], [93.5, 171.5], [93.5, 171.5], [93.5, 170.5], [93.5, 170.5], [93.5, 169.5], [94.5, 169.5], [94.5, 168.5], [94.5, 168.5], [94.5, 168.5], [94.5, 167.5], [94.5, 166.5], [95.5, 165.5], [95.5, 164.5], [95.5, 163.5], [95.5, 161.5], [96.5, 160.5], [96.5, 160.5], [96.5, 160.5], [96.5, 159.5], [97.5, 159.5], [97.5, 158.5], [97.5, 158.5], [98.5, 157.5], [98.5, 157.5], [98.5, 157.5], [98.5, 156.5], [99.5, 156.5], [99.5, 156.5], [99.5, 156.5], [99.5, 156.5], [100.5, 156.5], [100.5, 155.5]]], [{"color": "dark turquoise", "pensize": 4, "sectors": 32, "mirror": 1, "center": [133.166666667, 0], "radius": 266.5}, [[87.5, 57.5], [89.5, 56.5], [91.5, 55.5], [93.5, 55.5], [94.5, 54.5], [94.5, 54.5], [95.5, 53.5], [97.5, 52.5], [98.5, 52.5], [98.5, 51.5], [99.5, 51.5], [100.5, 50.5], [100.5, 50.5], [100.5, 49.5], [101.5, 49.5], [102.5, 48.5], [103.5, 47.5], [104.5, 45.5], [105.5, 43.5], [106.5, 42.5], [106.5, 41.5], [106.5, 41.5], [106.5, 40.5], [106.5, 40.5], [107.5, 40.5], [107.5, 39.5], [107.5, 38.5], [107.5, 38.5], [107.5, 38.5]]], [{"color": "red", "pensize": 1, "sectors": 32, "mirror": 0, "center": [133.166666667, 0], "radius": 266.5}, [[-49.5, 183.5], [-49.5, 183.5], [-49.5, 182.5], [-49.5, 182.5], [-50.5, 181.5], [-50.5, 181.5], [-50.5, 180.5], [-50.5, 180.5], [-50.5, 180.5], [-50.5, 180.5], [-50.5, 179.5], [-50.5, 179.5], [-50.5, 178.5], [-51.5, 178.5], [-51.5, 177.5], [-51.5, 176.5], [-51.5, 174.5], [-51.5, 173.5], [-51.5, 173.5], [-51.5, 172.5], [-51.5, 171.5], [-50.5, 171.5], [-50.5, 169.5], [-49.5, 169.5], [-49.5, 168.5], [-49.5, 167.5], [-49.5, 166.5], [-49.5, 166.5], [-48.5, 166.5], [-48.5, 165.5], [-48.5, 165.5], [-47.5, 164.5], [-47.5, 164.5], [-47.5, 164.5], [-46.5, 164.5], [-46.5, 163.5], [-45.5, 163.5], [-45.5, 163.5], [-45.5, 163.5], [-45.5, 163.5], [-44.5, 163.5], [-44.5, 163.5], [-43.5, 163.5], [-43.5, 163.5], [-42.5, 162.5], [-42.5, 162.5], [-42.5, 162.5], [-41.5, 162.5], [-41.5, 162.5], [-40.5, 162.5], [-40.5, 162.5], [-40.5, 162.5], [-39.5, 163.5], [-39.5, 163.5], [-38.5, 163.5], [-38.5, 163.5], [-37.5, 163.5], [-37.5, 163.5], [-36.5, 163.5], [-36.5, 163.5], [-36.5, 163.5], [-35.5, 163.5], [-35.5, 163.5], [-34.5, 163.5], [-34.5, 163.5], [-34.5, 164.5], [-33.5, 164.5], [-32.5, 165.5], [-32.5, 165.5], [-32.5, 165.5], [-31.5, 165.5], [-30.5, 165.5], [-30.5, 165.5], [-30.5, 165.5], [-29.5, 165.5], [-29.5, 165.5], [-29.5, 165.5], [-28.5, 165.5], [-28.5, 165.5], [-27.5, 165.5], [-27.5, 165.5], [-27.5, 165.5], [-26.5, 166.5], [-26.5, 166.5], [-25.5, 166.5], [-25.5, 166.5], [-25.5, 166.5], [-24.5, 166.5], [-24.5, 166.5], [-24.5, 165.5], [-23.5, 165.5], [-23.5, 165.5], [-23.5, 165.5], [-23.5, 165.5], [-23.5, 165.5], [-22.5, 164.5], [-22.5, 164.5], [-22.5, 163.5], [-22.5, 163.5], [-21.5, 163.5], [-21.5, 163.5], [-21.5, 162.5], [-21.5, 162.5], [-20.5, 161.5], [-20.5, 161.5], [-20.5, 160.5], [-19.5, 160.5], [-19.5, 159.5], [-19.5, 159.5], [-19.5, 158.5], [-19.5, 158.5], [-19.5, 157.5], [-19.5, 156.5], [-19.5, 156.5], [-19.5, 155.5], [-19.5, 154.5], [-19.5, 154.5], [-19.5, 154.5], [-19.5, 153.5]]], [{"color": "medium sea green", "pensize": 4, "sectors": 16, "mirror": 0, "center": [133.166666667, 0], "radius": 266.5}, [[55.5, 105.5], [56.5, 105.5], [56.5, 105.5], [57.5, 105.5], [57.5, 105.5], [58.5, 105.5], [59.5, 105.5], [59.5, 105.5], [59.5, 105.5], [60.5, 105.5], [61.5, 104.5], [61.5, 104.5], [61.5, 103.5], [62.5, 103.5], [62.5, 103.5], [62.5, 103.5], [62.5, 103.5], [62.5, 102.5], [63.5, 102.5], [63.5, 102.5], [63.5, 101.5], [63.5, 101.5], [63.5, 100.5], [63.5, 100.5], [63.5, 99.5], [63.5, 98.5], [63.5, 97.5], [64.5, 97.5], [64.5, 96.5], [64.5, 96.5], [64.5, 95.5], [64.5, 95.5], [64.5, 94.5], [64.5, 94.5], [64.5, 93.5], [64.5, 92.5], [64.5, 92.5], [63.5, 91.5], [63.5, 90.5], [63.5, 90.5], [62.5, 89.5], [62.5, 89.5], [61.5, 88.5], [60.5, 88.5], [60.5, 87.5], [60.5, 87.5], [59.5, 86.5], [58.5, 86.5], [57.5, 85.5], [57.5, 85.5], [57.5, 85.5], [56.5, 85.5], [56.5, 84.5]]], [{"color": "medium sea green", "pensize": 4, "sectors": 16, "mirror": 0, "center": [133.166666667, 0], "radius": 266.5}, [[66.5, 109.5], [66.5, 109.5], [66.5, 109.5], [66.5, 108.5], [66.5, 108.5], [66.5, 107.5], [65.5, 107.5], [65.5, 106.5], [65.5, 106.5], [65.5, 105.5], [65.5, 104.5], [65.5, 104.5], [65.5, 104.5], [66.5, 104.5], [66.5, 102.5], [66.5, 102.5], [67.5, 101.5], [68.5, 101.5], [68.5, 100.5], [68.5, 100.5], [69.5, 100.5], [70.5, 100.5], [70.5, 99.5], [71.5, 99.5], [72.5, 98.5], [72.5, 98.5], [73.5, 98.5], [73.5, 98.5], [74.5, 98.5], [75.5, 98.5], [75.5, 98.5], [76.5, 98.5], [76.5, 98.5], [78.5, 98.5], [78.5, 98.5], [79.5, 98.5], [81.5, 98.5], [82.5, 99.5], [83.5, 100.5], [83.5, 100.5], [83.5, 100.5], [83.5, 101.5], [84.5, 101.5], [84.5, 101.5], [85.5, 102.5], [85.5, 102.5], [85.5, 102.5]]], [{"color": "medium sea green", "pensize": 4, "sectors": 16, "mirror": 0, "center": [133.166666667, 0], "radius": 266.5}, [[112.5, 97.5]]], [{"color": "medium sea green", "pensize": 4, "sectors": 16, "mirror": 1, "center": [133.166666667, 0], "radius": 266.5}, [[113.5, 96.5], [113.5, 96.5], [112.5, 96.5], [112.5, 96.5], [112.5, 96.5], [112.5, 95.5], [111.5, 95.5], [111.5, 95.5], [111.5, 94.5], [110.5, 94.5], [110.5, 93.5], [110.5, 93.5], [110.5, 93.5], [110.5, 92.5], [109.5, 92.5], [109.5, 91.5], [109.5, 91.5], [108.5, 90.5], [108.5, 90.5], [108.5, 90.5], [108.5, 89.5], [108.5, 89.5], [108.5, 89.5], [108.5, 88.5], [108.5, 88.5], [108.5, 87.5], [108.5, 87.5], [108.5, 86.5], [108.5, 86.5], [107.5, 86.5], [107.5, 85.5], [107.5, 85.5], [108.5, 85.5], [108.5, 85.5], [108.5, 85.5], [109.5, 85.5], [109.5, 85.5], [109.5, 85.5], [110.5, 85.5], [110.5, 85.5], [110.5, 85.5], [111.5, 85.5], [111.5, 84.5], [111.5, 84.5], [112.5, 84.5], [112.5, 84.5], [113.5, 84.5], [113.5, 84.5], [114.5, 84.5], [114.5, 84.5], [114.5, 84.5], [115.5, 84.5], [115.5, 83.5], [115.5, 83.5], [115.5, 83.5], [115.5, 83.5], [115.5, 82.5], [115.5, 82.5], [115.5, 81.5], [115.5, 81.5], [115.5, 81.5], [115.5, 80.5], [115.5, 80.5], [115.5, 79.5], [115.5, 79.5], [115.5, 78.5], [116.5, 77.5], [116.5, 77.5], [116.5, 76.5], [116.5, 76.5], [116.5, 75.5], [116.5, 74.5], [116.5, 74.5], [116.5, 73.5], [116.5, 72.5], [116.5, 72.5], [116.5, 71.5], [116.5, 70.5], [116.5, 67.5], [116.5, 67.5]]], [{"color": "medium sea green", "pensize": 4, "sectors": 16, "mirror": 1, "center": [133.166666667, 0], "radius": 266.5}, [[113.5, 96.5], [113.5, 96.5], [112.5, 96.5], [112.5, 96.5], [112.5, 96.5], [112.5, 95.5], [111.5, 95.5], [111.5, 95.5], [111.5, 94.5], [110.5, 94.5], [110.5, 93.5], [110.5, 93.5], [110.5, 93.5], [110.5, 92.5], [109.5, 92.5], [109.5, 91.5], [109.5, 91.5], [108.5, 90.5], [108.5, 90.5], [108.5, 90.5], [108.5, 89.5], [108.5, 89.5], [108.5, 89.5], [108.5, 88.5], [108.5, 88.5], [108.5, 87.5], [108.5, 87.5], [108.5, 86.5], [108.5, 86.5], [107.5, 86.5], [107.5, 85.5], [107.5, 85.5], [108.5, 85.5], [108.5, 85.5], [108.5, 85.5], [109.5, 85.5], [109.5, 85.5], [109.5, 85.5], [110.5, 85.5], [110.5, 85.5], [110.5, 85.5], [111.5, 85.5], [111.5, 84.5], [111.5, 84.5], [112.5, 84.5], [112.5, 84.5], [113.5, 84.5], [113.5, 84.5], [114.5, 84.5], [114.5, 84.5], [114.5, 84.5], [115.5, 84.5], [115.5, 83.5], [115.5, 83.5], [115.5, 83.5], [115.5, 83.5], [115.5, 82.5], [115.5, 82.5], [115.5, 81.5], [115.5, 81.5], [115.5, 81.5], [115.5, 80.5], [115.5, 80.5], [115.5, 79.5], [115.5, 79.5], [115.5, 78.5], [116.5, 77.5], [116.5, 77.5], [116.5, 76.5], [116.5, 76.5], [116.5, 75.5], [116.5, 74.5], [116.5, 74.5], [116.5, 73.5], [116.5, 72.5], [116.5, 72.5], [116.5, 71.5], [116.5, 70.5], [116.5, 67.5], [116.5, 67.5]]], [{"color": "medium sea green", "pensize": 4, "sectors": 16, "mirror": 1, "center": [133.166666667, 0], "radius": 266.5}, [[113.5, 96.5], [113.5, 96.5], [112.5, 96.5], [112.5, 96.5], [112.5, 96.5], [112.5, 95.5], [111.5, 95.5], [111.5, 95.5], [111.5, 94.5], [110.5, 94.5], [110.5, 93.5], [110.5, 93.5], [110.5, 93.5], [110.5, 92.5], [109.5, 92.5], [109.5, 91.5], [109.5, 91.5], [108.5, 90.5], [108.5, 90.5], [108.5, 90.5], [108.5, 89.5], [108.5, 89.5], [108.5, 89.5], [108.5, 88.5], [108.5, 88.5], [108.5, 87.5], [108.5, 87.5], [108.5, 86.5], [108.5, 86.5], [107.5, 86.5], [107.5, 85.5], [107.5, 85.5], [108.5, 85.5], [108.5, 85.5], [108.5, 85.5], [109.5, 85.5], [109.5, 85.5], [109.5, 85.5], [110.5, 85.5], [110.5, 85.5], [110.5, 85.5], [111.5, 85.5], [111.5, 84.5], [111.5, 84.5], [112.5, 84.5], [112.5, 84.5], [113.5, 84.5], [113.5, 84.5], [114.5, 84.5], [114.5, 84.5], [114.5, 84.5], [115.5, 84.5], [115.5, 83.5], [115.5, 83.5], [115.5, 83.5], [115.5, 83.5], [115.5, 82.5], [115.5, 82.5], [115.5, 81.5], [115.5, 81.5], [115.5, 81.5], [115.5, 80.5], [115.5, 80.5], [115.5, 79.5], [115.5, 79.5], [115.5, 78.5], [116.5, 77.5], [116.5, 77.5], [116.5, 76.5], [116.5, 76.5], [116.5, 75.5], [116.5, 74.5], [116.5, 74.5], [116.5, 73.5], [116.5, 72.5], [116.5, 72.5], [116.5, 71.5], [116.5, 70.5], [116.5, 67.5], [116.5, 67.5]]], [{"color": "medium sea green", "pensize": 4, "sectors": 16, "mirror": 1, "center": [133.166666667, 0], "radius": 266.5}, [[113.5, 96.5], [113.5, 96.5], [112.5, 96.5], [112.5, 96.5], [112.5, 96.5], [112.5, 95.5], [111.5, 95.5], [111.5, 95.5], [111.5, 94.5], [110.5, 94.5], [110.5, 93.5], [110.5, 93.5], [110.5, 93.5], [110.5, 92.5], [109.5, 92.5], [109.5, 91.5], [109.5, 91.5], [108.5, 90.5], [108.5, 90.5], [108.5, 90.5], [108.5, 89.5], [108.5, 89.5], [108.5, 89.5], [108.5, 88.5], [108.5, 88.5], [108.5, 87.5], [108.5, 87.5], [108.5, 86.5], [108.5, 86.5], [107.5, 86.5], [107.5, 85.5], [107.5, 85.5], [108.5, 85.5], [108.5, 85.5], [108.5, 85.5], [109.5, 85.5], [109.5, 85.5], [109.5, 85.5], [110.5, 85.5], [110.5, 85.5], [110.5, 85.5], [111.5, 85.5], [111.5, 84.5], [111.5, 84.5], [112.5, 84.5], [112.5, 84.5], [113.5, 84.5], [113.5, 84.5], [114.5, 84.5], [114.5, 84.5], [114.5, 84.5], [115.5, 84.5], [115.5, 83.5], [115.5, 83.5], [115.5, 83.5], [115.5, 83.5], [115.5, 82.5], [115.5, 82.5], [115.5, 81.5], [115.5, 81.5], [115.5, 81.5], [115.5, 80.5], [115.5, 80.5], [115.5, 79.5], [115.5, 79.5], [115.5, 78.5], [116.5, 77.5], [116.5, 77.5], [116.5, 76.5], [116.5, 76.5], [116.5, 75.5], [116.5, 74.5], [116.5, 74.5], [116.5, 73.5], [116.5, 72.5], [116.5, 72.5], [116.5, 71.5], [116.5, 70.5], [116.5, 67.5], [116.5, 67.5]]], [{"color": "medium sea green", "pensize": 4, "sectors": 16, "mirror": 1, "center": [133.166666667, 0], "radius": 266.5}, [[113.5, 96.5], [113.5, 96.5], [112.5, 96.5], [112.5, 96.5], [112.5, 96.5], [112.5, 95.5], [111.5, 95.5], [111.5, 95.5], [111.5, 94.5], [110.5, 94.5], [110.5, 93.5], [110.5, 93.5], [110.5, 93.5], [110.5, 92.5], [109.5, 92.5], [109.5, 91.5], [109.5, 91.5], [108.5, 90.5], [108.5, 90.5], [108.5, 90.5], [108.5, 89.5], [108.5, 89.5], [108.5, 89.5], [108.5, 88.5], [108.5, 88.5], [108.5, 87.5], [108.5, 87.5], [108.5, 86.5], [108.5, 86.5], [107.5, 86.5], [107.5, 85.5], [107.5, 85.5], [108.5, 85.5], [108.5, 85.5], [108.5, 85.5], [109.5, 85.5], [109.5, 85.5], [109.5, 85.5], [110.5, 85.5], [110.5, 85.5], [110.5, 85.5], [111.5, 85.5], [111.5, 84.5], [111.5, 84.5], [112.5, 84.5], [112.5, 84.5], [113.5, 84.5], [113.5, 84.5], [114.5, 84.5], [114.5, 84.5], [114.5, 84.5], [115.5, 84.5], [115.5, 83.5], [115.5, 83.5], [115.5, 83.5], [115.5, 83.5], [115.5, 82.5], [115.5, 82.5], [115.5, 81.5], [115.5, 81.5], [115.5, 81.5], [115.5, 80.5], [115.5, 80.5], [115.5, 79.5], [115.5, 79.5], [115.5, 78.5], [116.5, 77.5], [116.5, 77.5], [116.5, 76.5], [116.5, 76.5], [116.5, 75.5], [116.5, 74.5], [116.5, 74.5], [116.5, 73.5], [116.5, 72.5], [116.5, 72.5], [116.5, 71.5], [116.5, 70.5], [116.5, 67.5], [116.5, 67.5]]], [{"color": "khaki", "pensize": 6, "sectors": 16, "mirror": 0, "center": [133.166666667, 0], "radius": 266.5}, [[80.5, 258.5], [81.5, 258.5], [81.5, 257.5], [81.5, 257.5], [81.5, 257.5], [82.5, 257.5], [82.5, 256.5], [83.5, 256.5], [83.5, 255.5], [83.5, 255.5], [83.5, 255.5], [84.5, 255.5], [84.5, 254.5], [85.5, 254.5], [85.5, 253.5], [86.5, 253.5], [86.5, 252.5], [86.5, 252.5], [87.5, 251.5], [87.5, 251.5], [87.5, 251.5], [88.5, 249.5], [89.5, 248.5], [90.5, 247.5], [90.5, 247.5], [90.5, 247.5], [91.5, 246.5], [92.5, 245.5], [92.5, 244.5], [92.5, 244.5], [92.5, 244.5], [93.5, 243.5], [93.5, 243.5], [94.5, 242.5], [94.5, 242.5], [94.5, 241.5], [95.5, 240.5], [95.5, 239.5], [95.5, 239.5], [95.5, 238.5], [95.5, 238.5], [95.5, 238.5], [96.5, 237.5], [96.5, 236.5], [96.5, 235.5], [96.5, 234.5], [96.5, 234.5], [96.5, 233.5], [96.5, 232.5], [96.5, 232.5], [96.5, 231.5], [96.5, 231.5], [96.5, 230.5], [96.5, 229.5], [96.5, 229.5], [96.5, 228.5], [96.5, 228.5], [96.5, 227.5], [96.5, 227.5]]], [{"color": "medium sea green", "pensize": 6, "sectors": 16, "mirror": 0, "center": [133.166666667, 0], "radius": 266.5}, [[-53.5, 187.5], [-52.5, 187.5], [-51.5, 187.5], [-50.5, 187.5], [-49.5, 186.5], [-47.5, 186.5], [-46.5, 186.5], [-45.5, 186.5], [-44.5, 186.5], [-43.5, 186.5], [-43.5, 186.5], [-42.5, 186.5], [-41.5, 186.5], [-40.5, 185.5], [-40.5, 185.5], [-40.5, 185.5], [-38.5, 184.5], [-37.5, 183.5], [-37.5, 183.5], [-36.5, 183.5], [-35.5, 183.5], [-34.5, 182.5], [-34.5, 181.5], [-33.5, 181.5], [-32.5, 180.5], [-31.5, 179.5], [-30.5, 178.5], [-29.5, 177.5], [-29.5, 177.5], [-28.5, 176.5], [-27.5, 176.5], [-26.5, 175.5], [-26.5, 175.5], [-26.5, 175.5], [-25.5, 174.5], [-25.5, 174.5], [-25.5, 173.5], [-24.5, 173.5], [-23.5, 172.5], [-23.5, 171.5]]], [{"color": "medium sea green", "pensize": 6, "sectors": 16, "mirror": 0, "center": [133.166666667, 0], "radius": 266.5}, [[-23.5, 171.5], [-23.5, 171.5], [-23.5, 171.5], [-22.5, 170.5], [-22.5, 169.5], [-22.5, 169.5]]], [{"color": "medium sea green", "pensize": 6, "sectors": 16, "mirror": 0, "center": [133.166666667, 0], "radius": 266.5}, [[-23.5, 171.5], [-23.5, 171.5], [-23.5, 171.5], [-22.5, 170.5], [-22.5, 169.5], [-22.5, 169.5]]]]
[62.5, 138.5], [62.5, 137.5], [62.5, 136.5], [62.5, 136.5], [62.5, 134.5], [62.5, 134.5], [62.5, 134.5], [62.5, 133.5], [62.5, 134.5], [62.5, 135.5], [62.5, 136.5], [62.5, 140.5], [62.5, 144.5], [62.5, 147.5], [63.5, 149.5], [63.5, 152.5], [64.5, 154.5], [65.5, 157.5], [66.5, 158.5], [66.5, 158.5], [67.5, 158.5], [68.5, 157.5], [75.5, 154.5], [78.5, 152.5], [80.5, 151.5], [81.5, 150.5], [82.5, 149.5], [83.5, 149.5], [84.5, 148.5], [86.5, 146.5], [87.5, 146.5], [88.5, 145.5], [88.5, 145.5], [89.5, 145.5], [89.5, 145.5], [90.5, 147.5], [95.5, 150.5], [96.5, 152.5], [97.5, 153.5], [98.5, 154.5], [99.5, 156.5], [99.5, 156.5], [99.5, 157.5], [99.5, 157.5], [99.5, 158.5], [99.5, 158.5], [99.5, 158.5], [99.5, 161.5], [99.5, 163.5], [99.5, 166.5], [100.5, 168.5], [100.5, 169.5], [99.5, 169.5], [99.5, 169.5], [97.5, 169.5], [95.5, 170.5], [92.5, 170.5], [90.5, 171.5], [87.5, 172.5], [83.5, 173.5], [79.5, 174.5], [77.5, 175.5], [74.5, 176.5], [73.5, 176.5], [72.5, 176.5], [71.5, 177.5], [70.5, 177.5], [69.5, 177.5], [68.5, 178.5], [67.5, 178.5], [66.5, 179.5], [64.5, 180.5], [63.5, 181.5], [62.5, 181.5], [62.5, 182.5], [61.5, 182.5], [60.5, 182.5], [59.5, 182.5]]], [{"color": "dark turquoise", "pensize": 4, "sectors": 16, "mirror": 0, "center": [133.166666667, 0], "radius": 266.5}, [[-18.5, 185.5], [-4.5, 186.5], [0.5, 186.5], [5.5, 187.5], [6.5, 187.5], [8.5, 188.5], [9.5, 188.5], [10.5, 188.5], [10.5, 189.5], [11.5, 189.5], [11.5, 189.5], [12.5, 189.5], [14.5, 190.5], [15.5, 191.5], [16.5, 193.5], [16.5, 195.5], [17.5, 197.5], [17.5, 200.5], [17.5, 202.5], [17.5, 204.5], [17.5, 205.5], [17.5, 206.5], [17.5, 206.5], [17.5, 206.5], [18.5, 205.5], [18.5, 205.5], [18.5, 203.5], [20.5, 200.5], [22.5, 198.5], [23.5, 196.5], [23.5, 195.5], [25.5, 194.5], [25.5, 193.5], [25.5, 193.5], [26.5, 192.5], [27.5, 192.5], [28.5, 192.5], [31.5, 191.5], [31.5, 191.5], [31.5, 190.5], [31.5, 190.5], [31.5, 188.5], [27.5, 184.5], [25.5, 182.5], [25.5, 180.5], [23.5, 178.5], [23.5, 176.5], [22.5, 176.5], [22.5, 175.5], [21.5, 174.5], [20.5, 171.5], [20.5, 169.5], [19.5, 168.5], [19.5, 167.5], [18.5, 167.5], [18.5, 167.5], [17.5, 168.5], [15.5, 170.5], [15.5, 172.5], [13.5, 174.5], [13.5, 175.5], [13.5, 176.5], [12.5, 176.5], [11.5, 178.5], [10.5, 179.5], [10.5, 180.5], [9.5, 181.5], [9.5, 181.5], [8.5, 182.5], [6.5, 183.5], [4.5, 183.5], [0.5, 184.5], [-2.5, 185.5], [-3.5, 185.5], [-4.5, 186.5], [-6.5, 186.5], [-7.5, 186.5], [-9.5, 186.5], [-12.5, 186.5], [-14.5, 186.5], [-14.5, 186.5], [-16.5, 185.5], [-17.5, 185.5], [-18.5, 185.5], [-18.5, 186.5]]], [{"color": "coral", "pensize": 2, "sectors": 16, "mirror": 0, "center": [133.166666667, 0], "radius": 266.5}, [[-85.5, -128.5], [-79.5, -129.5], [-78.5, -129.5], [-76.5, -131.5], [-75.5, -132.5], [-74.5, -133.5], [-73.5, -134.5], [-73.5, -136.5], [-72.5, -137.5], [-71.5, -138.5], [-71.5, -139.5], [-70.5, -141.5], [-70.5, -143.5], [-69.5, -146.5], [-69.5, -148.5], [-69.5, -151.5], [-69.5, -153.5], [-69.5, -155.5], [-69.5, -156.5], [-69.5, -158.5], [-70.5, -160.5], [-71.5, -161.5], [-71.5, -163.5], [-72.5, -165.5], [-73.5, -167.5], [-73.5, -168.5], [-73.5, -170.5], [-73.5, -170.5], [-73.5, -170.5], [-72.5, -169.5], [-71.5, -169.5], [-69.5, -168.5], [-68.5, -167.5], [-67.5, -166.5], [-65.5, -164.5], [-65.5, -163.5], [-65.5, -163.5], [-65.5, -162.5], [-65.5, -161.5], [-65.5, -159.5], [-64.5, -155.5], [-63.5, -152.5], [-62.5, -150.5], [-62.5, -147.5], [-62.5, -146.5], [-62.5, -145.5], [-63.5, -145.5], [-63.5, -144.5], [-65.5, -142.5], [-66.5, -139.5], [-67.5, -136.5], [-68.5, -134.5], [-69.5, -132.5], [-69.5, -132.5], [-69.5, -131.5], [-70.5, -131.5], [-71.5, -130.5], [-72.5, -129.5], [-73.5, -128.5], [-75.5, -128.5], [-77.5, -127.5], [-79.5, -127.5], [-81.5, -126.5], [-83.5, -126.5], [-85.5, -126.5], [-86.5, -126.5], [-88.5, -126.5], [-88.5, -126.5], [-89.5, -126.5], [-90.5, -126.5]]], [{"color": "hot pink", "pensize": 16, "sectors": 16, "mirror": 0, "center": [133.166666667, 0], "radius": 266.5}, [[-88.5, 180.5], [-88.5, 178.5], [-88.5, 174.5], [-89.5, 171.5], [-90.5, 169.5], [-90.5, 167.5], [-90.5, 166.5], [-91.5, 164.5], [-91.5, 161.5], [-92.5, 159.5], [-92.5, 158.5], [-92.5, 158.5], [-92.5, 157.5], [-93.5, 156.5], [-93.5, 155.5], [-94.5, 154.5], [-94.5, 152.5], [-95.5, 151.5], [-96.5, 150.5], [-96.5, 149.5], [-97.5, 148.5], [-98.5, 146.5], [-99.5, 145.5], [-99.5, 145.5], [-99.5, 145.5], [-101.5, 144.5], [-102.5, 143.5], [-103.5, 143.5], [-105.5, 144.5], [-109.5, 145.5], [-114.5, 146.5], [-116.5, 147.5], [-118.5, 148.5], [-119.5, 148.5], [-120.5, 148.5], [-121.5, 149.5], [-122.5, 149.5], [-123.5, 149.5], [-124.5, 149.5], [-124.5, 149.5], [-125.5, 149.5], [-126.5, 149.5], [-126.5, 150.5], [-126.5, 151.5], [-126.5, 151.5], [-124.5, 154.5], [-124.5, 154.5], [-124.5, 154.5], [-121.5, 155.5], [-119.5, 156.5], [-118.5, 157.5], [-117.5, 157.5], [-114.5, 157.5], [-113.5, 157.5], [-111.5, 157.5], [-108.5, 157.5], [-108.5, 157.5], [-108.5, 157.5], [-107.5, 158.5], [-106.5, 158.5], [-105.5, 159.5], [-103.5, 160.5], [-102.5, 162.5], [-101.5, 163.5], [-100.5, 164.5], [-100.5, 165.5], [-100.5, 167.5], [-99.5, 168.5], [-99.5, 169.5], [-99.5, 170.5], [-99.5, 171.5], [-99.5, 173.5], [-98.5, 175.5], [-98.5, 177.5], [-97.5, 178.5], [-97.5, 180.5], [-97.5, 180.5], [-96.5, 180.5], [-96.5, 181.5], [-96.5, 181.5], [-95.5, 183.5], [-95.5, 183.5], [-93.5, 184.5], [-93.5, 184.5], [-92.5, 184.5]]]]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment