Skip to content

Instantly share code, notes, and snippets.

@michalskop
Last active November 22, 2020 12:52
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save michalskop/7e55931562cb3e5a9344 to your computer and use it in GitHub Desktop.
Save michalskop/7e55931562cb3e5a9344 to your computer and use it in GitHub Desktop.
Hemicycle chart (general)
# calculates optimal numbers of representives for hemicycle chart
import math
import csv
import numpy as np
import timeit
start = timeit.default_timer()
#benchmark:
#n0 = 200 : 4:23s, 5:52s, 6:132s, 7:285s, 8:579s, 9:1167s , 10:2342s, 11: 4632s
#n0=751 : 7:217s, 8:570s, 9:1331, 10:2816s, 11: 5686s, 12: 10905s, 13:21918s,14:44362s
# number of representatives
n0=751
optim = {}
# loss function 1 (gaps between rows)
def loss1(g):
return (g-1.2)*(g-1.2) #looks best
# loss function 2 (spaces in rows)
def loss2(w,s,n):
n0 = sum(n)
l2 = 0
i = 0
ln = len(n)
for item in n:
if s[i] > 0:
#l2 = l2 + item*(s[i] - 0.1*w)*(s[i] - 0.1*w)/n0
l2 = l2 + (s[i] - 0.1*w)*(s[i] - 0.1*w)/ln
else:
l2 = l2 + 10
i = i + 1
return l2
# loss function
def lossf(w,g,s,n):
l1 = loss1(g)
l2 = loss2(w,s,n)
l = l1 + l2 + (l1 - l2)*(l1 - l2)
return l
# spaces in rows
def ss(w,g,n):
s = [0]*len(n)
i = 0
for item in n:
s[i] = (math.pi/w + math.pi*i*g-n[i])/(n[i] - 1)
i = i + 1
return s
# max n in row for grid search
def nmax(k,n):
return math.floor(n-((k-1)*k/2))/k
# nrow for grid search
def nrow(n):
return {'max':round(math.sqrt(n)*3/4),'min':round(max(math.sqrt(n)/4,1))}
# grid search
def grid(n):
out = []
for k in np.arange (0.01,1,0.01): #(0.01,1,0.005):
for kk in np.arange (1.15,1.25,0.01): #(1,1.35,0.01)
g = kk
w = k
s = ss(w,g,n)
l1 = loss1(g)
l2 = loss2(w,s,n)
l = l1 + l2 + (l1-l2)*(l1-l2)
try:
if l < mmin:
out = [w,g]
mmin = l
except:
out = [w,g]
mmin = l
#print(out,mmin)
return {'w':out[0],'g':out[1],'loss':mmin}
#outwriter.writerow(row)
# recursion
def go(level,n,nrows,n0):
# print(n,level)
global optim
# print('optim:',optim)
global ll
while level < (nrows-1):
#conservative (slow):
# jmin = max(level+2,n[level-1]+1)
# jmax = int(nmax(nrows-level,n0-sum(n[0:level]))+1)
#faster (aritmetic series):
if level > 0:
if (nrows>1):
q = 2*(n0-nrows*n[0])/(nrows-1)/nrows
jmin = math.floor(n[0] + level*q - 0.5) #better with -1, but slower
jmax = math.ceil(n[0] + level*q + 0.5) #better with +1, but slower
else:
jmin = max(level+2+round(sqrt(level)),n[level-1]+1)
jmax = int(nmax(nrows-level,n0-sum(n[0:level]))+1)
else:
jmin = max(level+2,n[level-1]+1)
jmax = int(nmax(nrows-level,n0-sum(n[0:level]))+1)
for j in range(jmin,jmax):
n[level] = j
go(level+1,n,nrows,n0)
return False
n[level] = n0-sum(n)
# print("calculating:",level,k,n)
opt = grid(n)
# print(opt,ll)
try:
if ll > opt['loss']:
optim = opt.copy()
optim['n'] = n.copy()
ll = optim['loss']
except:
optim = opt.copy()
optim['n'] = n.copy()
ll = optim['loss']
# print('optim2:',optim)
n[level] = 0
return True
# for each reasonable number of rows:
nr = nrow(n0)
for k in range(nr['min'],nr['max']+1):
n = [0]*k
optim = {}
ll = 100000000
go(0,n,k,n0)
print("final optim:",optim)
print("time:",timeit.default_timer() - start)
#example of results:
#n = 200:
#final optim: {'n': [44, 48, 52, 56], 'loss': 6.0494609377272378e-05, 'w': 0.069999999999999993, 'g': 1.2000000000000002}
#time: 23.457229251012905
#final optim: {'n': [34, 37, 40, 43, 46], 'loss': 0.003021820005212728, 'w': 0.089999999999999997, 'g': 1.1900000000000002}
#time: 51.52483937999932
#final optim: {'n': [24, 28, 31, 35, 39, 43], 'loss': 0.0009935459225664401, 'w': 0.13, 'g': 1.2300000000000002}
#time: 131.58585535301245
#final optim: {'n': [18, 21, 25, 29, 32, 36, 39], 'loss': 0.000796945129917957, 'w': 0.17000000000000001, 'g': 1.1900000000000002}
#time: 284.771323367022
#final optim: {'n': [12, 16, 19, 23, 27, 31, 34, 38], 'loss': 0.00031275649495655434, 'w': 0.25, 'g': 1.2000000000000002}
#time: 579.2367971060157
#final optim: {'n': [8, 11, 15, 19, 22, 26, 29, 33, 37], 'loss': 0.00043985954926300044, 'w': 0.39000000000000001, 'g': 1.2000000000000002}
#time: 1167.0518377900007
#final optim: {'n': [4, 8, 11, 15, 18, 22, 25, 29, 32, 36], 'loss': 0.00064177079858304589, 'w': 0.72999999999999998, 'g': 1.2000000000000002}
#time: 2341.9838014570123
#final optim: {'n': [3, 6, 9, 12, 15, 18, 21, 24, 27, 30, 35], 'loss': 0.0087001372112743003, 'w': 0.98999999999999999, 'g': 1.1400000000000001}
#time: 4631.68083341801
#n = 751 (Euro Parliament)
#final optim: {'n': [98, 101, 104, 107, 110, 113, 118], 'loss': 0.0062929076050250469, 'w': 0.029999999999999999, 'g': 1.1899999999999999}
#time: 217.3275479080039
#final optim: {'n': [85, 88, 90, 93, 95, 98, 100, 102], 'loss': 0.068194024500854655, 'w': 0.029999999999999999, 'g': 1.1599999999999999}
#time: 570.2674658489996
#final optim: {'n': [71, 74, 77, 80, 83, 87, 90, 93, 96], 'loss': 0.014035298736485213, 'w': 0.040000000000000001, 'g': 1.1799999999999999}
#time: 1331.067573258013
#final optim: {'n': [60, 63, 67, 70, 73, 77, 80, 83, 87, 91], 'loss': 0.0032756194901112823, 'w': 0.050000000000000003, 'g': 1.1899999999999999}
#time: 2816.806992516009
#final optim: {'n': [51, 54, 58, 61, 65, 68, 72, 75, 79, 82, 86], 'loss': 0.0013354982259395371, 'w': 0.060000000000000005, 'g': 1.1899999999999999}
#time: 5686.576568382996
#final optim: {'n': [44, 47, 51, 54, 57, 61, 64, 68, 71, 74, 78, 82], 'loss': 0.0016497989012379932, 'w': 0.069999999999999993, 'g': 1.1899999999999999}
#time: 10905.816249452997
#final optim: {'n': [34, 38, 42, 46, 50, 54, 58, 62, 66, 70, 73, 77, 81], 'loss': 0.0025690587369525267, 'w': 0.089999999999999997, 'g': 1.25}
#time: 21918.771677729994
#final optim: {'n': [31, 34, 38, 41, 45, 48, 52, 55, 59, 62, 66, 69, 73, 78], 'loss': 0.00099189844185821208, 'w': 0.099999999999999992, 'g': 1.1899999999999999}
#time: 44362.27788667599
# ...
# n = 81 (CZ Senate)
#final optim: {'n': [39, 42], 'loss': 0.00015113520955957024, 'w': 0.080000000000000002, 'g': 1.2}
#time: 2.056351581995841
#final optim: {'n': [23, 27, 31], 'loss': 0.00074731223308436374, 'w': 0.13, 'g': 1.2}
#time: 3.672953786997823
#final optim: {'n': [15, 18, 22, 26], 'loss': 0.0017986444368775138, 'w': 0.20000000000000001, 'g': 1.1899999999999999}
#time: 5.949895355995977
#final optim: {'n': [9, 13, 16, 20, 23], 'loss': 0.0004283781313137963, 'w': 0.34000000000000002, 'g': 1.2}
#time: 10.962005101988325
#final optim: {'n': [5, 8, 12, 15, 19, 22], 'loss': 0.0011676166427925727, 'w': 0.62, 'g': 1.1899999999999999}
#time: 21.31037131600897
#final optim: {'n': [3, 6, 9, 12, 14, 17, 20], 'loss': 0.017012374030482232, 'w': 0.98999999999999999, 'g': 1.1499999999999999}
#time: 41.0609374709893
Display the source blob
Display the rendered blob
Raw
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Display the source blob
Display the rendered blob
Raw
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Display the source blob
Display the rendered blob
Raw
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg width="600" height="300" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><defs><style type="text/css"><![CDATA[
.axis path, .axis line { fill: none; stroke: rgb(0, 0, 0); shape-rendering: crispedges; }
path, line { stroke: rgb(187, 187, 187); stroke-width: 1px; }
text.shadow { stroke: rgb(128, 128, 128); stroke-width: 1px; opacity: 0.9; }
.half { fill: rgb(136, 136, 136); opacity: 0.5; }]]></style></defs><g transform="translate(0,0)"><path d="M-250.5543988592659,-164.99240349868143A300,300 0 0,1 164.992403498681,-250.5543988592662L0,0Z" transform="translate(300,300)" class="half"></path><text font-family="FontAwesome" font-size="12.609137055837563" fill="darkred" text-anchor="middle" class="shadow" x="13.758071622159088" y="294.5181015304877" transform="rotate(-88.9028467752814,13.758071622159088,294.5181015304877)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="darkred" text-anchor="middle" class="shadow" x="27.466294259559334" y="294.51813606722817" transform="rotate(-88.84768264666425,27.466294259559334,294.51813606722817)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="darkred" text-anchor="middle" class="shadow" x="41.17479627809322" y="294.5181762330623" transform="rotate(-88.78667761031119,41.17479627809322,294.5181762330623)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="darkred" text-anchor="middle" class="shadow" x="54.88362452326775" y="294.5182233212087" transform="rotate(-88.7188521351112,54.88362452326775,294.5182233212087)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="darkred" text-anchor="middle" class="shadow" x="68.59283693324626" y="294.51827901876754" transform="rotate(-88.64299469574277,68.59283693324626,294.51827901876754)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="darkred" text-anchor="middle" class="shadow" x="82.30250602858028" y="294.51834555996504" transform="rotate(-88.55758876750284,82.30250602858028,294.51834555996504)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="darkred" text-anchor="middle" class="shadow" x="96.01272380775052" y="294.51842595374563" transform="rotate(-88.46071040114109,96.01272380775052,294.51842595374563)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="darkred" text-anchor="middle" class="shadow" x="109.72360875672832" y="294.5185243299918" transform="rotate(-88.34988155002324,109.72360875672832,294.5185243299918)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="darkred" text-anchor="middle" class="shadow" x="123.4353161200979" y="294.51864648067556" transform="rotate(-88.22185511855952,123.4353161200979,294.51864648067556)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="darkred" text-anchor="middle" class="shadow" x="137.14805335294443" y="294.5188007322563" transform="rotate(-88.07229153040095,137.14805335294443,294.5188007322563)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="darkred" text-anchor="middle" class="shadow" x="150.86210408168031" y="294.51899940306527" transform="rotate(-87.89525707911125,150.86210408168031,294.51899940306527)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="darkred" text-anchor="middle" class="shadow" x="164.57786659197032" y="294.51926134100006" transform="rotate(-87.682417907336,164.57786659197032,294.51926134100006)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="darkred" text-anchor="middle" class="shadow" x="178.29591827234424" y="294.5196165639399" transform="rotate(-87.42168992191128,178.29591827234424,294.5196165639399)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="darkred" text-anchor="middle" class="shadow" x="14.186002759217223" y="283.4213464497063" transform="rotate(-86.68027560589937,14.186002759217223,283.4213464497063)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="darkred" text-anchor="middle" class="shadow" x="27.916820332758174" y="283.4043698836752" transform="rotate(-86.50958573490993,27.916820332758174,283.4043698836752)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="darkred" text-anchor="middle" class="shadow" x="41.650436421388314" y="283.3855643418409" transform="rotate(-86.32038101002479,41.650436421388314,283.3855643418409)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="darkred" text-anchor="middle" class="shadow" x="55.376417439785286" y="283.5260733942249" transform="rotate(-86.14729120365871,55.376417439785286,283.5260733942249)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="darkred" text-anchor="middle" class="shadow" x="69.1158322557982" y="283.51286960728277" transform="rotate(-85.91551793587377,69.1158322557982,283.51286960728277)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="darkred" text-anchor="middle" class="shadow" x="82.85964733119772" y="283.49804073134146" transform="rotate(-85.65406126692895,82.85964733119772,283.49804073134146)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="darkred" text-anchor="middle" class="shadow" x="96.6087809397709" y="283.4812678588348" transform="rotate(-85.35682582566241,96.6087809397709,283.4812678588348)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="darkred" text-anchor="middle" class="shadow" x="110.36442599363198" y="283.4621430844643" transform="rotate(-85.01592375568273,110.36442599363198,283.4621430844643)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="darkred" text-anchor="middle" class="shadow" x="124.12816102798955" y="283.44013627420816" transform="rotate(-84.62096307290403,124.12816102798955,283.44013627420816)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="darkred" text-anchor="middle" class="shadow" x="15.043960300150529" y="272.3495350695001" transform="rotate(-84.45770443651733,15.043960300150529,272.3495350695001)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="darkred" text-anchor="middle" class="shadow" x="28.820370371877843" y="272.31823575801525" transform="rotate(-84.17148882315564,28.820370371877843,272.31823575801525)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="darkred" text-anchor="middle" class="shadow" x="137.90211974734416" y="283.41454583848133" transform="rotate(-84.15796746238314,137.90211974734416,283.41454583848133)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="darkred" text-anchor="middle" class="shadow" x="42.60469124705825" y="272.2837321149441" transform="rotate(-83.85408440973836,42.60469124705825,272.2837321149441)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="darkred" text-anchor="middle" class="shadow" x="151.68925866642417" y="283.38442382665284" transform="rotate(-83.60768356305704,151.68925866642417,283.38442382665284)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="darkred" text-anchor="middle" class="shadow" x="56.361900404808466" y="272.567103177936" transform="rotate(-83.57573027220621,56.361900404808466,272.567103177936)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="darkred" text-anchor="middle" class="shadow" x="70.16193272395995" y="272.54481443636394" transform="rotate(-83.18804117600479,70.16193272395995,272.54481443636394)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="darkred" text-anchor="middle" class="shadow" x="165.4937961425861" y="283.3484584227679" transform="rotate(-82.94282775018272,165.4937961425861,283.3484584227679)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="darkred" text-anchor="middle" class="shadow" x="83.97430063181582" y="272.5201049979585" transform="rotate(-82.75053376635509,83.97430063181582,272.5201049979585)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="darkred" text-anchor="middle" class="shadow" x="97.80158727324098" y="272.49257567243154" transform="rotate(-82.2529412501838,97.80158727324098,272.49257567243154)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="darkred" text-anchor="middle" class="shadow" x="16.3306533900699" y="261.31932567560085" transform="rotate(-82.2351332671353,16.3306533900699,261.31932567560085)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="darkred" text-anchor="middle" class="shadow" x="179.32196618723017" y="283.30478311425287" transform="rotate(-82.1234056842197,179.32196618723017,283.30478311425287)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="darkred" text-anchor="middle" class="shadow" x="30.17543994793179" y="261.27819232651683" transform="rotate(-81.83339191140129,30.17543994793179,261.27819232651683)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="darkred" text-anchor="middle" class="shadow" x="111.64715035744179" y="272.46174167433134" transform="rotate(-81.68196596134223,111.64715035744179,272.46174167433134)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="darkred" text-anchor="middle" class="shadow" x="44.03579291635109" y="261.2332466469373" transform="rotate(-81.38778780945191,44.03579291635109,261.2332466469373)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="darkred" text-anchor="middle" class="shadow" x="125.51543564115848" y="272.42701266603734" transform="rotate(-81.02007102724855,125.51543564115848,272.42701266603734)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="darkred" text-anchor="middle" class="shadow" x="57.83808858251292" y="261.6633848516096" transform="rotate(-81.00416934075372,57.83808858251292,261.6633848516096)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="darkred" text-anchor="middle" class="shadow" x="71.72876822919179" y="261.6389633956906" transform="rotate(-80.46056441613575,71.72876822919179,261.6389633956906)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="darkred" text-anchor="middle" class="shadow" x="139.41245584813717" y="272.3876705904462" transform="rotate(-80.24364339436531,139.41245584813717,272.3876705904462)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="darkred" text-anchor="middle" class="shadow" x="18.04414611258257" y="250.3473139607508" transform="rotate(-80.01256209775323,18.04414611258257,250.3473139607508)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="darkred" text-anchor="middle" class="shadow" x="85.6436040368204" y="261.61272441924456" transform="rotate(-79.84700626578123,85.6436040368204,261.61272441924456)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="darkred" text-anchor="middle" class="shadow" x="31.97977284282467" y="250.30262148351616" transform="rotate(-79.49529499964697,31.97977284282467,250.30262148351616)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="darkred" text-anchor="middle" class="shadow" x="153.3465465305916" y="272.34284989404773" transform="rotate(-79.32011004700286,153.3465465305916,272.34284989404773)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="darkred" text-anchor="middle" class="shadow" x="99.587643118104" y="261.5845901830886" transform="rotate(-79.14905667470518,99.587643118104,261.5845901830886)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="darkred" text-anchor="middle" class="shadow" x="45.94109019091539" y="250.25457990811975" transform="rotate(-78.92149120916548,45.94109019091539,250.25457990811975)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="darkred" text-anchor="middle" class="shadow" x="59.80200882036385" y="250.83687931310743" transform="rotate(-78.43260840930122,59.80200882036385,250.83687931310743)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="darkred" text-anchor="middle" class="shadow" x="113.56743988903263" y="261.5545559194067" transform="rotate(-78.34800816700172,113.56743988903263,261.5545559194067)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="darkred" text-anchor="middle" class="shadow" x="167.3296052432277" y="272.2915343601872" transform="rotate(-78.2032375930294,167.3296052432277,272.2915343601872)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="darkred" text-anchor="middle" class="shadow" x="20.181860402511315" y="239.4500080553656" transform="rotate(-77.78999092837122,20.181860402511315,239.4500080553656)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="darkred" text-anchor="middle" class="shadow" x="73.81278885413423" y="250.82002544150018" transform="rotate(-77.73308765626675,73.81278885413423,250.82002544150018)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="green" text-anchor="middle" class="shadow" x="127.59166230777373" y="261.52276095901817" transform="rotate(-77.41917898159303,127.59166230777373,261.52276095901817)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="green" text-anchor="middle" class="shadow" x="34.23036480600068" y="239.40979777519306" transform="rotate(-77.15719808789265,34.23036480600068,239.40979777519306)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="green" text-anchor="middle" class="shadow" x="87.8632715778727" y="250.80390390292246" transform="rotate(-76.94347876520737,87.8632715778727,250.80390390292246)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="green" text-anchor="middle" class="shadow" x="181.37921662844255" y="272.2326115002473" transform="rotate(-76.8251214465281,181.37921662844255,272.2326115002473)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="green" text-anchor="middle" class="shadow" x="48.31705334444786" y="239.3680708184467" transform="rotate(-76.45519460887908,48.31705334444786,239.3680708184467)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="green" text-anchor="middle" class="shadow" x="141.67201516318121" y="261.48962101380687" transform="rotate(-76.3293193263475,141.67201516318121,261.48962101380687)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="green" text-anchor="middle" class="shadow" x="101.9617081920898" y="250.78931538616152" transform="rotate(-76.04517209922653,101.9617081920898,250.78931538616152)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="green" text-anchor="middle" class="shadow" x="62.24970563726103" y="240.10939194800602" transform="rotate(-75.86104747784873,62.24970563726103,240.10939194800602)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="green" text-anchor="middle" class="shadow" x="22.74057992476607" y="228.64380368994" transform="rotate(-75.56741975898919,22.74057992476607,228.64380368994)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="green" text-anchor="middle" class="shadow" x="155.82469140870597" y="261.45608012808964" transform="rotate(-75.03253653094862,155.82469140870597,261.45608012808964)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="green" text-anchor="middle" class="shadow" x="116.11879450242435" y="250.7775061090787" transform="rotate(-75.01405037266122,116.11879450242435,250.7775061090787)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="green" text-anchor="middle" class="shadow" x="76.40927291551553" y="240.11251261447978" transform="rotate(-75.00561089639771,76.40927291551553,240.11251261447978)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="green" text-anchor="middle" class="shadow" x="36.92346855657996" y="228.6178579720838" transform="rotate(-74.8191011761383,36.92346855657996,228.6178579720838)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="green" text-anchor="middle" class="shadow" x="90.62760421621505" y="240.1213953018746" transform="rotate(-74.03995126463352,90.62760421621505,240.1213953018746)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="green" text-anchor="middle" class="shadow" x="51.159280701814744" y="228.59388756793925" transform="rotate(-73.98889800859266,51.159280701814744,228.59388756793925)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="green" text-anchor="middle" class="shadow" x="130.34864304980425" y="250.77043657545968" transform="rotate(-73.81828693593755,130.34864304980425,250.77043657545968)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="green" text-anchor="middle" class="shadow" x="170.07273890980517" y="261.4241067682056" transform="rotate(-73.46364743587614,170.07273890980517,261.4241067682056)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="green" text-anchor="middle" class="shadow" x="25.716454913535827" y="217.94495952656777" transform="rotate(-73.34484858960712,25.716454913535827,217.94495952656777)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="green" text-anchor="middle" class="shadow" x="65.17624919017507" y="229.5025287119329" transform="rotate(-73.2894865463962,65.17624919017507,229.5025287119329)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="green" text-anchor="middle" class="shadow" x="104.91681699568628" y="240.13842458418668" transform="rotate(-72.94128752374792,104.91681699568628,240.13842458418668)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="green" text-anchor="middle" class="shadow" x="40.05460002265738" y="217.94477087099375" transform="rotate(-72.48100426438401,40.05460002265738,217.94477087099375)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="green" text-anchor="middle" class="shadow" x="144.6702556899703" y="250.77124209642346" transform="rotate(-72.41499525832967,144.6702556899703,250.77124209642346)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="green" text-anchor="middle" class="shadow" x="79.51233766188453" y="229.54068450380524" transform="rotate(-72.27813413652873,79.51233766188453,229.54068450380524)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="green" text-anchor="middle" class="shadow" x="119.29257798725259" y="240.16707202893875" transform="rotate(-71.68009257832074,119.29257798725259,240.16707202893875)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="green" text-anchor="middle" class="shadow" x="184.4500902421816" y="261.39771422910064" transform="rotate(-71.52683720883653,184.4500902421816,261.39771422910064)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="green" text-anchor="middle" class="shadow" x="54.46250679352915" y="217.95199025338587" transform="rotate(-71.52260140830623,54.46250679352915,217.95199025338587)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="green" text-anchor="middle" class="shadow" x="93.92950447506158" y="229.5926261607311" transform="rotate(-71.13642376405963,93.92950447506158,229.5926261607311)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="green" text-anchor="middle" class="shadow" x="29.10500796452323" y="207.36957269669" transform="rotate(-71.12227742022512,29.10500796452323,207.36957269669)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="green" text-anchor="middle" class="shadow" x="159.10982248793152" y="250.7850505729714" transform="rotate(-70.74496301489444,159.10982248793152,250.7850505729714)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="green" text-anchor="middle" class="shadow" x="68.57574520321498" y="219.03765261456874" transform="rotate(-70.71792561494374,68.57574520321498,219.03765261456874)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="green" text-anchor="middle" class="shadow" x="133.77549193272318" y="240.21249505285073" transform="rotate(-70.21739489028207,133.77549193272318,240.21249505285073)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="green" text-anchor="middle" class="shadow" x="43.61854580737268" y="207.4083073765888" transform="rotate(-70.14290735262966,43.61854580737268,207.4083073765888)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="green" text-anchor="middle" class="shadow" x="108.44429924889384" y="229.66316745750987" transform="rotate(-69.83740294826924,108.44429924889384,229.66316745750987)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="green" text-anchor="middle" class="shadow" x="83.11495260192581" y="219.1284932831446" transform="rotate(-69.5506573766597,83.11495260192581,219.1284932831446)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="green" text-anchor="middle" class="shadow" x="58.220612110484964" y="207.46209390055438" transform="rotate(-69.0563048080198,58.220612110484964,207.46209390055438)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="green" text-anchor="middle" class="shadow" x="32.9011407714966" y="196.93355458187577" transform="rotate(-68.89970625084305,32.9011407714966,196.93355458187577)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="green" text-anchor="middle" class="shadow" x="173.70443702203767" y="250.8204973072116" transform="rotate(-68.72405727872282,173.70443702203767,250.8204973072116)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="green" text-anchor="middle" class="shadow" x="148.3931890994816" y="240.2825405704273" transform="rotate(-68.50067119031183,148.3931890994816,240.2825405704273)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="green" text-anchor="middle" class="shadow" x="123.07804724191901" y="229.75916947849464" transform="rotate(-68.34613478398023,123.07804724191901,229.75916947849464)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="green" text-anchor="middle" class="shadow" x="97.7604946625053" y="219.24462929512583" transform="rotate(-68.2328962634858,97.7604946625053,219.24462929512583)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="green" text-anchor="middle" class="shadow" x="72.44134683913745" y="208.73584069295924" transform="rotate(-68.14636468349121,72.44134683913745,208.73584069295924)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="green" text-anchor="middle" class="shadow" x="47.6093718693216" y="197.02601091248275" transform="rotate(-67.80481044087537,47.6093718693216,197.02601091248275)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="green" text-anchor="middle" class="shadow" x="87.20895543316982" y="208.89952944316678" transform="rotate(-66.82318061679072,87.20895543316982,208.89952944316678)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="green" text-anchor="middle" class="shadow" x="112.53380532979924" y="219.39427837782245" transform="rotate(-66.73351837279066,112.53380532979924,219.39427837782245)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="green" text-anchor="middle" class="shadow" x="37.099141797040055" y="186.65260687407954" transform="rotate(-66.67713508146107,37.099141797040055,186.65260687407954)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="green" text-anchor="middle" class="shadow" x="137.8586780486052" y="229.89062440823105" transform="rotate(-66.61650284462658,137.8586780486052,229.89062440823105)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="green" text-anchor="middle" class="shadow" x="62.42663444087337" y="197.14363194041934" transform="rotate(-66.59000820773338,62.42663444087337,197.14363194041934)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="green" text-anchor="middle" class="shadow" x="163.18355204657286" y="240.38948971956117" transform="rotate(-66.45738949884023,163.18355204657286,240.38948971956117)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="green" text-anchor="middle" class="shadow" x="188.50834619133332" y="250.89267628157103" transform="rotate(-66.22855297114492,188.50834619133332,250.89267628157103)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="green" text-anchor="middle" class="shadow" x="76.76526848938676" y="198.61784156080063" transform="rotate(-65.57480375203872,76.76526848938676,198.61784156080063)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="red" text-anchor="middle" class="shadow" x="52.02043340285265" y="186.8151682110834" transform="rotate(-65.46671352912102,52.02043340285265,186.8151682110834)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="red" text-anchor="middle" class="shadow" x="102.11073863815366" y="209.1039733844265" transform="rotate(-65.32936876291191,102.11073863815366,209.1039733844265)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="red" text-anchor="middle" class="shadow" x="127.46238863846455" y="219.5890286979496" transform="rotate(-65.01217698963973,127.46238863846455,219.5890286979496)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="red" text-anchor="middle" class="shadow" x="152.8234459989008" y="230.07245160518139" transform="rotate(-64.58634712229406,152.8234459989008,230.07245160518139)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="red" text-anchor="middle" class="shadow" x="41.692694865940766" y="176.54219795138488" transform="rotate(-64.45456391207901,41.692694865940766,176.54219795138488)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="red" text-anchor="middle" class="shadow" x="67.07278176827323" y="187.01572020706703" transform="rotate(-64.12371160744698,67.07278176827323,187.01572020706703)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="red" text-anchor="middle" class="shadow" x="91.78507053499551" y="198.87696834349518" transform="rotate(-64.09570385692172,91.78507053499551,198.87696834349518)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="red" text-anchor="middle" class="shadow" x="178.1998626227476" y="240.55322340182872" transform="rotate(-63.98446712156951,178.1998626227476,240.55322340182872)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="red" text-anchor="middle" class="shadow" x="117.17333664033427" y="209.3618862336101" transform="rotate(-63.62963379731198,117.17333664033427,209.3618862336101)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="red" text-anchor="middle" class="shadow" x="56.84438590180281" y="176.79278053083522" transform="rotate(-63.1286166173667,56.84438590180281,176.79278053083522)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="red" text-anchor="middle" class="shadow" x="142.58207894289703" y="219.84558053311542" transform="rotate(-63.01561079897107,142.58207894289703,219.84558053311542)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="red" text-anchor="middle" class="shadow" x="81.53880145488519" y="188.70403361918915" transform="rotate(-63.00324282058622,81.53880145488519,188.70403361918915)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="red" text-anchor="middle" class="shadow" x="106.96906706760684" y="199.1966947561435" transform="rotate(-62.425841262338054,106.96906706760684,199.1966947561435)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="red" text-anchor="middle" class="shadow" x="46.674888668305044" y="166.61753960479209" transform="rotate(-62.231992742696974,46.674888668305044,166.61753960479209)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="red" text-anchor="middle" class="shadow" x="168.0230783748711" y="230.32758418971193" transform="rotate(-62.16981598278602,168.0230783748711,230.32758418971193)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="red" text-anchor="middle" class="shadow" x="132.4307613960701" y="209.69107511556456" transform="rotate(-61.67821919529922,132.4307613960701,209.69107511556456)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="red" text-anchor="middle" class="shadow" x="72.15044670702959" y="177.0971215239765" transform="rotate(-61.65741500716052,72.15044670702959,177.0971215239765)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="red" text-anchor="middle" class="shadow" x="96.832929984042" y="189.08351770521233" transform="rotate(-61.36822709705271,96.832929984042,189.08351770521233)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="red" text-anchor="middle" class="shadow" x="193.5193063853204" y="240.80726396664127" transform="rotate(-60.930268733453346,193.5193063853204,240.80726396664127)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="red" text-anchor="middle" class="shadow" x="62.0731973882482" y="166.97553534878276" transform="rotate(-60.79051970561238,62.0731973882482,166.97553534878276)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="red" text-anchor="middle" class="shadow" x="157.94035696874272" y="220.18861049962925" transform="rotate(-60.672023054276224,157.94035696874272,220.18861049962925)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="red" text-anchor="middle" class="shadow" x="122.34928081012487" y="199.59542603208902" transform="rotate(-60.525749221833365,122.34928081012487,199.59542603208902)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="red" text-anchor="middle" class="shadow" x="86.752331486003" y="179.01438401301178" transform="rotate(-60.4316818891337,86.752331486003,179.01438401301178)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="red" text-anchor="middle" class="shadow" x="52.03822715808455" y="156.89356415105115" transform="rotate(-60.00942157331497,52.03822715808455,156.89356415105115)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="red" text-anchor="middle" class="shadow" x="112.32300609993689" y="189.54823053716237" transform="rotate(-59.522313761764195,112.32300609993689,189.54823053716237)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="red" text-anchor="middle" class="shadow" x="147.927044273906" y="210.11702626891423" transform="rotate(-59.41471875331558,147.927044273906,210.11702626891423)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="red" text-anchor="middle" class="shadow" x="183.52827177626392" y="230.69250229876542" transform="rotate(-59.24487696441622,183.52827177626392,230.69250229876542)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="red" text-anchor="middle" class="shadow" x="77.65022244817384" y="167.40621094428377" transform="rotate(-59.1911184068741,77.65022244817384,167.40621094428377)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="red" text-anchor="middle" class="shadow" x="102.34109704439905" y="179.5413661628709" transform="rotate(-58.640750337183675,102.34109704439905,179.5413661628709)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="red" text-anchor="middle" class="shadow" x="67.6981617859094" y="157.37977857558548" transform="rotate(-58.45242279385806,67.6981617859094,157.37977857558548)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="red" text-anchor="middle" class="shadow" x="137.9663478163741" y="200.0988128192702" transform="rotate(-58.34426140095874,137.9663478163741,200.0988128192702)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="red" text-anchor="middle" class="shadow" x="173.6013134020251" y="220.65565305080625" transform="rotate(-57.88224246673181,173.6013134020251,220.65565305080625)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="red" text-anchor="middle" class="shadow" x="92.39535814636668" y="169.56840841563252" transform="rotate(-57.86012095768123,92.39535814636668,169.56840841563252)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="red" text-anchor="middle" class="shadow" x="57.77464083138686" y="147.3849019659874" transform="rotate(-57.78685040393293,57.77464083138686,147.3849019659874)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="red" text-anchor="middle" class="shadow" x="128.04645163514357" y="190.12355253698564" transform="rotate(-57.42186464635475,128.04645163514357,190.12355253698564)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="red" text-anchor="middle" class="shadow" x="163.72004899628928" y="210.67713043920733" transform="rotate(-56.75769898625839,163.72004899628928,210.67713043920733)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="red" text-anchor="middle" class="shadow" x="83.56192018634077" y="157.96094170942175" transform="rotate(-56.7248218065877,83.56192018634077,157.96094170942175)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="red" text-anchor="middle" class="shadow" x="118.15880939453767" y="180.18335334343516" transform="rotate(-56.61878626119034,118.15880939453767,180.18335334343516)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="red" text-anchor="middle" class="shadow" x="73.70991341594285" y="148.02148733924813" transform="rotate(-56.11432588210377,73.70991341594285,148.02148733924813)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="red" text-anchor="middle" class="shadow" x="108.29709207937192" y="170.27213299258173" transform="rotate(-55.91327357731467,108.29709207937192,170.27213299258173)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="red" text-anchor="middle" class="shadow" x="153.8724694536479" y="200.74337479826073" transform="rotate(-55.81382670766007,153.8724694536479,200.74337479826073)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="red" text-anchor="middle" class="shadow" x="199.4401518068942" y="231.22765786191604" transform="rotate(-55.63198449576174,199.4401518068942,231.22765786191604)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="red" text-anchor="middle" class="shadow" x="63.87549886758373" y="138.10585947211538" transform="rotate(-55.56427923455087,63.87549886758373,138.10585947211538)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="red" text-anchor="middle" class="shadow" x="98.4565159615204" y="160.38513172287952" transform="rotate(-55.28856002622874,98.4565159615204,160.38513172287952)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="red" text-anchor="middle" class="shadow" x="144.0504102105578" y="190.84471114697124" transform="rotate(-55.010303606618265,144.0504102105578,190.84471114697124)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="red" text-anchor="middle" class="shadow" x="189.65322382428323" y="221.30577085543854" transform="rotate(-54.505286807262905,189.65322382428323,221.30577085543854)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="red" text-anchor="middle" class="shadow" x="134.24813363398434" y="180.9740561955501" transform="rotate(-54.317980070876104,134.24813363398434,180.9740561955501)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="red" text-anchor="middle" class="shadow" x="89.87458799540275" y="148.77881198920366" transform="rotate(-54.2585252063013,89.87458799540275,148.77881198920366)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="red" text-anchor="middle" class="shadow" x="80.0984425909837" y="138.91624338288034" transform="rotate(-53.77622897034939,80.0984425909837,138.91624338288034)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="red" text-anchor="middle" class="shadow" x="124.46149341511719" y="171.12610767581643" transform="rotate(-53.71525876061648,124.46149341511719,171.12610767581643)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="red" text-anchor="middle" class="shadow" x="179.88703431507594" y="211.4278325834836" transform="rotate(-53.5946689506776,179.88703431507594,211.4278325834836)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="red" text-anchor="middle" class="shadow" x="70.33162211496384" y="129.07039761366315" transform="rotate(-53.34170806516883,70.33162211496384,129.07039761366315)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="red" text-anchor="middle" class="shadow" x="114.68742082609924" y="161.2968191300721" transform="rotate(-53.18579681744566,114.68742082609924,161.2968191300721)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="red" text-anchor="middle" class="shadow" x="170.13555685543227" y="201.58238735419593" transform="rotate(-52.843374918240585,170.13555685543227,201.58238735419593)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="red" text-anchor="middle" class="shadow" x="104.92359730983301" y="151.48304973549205" transform="rotate(-52.71699909477621,104.92359730983301,151.48304973549205)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="red" text-anchor="middle" class="shadow" x="160.39487897928245" y="191.76163797061406" transform="rotate(-52.212934662004585,160.39487897928245,191.76163797061406)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="red" text-anchor="middle" class="shadow" x="96.57653111785245" y="139.87683246496675" transform="rotate(-51.79222860601482,96.57653111785245,139.87683246496675)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="red" text-anchor="middle" class="shadow" x="150.6623543255025" y="181.96009477942806" transform="rotate(-51.67634581227773,150.6623543255025,181.96009477942806)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="red" text-anchor="middle" class="shadow" x="86.8531122814777" y="130.0792071207821" transform="rotate(-51.43813205859507,86.8531122814777,130.0792071207821)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="red" text-anchor="middle" class="shadow" x="140.93613109103288" y="172.17378160147064" transform="rotate(-51.21409549539746,140.93613109103288,172.17378160147064)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="red" text-anchor="middle" class="shadow" x="77.1332969013849" y="120.29211085139139" transform="rotate(-51.119136895786795,77.1332969013849,120.29211085139139)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="red" text-anchor="middle" class="shadow" x="131.21487590021218" y="162.3997481853486" transform="rotate(-50.81173126004259,131.21487590021218,162.3997481853486)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="red" text-anchor="middle" class="shadow" x="121.49760496897271" y="152.6357595896945" transform="rotate(-50.45832005757666,121.49760496897271,152.6357595896945)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="red" text-anchor="middle" class="shadow" x="206.22028840373383" y="222.23571639435426" transform="rotate(-50.33370025807014,206.22028840373383,222.23571639435426)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="red" text-anchor="middle" class="shadow" x="111.78357700955397" y="142.88009190720564" transform="rotate(-50.145438163323746,111.78357700955397,142.88009190720564)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="red" text-anchor="middle" class="shadow" x="196.53283060126145" y="212.45722434350625" transform="rotate(-49.76569665010962,196.53283060126145,212.45722434350625)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="red" text-anchor="middle" class="shadow" x="103.65533363033991" y="131.27149481582822" transform="rotate(-49.32593200572842,103.65533363033991,131.27149481582822)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="red" text-anchor="middle" class="shadow" x="186.84505832100302" y="202.69577326698527" transform="rotate(-49.30709543462339,186.84505832100302,202.69577326698527)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="red" text-anchor="middle" class="shadow" x="93.96267582654946" y="121.52509239604859" transform="rotate(-49.10003514684078,93.96267582654946,121.52509239604859)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="red" text-anchor="middle" class="shadow" x="177.15694891327556" y="192.94681288325626" transform="rotate(-48.92905085022278,177.15694891327556,192.94681288325626)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="red" text-anchor="middle" class="shadow" x="84.2702896491452" y="111.78420670881164" transform="rotate(-48.89656572640479,84.2702896491452,111.78420670881164)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="red" text-anchor="middle" class="shadow" x="167.46851912610273" y="183.20728016102453" transform="rotate(-48.6120426163491,167.46851912610273,183.20728016102453)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="red" text-anchor="middle" class="shadow" x="157.77979905432767" y="173.47503770774702" transform="rotate(-48.342388017937225,157.77979905432767,173.47503770774702)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="red" text-anchor="middle" class="shadow" x="148.0908214426394" y="163.7485487329196" transform="rotate(-48.11021091991881,148.0908214426394,163.7485487329196)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="red" text-anchor="middle" class="shadow" x="138.40161741145383" y="154.02667996650163" transform="rotate(-47.90820375946873,138.40161741145383,154.02667996650163)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="red" text-anchor="middle" class="shadow" x="128.71221494258538" y="144.30857739218877" transform="rotate(-47.73084329770765,128.71221494258538,144.30857739218877)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="red" text-anchor="middle" class="shadow" x="119.02263855249785" y="134.59358523350235" transform="rotate(-47.57387723187125,119.02263855249785,134.59358523350235)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="red" text-anchor="middle" class="shadow" x="111.09788144523378" y="122.97874116643678" transform="rotate(-46.85963540544202,111.09788144523378,122.97874116643678)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="red" text-anchor="middle" class="shadow" x="101.41529565991883" y="113.26814198172565" transform="rotate(-46.76193823508646,101.41529565991883,113.26814198172565)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="red" text-anchor="middle" class="shadow" x="91.73186227209389" y="103.5594859005792" transform="rotate(-46.67399455702275,91.73186227209389,103.5594859005792)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="red" text-anchor="middle" class="shadow" x="213.80177941828188" y="213.90827635409062" transform="rotate(-45.03541602037856,213.80177941828188,213.90827635409062)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="red" text-anchor="middle" class="shadow" x="204.12004290496947" y="204.207377421403" transform="rotate(-45.02610649295633,204.12004290496947,204.207377421403)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="red" text-anchor="middle" class="shadow" x="194.43643957384523" y="194.5083506781666" transform="rotate(-45.01952191856918,194.43643957384523,194.5083506781666)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="red" text-anchor="middle" class="shadow" x="184.7514667765457" y="184.8106964080844" transform="rotate(-45.01472678220492,184.7514667765457,184.8106964080844)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="red" text-anchor="middle" class="shadow" x="175.0654596360805" y="175.11407823909946" transform="rotate(-45.011150570693644,175.0654596360805,175.11407823909946)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="red" text-anchor="middle" class="shadow" x="165.37865219534265" y="165.4182614343947" transform="rotate(-45.00843022359675,165.37865219534265,165.4182614343947)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="red" text-anchor="middle" class="shadow" x="155.69121284965956" y="155.72307719681774" transform="rotate(-45.0063263444402,155.69121284965956,155.72307719681774)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="red" text-anchor="middle" class="shadow" x="146.00326585290583" y="146.02840103166594" transform="rotate(-45.00467625889485,146.00326585290583,146.02840103166594)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="red" text-anchor="middle" class="shadow" x="136.3149048898881" y="136.3341391055762" transform="rotate(-45.003366537838644,136.3149048898881,136.3341391055762)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="red" text-anchor="middle" class="shadow" x="126.62620193151406" y="126.64021935375396" transform="rotate(-45.00231630041873,126.62620193151406,126.64021935375396)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="red" text-anchor="middle" class="shadow" x="99.50678833180031" y="95.63032307295302" transform="rotate(-44.451423387640716,99.50678833180031,95.63032307295302)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="red" text-anchor="middle" class="shadow" x="109.19856301968554" y="105.32210386630575" transform="rotate(-44.42384132333214,109.19856301968554,105.32210386630575)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="red" text-anchor="middle" class="shadow" x="118.89038660559332" y="115.01393455282388" transform="rotate(-44.393338805155594,118.89038660559332,115.01393455282388)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="red" text-anchor="middle" class="shadow" x="134.57895300570655" y="119.03601293705347" transform="rotate(-42.43075536896626,134.57895300570655,119.03601293705347)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="red" text-anchor="middle" class="shadow" x="144.28844969635432" y="128.7305120999238" transform="rotate(-42.27588977796961,144.28844969635432,128.7305120999238)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="red" text-anchor="middle" class="shadow" x="107.58336992849115" y="88.0086481853117" transform="rotate(-42.22885221825868,107.58336992849115,88.0086481853117)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="red" text-anchor="middle" class="shadow" x="154.00030384717337" y="138.42544711459476" transform="rotate(-42.10114875832099,154.00030384717337,138.42544711459476)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="red" text-anchor="middle" class="shadow" x="117.29951860916894" y="97.70020836305099" transform="rotate(-42.08574441157782,117.29951860916894,97.70020836305099)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="red" text-anchor="middle" class="shadow" x="127.01841282853653" y="107.39183046106379" transform="rotate(-41.92704220486917,127.01841282853653,107.39183046106379)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="red" text-anchor="middle" class="shadow" x="163.71500578744408" y="148.1209137015853" transform="rotate(-41.90244176896158,163.71500578744408,148.1209137015853)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="red" text-anchor="middle" class="shadow" x="173.43319200296722" y="157.8170377523185" transform="rotate(-41.67447242925624,173.43319200296722,157.8170377523185)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="red" text-anchor="middle" class="shadow" x="183.15570400045016" y="167.51398820108142" transform="rotate(-41.41025852503813,183.15570400045016,167.51398820108142)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="red" text-anchor="middle" class="shadow" x="192.8836781262899" y="177.21199708279335" transform="rotate(-41.10040271418711,192.8836781262899,177.21199708279335)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="red" text-anchor="middle" class="shadow" x="202.6186871645953" y="186.9113919223508" transform="rotate(-40.73194840251497,202.6186871645953,186.9113919223508)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="red" text-anchor="middle" class="shadow" x="212.36297226305618" y="196.6126502783605" transform="rotate(-40.286516335803014,212.36297226305618,196.6126502783605)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="red" text-anchor="middle" class="shadow" x="115.94945530132398" y="80.70592856072088" transform="rotate(-40.006281048876616,115.94945530132398,80.70592856072088)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="red" text-anchor="middle" class="shadow" x="142.8648743442469" y="111.79628141942229" transform="rotate(-39.859194437513736,142.8648743442469,111.79628141942229)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="red" text-anchor="middle" class="shadow" x="125.70467417439696" y="90.41514608125561" transform="rotate(-39.747647499823444,125.70467417439696,90.41514608125561)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="red" text-anchor="middle" class="shadow" x="222.11984046152816" y="206.31649631850678" transform="rotate(-39.73713178268699,222.11984046152816,206.31649631850678)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="red" text-anchor="middle" class="shadow" x="152.61478401623953" y="121.51492361281416" transform="rotate(-39.54841301810063,152.61478401623953,121.51492361281416)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="red" text-anchor="middle" class="shadow" x="135.46690224969046" y="100.12654949147094" transform="rotate(-39.46074560458277,135.46690224969046,100.12654949147094)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="red" text-anchor="middle" class="shadow" x="162.37219884664168" y="131.2373389445166" transform="rotate(-39.19762125774713,162.37219884664168,131.2373389445166)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="red" text-anchor="middle" class="shadow" x="172.1386584725753" y="140.96436297117256" transform="rotate(-38.79855719348291,172.1386584725753,140.96436297117256)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="red" text-anchor="middle" class="shadow" x="181.91615425458068" y="150.69709643126342" transform="rotate(-38.340514634915735,181.91615425458068,150.69709643126342)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="red" text-anchor="middle" class="shadow" x="191.70730790088058" y="160.43701899164324" transform="rotate(-37.80936647938263,191.70730790088058,160.43701899164324)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="red" text-anchor="middle" class="shadow" x="124.59245711153322" y="73.73315163257882" transform="rotate(-37.783709879494594,124.59245711153322,73.73315163257882)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="red" text-anchor="middle" class="shadow" x="134.40003496232035" y="83.47904679612702" transform="rotate(-37.409550588069166,134.40003496232035,83.47904679612702)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="red" text-anchor="middle" class="shadow" x="151.46727748667124" y="104.93560615738957" transform="rotate(-37.28763350606124,151.46727748667124,104.93560615738957)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="red" text-anchor="middle" class="shadow" x="201.515642027808" y="170.18616673499966" transform="rotate(-37.18607864616928,201.515642027808,170.18616673499966)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="red" text-anchor="middle" class="shadow" x="144.22020331917565" y="93.23155119898149" transform="rotate(-36.994449004296314,144.22020331917565,93.23155119898149)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="red" text-anchor="middle" class="shadow" x="161.27504320252564" y="114.70372171827623" transform="rotate(-36.82093625823161,161.27504320252564,114.70372171827623)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="red" text-anchor="middle" class="shadow" x="211.34600295372212" y="179.9474191272603" transform="rotate(-36.444374886460764,211.34600295372212,179.9474191272603)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="red" text-anchor="middle" class="shadow" x="171.09745585118367" y="124.48253212629027" transform="rotate(-36.29409375717327,171.09745585118367,124.48253212629027)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="red" text-anchor="middle" class="shadow" x="180.9374559343852" y="134.27442230306994" transform="rotate(-35.694672618004276,180.9374559343852,134.27442230306994)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="red" text-anchor="middle" class="shadow" x="133.4993713809261" y="67.100808413279" transform="rotate(-35.56113871011257,133.4993713809261,67.100808413279)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="red" text-anchor="middle" class="shadow" x="221.20524579507935" y="189.7249827802479" transform="rotate(-35.54692617864973,221.20524579507935,189.7249827802479)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="red" text-anchor="middle" class="shadow" x="143.3711230223576" y="76.90345925246416" transform="rotate(-35.07145367631483,143.3711230223576,76.90345925246416)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="red" text-anchor="middle" class="shadow" x="190.79882453858028" y="144.0825381237634" transform="rotate(-35.00655684057524,190.79882453858028,144.0825381237634)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="red" text-anchor="middle" class="shadow" x="160.36883655467622" y="98.46780506005541" transform="rotate(-34.71607257460876,160.36883655467622,98.46780506005541)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="red" text-anchor="middle" class="shadow" x="153.26209979744016" y="86.71960915817459" transform="rotate(-34.52815240400989,153.26209979744016,86.71960915817459)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="red" text-anchor="middle" class="shadow" x="231.1033931002987" y="199.52524859704204" transform="rotate(-34.438847544995355,231.1033931002987,199.52524859704204)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="red" text-anchor="middle" class="shadow" x="200.686505341571" y="153.91111401361215" transform="rotate(-34.20847443372716,200.686505341571,153.91111401361215)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="red" text-anchor="middle" class="shadow" x="170.2496060478032" y="108.31233828759613" transform="rotate(-34.093459498362634,170.2496060478032,108.31233828759613)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="red" text-anchor="middle" class="shadow" x="180.1536725969828" y="118.17836975528718" transform="rotate(-33.39056625659943,180.1536725969828,118.17836975528718)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="red" text-anchor="middle" class="shadow" x="142.65679705724583" y="60.81887770977784" transform="rotate(-33.33856754073054,142.65679705724583,60.81887770977784)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="red" text-anchor="middle" class="shadow" x="210.60708594456042" y="163.7659844648741" transform="rotate(-33.27175457815146,210.60708594456042,163.7659844648741)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="red" text-anchor="middle" class="shadow" x="152.60300131247394" y="70.69933193576648" transform="rotate(-32.733356764560526,152.60300131247394,70.69933193576648)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="red" text-anchor="middle" class="shadow" x="190.08558252860317" y="128.0707199623021" transform="rotate(-32.59078804252567,190.08558252860317,128.0707199623021)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="red" text-anchor="middle" class="shadow" x="220.56953791511046" y="173.6554114357561" transform="rotate(-32.15680137040657,220.56953791511046,173.6554114357561)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="red" text-anchor="middle" class="shadow" x="169.55162314772468" y="92.40590475879759" transform="rotate(-32.144511643156235,169.55162314772468,92.40590475879759)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="red" text-anchor="middle" class="shadow" x="162.57584079723185" y="80.60278729913054" transform="rotate(-32.061855803723475,162.57584079723185,80.60278729913054)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="red" text-anchor="middle" class="shadow" x="200.05113545125693" y="137.99575278561247" transform="rotate(-31.672599046234737,200.05113545125693,137.99575278561247)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="red" text-anchor="middle" class="shadow" x="179.51813923927006" y="102.35525402593865" transform="rotate(-31.3659827384936,179.51813923927006,102.35525402593865)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="red" text-anchor="middle" class="shadow" x="152.05095617695517" y="54.896811109807004" transform="rotate(-31.115996371348515,152.05095617695517,54.896811109807004)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="red" text-anchor="middle" class="shadow" x="230.5863917431233" y="183.59147925606425" transform="rotate(-30.807336021496454,230.5863917431233,183.59147925606425)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="red" text-anchor="middle" class="shadow" x="210.05784197423685" y="147.9620407934838" transform="rotate(-30.607582388071677,210.05784197423685,147.9620407934838)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="red" text-anchor="middle" class="shadow" x="189.5175970747733" y="112.34103788866332" transform="rotate(-30.487038756025555,189.5175970747733,112.34103788866332)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="red" text-anchor="middle" class="shadow" x="162.08029856965723" y="64.87699484278528" transform="rotate(-30.39525985280619,162.08029856965723,64.87699484278528)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="red" text-anchor="middle" class="shadow" x="172.14417181605216" y="74.89241755797025" transform="rotate(-29.595559203437077,172.14417181605216,74.89241755797025)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="red" text-anchor="middle" class="shadow" x="178.9971424521747" y="86.76211437067008" transform="rotate(-29.572950711703754,178.9971424521747,86.76211437067008)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="red" text-anchor="middle" class="shadow" x="199.55619768037505" y="122.37145759216025" transform="rotate(-29.486903467047043,199.55619768037505,122.37145759216025)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="red" text-anchor="middle" class="shadow" x="220.11559363019703" y="157.98140371383622" transform="rotate(-29.357430510133653,220.11559363019703,157.98140371383622)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="red" text-anchor="middle" class="shadow" x="240.67567222760746" y="193.59256489261708" transform="rotate(-29.14056330730378,240.67567222760746,193.59256489261708)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="red" text-anchor="middle" class="shadow" x="161.66771459511122" y="49.343518761322656" transform="rotate(-28.89342520196645,161.66771459511122,49.343518761322656)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="red" text-anchor="middle" class="shadow" x="189.05964342711292" y="96.84596566398227" transform="rotate(-28.63850597862458,189.05964342711292,96.84596566398227)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="red" text-anchor="middle" class="shadow" x="209.64176837348367" y="132.45734388696036" transform="rotate(-28.338641251894217,209.64176837348367,132.45734388696036)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="red" text-anchor="middle" class="shadow" x="171.7872349033796" y="59.446142281872085" transform="rotate(-28.05716294105187,171.7872349033796,59.446142281872085)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="red" text-anchor="middle" class="shadow" x="230.23766555659589" y="168.07058682957114" transform="rotate(-27.869227854352346,230.23766555659589,168.07058682957114)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="red" text-anchor="middle" class="shadow" x="199.16518722981687" y="106.98552398734878" transform="rotate(-27.583511255451697,199.16518722981687,106.98552398734878)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="red" text-anchor="middle" class="shadow" x="181.94936670159836" y="69.59907888347203" transform="rotate(-27.12926260315065,181.94936670159836,69.59907888347203)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="red" text-anchor="middle" class="shadow" x="219.78431508955344" y="142.6132892383808" transform="rotate(-27.006690342416192,219.78431508955344,142.6132892383808)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="red" text-anchor="middle" class="shadow" x="188.68637049120565" y="81.54780090833248" transform="rotate(-27.001389780251245,188.68637049120565,81.54780090833248)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="red" text-anchor="middle" class="shadow" x="171.49260325113852" y="44.167355966589895" transform="rotate(-26.670854032584415,171.49260325113852,44.167355966589895)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="red" text-anchor="middle" class="shadow" x="209.32151463442614" y="117.19335681063717" transform="rotate(-26.383018891568383,209.32151463442614,117.19335681063717)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="red" text-anchor="middle" class="shadow" x="240.44225303438435" y="178.2540863543661" transform="rotate(-26.067745864343138,240.44225303438435,178.2540863543661)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="red" text-anchor="middle" class="shadow" x="198.85250080190698" y="91.79695537891146" transform="rotate(-25.91102921875556,198.85250080190698,91.79695537891146)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="red" text-anchor="middle" class="shadow" x="181.7076480694325" y="54.415816731758724" transform="rotate(-25.719066029297537,181.7076480694325,54.415816731758724)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="red" text-anchor="middle" class="shadow" x="229.9968030220901" y="152.85941251639593" transform="rotate(-25.44310644211582,229.9968030220901,152.85941251639593)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="red" text-anchor="middle" class="shadow" x="219.53825948270722" y="127.48605867057779" transform="rotate(-25.004683457553753,219.53825948270722,127.48605867057779)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="red" text-anchor="middle" class="shadow" x="209.07167269033712" y="102.12557843545568" transform="rotate(-24.67998375487784,209.07167269033712,102.12557843545568)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="red" text-anchor="middle" class="shadow" x="191.9732604909771" y="64.73257763866243" transform="rotate(-24.66296600286421,191.9732604909771,64.73257763866243)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="red" text-anchor="middle" class="shadow" x="181.51083993850352" y="39.37611061106446" transform="rotate(-24.44828286320238,181.51083993850352,39.37611061106446)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="red" text-anchor="middle" class="shadow" x="198.59979244052147" y="76.77346638604726" transform="rotate(-24.42982884879875,198.59979244052147,76.77346638604726)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="red" text-anchor="middle" class="shadow" x="250.7548820260475" y="188.56914041653593" transform="rotate(-23.842279069612175,250.7548820260475,188.56914041653593)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="red" text-anchor="middle" class="shadow" x="240.29627088668963" y="163.22420500522927" transform="rotate(-23.58165433829815,240.29627088668963,163.22420500522927)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="red" text-anchor="middle" class="shadow" x="229.82751972230102" y="137.88597888618767" transform="rotate(-23.405798296760693,229.82751972230102,137.88597888618767)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="red" text-anchor="middle" class="shadow" x="191.82502038038794" y="49.79439378564902" transform="rotate(-23.38096911754323,191.82502038038794,49.79439378564902)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="red" text-anchor="middle" class="shadow" x="219.35288198131423" y="112.55161014925272" transform="rotate(-23.279134316089753,219.35288198131423,112.55161014925272)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="red" text-anchor="middle" class="shadow" x="208.87452407323292" y="87.21966251403924" transform="rotate(-23.18355245888658,208.87452407323292,87.21966251403924)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="red" text-anchor="middle" class="shadow" x="191.70735154554177" y="34.97699144599926" transform="rotate(-22.225711693820358,191.70735154554177,34.97699144599926)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="red" text-anchor="middle" class="shadow" x="202.19728306285492" y="60.30192943369133" transform="rotate(-22.196669402577797,202.19728306285492,60.30192943369133)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="red" text-anchor="middle" class="shadow" x="208.71744193265204" y="72.44872666783894" transform="rotate(-21.85826791734624,208.71744193265204,72.44872666783894)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="red" text-anchor="middle" class="shadow" x="219.21161836592213" y="97.7736792359047" transform="rotate(-21.77645625430395,219.21161836592213,97.7736792359047)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="red" text-anchor="middle" class="shadow" x="229.7071096413971" y="123.09872469335667" transform="rotate(-21.67072566321326,229.7071096413971,123.09872469335667)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="red" text-anchor="middle" class="shadow" x="240.20461321309628" y="148.42390758713725" transform="rotate(-21.528782374098014,240.20461321309628,148.42390758713725)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="red" text-anchor="middle" class="shadow" x="250.70542604739578" y="173.74930617275143" transform="rotate(-21.328155707189836,250.70542604739578,173.74930617275143)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="red" text-anchor="middle" class="shadow" x="202.12250620788117" y="45.589568205688096" transform="rotate(-21.042872205788896,202.12250620788117,45.589568205688096)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="red" text-anchor="middle" class="shadow" x="219.10300673854485" y="83.12445766113845" transform="rotate(-20.456075699017575,219.10300673854485,83.12445766113845)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="red" text-anchor="middle" class="shadow" x="229.62086772057557" y="108.45983647821313" transform="rotate(-20.17524974061112,229.62086772057557,108.45983647821313)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="red" text-anchor="middle" class="shadow" x="202.06679673396692" y="30.976617242387476" transform="rotate(-20.003140524438308,202.06679673396692,30.976617242387476)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="red" text-anchor="middle" class="shadow" x="240.14780029331507" y="133.79877551508608" transform="rotate(-19.80490625110521,240.14780029331507,133.79877551508608)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="yellow" text-anchor="middle" class="shadow" x="212.60249354019686" y="56.31534242364194" transform="rotate(-19.730372802291356,212.60249354019686,56.31534242364194)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="yellow" text-anchor="middle" class="shadow" x="250.68905331007406" y="159.14339240550188" transform="rotate(-19.29408082224394,250.68905331007406,159.14339240550188)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="yellow" text-anchor="middle" class="shadow" x="219.01894127070193" y="68.5822921004347" transform="rotate(-19.28670698589376,219.01894127070193,68.5822921004347)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="yellow" text-anchor="middle" class="shadow" x="229.55898975260348" y="93.94099997291471" transform="rotate(-18.872928753730093,229.55898975260348,93.94099997291471)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="yellow" text-anchor="middle" class="shadow" x="212.58296003092022" y="41.80834111102888" transform="rotate(-18.70477529403459,212.58296003092022,41.80834111102888)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="yellow" text-anchor="middle" class="shadow" x="261.254894918966" y="184.49790069423923" transform="rotate(-18.54399483192057,261.254894918966,184.49790069423923)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="yellow" text-anchor="middle" class="shadow" x="240.1138977899838" y="119.31019286585388" transform="rotate(-18.33676786887274,240.1138977899838,119.31019286585388)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="yellow" text-anchor="middle" class="shadow" x="212.57358902094984" y="27.381006832581363" transform="rotate(-17.780569355056272,212.57358902094984,27.381006832581363)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="yellow" text-anchor="middle" class="shadow" x="229.5147745283975" y="79.5206191642028" transform="rotate(-17.728598939148554,229.5147745283975,79.5206191642028)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="yellow" text-anchor="middle" class="shadow" x="250.6913995359218" y="144.69558283029406" transform="rotate(-17.614458306080195,250.6913995359218,144.69558283029406)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="yellow" text-anchor="middle" class="shadow" x="223.16961537986185" y="52.78020210221851" transform="rotate(-17.26407620200493,223.16961537986185,52.78020210221851)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="yellow" text-anchor="middle" class="shadow" x="240.09534561412218" y="104.93004104868916" transform="rotate(-17.07136516513249,240.09534561412218,104.93004104868916)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="yellow" text-anchor="middle" class="shadow" x="229.4835424705418" y="65.18194996997642" transform="rotate(-16.71514605444125,229.4835424705418,65.18194996997642)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="yellow" text-anchor="middle" class="shadow" x="261.30572158119656" y="170.10794662228724" transform="rotate(-16.588565550036535,261.30572158119656,170.10794662228724)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="yellow" text-anchor="middle" class="shadow" x="223.18896498352305" y="38.457008320827015" transform="rotate(-16.366678382280256,223.18896498352305,38.457008320827015)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="yellow" text-anchor="middle" class="shadow" x="250.70440718948416" y="130.3678174417559" transform="rotate(-16.204014205449695,250.70440718948416,130.3678174417559)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="yellow" text-anchor="middle" class="shadow" x="240.08721977694267" y="90.63738112361173" transform="rotate(-15.969401253156235,240.08721977694267,90.63738112361173)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="yellow" text-anchor="middle" class="shadow" x="223.21192023002888" y="24.19557005454834" transform="rotate(-15.557998185674236,223.21192023002888,24.19557005454834)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="yellow" text-anchor="middle" class="shadow" x="261.3578417564823" y="155.8509903857467" transform="rotate(-15.006507306189746,261.3578417564823,155.8509903857467)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="yellow" text-anchor="middle" class="shadow" x="250.72339746046012" y="116.13328718268855" transform="rotate(-15.002810074532249,250.72339746046012,116.13328718268855)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="yellow" text-anchor="middle" class="shadow" x="240.08623791147292" y="76.41631209786647" transform="rotate(-15.001122179279548,240.08623791147292,76.41631209786647)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="yellow" text-anchor="middle" class="shadow" x="233.8790720840507" y="49.70305761949021" transform="rotate(-14.797779601718517,233.8790720840507,49.70305761949021)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="yellow" text-anchor="middle" class="shadow" x="240.09016904878945" y="62.25454881785009" transform="rotate(-14.143585122988753,240.09016904878945,62.25454881785009)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="yellow" text-anchor="middle" class="shadow" x="233.92286185414957" y="35.541149871575385" transform="rotate(-14.02858147052595,233.92286185414957,35.541149871575385)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="yellow" text-anchor="middle" class="shadow" x="250.74558357653055" y="101.97258026944587" transform="rotate(-13.967480589653846,250.74558357653055,101.97258026944587)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="yellow" text-anchor="middle" class="shadow" x="261.4082357566084" y="141.69183279208022" transform="rotate(-13.700134238062375,261.4082357566084,141.69183279208022)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="yellow" text-anchor="middle" class="shadow" x="233.9657842755778" y="21.425099612410577" transform="rotate(-13.335427016292215,233.9657842755778,21.425099612410577)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="yellow" text-anchor="middle" class="shadow" x="272.0859875368354" y="181.41363476358472" transform="rotate(-13.245710594228981,272.0859875368354,181.41363476358472)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="yellow" text-anchor="middle" class="shadow" x="250.7692770074984" y="87.87130479241668" transform="rotate(-13.065873752582391,250.7692770074984,87.87130479241668)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="yellow" text-anchor="middle" class="shadow" x="261.45565766353906" y="127.60665179925485" transform="rotate(-12.60312215979421,261.45565766353906,127.60665179925485)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="yellow" text-anchor="middle" class="shadow" x="244.7110234674429" y="47.08960964902886" transform="rotate(-12.331483001432105,244.7110234674429,47.08960964902886)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="yellow" text-anchor="middle" class="shadow" x="250.79344554045142" y="73.81856976812043" transform="rotate(-12.273645419410528,250.79344554045142,73.81856976812043)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="yellow" text-anchor="middle" class="shadow" x="272.17064487490495" y="167.3549107341254" transform="rotate(-11.848975392883247,272.17064487490495,167.3549107341254)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="yellow" text-anchor="middle" class="shadow" x="244.76677848864423" y="33.065620726231714" transform="rotate(-11.690484558771615,244.76677848864423,33.065620726231714)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="yellow" text-anchor="middle" class="shadow" x="261.4996960162491" y="113.57876131394752" transform="rotate(-11.668852280191743,261.4996960162491,113.57876131394752)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="yellow" text-anchor="middle" class="shadow" x="250.81745847241106" y="59.805984647215865" transform="rotate(-11.572024191536244,250.81745847241106,59.805984647215865)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="yellow" text-anchor="middle" class="shadow" x="244.81900124503824" y="19.073763865494698" transform="rotate(-11.112855846910179,244.81900124503824,19.073763865494698)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="yellow" text-anchor="middle" class="shadow" x="261.54033384288397" y="99.59613132117238" transform="rotate(-10.863596014175215,261.54033384288397,99.59613132117238)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="yellow" text-anchor="middle" class="shadow" x="272.24292027910667" y="153.3654273649796" transform="rotate(-10.718933790135523,272.24292027910667,153.3654273649796)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="yellow" text-anchor="middle" class="shadow" x="261.577735058543" y="85.6498729330801" transform="rotate(-10.162346252008518,261.577735058543,85.6498729330801)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="yellow" text-anchor="middle" class="shadow" x="255.64540241283834" y="44.94469982692138" transform="rotate(-9.865186401145678,255.64540241283834,44.94469982692138)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="yellow" text-anchor="middle" class="shadow" x="272.30512234049564" y="139.4266715062142" transform="rotate(-9.785810170044542,272.30512234049564,139.4266715062142)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="yellow" text-anchor="middle" class="shadow" x="261.61213851763273" y="71.73327777722426" transform="rotate(-9.546168659541536,261.61213851763273,71.73327777722426)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="yellow" text-anchor="middle" class="shadow" x="255.70265954773254" y="31.03454269060785" transform="rotate(-9.35238764701728,255.70265954773254,31.03454269060785)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="yellow" text-anchor="middle" class="shadow" x="272.359100418321" y="125.52618104618332" transform="rotate(-9.002230114138726,272.359100418321,125.52618104618332)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="yellow" text-anchor="middle" class="shadow" x="261.64380518444796" y="57.8411890480173" transform="rotate(-9.000463260083748,261.64380518444796,57.8411890480173)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="yellow" text-anchor="middle" class="shadow" x="255.75524174268818" y="17.145100556757143" transform="rotate(-8.890284677528143,255.75524174268818,17.145100556757143)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="yellow" text-anchor="middle" class="shadow" x="272.40631621471874" y="111.65526220453805" transform="rotate(-8.334894485851251,272.40631621471874,111.65526220453805)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="yellow" text-anchor="middle" class="shadow" x="283.1556074099348" y="179.34269790000295" transform="rotate(-7.947426356537406,283.1556074099348,179.34269790000295)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="yellow" text-anchor="middle" class="shadow" x="272.44792464961716" y="97.80766669766021" transform="rotate(-7.759711438696584,272.44792464961716,97.80766669766021)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="yellow" text-anchor="middle" class="shadow" x="266.6619520472103" y="43.27230178222703" transform="rotate(-7.398889800859251,266.6619520472103,43.27230178222703)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="yellow" text-anchor="middle" class="shadow" x="272.48484300783053" y="83.97878911428046" transform="rotate(-7.25881875143466,272.48484300783053,83.97878911428046)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="yellow" text-anchor="middle" class="shadow" x="283.22589139487235" y="165.50902634922357" transform="rotate(-7.109385235729945,283.22589139487235,165.50902634922357)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="yellow" text-anchor="middle" class="shadow" x="266.71229656952295" y="29.451297550479865" transform="rotate(-7.014290735262946,266.71229656952295,29.451297550479865)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="yellow" text-anchor="middle" class="shadow" x="272.51780535736447" y="70.16516068893418" transform="rotate(-6.818691899672515,272.51780535736447,70.16516068893418)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="yellow" text-anchor="middle" class="shadow" x="266.7580514583172" y="15.642011490011157" transform="rotate(-6.667713508146093,266.7580514583172,15.642011490011157)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="yellow" text-anchor="middle" class="shadow" x="283.28336230007733" y="151.70061567728402" transform="rotate(-6.431360274081314,283.28336230007733,151.70061567728402)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="yellow" text-anchor="middle" class="shadow" x="272.5474041192115" y="56.36411926439774" transform="rotate(-6.428902328631253,272.5474041192115,56.36411926439774)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="yellow" text-anchor="middle" class="shadow" x="283.33121972568097" y="137.91066711126666" transform="rotate(-5.871486102026722,283.33121972568097,137.91066711126666)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="yellow" text-anchor="middle" class="shadow" x="283.37168322566794" y="124.13461991834177" transform="rotate(-5.401338068483241,283.37168322566794,124.13461991834177)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="yellow" text-anchor="middle" class="shadow" x="283.4063396808621" y="110.3693008047047" transform="rotate(-5.000936691510731,283.4063396808621,110.3693008047047)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="yellow" text-anchor="middle" class="shadow" x="277.7402632692968" y="42.075513775488844" transform="rotate(-4.932593200572853,277.7402632692968,42.075513775488844)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="yellow" text-anchor="middle" class="shadow" x="277.777358286963" y="28.318521440845473" transform="rotate(-4.67619382350864,277.777358286963,28.318521440845473)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="yellow" text-anchor="middle" class="shadow" x="283.4363531593723" y="96.6124337485287" transform="rotate(-4.655826863217953,283.4363531593723,96.6124337485287)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="yellow" text-anchor="middle" class="shadow" x="277.8108759238435" y="14.566758163965858" transform="rotate(-4.445142338764057,277.8108759238435,14.566758163965858)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="yellow" text-anchor="middle" class="shadow" x="283.46259664761953" y="82.86234387560285" transform="rotate(-4.355291250860802,283.46259664761953,82.86234387560285)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="yellow" text-anchor="middle" class="shadow" x="283.48573752074583" y="69.11777132424086" transform="rotate(-4.091215139803509,283.48573752074583,69.11777132424086)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="blue" text-anchor="middle" class="shadow" x="283.5062946193038" y="55.3777502245116" transform="rotate(-3.8573413971787573,283.5062946193038,55.3777502245116)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="blue" text-anchor="middle" class="shadow" x="294.36916383589744" y="178.3027864087627" transform="rotate(-2.649142118845802,294.36916383589744,178.3027864087627)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="blue" text-anchor="middle" class="shadow" x="288.85981255920717" y="41.35655295893872" transform="rotate(-2.4662966002864266,288.85981255920717,41.35655295893872)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="blue" text-anchor="middle" class="shadow" x="294.39585499876046" y="164.5829173559129" transform="rotate(-2.3697950785766437,294.39585499876046,164.5829173559129)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="blue" text-anchor="middle" class="shadow" x="288.87942114976755" y="27.63810045670823" transform="rotate(-2.338096911754306,288.87942114976755,27.63810045670823)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="blue" text-anchor="middle" class="shadow" x="288.8970854206271" y="13.920958369652737" transform="rotate(-2.222571169382036,288.8970854206271,13.920958369652737)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="blue" text-anchor="middle" class="shadow" x="294.4173716321543" y="150.8658737009075" transform="rotate(-2.143786758027119,294.4173716321543,150.8658737009075)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="blue" text-anchor="middle" class="shadow" x="294.43508551563707" y="137.15089254487782" transform="rotate(-1.9571620340089027,294.43508551563707,137.15089254487782)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="blue" text-anchor="middle" class="shadow" x="294.449922918076" y="123.43746299285806" transform="rotate(-1.8004460228277281,294.449922918076,123.43746299285806)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="blue" text-anchor="middle" class="shadow" x="294.4625318741873" y="109.72523003078152" transform="rotate(-1.666978897170253,294.4625318741873,109.72523003078152)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="blue" text-anchor="middle" class="shadow" x="294.4733793572227" y="96.01393928351743" transform="rotate(-1.5519422877393225,294.4733793572227,96.01393928351743)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="blue" text-anchor="middle" class="shadow" x="294.4828103860102" y="82.30340371149671" transform="rotate(-1.4517637502869292,294.4828103860102,82.30340371149671)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="blue" text-anchor="middle" class="shadow" x="294.4910853967907" y="68.59348271188702" transform="rotate(-1.3637383799345173,294.4910853967907,68.59348271188702)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="blue" text-anchor="middle" class="shadow" x="294.49840466601137" y="54.88406854880364" transform="rotate(-1.2857804657262477,294.49840466601137,54.88406854880364)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="blue" text-anchor="middle" class="shadow" x="300" y="27.411167512690383" transform="rotate(0,300,27.411167512690383)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="blue" text-anchor="middle" class="shadow" x="300" y="41.11675126903555" transform="rotate(0,300,41.11675126903555)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="blue" text-anchor="middle" class="shadow" x="300" y="13.70558375634522" transform="rotate(0,300,13.70558375634522)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="blue" text-anchor="middle" class="shadow" x="305.5015953339886" y="54.88406854880367" transform="rotate(1.2857804657262477,305.5015953339886,54.88406854880367)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="blue" text-anchor="middle" class="shadow" x="305.5089146032093" y="68.59348271188702" transform="rotate(1.3637383799345173,305.5089146032093,68.59348271188702)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="blue" text-anchor="middle" class="shadow" x="305.51718961398973" y="82.30340371149671" transform="rotate(1.4517637502869292,305.51718961398973,82.30340371149671)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="blue" text-anchor="middle" class="shadow" x="305.5266206427773" y="96.01393928351743" transform="rotate(1.5519422877393225,305.5266206427773,96.01393928351743)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="blue" text-anchor="middle" class="shadow" x="305.53746812581267" y="109.72523003078152" transform="rotate(1.666978897170253,305.53746812581267,109.72523003078152)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="blue" text-anchor="middle" class="shadow" x="305.550077081924" y="123.43746299285806" transform="rotate(1.8004460228277424,305.550077081924,123.43746299285806)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="blue" text-anchor="middle" class="shadow" x="305.56491448436293" y="137.15089254487782" transform="rotate(1.9571620340089169,305.56491448436293,137.15089254487782)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="blue" text-anchor="middle" class="shadow" x="305.58262836784576" y="150.8658737009075" transform="rotate(2.1437867580271046,305.58262836784576,150.8658737009075)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="blue" text-anchor="middle" class="shadow" x="311.10291457937296" y="13.920958369652737" transform="rotate(2.22257116938205,311.10291457937296,13.920958369652737)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="blue" text-anchor="middle" class="shadow" x="311.1205788502324" y="27.63810045670823" transform="rotate(2.33809691175432,311.1205788502324,27.63810045670823)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="blue" text-anchor="middle" class="shadow" x="305.60414500123954" y="164.5829173559129" transform="rotate(2.3697950785766437,305.60414500123954,164.5829173559129)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="blue" text-anchor="middle" class="shadow" x="311.1401874407929" y="41.35655295893878" transform="rotate(2.4662966002864266,311.1401874407929,41.35655295893878)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="blue" text-anchor="middle" class="shadow" x="305.63083616410256" y="178.3027864087627" transform="rotate(2.6491421188457878,305.63083616410256,178.3027864087627)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="blue" text-anchor="middle" class="shadow" x="316.4937053806961" y="55.37775022451166" transform="rotate(3.857341397178743,316.4937053806961,55.37775022451166)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="blue" text-anchor="middle" class="shadow" x="316.5142624792541" y="69.11777132424086" transform="rotate(4.091215139803509,316.5142624792541,69.11777132424086)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="blue" text-anchor="middle" class="shadow" x="316.53740335238047" y="82.86234387560285" transform="rotate(4.3552912508607875,316.53740335238047,82.86234387560285)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="blue" text-anchor="middle" class="shadow" x="322.1891240761566" y="14.566758163965858" transform="rotate(4.445142338764072,322.1891240761566,14.566758163965858)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="blue" text-anchor="middle" class="shadow" x="316.5636468406277" y="96.6124337485287" transform="rotate(4.655826863217939,316.5636468406277,96.6124337485287)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="blue" text-anchor="middle" class="shadow" x="322.2226417130371" y="28.31852144084553" transform="rotate(4.676193823508655,322.2226417130371,28.31852144084553)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="blue" text-anchor="middle" class="shadow" x="322.25973673070325" y="42.075513775488844" transform="rotate(4.932593200572853,322.25973673070325,42.075513775488844)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="blue" text-anchor="middle" class="shadow" x="316.5936603191378" y="110.3693008047047" transform="rotate(5.000936691510745,316.5936603191378,110.3693008047047)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="blue" text-anchor="middle" class="shadow" x="316.628316774332" y="124.13461991834174" transform="rotate(5.401338068483227,316.628316774332,124.13461991834174)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="blue" text-anchor="middle" class="shadow" x="316.66878027431903" y="137.91066711126666" transform="rotate(5.871486102026736,316.66878027431903,137.91066711126666)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="blue" text-anchor="middle" class="shadow" x="327.4525958807884" y="56.36411926439774" transform="rotate(6.428902328631239,327.4525958807884,56.36411926439774)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="blue" text-anchor="middle" class="shadow" x="316.71663769992267" y="151.70061567728402" transform="rotate(6.431360274081314,316.71663769992267,151.70061567728402)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="blue" text-anchor="middle" class="shadow" x="333.24194854168286" y="15.642011490011157" transform="rotate(6.667713508146107,333.24194854168286,15.642011490011157)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="blue" text-anchor="middle" class="shadow" x="327.4821946426356" y="70.16516068893418" transform="rotate(6.818691899672544,327.4821946426356,70.16516068893418)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="blue" text-anchor="middle" class="shadow" x="333.2877034304771" y="29.451297550479865" transform="rotate(7.014290735262975,333.2877034304771,29.451297550479865)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="blue" text-anchor="middle" class="shadow" x="316.7741086051276" y="165.50902634922357" transform="rotate(7.109385235729945,316.7741086051276,165.50902634922357)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="blue" text-anchor="middle" class="shadow" x="327.51515699216947" y="83.97878911428046" transform="rotate(7.25881875143466,327.51515699216947,83.97878911428046)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="blue" text-anchor="middle" class="shadow" x="333.3380479527898" y="43.27230178222709" transform="rotate(7.39888980085928,333.3380479527898,43.27230178222709)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="blue" text-anchor="middle" class="shadow" x="327.5520753503827" y="97.80766669766018" transform="rotate(7.759711438696584,327.5520753503827,97.80766669766018)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="blue" text-anchor="middle" class="shadow" x="316.84439259006507" y="179.34269790000295" transform="rotate(7.9474263565373775,316.84439259006507,179.34269790000295)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="blue" text-anchor="middle" class="shadow" x="327.59368378528126" y="111.65526220453805" transform="rotate(8.334894485851251,327.59368378528126,111.65526220453805)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="blue" text-anchor="middle" class="shadow" x="344.24475825731173" y="17.145100556757143" transform="rotate(8.890284677528143,344.24475825731173,17.145100556757143)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="blue" text-anchor="middle" class="shadow" x="338.356194815552" y="57.8411890480173" transform="rotate(9.000463260083748,338.356194815552,57.8411890480173)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="blue" text-anchor="middle" class="shadow" x="327.640899581679" y="125.52618104618332" transform="rotate(9.002230114138726,327.640899581679,125.52618104618332)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="blue" text-anchor="middle" class="shadow" x="344.2973404522675" y="31.034542690607907" transform="rotate(9.352387647017295,344.2973404522675,31.034542690607907)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="blue" text-anchor="middle" class="shadow" x="338.38786148236727" y="71.73327777722426" transform="rotate(9.546168659541536,338.38786148236727,71.73327777722426)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="blue" text-anchor="middle" class="shadow" x="327.69487765950436" y="139.4266715062142" transform="rotate(9.78581017004457,327.69487765950436,139.4266715062142)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="blue" text-anchor="middle" class="shadow" x="344.3545975871617" y="44.94469982692138" transform="rotate(9.865186401145692,344.3545975871617,44.94469982692138)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="blue" text-anchor="middle" class="shadow" x="338.42226494145706" y="85.6498729330801" transform="rotate(10.162346252008518,338.42226494145706,85.6498729330801)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="blue" text-anchor="middle" class="shadow" x="327.75707972089333" y="153.3654273649796" transform="rotate(10.718933790135523,327.75707972089333,153.3654273649796)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="blue" text-anchor="middle" class="shadow" x="338.45966615711603" y="99.59613132117238" transform="rotate(10.863596014175215,338.45966615711603,99.59613132117238)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="blue" text-anchor="middle" class="shadow" x="355.18099875496176" y="19.073763865494698" transform="rotate(11.112855846910179,355.18099875496176,19.073763865494698)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="blue" text-anchor="middle" class="shadow" x="349.18254152758885" y="59.805984647215865" transform="rotate(11.572024191536244,349.18254152758885,59.805984647215865)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="blue" text-anchor="middle" class="shadow" x="338.50030398375094" y="113.57876131394752" transform="rotate(11.668852280191757,338.50030398375094,113.57876131394752)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="blue" text-anchor="middle" class="shadow" x="355.23322151135574" y="33.065620726231714" transform="rotate(11.690484558771615,355.23322151135574,33.065620726231714)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="blue" text-anchor="middle" class="shadow" x="327.829355125095" y="167.3549107341254" transform="rotate(11.848975392883247,327.829355125095,167.3549107341254)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="blue" text-anchor="middle" class="shadow" x="349.20655445954856" y="73.81856976812043" transform="rotate(12.273645419410528,349.20655445954856,73.81856976812043)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="blue" text-anchor="middle" class="shadow" x="355.28897653255723" y="47.08960964902889" transform="rotate(12.331483001432133,355.28897653255723,47.08960964902889)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="blue" text-anchor="middle" class="shadow" x="338.54434233646094" y="127.60665179925485" transform="rotate(12.603122159794225,338.54434233646094,127.60665179925485)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="blue" text-anchor="middle" class="shadow" x="349.2307229925016" y="87.87130479241674" transform="rotate(13.065873752582391,349.2307229925016,87.87130479241674)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="blue" text-anchor="middle" class="shadow" x="327.9140124631646" y="181.41363476358475" transform="rotate(13.245710594228996,327.9140124631646,181.41363476358475)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="blue" text-anchor="middle" class="shadow" x="366.0342157244222" y="21.425099612410577" transform="rotate(13.3354270162922,366.0342157244222,21.425099612410577)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="blue" text-anchor="middle" class="shadow" x="338.5917642433916" y="141.69183279208025" transform="rotate(13.700134238062375,338.5917642433916,141.69183279208025)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="blue" text-anchor="middle" class="shadow" x="349.25441642346937" y="101.97258026944587" transform="rotate(13.96748058965386,349.25441642346937,101.97258026944587)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="blue" text-anchor="middle" class="shadow" x="366.07713814585037" y="35.541149871575385" transform="rotate(14.028581470525936,366.07713814585037,35.541149871575385)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="blue" text-anchor="middle" class="shadow" x="359.9098309512105" y="62.25454881785012" transform="rotate(14.143585122988739,359.9098309512105,62.25454881785012)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="blue" text-anchor="middle" class="shadow" x="366.1209279159493" y="49.70305761949027" transform="rotate(14.797779601718531,366.1209279159493,49.70305761949027)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="blue" text-anchor="middle" class="shadow" x="359.9137620885271" y="76.41631209786647" transform="rotate(15.001122179279562,359.9137620885271,76.41631209786647)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="blue" text-anchor="middle" class="shadow" x="349.27660253953985" y="116.13328718268855" transform="rotate(15.002810074532249,349.27660253953985,116.13328718268855)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="blue" text-anchor="middle" class="shadow" x="338.64215824351766" y="155.8509903857467" transform="rotate(15.006507306189718,338.64215824351766,155.8509903857467)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="blue" text-anchor="middle" class="shadow" x="376.7880797699711" y="24.19557005454834" transform="rotate(15.557998185674236,376.7880797699711,24.19557005454834)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="blue" text-anchor="middle" class="shadow" x="359.9127802230574" y="90.63738112361176" transform="rotate(15.96940125315625,359.9127802230574,90.63738112361176)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="blue" text-anchor="middle" class="shadow" x="349.2955928105159" y="130.3678174417559" transform="rotate(16.204014205449724,349.2955928105159,130.3678174417559)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="blue" text-anchor="middle" class="shadow" x="376.8110350164769" y="38.45700832082713" transform="rotate(16.36667838228027,376.8110350164769,38.45700832082713)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="blue" text-anchor="middle" class="shadow" x="338.6942784188034" y="170.10794662228724" transform="rotate(16.588565550036535,338.6942784188034,170.10794662228724)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="blue" text-anchor="middle" class="shadow" x="370.51645752945814" y="65.18194996997642" transform="rotate(16.715146054441234,370.51645752945814,65.18194996997642)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="blue" text-anchor="middle" class="shadow" x="359.90465438587773" y="104.93004104868916" transform="rotate(17.07136516513249,359.90465438587773,104.93004104868916)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="blue" text-anchor="middle" class="shadow" x="376.83038462013815" y="52.78020210221851" transform="rotate(17.264076202004958,376.83038462013815,52.78020210221851)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="blue" text-anchor="middle" class="shadow" x="349.3086004640782" y="144.69558283029406" transform="rotate(17.614458306080195,349.3086004640782,144.69558283029406)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="blue" text-anchor="middle" class="shadow" x="370.48522547160246" y="79.5206191642028" transform="rotate(17.728598939148554,370.48522547160246,79.5206191642028)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="blue" text-anchor="middle" class="shadow" x="387.4264109790501" y="27.381006832581306" transform="rotate(17.780569355056272,387.4264109790501,27.381006832581306)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="blue" text-anchor="middle" class="shadow" x="359.88610221001625" y="119.31019286585394" transform="rotate(18.336767868872755,359.88610221001625,119.31019286585394)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="blue" text-anchor="middle" class="shadow" x="338.745105081034" y="184.49790069423923" transform="rotate(18.543994831920585,338.745105081034,184.49790069423923)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="blue" text-anchor="middle" class="shadow" x="387.41703996907984" y="41.80834111102888" transform="rotate(18.70477529403459,387.41703996907984,41.80834111102888)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="blue" text-anchor="middle" class="shadow" x="370.4410102473965" y="93.94099997291471" transform="rotate(18.872928753730108,370.4410102473965,93.94099997291471)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="blue" text-anchor="middle" class="shadow" x="380.981058729298" y="68.5822921004347" transform="rotate(19.28670698589373,380.981058729298,68.5822921004347)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="blue" text-anchor="middle" class="shadow" x="349.31094668992597" y="159.14339240550188" transform="rotate(19.29408082224394,349.31094668992597,159.14339240550188)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="blue" text-anchor="middle" class="shadow" x="387.3975064598032" y="56.31534242364194" transform="rotate(19.730372802291384,387.3975064598032,56.31534242364194)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="blue" text-anchor="middle" class="shadow" x="359.8521997066849" y="133.79877551508608" transform="rotate(19.80490625110521,359.8521997066849,133.79877551508608)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="blue" text-anchor="middle" class="shadow" x="397.9332032660331" y="30.976617242387476" transform="rotate(20.003140524438308,397.9332032660331,30.976617242387476)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="blue" text-anchor="middle" class="shadow" x="370.3791322794244" y="108.45983647821316" transform="rotate(20.17524974061112,370.3791322794244,108.45983647821316)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="blue" text-anchor="middle" class="shadow" x="380.8969932614551" y="83.12445766113845" transform="rotate(20.45607569901756,380.8969932614551,83.12445766113845)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="blue" text-anchor="middle" class="shadow" x="397.87749379211886" y="45.589568205688096" transform="rotate(21.04287220578891,397.87749379211886,45.589568205688096)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="blue" text-anchor="middle" class="shadow" x="349.29457395260425" y="173.74930617275143" transform="rotate(21.328155707189836,349.29457395260425,173.74930617275143)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="blue" text-anchor="middle" class="shadow" x="359.7953867869037" y="148.42390758713725" transform="rotate(21.52878237409803,359.7953867869037,148.42390758713725)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="blue" text-anchor="middle" class="shadow" x="370.2928903586029" y="123.09872469335667" transform="rotate(21.670725663213247,370.2928903586029,123.09872469335667)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="blue" text-anchor="middle" class="shadow" x="380.78838163407795" y="97.77367923590475" transform="rotate(21.77645625430398,380.78838163407795,97.77367923590475)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="blue" text-anchor="middle" class="shadow" x="391.2825580673479" y="72.44872666783894" transform="rotate(21.85826791734624,391.2825580673479,72.44872666783894)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="blue" text-anchor="middle" class="shadow" x="397.8027169371451" y="60.301929433691384" transform="rotate(22.19666940257781,397.8027169371451,60.301929433691384)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="blue" text-anchor="middle" class="shadow" x="408.29264845445823" y="34.97699144599926" transform="rotate(22.225711693820358,408.29264845445823,34.97699144599926)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="blue" text-anchor="middle" class="shadow" x="391.12547592676714" y="87.2196625140393" transform="rotate(23.18355245888658,391.12547592676714,87.2196625140393)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="blue" text-anchor="middle" class="shadow" x="380.6471180186857" y="112.55161014925272" transform="rotate(23.279134316089753,380.6471180186857,112.55161014925272)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="blue" text-anchor="middle" class="shadow" x="408.1749796196121" y="49.79439378564905" transform="rotate(23.38096911754323,408.1749796196121,49.79439378564905)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="blue" text-anchor="middle" class="shadow" x="370.17248027769887" y="137.88597888618764" transform="rotate(23.40579829676068,370.17248027769887,137.88597888618764)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="blue" text-anchor="middle" class="shadow" x="359.7037291133104" y="163.22420500522927" transform="rotate(23.581654338298137,359.7037291133104,163.22420500522927)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="blue" text-anchor="middle" class="shadow" x="349.24511797395246" y="188.56914041653593" transform="rotate(23.84227906961216,349.24511797395246,188.56914041653593)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="blue" text-anchor="middle" class="shadow" x="401.4002075594785" y="76.77346638604726" transform="rotate(24.42982884879875,401.4002075594785,76.77346638604726)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="blue" text-anchor="middle" class="shadow" x="418.4891600614965" y="39.37611061106446" transform="rotate(24.44828286320238,418.4891600614965,39.37611061106446)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="blue" text-anchor="middle" class="shadow" x="408.0267395090229" y="64.73257763866243" transform="rotate(24.66296600286421,408.0267395090229,64.73257763866243)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="blue" text-anchor="middle" class="shadow" x="390.92832730966285" y="102.12557843545571" transform="rotate(24.67998375487784,390.92832730966285,102.12557843545571)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="blue" text-anchor="middle" class="shadow" x="380.46174051729275" y="127.48605867057779" transform="rotate(25.004683457553753,380.46174051729275,127.48605867057779)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="blue" text-anchor="middle" class="shadow" x="370.00319697790997" y="152.85941251639596" transform="rotate(25.443106442115834,370.00319697790997,152.85941251639596)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="blue" text-anchor="middle" class="shadow" x="418.2923519305676" y="54.415816731758724" transform="rotate(25.71906602929755,418.2923519305676,54.415816731758724)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="blue" text-anchor="middle" class="shadow" x="401.14749919809304" y="91.79695537891149" transform="rotate(25.911029218755587,401.14749919809304,91.79695537891149)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="blue" text-anchor="middle" class="shadow" x="359.55774696561565" y="178.25408635436614" transform="rotate(26.067745864343138,359.55774696561565,178.25408635436614)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="blue" text-anchor="middle" class="shadow" x="390.67848536557386" y="117.19335681063717" transform="rotate(26.383018891568398,390.67848536557386,117.19335681063717)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="blue" text-anchor="middle" class="shadow" x="428.5073967488614" y="44.167355966589895" transform="rotate(26.670854032584415,428.5073967488614,44.167355966589895)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="blue" text-anchor="middle" class="shadow" x="411.3136295087942" y="81.54780090833248" transform="rotate(27.001389780251223,411.3136295087942,81.54780090833248)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="blue" text-anchor="middle" class="shadow" x="380.2156849104465" y="142.61328923838076" transform="rotate(27.006690342416178,380.2156849104465,142.61328923838076)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="blue" text-anchor="middle" class="shadow" x="418.05063329840164" y="69.59907888347203" transform="rotate(27.129262603150657,418.05063329840164,69.59907888347203)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="blue" text-anchor="middle" class="shadow" x="400.83481277018313" y="106.98552398734878" transform="rotate(27.583511255451697,400.83481277018313,106.98552398734878)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="blue" text-anchor="middle" class="shadow" x="369.7623344434041" y="168.07058682957114" transform="rotate(27.869227854352346,369.7623344434041,168.07058682957114)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="blue" text-anchor="middle" class="shadow" x="428.2127650966204" y="59.44614228187211" transform="rotate(28.057162941051885,428.2127650966204,59.44614228187211)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="blue" text-anchor="middle" class="shadow" x="390.3582316265164" y="132.45734388696042" transform="rotate(28.338641251894238,390.3582316265164,132.45734388696042)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="blue" text-anchor="middle" class="shadow" x="410.94035657288714" y="96.8459656639823" transform="rotate(28.638505978624593,410.94035657288714,96.8459656639823)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="blue" text-anchor="middle" class="shadow" x="438.3322854048888" y="49.343518761322656" transform="rotate(28.89342520196646,438.3322854048888,49.343518761322656)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="blue" text-anchor="middle" class="shadow" x="359.3243277723925" y="193.59256489261705" transform="rotate(29.140563307303758,359.3243277723925,193.59256489261705)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="blue" text-anchor="middle" class="shadow" x="379.8844063698029" y="157.98140371383622" transform="rotate(29.357430510133646,379.8844063698029,157.98140371383622)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="blue" text-anchor="middle" class="shadow" x="400.44380231962487" y="122.37145759216017" transform="rotate(29.48690346704702,400.44380231962487,122.37145759216017)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="blue" text-anchor="middle" class="shadow" x="421.0028575478252" y="86.76211437067008" transform="rotate(29.572950711703726,421.0028575478252,86.76211437067008)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="blue" text-anchor="middle" class="shadow" x="427.8558281839479" y="74.89241755797025" transform="rotate(29.595559203437077,427.8558281839479,74.89241755797025)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="blue" text-anchor="middle" class="shadow" x="437.91970143034274" y="64.87699484278528" transform="rotate(30.3952598528062,437.91970143034274,64.87699484278528)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="blue" text-anchor="middle" class="shadow" x="410.48240292522667" y="112.34103788866335" transform="rotate(30.487038756025562,410.48240292522667,112.34103788866335)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="blue" text-anchor="middle" class="shadow" x="389.94215802576304" y="147.9620407934838" transform="rotate(30.607582388071663,389.94215802576304,147.9620407934838)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="blue" text-anchor="middle" class="shadow" x="369.4136082568766" y="183.5914792560642" transform="rotate(30.807336021496425,369.4136082568766,183.5914792560642)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="blue" text-anchor="middle" class="shadow" x="447.94904382304475" y="54.896811109807004" transform="rotate(31.115996371348494,447.94904382304475,54.896811109807004)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="blue" text-anchor="middle" class="shadow" x="420.48186076072994" y="102.35525402593868" transform="rotate(31.365982738493614,420.48186076072994,102.35525402593868)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="blue" text-anchor="middle" class="shadow" x="399.9488645487431" y="137.99575278561247" transform="rotate(31.672599046234744,399.9488645487431,137.99575278561247)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="blue" text-anchor="middle" class="shadow" x="437.42415920276824" y="80.60278729913065" transform="rotate(32.061855803723496,437.42415920276824,80.60278729913065)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="blue" text-anchor="middle" class="shadow" x="430.44837685227526" y="92.40590475879759" transform="rotate(32.144511643156235,430.44837685227526,92.40590475879759)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="blue" text-anchor="middle" class="shadow" x="379.4304620848895" y="173.6554114357561" transform="rotate(32.156801370406555,379.4304620848895,173.6554114357561)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="blue" text-anchor="middle" class="shadow" x="409.9144174713968" y="128.0707199623021" transform="rotate(32.590788042525666,409.9144174713968,128.0707199623021)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="blue" text-anchor="middle" class="shadow" x="447.3969986875261" y="70.69933193576651" transform="rotate(32.733356764560526,447.3969986875261,70.69933193576651)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="blue" text-anchor="middle" class="shadow" x="389.3929140554396" y="163.7659844648741" transform="rotate(33.27175457815148,389.3929140554396,163.7659844648741)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="blue" text-anchor="middle" class="shadow" x="457.34320294275415" y="60.818877709777865" transform="rotate(33.33856754073052,457.34320294275415,60.818877709777865)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="blue" text-anchor="middle" class="shadow" x="419.8463274030172" y="118.1783697552872" transform="rotate(33.39056625659943,419.8463274030172,118.1783697552872)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="blue" text-anchor="middle" class="shadow" x="429.7503939521968" y="108.31233828759613" transform="rotate(34.093459498362606,429.7503939521968,108.31233828759613)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="blue" text-anchor="middle" class="shadow" x="399.31349465842897" y="153.91111401361215" transform="rotate(34.208474433727154,399.31349465842897,153.91111401361215)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="blue" text-anchor="middle" class="shadow" x="368.8966068997013" y="199.52524859704204" transform="rotate(34.438847544995355,368.8966068997013,199.52524859704204)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="blue" text-anchor="middle" class="shadow" x="446.7379002025599" y="86.71960915817468" transform="rotate(34.52815240400992,446.7379002025599,86.71960915817468)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="blue" text-anchor="middle" class="shadow" x="439.63116344532375" y="98.46780506005541" transform="rotate(34.716072574608724,439.63116344532375,98.46780506005541)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="blue" text-anchor="middle" class="shadow" x="409.2011754614198" y="144.0825381237634" transform="rotate(35.00655684057524,409.2011754614198,144.0825381237634)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="blue" text-anchor="middle" class="shadow" x="456.62887697764234" y="76.90345925246419" transform="rotate(35.07145367631484,456.62887697764234,76.90345925246419)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="blue" text-anchor="middle" class="shadow" x="378.7947542049206" y="189.7249827802479" transform="rotate(35.54692617864973,378.7947542049206,189.7249827802479)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="blue" text-anchor="middle" class="shadow" x="466.50062861907384" y="67.100808413279" transform="rotate(35.56113871011256,466.50062861907384,67.100808413279)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="blue" text-anchor="middle" class="shadow" x="419.06254406561476" y="134.27442230306997" transform="rotate(35.69467261800429,419.06254406561476,134.27442230306997)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="blue" text-anchor="middle" class="shadow" x="428.9025441488165" y="124.48253212629035" transform="rotate(36.29409375717329,428.9025441488165,124.48253212629035)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="blue" text-anchor="middle" class="shadow" x="388.6539970462779" y="179.94741912726033" transform="rotate(36.444374886460764,388.6539970462779,179.94741912726033)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="blue" text-anchor="middle" class="shadow" x="438.7249567974743" y="114.70372171827626" transform="rotate(36.82093625823162,438.7249567974743,114.70372171827626)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="blue" text-anchor="middle" class="shadow" x="455.7797966808244" y="93.23155119898155" transform="rotate(36.994449004296335,455.7797966808244,93.23155119898155)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="blue" text-anchor="middle" class="shadow" x="398.484357972192" y="170.18616673499972" transform="rotate(37.18607864616931,398.484357972192,170.18616673499972)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="blue" text-anchor="middle" class="shadow" x="448.53272251332874" y="104.93560615738957" transform="rotate(37.287633506061226,448.53272251332874,104.93560615738957)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="blue" text-anchor="middle" class="shadow" x="465.5999650376797" y="83.47904679612714" transform="rotate(37.409550588069166,465.5999650376797,83.47904679612714)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="blue" text-anchor="middle" class="shadow" x="475.4075428884668" y="73.73315163257885" transform="rotate(37.7837098794946,475.4075428884668,73.73315163257885)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="blue" text-anchor="middle" class="shadow" x="408.29269209911945" y="160.43701899164327" transform="rotate(37.80936647938265,408.29269209911945,160.43701899164327)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="blue" text-anchor="middle" class="shadow" x="418.08384574541935" y="150.69709643126345" transform="rotate(38.34051463491575,418.08384574541935,150.69709643126345)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="blue" text-anchor="middle" class="shadow" x="427.8613415274247" y="140.96436297117262" transform="rotate(38.79855719348293,427.8613415274247,140.96436297117262)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="blue" text-anchor="middle" class="shadow" x="437.6278011533584" y="131.2373389445167" transform="rotate(39.19762125774715,437.6278011533584,131.2373389445167)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="blue" text-anchor="middle" class="shadow" x="464.53309775030954" y="100.12654949147094" transform="rotate(39.46074560458276,464.53309775030954,100.12654949147094)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="blue" text-anchor="middle" class="shadow" x="447.3852159837605" y="121.51492361281416" transform="rotate(39.548413018100625,447.3852159837605,121.51492361281416)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="blue" text-anchor="middle" class="shadow" x="377.8801595384718" y="206.31649631850678" transform="rotate(39.73713178268696,377.8801595384718,206.31649631850678)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="blue" text-anchor="middle" class="shadow" x="474.29532582560313" y="90.41514608125573" transform="rotate(39.747647499823486,474.29532582560313,90.41514608125573)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="blue" text-anchor="middle" class="shadow" x="457.13512565575303" y="111.79628141942231" transform="rotate(39.85919443751372,457.13512565575303,111.79628141942231)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="blue" text-anchor="middle" class="shadow" x="484.05054469867594" y="80.70592856072088" transform="rotate(40.00628104887664,484.05054469867594,80.70592856072088)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="blue" text-anchor="middle" class="shadow" x="387.6370277369439" y="196.61265027836052" transform="rotate(40.28651633580303,387.6370277369439,196.61265027836052)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="blue" text-anchor="middle" class="shadow" x="397.38131283540463" y="186.9113919223508" transform="rotate(40.73194840251497,397.38131283540463,186.9113919223508)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="blue" text-anchor="middle" class="shadow" x="407.1163218737101" y="177.21199708279337" transform="rotate(41.100402714187126,407.1163218737101,177.21199708279337)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="blue" text-anchor="middle" class="shadow" x="416.8442959995499" y="167.51398820108145" transform="rotate(41.41025852503814,416.8442959995499,167.51398820108145)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="blue" text-anchor="middle" class="shadow" x="426.56680799703275" y="157.8170377523185" transform="rotate(41.67447242925624,426.56680799703275,157.8170377523185)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="blue" text-anchor="middle" class="shadow" x="436.28499421255583" y="148.12091370158527" transform="rotate(41.90244176896156,436.28499421255583,148.12091370158527)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="blue" text-anchor="middle" class="shadow" x="472.98158717146345" y="107.39183046106379" transform="rotate(41.92704220486918,472.98158717146345,107.39183046106379)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="blue" text-anchor="middle" class="shadow" x="482.700481390831" y="97.70020836305099" transform="rotate(42.08574441157781,482.700481390831,97.70020836305099)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="blue" text-anchor="middle" class="shadow" x="445.9996961528267" y="138.42544711459485" transform="rotate(42.10114875832102,445.9996961528267,138.42544711459485)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="blue" text-anchor="middle" class="shadow" x="492.4166300715088" y="88.0086481853117" transform="rotate(42.228852218258666,492.4166300715088,88.0086481853117)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="blue" text-anchor="middle" class="shadow" x="455.7115503036457" y="128.73051209992389" transform="rotate(42.27588977796964,455.7115503036457,128.73051209992389)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="blue" text-anchor="middle" class="shadow" x="465.42104699429336" y="119.03601293705347" transform="rotate(42.430755368966224,465.42104699429336,119.03601293705347)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="blue" text-anchor="middle" class="shadow" x="481.1096133944068" y="115.01393455282397" transform="rotate(44.3933388051556,481.1096133944068,115.01393455282397)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="blue" text-anchor="middle" class="shadow" x="490.8014369803145" y="105.32210386630575" transform="rotate(44.42384132333214,490.8014369803145,105.32210386630575)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="blue" text-anchor="middle" class="shadow" x="500.49321166819965" y="95.63032307295308" transform="rotate(44.45142338764071,500.49321166819965,95.63032307295308)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="blue" text-anchor="middle" class="shadow" x="473.37379806848594" y="126.64021935375399" transform="rotate(45.00231630041873,473.37379806848594,126.64021935375399)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="blue" text-anchor="middle" class="shadow" x="463.6850951101119" y="136.3341391055762" transform="rotate(45.00336653783865,463.6850951101119,136.3341391055762)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="blue" text-anchor="middle" class="shadow" x="453.9967341470942" y="146.02840103166602" transform="rotate(45.00467625889488,453.9967341470942,146.02840103166602)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="blue" text-anchor="middle" class="shadow" x="444.30878715034044" y="155.72307719681777" transform="rotate(45.006326344440204,444.30878715034044,155.72307719681777)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="blue" text-anchor="middle" class="shadow" x="434.6213478046574" y="165.41826143439476" transform="rotate(45.00843022359674,434.6213478046574,165.41826143439476)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="blue" text-anchor="middle" class="shadow" x="424.93454036391944" y="175.11407823909946" transform="rotate(45.01115057069363,424.93454036391944,175.11407823909946)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="blue" text-anchor="middle" class="shadow" x="415.24853322345433" y="184.81069640808443" transform="rotate(45.01472678220494,415.24853322345433,184.81069640808443)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="blue" text-anchor="middle" class="shadow" x="405.5635604261547" y="194.5083506781666" transform="rotate(45.01952191856919,405.5635604261547,194.5083506781666)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="blue" text-anchor="middle" class="shadow" x="395.87995709503053" y="204.207377421403" transform="rotate(45.02610649295632,395.87995709503053,204.207377421403)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="blue" text-anchor="middle" class="shadow" x="386.1982205817181" y="213.90827635409056" transform="rotate(45.03541602037854,386.1982205817181,213.90827635409056)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="blue" text-anchor="middle" class="shadow" x="508.2681377279061" y="103.5594859005792" transform="rotate(46.67399455702274,508.2681377279061,103.5594859005792)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="blue" text-anchor="middle" class="shadow" x="498.5847043400812" y="113.2681419817257" transform="rotate(46.76193823508646,498.5847043400812,113.2681419817257)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="blue" text-anchor="middle" class="shadow" x="488.9021185547663" y="122.97874116643683" transform="rotate(46.85963540544203,488.9021185547663,122.97874116643683)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="blue" text-anchor="middle" class="shadow" x="480.977361447502" y="134.59358523350232" transform="rotate(47.573877231871215,480.977361447502,134.59358523350232)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="blue" text-anchor="middle" class="shadow" x="471.28778505741457" y="144.30857739218877" transform="rotate(47.73084329770765,471.28778505741457,144.30857739218877)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="blue" text-anchor="middle" class="shadow" x="461.5983825885462" y="154.02667996650175" transform="rotate(47.90820375946874,461.5983825885462,154.02667996650175)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="blue" text-anchor="middle" class="shadow" x="451.9091785573605" y="163.7485487329196" transform="rotate(48.11021091991882,451.9091785573605,163.7485487329196)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="blue" text-anchor="middle" class="shadow" x="442.22020094567233" y="173.47503770774705" transform="rotate(48.34238801793724,442.22020094567233,173.47503770774705)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="blue" text-anchor="middle" class="shadow" x="432.5314808738973" y="183.20728016102458" transform="rotate(48.61204261634912,432.5314808738973,183.20728016102458)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="blue" text-anchor="middle" class="shadow" x="515.7297103508547" y="111.7842067088117" transform="rotate(48.89656572640477,515.7297103508547,111.7842067088117)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="blue" text-anchor="middle" class="shadow" x="422.8430510867244" y="192.94681288325626" transform="rotate(48.929050850222765,422.8430510867244,192.94681288325626)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="blue" text-anchor="middle" class="shadow" x="506.03732417345054" y="121.52509239604862" transform="rotate(49.100035146840774,506.03732417345054,121.52509239604862)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="darkblue" text-anchor="middle" class="shadow" x="413.1549416789969" y="202.6957732669853" transform="rotate(49.307095434623385,413.1549416789969,202.6957732669853)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="darkblue" text-anchor="middle" class="shadow" x="496.3446663696602" y="131.2714948158284" transform="rotate(49.32593200572845,496.3446663696602,131.2714948158284)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="darkblue" text-anchor="middle" class="shadow" x="403.4671693987385" y="212.45722434350625" transform="rotate(49.76569665010962,403.4671693987385,212.45722434350625)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="darkblue" text-anchor="middle" class="shadow" x="488.21642299044595" y="142.88009190720564" transform="rotate(50.145438163323725,488.21642299044595,142.88009190720564)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="darkblue" text-anchor="middle" class="shadow" x="393.77971159626617" y="222.2357163943543" transform="rotate(50.33370025807014,393.77971159626617,222.2357163943543)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="darkblue" text-anchor="middle" class="shadow" x="478.5023950310273" y="152.63575958969454" transform="rotate(50.458320057576664,478.5023950310273,152.63575958969454)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="darkblue" text-anchor="middle" class="shadow" x="468.7851240997878" y="162.3997481853486" transform="rotate(50.811731260042606,468.7851240997878,162.3997481853486)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="darkblue" text-anchor="middle" class="shadow" x="522.8667030986151" y="120.29211085139139" transform="rotate(51.1191368957868,522.8667030986151,120.29211085139139)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="darkblue" text-anchor="middle" class="shadow" x="459.06386890896715" y="172.17378160147072" transform="rotate(51.21409549539746,459.06386890896715,172.17378160147072)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="darkblue" text-anchor="middle" class="shadow" x="513.1468877185224" y="130.07920712078217" transform="rotate(51.4381320585951,513.1468877185224,130.07920712078217)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="darkblue" text-anchor="middle" class="shadow" x="449.33764567449754" y="181.96009477942812" transform="rotate(51.67634581227773,449.33764567449754,181.96009477942812)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="darkblue" text-anchor="middle" class="shadow" x="503.4234688821476" y="139.87683246496692" transform="rotate(51.792228606014866,503.4234688821476,139.87683246496692)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="darkblue" text-anchor="middle" class="shadow" x="439.60512102071755" y="191.76163797061412" transform="rotate(52.212934662004606,439.60512102071755,191.76163797061412)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="darkblue" text-anchor="middle" class="shadow" x="495.07640269016696" y="151.48304973549207" transform="rotate(52.71699909477621,495.07640269016696,151.48304973549207)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="darkblue" text-anchor="middle" class="shadow" x="429.8644431445677" y="201.5823873541959" transform="rotate(52.84337491824058,429.8644431445677,201.5823873541959)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="darkblue" text-anchor="middle" class="shadow" x="485.31257917390076" y="161.2968191300721" transform="rotate(53.18579681744568,485.31257917390076,161.2968191300721)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="darkblue" text-anchor="middle" class="shadow" x="529.6683778850361" y="129.0703976136631" transform="rotate(53.34170806516884,529.6683778850361,129.0703976136631)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="darkblue" text-anchor="middle" class="shadow" x="420.11296568492406" y="211.42783258348362" transform="rotate(53.5946689506776,420.11296568492406,211.42783258348362)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="darkblue" text-anchor="middle" class="shadow" x="475.5385065848827" y="171.12610767581643" transform="rotate(53.71525876061647,475.5385065848827,171.12610767581643)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="darkblue" text-anchor="middle" class="shadow" x="519.9015574090163" y="138.91624338288045" transform="rotate(53.77622897034942,519.9015574090163,138.91624338288045)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="darkblue" text-anchor="middle" class="shadow" x="510.12541200459725" y="148.7788119892037" transform="rotate(54.258525206301286,510.12541200459725,148.7788119892037)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="darkblue" text-anchor="middle" class="shadow" x="465.7518663660157" y="180.9740561955501" transform="rotate(54.31798007087609,465.7518663660157,180.9740561955501)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="darkblue" text-anchor="middle" class="shadow" x="410.3467761757168" y="221.3057708554386" transform="rotate(54.50528680726292,410.3467761757168,221.3057708554386)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="darkblue" text-anchor="middle" class="shadow" x="455.94958978944214" y="190.84471114697124" transform="rotate(55.010303606618244,455.94958978944214,190.84471114697124)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="darkblue" text-anchor="middle" class="shadow" x="501.5434840384795" y="160.38513172287946" transform="rotate(55.288560026228716,501.5434840384795,160.38513172287946)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="darkblue" text-anchor="middle" class="shadow" x="536.1245011324162" y="138.10585947211538" transform="rotate(55.564279234550874,536.1245011324162,138.10585947211538)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="darkblue" text-anchor="middle" class="shadow" x="400.5598481931058" y="231.22765786191604" transform="rotate(55.63198449576173,400.5598481931058,231.22765786191604)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="darkblue" text-anchor="middle" class="shadow" x="446.12753054635203" y="200.7433747982608" transform="rotate(55.8138267076601,446.12753054635203,200.7433747982608)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="darkblue" text-anchor="middle" class="shadow" x="491.7029079206281" y="170.27213299258182" transform="rotate(55.913273577314676,491.7029079206281,170.27213299258182)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="darkblue" text-anchor="middle" class="shadow" x="526.2900865840572" y="148.02148733924813" transform="rotate(56.11432588210375,526.2900865840572,148.02148733924813)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="darkblue" text-anchor="middle" class="shadow" x="481.8411906054623" y="180.1833533434352" transform="rotate(56.61878626119034,481.8411906054623,180.1833533434352)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="darkblue" text-anchor="middle" class="shadow" x="516.4380798136593" y="157.96094170942175" transform="rotate(56.724821806587705,516.4380798136593,157.96094170942175)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="darkblue" text-anchor="middle" class="shadow" x="436.2799510037108" y="210.67713043920736" transform="rotate(56.757698986258404,436.2799510037108,210.67713043920736)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="darkblue" text-anchor="middle" class="shadow" x="471.9535483648564" y="190.1235525369856" transform="rotate(57.421864646354734,471.9535483648564,190.1235525369856)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="darkblue" text-anchor="middle" class="shadow" x="542.2253591686131" y="147.38490196598738" transform="rotate(57.78685040393292,542.2253591686131,147.38490196598738)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="darkblue" text-anchor="middle" class="shadow" x="507.60464185363327" y="169.5684084156325" transform="rotate(57.86012095768122,507.60464185363327,169.5684084156325)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="darkblue" text-anchor="middle" class="shadow" x="426.39868659797486" y="220.65565305080625" transform="rotate(57.8822424667318,426.39868659797486,220.65565305080625)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="darkblue" text-anchor="middle" class="shadow" x="462.0336521836258" y="200.09881281927017" transform="rotate(58.34426140095874,462.0336521836258,200.09881281927017)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="darkblue" text-anchor="middle" class="shadow" x="532.3018382140906" y="157.3797785755855" transform="rotate(58.45242279385807,532.3018382140906,157.3797785755855)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="darkblue" text-anchor="middle" class="shadow" x="497.658902955601" y="179.54136616287096" transform="rotate(58.64075033718369,497.658902955601,179.54136616287096)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="darkblue" text-anchor="middle" class="shadow" x="522.349777551826" y="167.40621094428383" transform="rotate(59.19111840687413,522.349777551826,167.40621094428383)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="darkblue" text-anchor="middle" class="shadow" x="416.4717282237361" y="230.69250229876536" transform="rotate(59.24487696441621,416.4717282237361,230.69250229876536)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="darkblue" text-anchor="middle" class="shadow" x="452.07295572609405" y="210.1170262689143" transform="rotate(59.41471875331559,452.07295572609405,210.1170262689143)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="darkblue" text-anchor="middle" class="shadow" x="487.67699390006305" y="189.5482305371624" transform="rotate(59.522313761764195,487.67699390006305,189.5482305371624)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="darkblue" text-anchor="middle" class="shadow" x="547.9617728419154" y="156.89356415105107" transform="rotate(60.00942157331494,547.9617728419154,156.89356415105107)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="darkblue" text-anchor="middle" class="shadow" x="513.2476685139969" y="179.01438401301175" transform="rotate(60.43168188913371,513.2476685139969,179.01438401301175)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="darkblue" text-anchor="middle" class="shadow" x="477.65071918987513" y="199.595426032089" transform="rotate(60.525749221833365,477.65071918987513,199.595426032089)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="darkblue" text-anchor="middle" class="shadow" x="442.05964303125734" y="220.18861049962928" transform="rotate(60.672023054276224,442.05964303125734,220.18861049962928)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="darkblue" text-anchor="middle" class="shadow" x="537.9268026117518" y="166.97553534878276" transform="rotate(60.79051970561239,537.9268026117518,166.97553534878276)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="darkblue" text-anchor="middle" class="shadow" x="406.4806936146796" y="240.80726396664124" transform="rotate(60.930268733453325,406.4806936146796,240.80726396664124)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="darkblue" text-anchor="middle" class="shadow" x="503.16707001595796" y="189.0835177052123" transform="rotate(61.368227097052696,503.16707001595796,189.0835177052123)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="darkblue" text-anchor="middle" class="shadow" x="527.8495532929704" y="177.09712152397663" transform="rotate(61.65741500716056,527.8495532929704,177.09712152397663)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="darkblue" text-anchor="middle" class="shadow" x="467.56923860392993" y="209.69107511556462" transform="rotate(61.678219195299235,467.56923860392993,209.69107511556462)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="darkblue" text-anchor="middle" class="shadow" x="431.97692162512885" y="230.32758418971196" transform="rotate(62.16981598278601,431.97692162512885,230.32758418971196)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="darkblue" text-anchor="middle" class="shadow" x="553.3251113316949" y="166.6175396047921" transform="rotate(62.23199274269698,553.3251113316949,166.6175396047921)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="darkblue" text-anchor="middle" class="shadow" x="493.0309329323931" y="199.19669475614353" transform="rotate(62.425841262338054,493.0309329323931,199.19669475614353)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="darkblue" text-anchor="middle" class="shadow" x="518.4611985451148" y="188.7040336191891" transform="rotate(63.00324282058622,518.4611985451148,188.7040336191891)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="darkblue" text-anchor="middle" class="shadow" x="457.41792105710294" y="219.84558053311542" transform="rotate(63.01561079897108,457.41792105710294,219.84558053311542)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="darkblue" text-anchor="middle" class="shadow" x="543.1556140981972" y="176.79278053083527" transform="rotate(63.12861661736672,543.1556140981972,176.79278053083527)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="darkblue" text-anchor="middle" class="shadow" x="482.82666335966576" y="209.36188623361016" transform="rotate(63.629633797311996,482.82666335966576,209.36188623361016)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="darkblue" text-anchor="middle" class="shadow" x="421.80013737725244" y="240.55322340182866" transform="rotate(63.98446712156951,421.80013737725244,240.55322340182866)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="darkblue" text-anchor="middle" class="shadow" x="508.21492946500445" y="198.8769683434951" transform="rotate(64.0957038569217,508.21492946500445,198.8769683434951)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="darkblue" text-anchor="middle" class="shadow" x="532.9272182317268" y="187.0157202070671" transform="rotate(64.12371160744698,532.9272182317268,187.0157202070671)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="darkblue" text-anchor="middle" class="shadow" x="558.3073051340591" y="176.54219795138482" transform="rotate(64.45456391207901,558.3073051340591,176.54219795138482)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="darkblue" text-anchor="middle" class="shadow" x="447.17655400109913" y="230.07245160518139" transform="rotate(64.58634712229404,447.17655400109913,230.07245160518139)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="darkblue" text-anchor="middle" class="shadow" x="472.5376113615355" y="219.58902869794963" transform="rotate(65.01217698963974,472.5376113615355,219.58902869794963)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="darkblue" text-anchor="middle" class="shadow" x="497.8892613618462" y="209.1039733844265" transform="rotate(65.32936876291191,497.8892613618462,209.1039733844265)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="darkblue" text-anchor="middle" class="shadow" x="547.9795665971474" y="186.81516821108346" transform="rotate(65.46671352912104,547.9795665971474,186.81516821108346)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="darkblue" text-anchor="middle" class="shadow" x="523.2347315106132" y="198.61784156080057" transform="rotate(65.57480375203872,523.2347315106132,198.61784156080057)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="darkblue" text-anchor="middle" class="shadow" x="411.4916538086667" y="250.89267628157106" transform="rotate(66.22855297114492,411.4916538086667,250.89267628157106)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="aqua" text-anchor="middle" class="shadow" x="436.8164479534271" y="240.38948971956117" transform="rotate(66.45738949884023,436.8164479534271,240.38948971956117)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="aqua" text-anchor="middle" class="shadow" x="537.5733655591266" y="197.14363194041937" transform="rotate(66.5900082077334,537.5733655591266,197.14363194041937)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="aqua" text-anchor="middle" class="shadow" x="462.1413219513948" y="229.89062440823102" transform="rotate(66.61650284462657,462.1413219513948,229.89062440823102)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="aqua" text-anchor="middle" class="shadow" x="562.9008582029599" y="186.65260687407945" transform="rotate(66.67713508146106,562.9008582029599,186.65260687407945)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="aqua" text-anchor="middle" class="shadow" x="487.46619467020065" y="219.39427837782245" transform="rotate(66.73351837279063,487.46619467020065,219.39427837782245)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="aqua" text-anchor="middle" class="shadow" x="512.7910445668301" y="208.89952944316678" transform="rotate(66.82318061679072,512.7910445668301,208.89952944316678)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="aqua" text-anchor="middle" class="shadow" x="552.3906281306785" y="197.0260109124828" transform="rotate(67.80481044087537,552.3906281306785,197.0260109124828)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="aqua" text-anchor="middle" class="shadow" x="527.5586531608626" y="208.73584069295927" transform="rotate(68.14636468349121,527.5586531608626,208.73584069295927)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="aqua" text-anchor="middle" class="shadow" x="502.23950533749473" y="219.24462929512583" transform="rotate(68.23289626348578,502.23950533749473,219.24462929512583)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="aqua" text-anchor="middle" class="shadow" x="476.9219527580809" y="229.75916947849458" transform="rotate(68.34613478398023,476.9219527580809,229.75916947849458)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="aqua" text-anchor="middle" class="shadow" x="451.60681090051844" y="240.28254057042733" transform="rotate(68.50067119031186,451.60681090051844,240.28254057042733)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="aqua" text-anchor="middle" class="shadow" x="426.2955629779623" y="250.82049730721155" transform="rotate(68.72405727872281,426.2955629779623,250.82049730721155)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="aqua" text-anchor="middle" class="shadow" x="567.0988592285034" y="196.93355458187588" transform="rotate(68.89970625084308,567.0988592285034,196.93355458187588)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="aqua" text-anchor="middle" class="shadow" x="541.779387889515" y="207.4620939005544" transform="rotate(69.05630480801982,541.779387889515,207.4620939005544)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="aqua" text-anchor="middle" class="shadow" x="516.8850473980742" y="219.12849328314468" transform="rotate(69.55065737665973,516.8850473980742,219.12849328314468)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="aqua" text-anchor="middle" class="shadow" x="491.5557007511061" y="229.66316745750987" transform="rotate(69.83740294826927,491.5557007511061,229.66316745750987)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="aqua" text-anchor="middle" class="shadow" x="556.3814541926273" y="207.4083073765888" transform="rotate(70.14290735262969,556.3814541926273,207.4083073765888)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="aqua" text-anchor="middle" class="shadow" x="466.2245080672768" y="240.2124950528507" transform="rotate(70.21739489028207,466.2245080672768,240.2124950528507)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="aqua" text-anchor="middle" class="shadow" x="531.424254796785" y="219.03765261456869" transform="rotate(70.71792561494371,531.424254796785,219.03765261456869)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="aqua" text-anchor="middle" class="shadow" x="440.89017751206853" y="250.78505057297136" transform="rotate(70.74496301489444,440.89017751206853,250.78505057297136)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="aqua" text-anchor="middle" class="shadow" x="570.8949920354768" y="207.36957269669006" transform="rotate(71.12227742022512,570.8949920354768,207.36957269669006)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="aqua" text-anchor="middle" class="shadow" x="506.07049552493845" y="229.5926261607311" transform="rotate(71.13642376405964,506.07049552493845,229.5926261607311)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="aqua" text-anchor="middle" class="shadow" x="545.5374932064708" y="217.95199025338593" transform="rotate(71.52260140830624,545.5374932064708,217.95199025338593)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="aqua" text-anchor="middle" class="shadow" x="415.54990975781834" y="261.3977142291006" transform="rotate(71.52683720883651,415.54990975781834,261.3977142291006)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="aqua" text-anchor="middle" class="shadow" x="480.70742201274743" y="240.16707202893872" transform="rotate(71.68009257832074,480.70742201274743,240.16707202893872)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="aqua" text-anchor="middle" class="shadow" x="520.4876623381155" y="229.54068450380524" transform="rotate(72.27813413652873,520.4876623381155,229.54068450380524)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="aqua" text-anchor="middle" class="shadow" x="455.32974431002975" y="250.77124209642352" transform="rotate(72.41499525832968,455.32974431002975,250.77124209642352)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="aqua" text-anchor="middle" class="shadow" x="559.9453999773426" y="217.9447708709937" transform="rotate(72.48100426438401,559.9453999773426,217.9447708709937)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="aqua" text-anchor="middle" class="shadow" x="495.0831830043137" y="240.13842458418665" transform="rotate(72.9412875237479,495.0831830043137,240.13842458418665)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="aqua" text-anchor="middle" class="shadow" x="534.8237508098249" y="229.5025287119329" transform="rotate(73.2894865463962,534.8237508098249,229.5025287119329)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="aqua" text-anchor="middle" class="shadow" x="574.2835450864642" y="217.94495952656786" transform="rotate(73.34484858960715,574.2835450864642,217.94495952656786)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="aqua" text-anchor="middle" class="shadow" x="429.9272610901948" y="261.42410676820555" transform="rotate(73.4636474358761,429.9272610901948,261.42410676820555)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="aqua" text-anchor="middle" class="shadow" x="469.6513569501957" y="250.77043657545966" transform="rotate(73.81828693593755,469.6513569501957,250.77043657545966)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="aqua" text-anchor="middle" class="shadow" x="548.8407192981854" y="228.5938875679393" transform="rotate(73.98889800859267,548.8407192981854,228.5938875679393)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="aqua" text-anchor="middle" class="shadow" x="509.3723957837849" y="240.1213953018746" transform="rotate(74.0399512646335,509.3723957837849,240.1213953018746)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="aqua" text-anchor="middle" class="shadow" x="563.07653144342" y="228.61785797208387" transform="rotate(74.81910117613833,563.07653144342,228.61785797208387)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="aqua" text-anchor="middle" class="shadow" x="523.5907270844845" y="240.1125126144799" transform="rotate(75.00561089639774,523.5907270844845,240.1125126144799)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="aqua" text-anchor="middle" class="shadow" x="483.88120549757565" y="250.77750610907876" transform="rotate(75.01405037266123,483.88120549757565,250.77750610907876)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="aqua" text-anchor="middle" class="shadow" x="444.17530859129397" y="261.4560801280897" transform="rotate(75.03253653094865,444.17530859129397,261.4560801280897)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="aqua" text-anchor="middle" class="shadow" x="577.259420075234" y="228.6438036899401" transform="rotate(75.56741975898919,577.259420075234,228.6438036899401)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="aqua" text-anchor="middle" class="shadow" x="537.7502943627389" y="240.10939194800594" transform="rotate(75.86104747784871,537.7502943627389,240.10939194800594)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="aqua" text-anchor="middle" class="shadow" x="498.0382918079101" y="250.78931538616155" transform="rotate(76.04517209922653,498.0382918079101,250.78931538616155)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="aqua" text-anchor="middle" class="shadow" x="458.32798483681876" y="261.4896210138069" transform="rotate(76.3293193263475,458.32798483681876,261.4896210138069)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="aqua" text-anchor="middle" class="shadow" x="551.6829466555522" y="239.3680708184467" transform="rotate(76.45519460887908,551.6829466555522,239.3680708184467)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="aqua" text-anchor="middle" class="shadow" x="418.62078337155737" y="272.23261150024723" transform="rotate(76.8251214465281,418.62078337155737,272.23261150024723)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="aqua" text-anchor="middle" class="shadow" x="512.1367284221274" y="250.80390390292243" transform="rotate(76.94347876520737,512.1367284221274,250.80390390292243)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="aqua" text-anchor="middle" class="shadow" x="565.7696351939994" y="239.4097977751931" transform="rotate(77.15719808789265,565.7696351939994,239.4097977751931)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="aqua" text-anchor="middle" class="shadow" x="472.4083376922263" y="261.52276095901817" transform="rotate(77.41917898159303,472.4083376922263,261.52276095901817)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="gray" text-anchor="middle" class="shadow" x="526.1872111458658" y="250.82002544150012" transform="rotate(77.73308765626675,526.1872111458658,250.82002544150012)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="gray" text-anchor="middle" class="shadow" x="579.8181395974888" y="239.45000805536563" transform="rotate(77.78999092837122,579.8181395974888,239.45000805536563)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="gray" text-anchor="middle" class="shadow" x="432.67039475677234" y="272.2915343601872" transform="rotate(78.2032375930294,432.67039475677234,272.2915343601872)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="gray" text-anchor="middle" class="shadow" x="486.43256011096736" y="261.55455591940677" transform="rotate(78.34800816700174,486.43256011096736,261.55455591940677)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="gray" text-anchor="middle" class="shadow" x="540.1979911796362" y="250.83687931310737" transform="rotate(78.43260840930121,540.1979911796362,250.83687931310737)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="gray" text-anchor="middle" class="shadow" x="554.0589098090846" y="250.25457990811987" transform="rotate(78.92149120916551,554.0589098090846,250.25457990811987)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="gray" text-anchor="middle" class="shadow" x="500.41235688189596" y="261.58459018308855" transform="rotate(79.14905667470516,500.41235688189596,261.58459018308855)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="gray" text-anchor="middle" class="shadow" x="446.6534534694083" y="272.34284989404773" transform="rotate(79.32011004700284,446.6534534694083,272.34284989404773)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="gray" text-anchor="middle" class="shadow" x="568.0202271571753" y="250.3026214835162" transform="rotate(79.49529499964697,568.0202271571753,250.3026214835162)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="gray" text-anchor="middle" class="shadow" x="514.3563959631796" y="261.61272441924456" transform="rotate(79.84700626578123,514.3563959631796,261.61272441924456)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="gray" text-anchor="middle" class="shadow" x="581.9558538874174" y="250.34731396075088" transform="rotate(80.01256209775326,581.9558538874174,250.34731396075088)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="gray" text-anchor="middle" class="shadow" x="460.5875441518628" y="272.3876705904462" transform="rotate(80.24364339436532,460.5875441518628,272.3876705904462)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="gray" text-anchor="middle" class="shadow" x="528.2712317708082" y="261.6389633956906" transform="rotate(80.46056441613575,528.2712317708082,261.6389633956906)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="gray" text-anchor="middle" class="shadow" x="542.1619114174871" y="261.6633848516096" transform="rotate(81.0041693407537,542.1619114174871,261.6633848516096)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="gray" text-anchor="middle" class="shadow" x="474.4845643588415" y="272.4270126660373" transform="rotate(81.02007102724853,474.4845643588415,272.4270126660373)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="gray" text-anchor="middle" class="shadow" x="555.9642070836488" y="261.23324664693735" transform="rotate(81.38778780945194,555.9642070836488,261.23324664693735)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="gray" text-anchor="middle" class="shadow" x="488.35284964255817" y="272.46174167433134" transform="rotate(81.68196596134223,488.35284964255817,272.46174167433134)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="gray" text-anchor="middle" class="shadow" x="569.8245600520683" y="261.27819232651683" transform="rotate(81.83339191140129,569.8245600520683,261.27819232651683)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="gray" text-anchor="middle" class="shadow" x="420.67803381276974" y="283.30478311425287" transform="rotate(82.1234056842197,420.67803381276974,283.30478311425287)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="gray" text-anchor="middle" class="shadow" x="583.6693466099301" y="261.31932567560085" transform="rotate(82.2351332671353,583.6693466099301,261.31932567560085)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="gray" text-anchor="middle" class="shadow" x="502.19841272675905" y="272.49257567243154" transform="rotate(82.2529412501838,502.19841272675905,272.49257567243154)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="gray" text-anchor="middle" class="shadow" x="516.0256993681842" y="272.52010499795847" transform="rotate(82.75053376635509,516.0256993681842,272.52010499795847)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="gray" text-anchor="middle" class="shadow" x="434.5062038574139" y="283.3484584227679" transform="rotate(82.9428277501827,434.5062038574139,283.3484584227679)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="gray" text-anchor="middle" class="shadow" x="529.83806727604" y="272.54481443636394" transform="rotate(83.18804117600477,529.83806727604,272.54481443636394)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="gray" text-anchor="middle" class="shadow" x="543.6380995951915" y="272.5671031779359" transform="rotate(83.5757302722062,543.6380995951915,272.5671031779359)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="gray" text-anchor="middle" class="shadow" x="448.31074133357583" y="283.38442382665284" transform="rotate(83.60768356305705,448.31074133357583,283.38442382665284)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="gray" text-anchor="middle" class="shadow" x="557.3953087529417" y="272.2837321149441" transform="rotate(83.85408440973835,557.3953087529417,272.2837321149441)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="gray" text-anchor="middle" class="shadow" x="462.09788025265584" y="283.41454583848133" transform="rotate(84.15796746238314,462.09788025265584,283.41454583848133)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="gray" text-anchor="middle" class="shadow" x="571.1796296281223" y="272.3182357580152" transform="rotate(84.17148882315563,571.1796296281223,272.3182357580152)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="gray" text-anchor="middle" class="shadow" x="584.9560396998494" y="272.3495350695001" transform="rotate(84.45770443651733,584.9560396998494,272.3495350695001)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="gray" text-anchor="middle" class="shadow" x="475.87183897201044" y="283.44013627420816" transform="rotate(84.62096307290402,475.87183897201044,283.44013627420816)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="gray" text-anchor="middle" class="shadow" x="489.635574006368" y="283.4621430844643" transform="rotate(85.01592375568273,489.635574006368,283.4621430844643)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="gray" text-anchor="middle" class="shadow" x="503.391219060229" y="283.4812678588348" transform="rotate(85.35682582566244,503.391219060229,283.4812678588348)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="gray" text-anchor="middle" class="shadow" x="517.1403526688023" y="283.4980407313415" transform="rotate(85.65406126692896,517.1403526688023,283.4980407313415)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="gray" text-anchor="middle" class="shadow" x="530.8841677442018" y="283.5128696072828" transform="rotate(85.91551793587378,530.8841677442018,283.5128696072828)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="gray" text-anchor="middle" class="shadow" x="544.6235825602147" y="283.5260733942249" transform="rotate(86.14729120365871,544.6235825602147,283.5260733942249)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="gray" text-anchor="middle" class="shadow" x="558.3495635786117" y="283.3855643418409" transform="rotate(86.32038101002478,558.3495635786117,283.3855643418409)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="gray" text-anchor="middle" class="shadow" x="572.0831796672417" y="283.40436988367526" transform="rotate(86.50958573490995,572.0831796672417,283.40436988367526)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="gray" text-anchor="middle" class="shadow" x="585.8139972407828" y="283.4213464497064" transform="rotate(86.68027560589937,585.8139972407828,283.4213464497064)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="gray" text-anchor="middle" class="shadow" x="421.7040817276557" y="294.5196165639399" transform="rotate(87.4216899219113,421.7040817276557,294.5196165639399)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="gray" text-anchor="middle" class="shadow" x="435.42213340802965" y="294.51926134100006" transform="rotate(87.682417907336,435.42213340802965,294.51926134100006)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="gray" text-anchor="middle" class="shadow" x="449.13789591831966" y="294.51899940306527" transform="rotate(87.89525707911126,449.13789591831966,294.51899940306527)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="gray" text-anchor="middle" class="shadow" x="462.8519466470555" y="294.51880073225635" transform="rotate(88.07229153040097,462.8519466470555,294.51880073225635)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="gray" text-anchor="middle" class="shadow" x="476.5646838799021" y="294.5186464806755" transform="rotate(88.22185511855952,476.5646838799021,294.5186464806755)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="gray" text-anchor="middle" class="shadow" x="490.27639124327163" y="294.5185243299918" transform="rotate(88.34988155002323,490.27639124327163,294.5185243299918)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="gray" text-anchor="middle" class="shadow" x="503.98727619224934" y="294.51842595374563" transform="rotate(88.46071040114107,503.98727619224934,294.51842595374563)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="gray" text-anchor="middle" class="shadow" x="517.6974939714197" y="294.5183455599651" transform="rotate(88.55758876750282,517.6974939714197,294.5183455599651)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="gray" text-anchor="middle" class="shadow" x="531.4071630667538" y="294.5182790187676" transform="rotate(88.64299469574279,531.4071630667538,294.5182790187676)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="gray" text-anchor="middle" class="shadow" x="545.1163754767322" y="294.5182233212087" transform="rotate(88.7188521351112,545.1163754767322,294.5182233212087)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="gray" text-anchor="middle" class="shadow" x="558.8252037219067" y="294.51817623306243" transform="rotate(88.7866776103112,558.8252037219067,294.51817623306243)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="gray" text-anchor="middle" class="shadow" x="572.5337057404407" y="294.5181360672282" transform="rotate(88.84768264666427,572.5337057404407,294.5181360672282)"></text><text font-family="FontAwesome" font-size="12.609137055837563" fill="gray" text-anchor="middle" class="shadow" x="586.241928377841" y="294.5181015304877" transform="rotate(88.9028467752814,586.241928377841,294.5181015304877)"></text></g></svg>
Display the source blob
Display the rendered blob
Raw
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Display the source blob
Display the rendered blob
Raw
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<!--<script src="d3.v3.js"></script>-->
<script src="http://d3js.org/d3.v3.min.js"></script>
<link href="//netdna.bootstrapcdn.com/font-awesome/4.0.3/css/font-awesome.css" rel="stylesheet"> <!-- note: http://stackoverflow.com/questions/20032426/fontawesome-doesnt-display-in-firefox -->
<link href="//maxcdn.bootstrapcdn.com/bootswatch/3.2.0/united/bootstrap.min.css" rel="stylesheet">
<style>
.axis path,
.axis line {
fill: none;
stroke: #000;
shape-rendering: crispEdges;
}
path, line {
stroke:#bbb;
stroke-width:1
}
/*http://www.d3noob.org/2013/01/adding-drop-shadow-to-allow-text-to.html*/
text.shadow {
stroke: gray;
stroke-width: 1px;
opacity: 0.9;
}
.half {
fill: #888;
opacity:0.5;
}
</style>
</head>
<body>
<div class="navbar navbar-default">
<div class="container">
<div class="navbar-header">
<span class="navbar-brand">Hemicycle - for parliaments/councils of any size, with draggable majority arc</span>
</div>
</div>
</div>
<div id="chart"></div>
<div class="alert alert-info">
The <strong>algorithm.py</strong> calculates optimal number of representatives in each row for several numbers of rows (+ size of icons and gap between the rows). These numbers are used as parameters for the chart.
<br/><em>It may be slow for big parliaments, but it is needed just once for any number (e.g., 200 representatives took about 1 hour, due to the grid search - further optimization possible, my trial using steepest descent algorithm did not converge many times).</em>
</div>
<div class="col-lg-4">
<div class="bs-component">
<div class="list-group">
<a href="#" class="list-group-item active">Legend</a>
<a href="#" class="list-group-item">
<div id="legend"></div>
</a>
</div>
</div>
<div class="alert alert-info">
The legend is also created as a svg picture.
</div>
</div>
<script>
// 2:1!
var margin = {top: 0, right: 0, bottom: 0, left: 0},
width = 600 - margin.left - margin.right,
height = 300 - margin.top - margin.bottom;
var svg = d3.select("#chart").append("svg")
.attr("width", width + margin.left + margin.right)
.attr("height", height + margin.top + margin.bottom)
.append("g")
.attr("transform", "translate(" + margin.left + "," + margin.top + ")");
/*examples of parliaments*/
/*Plasy 2010*/
/*var groups = [
{'name':'KSČM','n':2,'color':'red'},
{'name':'ČSSD','n':4,'color':'orange'},
{'name':'KDU-ČSL','n':2,'color':'yellow'},
{'name':'TOP 09','n':2,'color':'violet'},
{'name':'ODS','n':5,'color':'blue'}
];*/
/*Czech Republic 2013*/
var groups = [
{'name':'KSČM','n':33,'color':'red'},
{'name':'Úsvit','n':14,'color':'pink'},
{'name':'ČSSD','n':50,'color':'orange'},
{'name':'KDU-ČSL','n':14,'color':'yellow'},
{'name':'ANO','n':47,'color':'aqua'},
{'name':'TOP 09','n':26,'color':'purple'},
{'name':'ODS','n':16,'color':'blue'}
];
/*Czech Republic Senate 2013*/
/*var groups = [
{'name':'KSČM','n':2,'color':'red'},
{'name':'ČSSD','n':46,'color':'orange'},
{'name':'SPOZ','n':1,'color':'pink'},
{'name':'Severočeši','n':2,'color':'darkred'},
{'name':'Piráti','n':1,'color':'black'},
{'name':'Zelení','n':1,'color':'green'},
{'name':'KDU-ČSL','n':5,'color':'yellow'},
{'name':'Nezávislí kand.','n':1,'color':'gray'},
{'name':'Nestraníci','n':1,'color':'aqua'},
{'name':'TOP 09 + STAN','n':4,'color':'purple'},
{'name':'Ostravak','n':1,'color':'brown'},
{'name':'ODS','n':15,'color':'blue'},
{'name':'Neobsazeno','n':1,'color':'white'}
];*/
/*European Parliament 2014*/
/*var groups = [
{'name':'GUE-NGL','n':52,'color':'darkred'},
{'name':'Greens-EFA','n':50,'color':'green'},
{'name':'S&D','n':191,'color':'red'},
{'name':'ALDE','n':67,'color':'yellow'},
{'name':'EPP','n':221,'color':'blue'},
{'name':'ECR','n':70,'color':'darkblue'},
{'name':'EFDD','n':48,'color':'aqua'},
{'name':'Non-inscrits','n':52,'color':'gray'}
];*/
/*Plasy*/
/*var h = {
'n': [6,9],
'g': 1.19,
'w': 0.52,
}*/
/*CZ*/
/*var h = {
'n': [33,37,40,43,47],
'g': 1.17,
'w': 0.09,
}
var h = {
'n': [24,28,31,35,39,43],
'g': 1.23,
'w': 0.13,
}
var h = {
'n': [18,21,25,29,32,36,39],
'g': 1.19,
'w': 0.17,
}*/
var h = {
'n': [8,11,15,19,22,26,29,33,37],
'g': 1.20,
'w': 0.39,
}
/*var h = {
'n': [4,8,11,15,18,22,25,29,32,36],
'g': 1.20,
'w': 0.73,
}*/
/*CZ Senate*/
/*var h = {
'n': [9,13,16,20,23],
'g': 1.2,
'w': 0.34,
}*/
/*EP*/
/*var h = {
'n': [85,88,90,93,95,98,100,102],
'g': 1.16,
'w': 0.03,
}
var h = {
'n': [31,34,38,41,45,48,52,55,59,62,66,69,73,78],
'g': 1.19,
'w': 0.1,
}*/
//max radius (for scales)
rmax = 1 + h['n'].length *h['g']*h['w'];
var
xScale = d3.scale.linear()
.domain([-1*rmax, rmax])
.range([0, width]),
yScale = d3.scale.linear()
.domain([0, rmax])
.range([height,0])
x0Scale = d3.scale.linear()
.domain([0, 2*rmax])
.range([0, width]);
//generate data: 1 representative ~ 1 datum
data = [];
s = [];
for (i in h['n']) {
s.push((Math.PI/h['w'] + Math.PI*i*h['g']-h['n'][i])/(h['n'][i] - 1));
ninrow = h['n'][i];
radwidth = Math.PI/(h['n'][i]+(h['n'][i]-1)*s[i]);
radspace = radwidth*s[i];
r = 1 + i*h['g']*h['w'];
for (j=0;j<ninrow;j++) {
x = Math.cos(radwidth*(0.5+j)+j*radspace)*r;
y = Math.sin(radwidth*(0.5+j)+j*radspace)*r;
rot = -1*(radwidth*(0.5+j)+j*radspace)/Math.PI*180+90;
data.push({'x':x,'y':y,'rot':rot});
}
}
//sort data by rotation (representatives from 1 parl. groups together)
data.sort(function(x,y) {
if (x['rot'] < y['rot']) return -1;
if (x['rot'] > y['rot']) return 1;
return 0
});
//add colors and names to data - may be used later
i = 0;
for (gkey in groups) {
group = groups[gkey];
for (j=0;j<group['n'];j++) {
data[i]['color'] = group['color'];
data[i]['name'] = group['name'];
i++;
}
}
/* MAJORITY ARC */
var angle = [{'startangle':0,'endangle':Math.PI/2}];
var arci = d3.svg.arc()
.startAngle(function(d){return d.startangle})
.endAngle(function(d){return d.endangle})
.outerRadius(x0Scale(rmax))
.innerRadius(0);
var position = [xScale(0),yScale(0)];
//http://stackoverflow.com/questions/8538651/d3-update-data-and-update-graph
var arc = svg.selectAll('.half')
.data(angle)
.enter()
.append("path")
.attr("d",arci)
.attr("transform", "translate(" + position + ")")
.attr("class","half");
//http://stackoverflow.com/questions/15303342/how-to-apply-drag-behavior-to-a-d3-svg-arc
var drag = d3.behavior.drag()
.on("drag", function(d,i) {
alpha1 = Math.atan((d3.event.x - xScale(0))/(-d3.event.y + yScale(0)));
x2 = d3.event.dx + d3.event.x;
y2 = d3.event.dy + d3.event.y;
alpha2 = Math.atan((x2 - xScale(0))/(-y2 + yScale(0)));
alpha = alpha2-alpha1;
angle[0]['startangle'] += alpha;
angle[0]['endangle'] += alpha;
/*angle[0]['startangle'] = Math.min(0,angle[0]['startangle']);
angle[0]['startangle'] = Math.max(Math.PI/2,angle[0]['startangle']);
angle[0]['endangle'] = Math.min(Math.PI/2,angle[0]['endangle']);
angle[0]['endangle'] = Math.max(Math.PI,angle[0]['endangle']);*/
arc.attr("d",arci); // redraw the arc
/*position[0] += d3.event.dx;
position[1] += d3.event.dy;
d3.select(this)
.attr("transform", function(d,i){
return "translate(" + position + ")"
})*/
});
arc.call(drag);
// creating HEMICYCLE
var icons = svg.selectAll(".icon")
.data(data)
.enter().append("text")
.attr('font-family', 'FontAwesome')
.attr('font-size',x0Scale(h['w']*1.15)) //the icon is about 1.15times higher then wide
.attr('fill', function(d) {return d.color;})
.attr('text-anchor',"middle")
.attr('class', 'shadow')
.attr('x',function(d) {return xScale(d.x);})
.attr('y',function(d) {return yScale(d.y);})
.attr("transform",function(d) {return "rotate("+d.rot+","+xScale(d.x)+","+yScale(d.y)+")"})
.text('\uf007');
//custom text
svg.append("text")
.attr('font-family', 'sans-serif')
.attr('font-size',x0Scale(h['w']*1)) //adjust as needed
.attr('font-weight','bold')
.attr('text-anchor',"middle")
.attr('fill', '#444')
.attr('x',xScale(0))
.attr('y',yScale(0))
.text("CZ 2013");
/* LEGEND */
heightleg = x0Scale(groups.length * h['w']*1.15*h['g']);
var svgleg = d3.select("#legend").append("svg")
.attr("width", width + margin.left + margin.right)
.attr("height", heightleg + margin.top + margin.bottom)
.append("g")
.attr("transform", "translate(" + margin.left + "," + margin.top + ")");
//sorting for legend
groups.sort(function(x,y) {
if (x.n > y.n) return -1;
if (x.n < y.n) return 1;
return 0;
});
//creating legend
var iconsleg = svgleg.selectAll(".iconleg")
.data(groups)
.enter().append("text")
.attr('font-family', 'FontAwesome')
.attr('font-size',x0Scale(h['w']*1.15))
.attr('fill', function(d) {return d.color;})
.attr('text-anchor',"middle")
.attr('class', 'shadow')
.attr('x',x0Scale(h['w']*1.15))
.attr('y',function(d,i) {return (i+1)*x0Scale(h['w']*1.15);})
.text('\uf007');
var textleg = svgleg.selectAll(".textleg")
.data(groups)
.enter().append("text")
.attr('font-family', 'sans-serif')
.attr('font-size',x0Scale(h['w']*0.9))
//.attr('fill', function(d) {return d.color;})
//.attr('text-anchor',"middle")
//.attr('class', 'shadow')
.attr('x',x0Scale(2*h['w']*1.15))
.attr('y',function(d,i) {return (i+1)*x0Scale(h['w']*1.15);})
.text(function(d){return d.name + ' (' + d.n + ')'});
</script>
</body>
</html>
Display the source blob
Display the rendered blob
Raw
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Display the source blob
Display the rendered blob
Raw
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment