Skip to content

Instantly share code, notes, and snippets.

@jseabold
Last active February 19, 2019 12:44
Show Gist options
  • Select an option

  • Save jseabold/2b549d8a74711e0d5932 to your computer and use it in GitHub Desktop.

Select an option

Save jseabold/2b549d8a74711e0d5932 to your computer and use it in GitHub Desktop.
Recreation of Tufte graphic in Python based on an Rstats blog post and gist http://asbcllc.com/blog/2015/January/gotham_2014_weather/ https://gist.github.com/abresler/46c36c1a88c849b94b07
import os
import calendar
import numpy as np
import matplotlib.pyplot as plt
from matplotlib.ticker import FixedLocator, FixedFormatter
import pandas as pd
import seaborn as sns
to_colors = lambda x : x/255.
blue3 = map(to_colors, (24, 116, 205)) # 1874CD
wheat2 = map(to_colors, (238, 216, 174)) # EED8AE
wheat3 = map(to_colors, (205, 186, 150)) # CDBA96
wheat4 = map(to_colors, (139, 126, 102)) # 8B7E66
firebrick3 = map(to_colors, (205, 38, 38)) # CD2626
gray30 = map(to_colors, (77, 77, 77)) # 4D4D4D
if not os.path.exists("tufte.csv"):
dta = pd.read_table("http://academic.udayton.edu/kissock/http/"
"Weather/gsod95-current/NYNEWYOR.txt", sep=" *",
names=["month", "day", "year", "temp"])
dta.to_csv("tufte.csv", index=False)
else:
dta = pd.read_csv("tufte.csv")
def calc_summary_stats(x):
lower = x.min()
upper = x.max()
avg = x.mean()
std_err = x.std()/np.sqrt(len(x))
ci_upper = avg + 2.101 * std_err
ci_lower = avg - 2.101 * std_err
return pd.DataFrame.from_dict(dict(lower=lower, upper=upper,
avg=avg, std_err=std_err,
ci_upper=ci_upper, ci_lower=ci_lower)
)
dta.set_index(pd.to_datetime(dta.year*10000 + dta.month*100 + dta.day,
format="%Y%m%d"), inplace=True)
dta = dta[["temp"]].query("temp != -99")
past = dta.query("index < 2014")
grouped = past.groupby(past.index.map(lambda x : (x.month, x.day)))
past_stats = grouped.apply(calc_summary_stats)
past_stats.set_index(past_stats.index.droplevel(1), inplace=True)
present = dta.query("index >= 2014")
grouped = present.groupby(present.index.map(lambda x : (x.month, x.day)))
presentlows = grouped.temp.min()
presentlows = presentlows.ix[presentlows <
past_stats.ix[presentlows.index].lower]
presenthighs = grouped.temp.max()
presenthighs = presenthighs.ix[presenthighs >
past_stats.ix[presenthighs.index].upper]
idx = range(len(past_stats))
fig, ax = plt.subplots(figsize=(20, 8), subplot_kw={'axisbg': 'white'},
facecolor='white')
# plot the high-low bars
ax.vlines(idx, past_stats.lower, past_stats.upper, color=wheat3, alpha=.9,
linewidth=1.5, zorder=-1)
# plot the confidence interval around the means
ax.vlines(idx, past_stats.ci_lower, past_stats.ci_upper, linewidth=1.5,
color=wheat4, zorder=-1)
# plot the present year time-series
ax.plot(present, color='k', zorder=10)
# plot the highs and lows of the present year
x_highs = np.where(past_stats.index.isin(presenthighs.index))[0]
# adjust for no leap day in 2014
x_highs -= 1
ax.plot(x_highs, presenthighs, 'ro')
x_lows = np.where(past_stats.index.isin(presentlows.index))[0]
# adjust for leap day
x_lows[9:] -= 1
ax.plot(x_lows, presentlows, 'bo')
# plot the made-up 2014 range. don't know what this was supposed to show.
ax.vlines(idx[len(idx) // 2 + 2], -5, 30, linewidth=15, color=wheat2)
ax.vlines(idx[len(idx) // 2 + 2], 3, 19, linewidth=15, color=wheat4)
ax.errorbar(len(idx) // 2 + 7, 9, yerr=6, capsize=4, capthick=1,
color='black')
ax.text(len(idx) // 2 + 8, 9, "Normal Range", verticalalignment='center')
ax.text(len(idx) // 2 + 7, 30, "Record High")
ax.text(len(idx) // 2 + 7, -5, "Record Low", verticalalignment='top')
ax.text(len(idx) // 2 - 1, 9, "2014 Temperature",
horizontalalignment='right')
##############
## text data
#
ax.annotate("We had 30 days that were the\ncoldest since 1995",
xy=(x_lows[4], presentlows[4]), xytext=(50, -45),
textcoords='offset points', arrowprops=dict(facecolor='blue',
width=2,
headwidth=0,
frac=0,
shrink=.05),
color='blue', horizontalalignment='left')
ax.annotate("We had 5 days that were the\nhottest since 1995",
xy=(x_highs[0], presenthighs[0]), xytext=(0, 40),
textcoords='offset points', arrowprops=dict(facecolor='red',
width=2,
headwidth=0,
frac=0,
shrink=.05),
color='red', horizontalalignment='center')
ax.text(69, 94, u"Data represents average daily temperatures. Accessible "
"data dates back to\nJanuary 1, 1975. Data for 2014 is only "
"available through December 16.\nAverage temperature for"
u" the year was 54.8\u00b0 making 2014 the 6th coldest\nyear"
"since 1995", verticalalignment='top', horizontalalignment='center')
##############
## formatting
#
yticks = range(-10, 101, 10)
ax.yaxis.set_ticks(yticks)
ylabels = [str(i) + u"\u00b0" for i in yticks]
ax.yaxis.set_ticklabels(ylabels, fontsize=14)
ax.yaxis.grid(color='white', zorder=1)
xticks = past.groupby(past.index.month).apply(lambda x : x.index.day.max()
).cumsum().values
ax.xaxis.set_ticks(xticks)
left_spine = ax.spines['left']
left_spine.set_visible(True)
left_spine.set_color(wheat4)
left_spine.set_linewidth(2)
xticks = np.r_[0, xticks]
minor_xticks = (xticks[1:] + xticks[:-1])/2
ax.xaxis.set_minor_locator(FixedLocator(minor_xticks))
ax.xaxis.set_minor_formatter(FixedFormatter(calendar.month_name[1:]))
ax.xaxis.set_ticklabels([])
ax.xaxis.grid(color=wheat3, linestyle='dotted')
ax.set_title(" New York City's Weather in 2014", loc="left",
fontsize=23)
ax.text(2, 97, " Temperature in Fahrenheit", fontsize=15,
fontdict=dict(weight='bold'))
ax.set_xlim(0, len(idx))
ax.set_ylim(-10, 100)
fig.savefig("tufte.svg")
Display the source blob
Display the rendered blob
Raw
<?xml version="1.0" encoding="utf-8" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"
"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<!-- Created with matplotlib (http://matplotlib.org/) -->
<svg height="576pt" version="1.1" viewBox="0 0 1436 576" width="1436pt" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<defs>
<style type="text/css">
*{stroke-linecap:butt;stroke-linejoin:round;}
</style>
</defs>
<g id="figure_1">
<g id="patch_1">
<path d="
M0 576
L1436.4 576
L1436.4 0
L0 0
z
" style="fill:#ffffff;"/>
</g>
<g id="axes_1">
<g id="patch_2">
<path d="
M179.55 518.4
L1292.76 518.4
L1292.76 57.6
L179.55 57.6
z
" style="fill:#ffffff;"/>
</g>
<g id="LineCollection_1">
<defs>
<path d="
M179.55 -172.8
L179.55 -316.067" id="C0_0_6195ab6e05"/>
<path d="
M182.592 -165.26
L182.592 -301.405" id="C0_1_762f9c1185"/>
<path d="
M185.633 -179.503
L185.633 -341.62" id="C0_2_85385f73e8"/>
<path d="
M188.675 -179.503
L188.675 -331.985" id="C0_3_0a5c49e0a9"/>
<path d="
M191.716 -188.719
L191.716 -337.85" id="C0_4_e41ca12003"/>
<path d="
M194.758 -158.557
L194.758 -360.052" id="C0_5_34adf2ba97"/>
<path d="
M197.799 -169.03
L197.799 -317.324" id="C0_6_0c80b23c1d"/>
<path d="
M200.841 -189.137
L200.841 -339.945" id="C0_7_31a346ef52"/>
<path d="
M203.882 -190.394
L203.882 -329.472" id="C0_8_a0956a95bc"/>
<path d="
M206.924 -135.098
L206.924 -299.729" id="C0_9_842ec7c2ef"/>
<path d="
M209.966 -162.746
L209.966 -308.108" id="C0_a_9ef552ebb9"/>
<path d="
M213.007 -195.002
L213.007 -315.648" id="C0_b_030aff13de"/>
<path d="
M216.049 -205.894
L216.049 -314.81" id="C0_c_e4d4203228"/>
<path d="
M219.09 -164.841
L219.09 -318.999" id="C0_d_a23de0d7e9"/>
<path d="
M222.132 -154.368
L222.132 -337.85" id="C0_e_5fca5a05ba"/>
<path d="
M225.173 -149.76
L225.173 -330.729" id="C0_f_e142528bb6"/>
<path d="
M228.215 -151.855
L228.215 -310.202" id="C0_10_68e20e5deb"/>
<path d="
M231.256 -143.895
L231.256 -312.297" id="C0_11_605f5d5aac"/>
<path d="
M234.298 -149.341
L234.298 -313.135" id="C0_12_596827e132"/>
<path d="
M237.34 -195.002
L237.34 -302.662" id="C0_13_4e0ed2c0a2"/>
<path d="
M240.381 -172.8
L240.381 -316.905" id="C0_14_7663604ed7"/>
<path d="
M243.423 -155.625
L243.423 -272.919" id="C0_15_e1e3775aa3"/>
<path d="
M246.464 -158.976
L246.464 -299.729" id="C0_16_51534fd057"/>
<path d="
M249.506 -159.814
L249.506 -319.418" id="C0_17_26ce56b001"/>
<path d="
M252.547 -156.044
L252.547 -308.527" id="C0_18_122ab9c9f9"/>
<path d="
M255.589 -176.151
L255.589 -291.77" id="C0_19_418b7c0e79"/>
<path d="
M258.63 -165.26
L258.63 -306.432" id="C0_1a_0bec992b38"/>
<path d="
M261.672 -155.206
L261.672 -322.351" id="C0_1b_3fc2bd7353"/>
<path d="
M264.714 -190.813
L264.714 -340.783" id="C0_1c_fc2072bdf8"/>
<path d="
M267.755 -174.895
L267.755 -344.972" id="C0_1d_ee6debfc35"/>
<path d="
M270.797 -189.137
L270.797 -308.527" id="C0_1e_10f2d92ad9"/>
<path d="
M273.838 -190.394
L273.838 -331.567" id="C0_1f_c1acc70e3d"/>
<path d="
M276.88 -205.475
L276.88 -294.284" id="C0_20_a584ff7cdc"/>
<path d="
M279.921 -179.921
L279.921 -320.256" id="C0_21_2307649d02"/>
<path d="
M282.963 -160.652
L282.963 -297.216" id="C0_22_9ffb578480"/>
<path d="
M286.005 -157.3
L286.005 -298.473" id="C0_23_54d680e967"/>
<path d="
M289.046 -145.99
L289.046 -323.607" id="C0_24_cd439357ec"/>
<path d="
M292.088 -179.084
L292.088 -288.419" id="C0_25_ca8c1d9392"/>
<path d="
M295.129 -192.908
L295.129 -308.108" id="C0_26_e4f24302e8"/>
<path d="
M298.171 -191.651
L298.171 -299.729" id="C0_27_f0d5abb31f"/>
<path d="
M301.212 -200.448
L301.212 -308.108" id="C0_28_69a87e2b12"/>
<path d="
M304.254 -176.57
L304.254 -302.243" id="C0_29_325f712b4e"/>
<path d="
M307.295 -192.07
L307.295 -314.81" id="C0_2a_0f0caa9fb3"/>
<path d="
M310.337 -176.151
L310.337 -278.365" id="C0_2b_3a9c109f18"/>
<path d="
M313.379 -190.813
L313.379 -300.986" id="C0_2c_caa4f25589"/>
<path d="
M316.42 -187.881
L316.42 -305.175" id="C0_2d_d8a6a8779b"/>
<path d="
M319.462 -153.53
L319.462 -301.405" id="C0_2e_1c523aa1ce"/>
<path d="
M322.503 -187.881
L322.503 -310.202" id="C0_2f_64e16fa345"/>
<path d="
M325.545 -202.124
L325.545 -326.121" id="C0_30_0a72b1ac44"/>
<path d="
M328.586 -188.3
L328.586 -330.729" id="C0_31_6e18789d5f"/>
<path d="
M331.628 -214.691
L331.628 -302.243" id="C0_32_5f53521a78"/>
<path d="
M334.669 -218.042
L334.669 -325.702" id="C0_33_c0f192a0d9"/>
<path d="
M337.711 -188.719
L337.711 -342.458" id="C0_34_c3d481c36f"/>
<path d="
M340.753 -187.043
L340.753 -313.135" id="C0_35_53477b8811"/>
<path d="
M343.794 -217.204
L343.794 -326.959" id="C0_36_6e60d91b43"/>
<path d="
M346.836 -213.853
L346.836 -323.607" id="C0_37_9d8c0f77e9"/>
<path d="
M349.877 -181.597
L349.877 -320.256" id="C0_38_431afff1b0"/>
<path d="
M352.919 -197.935
L352.919 -334.918" id="C0_39_04b0dbd307"/>
<path d="
M355.96 -202.124
L355.96 -326.54" id="C0_3a_2e0c3f9e9a"/>
<path d="
M359.002 -199.61
L359.002 -304.756" id="C0_3b_c0a0b4ed4e"/>
<path d="
M362.043 -221.812
L362.043 -323.188" id="C0_3c_e5f206a9e9"/>
<path d="
M365.085 -199.61
L365.085 -313.135" id="C0_3d_2553fac405"/>
<path d="
M368.127 -183.273
L368.127 -320.256" id="C0_3e_f027d54436"/>
<path d="
M371.168 -202.543
L371.168 -313.135" id="C0_3f_f3abb9fa70"/>
<path d="
M374.21 -213.015
L374.21 -308.945" id="C0_40_989d629d91"/>
<path d="
M377.251 -188.719
L377.251 -309.364" id="C0_41_250deeb928"/>
<path d="
M380.293 -172.8
L380.293 -329.472" id="C0_42_25eed2c2d1"/>
<path d="
M383.334 -202.543
L383.334 -345.391" id="C0_43_1df5018b8b"/>
<path d="
M386.376 -182.016
L386.376 -317.743" id="C0_44_45636837ad"/>
<path d="
M389.417 -204.637
L389.417 -336.175" id="C0_45_c93f84a1e0"/>
<path d="
M392.459 -220.975
L392.459 -336.593" id="C0_46_988e294fbc"/>
<path d="
M395.501 -205.056
L395.501 -321.094" id="C0_47_38db6c509e"/>
<path d="
M398.542 -223.069
L398.542 -351.255" id="C0_48_989d6cca09"/>
<path d="
M401.584 -223.069
L401.584 -364.66" id="C0_49_d28f0c991d"/>
<path d="
M404.625 -246.528
L404.625 -335.337" id="C0_4a_04682c0dee"/>
<path d="
M407.667 -229.353
L407.667 -340.364" id="C0_4b_78b03c781a"/>
<path d="
M410.708 -226.001
L410.708 -327.377" id="C0_4c_d2b0707686"/>
<path d="
M413.75 -223.907
L413.75 -348.742" id="C0_4d_90380dc1e2"/>
<path d="
M416.791 -245.271
L416.791 -347.904" id="C0_4e_a24353c237"/>
<path d="
M419.833 -252.393
L419.833 -359.215" id="C0_4f_ccfaeaa6fc"/>
<path d="
M422.875 -242.758
L422.875 -341.62" id="C0_50_f51fde22c8"/>
<path d="
M425.916 -230.191
L425.916 -355.863" id="C0_51_408d0bdb93"/>
<path d="
M428.958 -240.244
L428.958 -372.201" id="C0_52_131bd75676"/>
<path d="
M431.999 -245.271
L431.999 -342.877" id="C0_53_e447e719f2"/>
<path d="
M435.041 -249.041
L435.041 -329.472" id="C0_54_ee86f2e1e6"/>
<path d="
M438.082 -234.799
L438.082 -337.012" id="C0_55_8d8004b026"/>
<path d="
M441.124 -231.028
L441.124 -365.917" id="C0_56_3a7d186301"/>
<path d="
M444.165 -245.69
L444.165 -392.308" id="C0_57_2119572a45"/>
<path d="
M447.207 -249.041
L447.207 -383.092" id="C0_58_eb1d1dac01"/>
<path d="
M450.249 -253.649
L450.249 -384.768" id="C0_59_e5c148e010"/>
<path d="
M453.29 -252.393
L453.29 -401.105" id="C0_5a_83ba53ffce"/>
<path d="
M456.332 -251.974
L456.332 -354.607" id="C0_5b_326df48e40"/>
<path d="
M459.373 -264.122
L459.373 -342.039" id="C0_5c_362eb4d5ce"/>
<path d="
M462.415 -266.217
L462.415 -350.417" id="C0_5d_5032ec92ff"/>
<path d="
M465.456 -269.568
L465.456 -361.728" id="C0_5e_a0cd4b626b"/>
<path d="
M468.498 -234.38
L468.498 -363.823" id="C0_5f_b52589ba45"/>
<path d="
M471.54 -247.366
L471.54 -360.471" id="C0_60_bceb62daad"/>
<path d="
M474.581 -250.717
L474.581 -387.7" id="C0_61_2c03eff3ff"/>
<path d="
M477.623 -242.339
L477.623 -399.43" id="C0_62_a96c162e7a"/>
<path d="
M480.664 -254.068
L480.664 -364.241" id="C0_63_e9044bb88b"/>
<path d="
M483.706 -255.744
L483.706 -362.566" id="C0_64_74e6b75937"/>
<path d="
M486.747 -272.919
L486.747 -361.728" id="C0_65_9dc120c62c"/>
<path d="
M489.789 -280.041
L489.789 -368.431" id="C0_66_e429913596"/>
<path d="
M492.83 -280.041
L492.83 -362.566" id="C0_67_af1e9a6be2"/>
<path d="
M495.872 -292.608
L495.872 -370.525" id="C0_68_6cf6e064f2"/>
<path d="
M498.914 -289.676
L498.914 -386.444" id="C0_69_ebeccb4468"/>
<path d="
M501.955 -282.973
L501.955 -424.145" id="C0_6a_692def26c3"/>
<path d="
M504.997 -291.77
L504.997 -441.74" id="C0_6b_be223c4dc2"/>
<path d="
M508.038 -264.122
L508.038 -441.321" id="C0_6c_8d91fbf642"/>
<path d="
M511.08 -283.392
L511.08 -402.362" id="C0_6d_92272b74aa"/>
<path d="
M514.121 -295.121
L514.121 -396.916" id="C0_6e_3134d4aaa8"/>
<path d="
M517.163 -294.284
L517.163 -373.457" id="C0_6f_59f7e2d34a"/>
<path d="
M520.204 -287.581
L520.204 -376.39" id="C0_70_ea5d822e6b"/>
<path d="
M523.246 -291.77
L523.246 -394.822" id="C0_71_27a8a7e48d"/>
<path d="
M526.288 -294.703
L526.288 -402.362" id="C0_72_cc6af5c2f6"/>
<path d="
M529.329 -299.311
L529.329 -372.201" id="C0_73_a41f2e9429"/>
<path d="
M532.371 -291.351
L532.371 -428.335" id="C0_74_52ea46219e"/>
<path d="
M535.412 -283.392
L535.412 -365.498" id="C0_75_0108130fb3"/>
<path d="
M538.454 -300.148
L538.454 -430.01" id="C0_76_4e479b1f94"/>
<path d="
M541.495 -311.04
L541.495 -380.579" id="C0_77_216119481c"/>
<path d="
M544.537 -299.729
L544.537 -376.39" id="C0_78_dd4d179cbf"/>
<path d="
M547.578 -311.878
L547.578 -404.876" id="C0_79_3ebd7b97d8"/>
<path d="
M550.62 -311.459
L550.62 -424.983" id="C0_7a_17286cac18"/>
<path d="
M553.662 -310.202
L553.662 -431.267" id="C0_7b_690bea740d"/>
<path d="
M556.703 -308.527
L556.703 -442.159" id="C0_7c_bf0638cbff"/>
<path d="
M559.745 -317.743
L559.745 -403.619" id="C0_7d_404ceffcb1"/>
<path d="
M562.786 -306.432
L562.786 -418.281" id="C0_7e_436ff80bda"/>
<path d="
M565.828 -313.553
L565.828 -412.835" id="C0_7f_429e93500f"/>
<path d="
M568.869 -302.662
L568.869 -426.24" id="C0_80_592b4c289f"/>
<path d="
M571.911 -315.229
L571.911 -446.767" id="C0_81_29c373955c"/>
<path d="
M574.952 -311.459
L574.952 -393.565" id="C0_82_9e449cd38b"/>
<path d="
M577.994 -317.324
L577.994 -412.835" id="C0_83_53023cb5aa"/>
<path d="
M581.036 -302.243
L581.036 -424.564" id="C0_84_09e7fff1b3"/>
<path d="
M584.077 -301.824
L584.077 -404.038" id="C0_85_e78a920d11"/>
<path d="
M587.119 -317.743
L587.119 -390.633" id="C0_86_fc1888e8f0"/>
<path d="
M590.16 -331.985
L590.16 -391.052" id="C0_87_a7685ac6a8"/>
<path d="
M593.202 -320.256
L593.202 -422.47" id="C0_88_3cce7aac42"/>
<path d="
M596.243 -311.878
L596.243 -403.619" id="C0_89_0dcdb30d33"/>
<path d="
M599.285 -315.229
L599.285 -386.863" id="C0_8a_7e2d9d059e"/>
<path d="
M602.326 -308.527
L602.326 -416.605" id="C0_8b_8b9464e9a0"/>
<path d="
M605.368 -300.567
L605.368 -452.212" id="C0_8c_46f4756da0"/>
<path d="
M608.41 -316.067
L608.41 -447.185" id="C0_8d_d2767615bb"/>
<path d="
M611.451 -329.891
L611.451 -409.484" id="C0_8e_02bd30bbd6"/>
<path d="
M614.493 -320.256
L614.493 -394.403" id="C0_8f_f81d7c3645"/>
<path d="
M617.534 -324.026
L617.534 -409.903" id="C0_90_11e9e7a08a"/>
<path d="
M620.576 -307.689
L620.576 -435.456" id="C0_91_84a68f6cbb"/>
<path d="
M623.617 -324.445
L623.617 -437.551" id="C0_92_6f3ebc09bd"/>
<path d="
M626.659 -330.31
L626.659 -438.807" id="C0_93_c143f57621"/>
<path d="
M629.7 -337.431
L629.7 -426.659" id="C0_94_fe152d3264"/>
<path d="
M632.742 -349.58
L632.742 -445.51" id="C0_95_92b2ec1da9"/>
<path d="
M635.784 -335.756
L635.784 -445.091" id="C0_96_827b81a0bc"/>
<path d="
M638.825 -341.201
L638.825 -454.726" id="C0_97_e07ea36d63"/>
<path d="
M641.867 -348.742
L641.867 -445.51" id="C0_98_45391fb74e"/>
<path d="
M644.908 -342.877
L644.908 -438.388" id="C0_99_d08a6df7e1"/>
<path d="
M647.95 -333.242
L647.95 -429.172" id="C0_9a_3d4c347007"/>
<path d="
M650.991 -330.729
L650.991 -427.078" id="C0_9b_ebb9aa5289"/>
<path d="
M654.033 -343.715
L654.033 -448.442" id="C0_9c_8d5572137f"/>
<path d="
M657.075 -339.526
L657.075 -451.375" id="C0_9d_526c6159f7"/>
<path d="
M660.116 -340.364
L660.116 -440.483" id="C0_9e_60543f92ea"/>
<path d="
M663.158 -349.161
L663.158 -463.523" id="C0_9f_beadabbb86"/>
<path d="
M666.199 -363.404
L666.199 -464.361" id="C0_a0_137e15e336"/>
<path d="
M669.241 -358.377
L669.241 -482.374" id="C0_a1_35bfb68977"/>
<path d="
M672.282 -357.539
L672.282 -462.685" id="C0_a2_fda9cbf410"/>
<path d="
M675.324 -357.12
L675.324 -441.321" id="C0_a3_5d9fa93e63"/>
<path d="
M678.365 -341.62
L678.365 -447.604" id="C0_a4_8cb2b838e9"/>
<path d="
M681.407 -338.688
L681.407 -456.82" id="C0_a5_0d847ee40f"/>
<path d="
M684.449 -343.715
L684.449 -436.294" id="C0_a6_372d2775fd"/>
<path d="
M687.49 -357.12
L687.49 -435.456" id="C0_a7_a0a424987c"/>
<path d="
M690.532 -346.228
L690.532 -444.253" id="C0_a8_afecdf7af7"/>
<path d="
M693.573 -358.796
L693.573 -446.348" id="C0_a9_aa4b823339"/>
<path d="
M696.615 -375.552
L696.615 -455.145" id="C0_aa_c8dafb186d"/>
<path d="
M699.656 -360.89
L699.656 -461.428" id="C0_ab_4d17abc535"/>
<path d="
M702.698 -361.728
L702.698 -473.158" id="C0_ac_75d484eca1"/>
<path d="
M705.739 -358.377
L705.739 -455.983" id="C0_ad_afdef6bc41"/>
<path d="
M708.781 -383.511
L708.781 -445.929" id="C0_ae_d1a789f316"/>
<path d="
M711.823 -376.39
L711.823 -459.334" id="C0_af_66fd2e9daa"/>
<path d="
M714.864 -389.795
L714.864 -447.604" id="C0_b0_edad0ec293"/>
<path d="
M717.906 -378.065
L717.906 -460.591" id="C0_b1_1ee661e7dd"/>
<path d="
M720.947 -389.376
L720.947 -463.942" id="C0_b2_f75687429b"/>
<path d="
M723.989 -363.404
L723.989 -466.455" id="C0_b3_701c8c262d"/>
<path d="
M727.03 -380.16
L727.03 -458.496" id="C0_b4_4e2b7704a5"/>
<path d="
M730.072 -372.201
L730.072 -470.225" id="C0_b5_d429c1fe10"/>
<path d="
M733.113 -394.403
L733.113 -462.685" id="C0_b6_cbb4480ad9"/>
<path d="
M736.155 -375.552
L736.155 -459.334" id="C0_b7_362ab691e2"/>
<path d="
M739.197 -392.308
L739.197 -473.996" id="C0_b8_de7b69382a"/>
<path d="
M742.238 -381.836
L742.238 -473.158" id="C0_b9_94571093d4"/>
<path d="
M745.28 -399.849
L745.28 -481.955" id="C0_ba_bab821825f"/>
<path d="
M748.321 -391.471
L748.321 -488.657" id="C0_bb_2681e723b3"/>
<path d="
M751.363 -394.403
L751.363 -481.117" id="C0_bc_b4977ee574"/>
<path d="
M754.404 -375.133
L754.404 -453.888" id="C0_bd_1d7a314b00"/>
<path d="
M757.446 -383.092
L757.446 -453.05" id="C0_be_ade8e671a6"/>
<path d="
M760.487 -381.417
L760.487 -469.388" id="C0_bf_8764c86c66"/>
<path d="
M763.529 -392.727
L763.529 -447.604" id="C0_c0_36dbe54315"/>
<path d="
M766.571 -401.524
L766.571 -453.469" id="C0_c1_d32d385171"/>
<path d="
M769.612 -375.552
L769.612 -441.321" id="C0_c2_a7a472dd66"/>
<path d="
M772.654 -391.471
L772.654 -466.036" id="C0_c3_053398dc77"/>
<path d="
M775.695 -391.889
L775.695 -492.009" id="C0_c4_7b4db939fe"/>
<path d="
M778.737 -398.592
L778.737 -461.847" id="C0_c5_16263726c4"/>
<path d="
M781.778 -407.808
L781.778 -468.969" id="C0_c6_b5dcf67e2f"/>
<path d="
M784.82 -407.389
L784.82 -484.887" id="C0_c7_0f65fc573a"/>
<path d="
M787.861 -391.471
L787.861 -486.982" id="C0_c8_d6d8586f88"/>
<path d="
M790.903 -380.579
L790.903 -473.158" id="C0_c9_cd71717b24"/>
<path d="
M793.945 -388.119
L793.945 -460.172" id="C0_ca_8ae612be01"/>
<path d="
M796.986 -402.781
L796.986 -487.82" id="C0_cb_75dce0d1c5"/>
<path d="
M800.028 -388.957
L800.028 -473.158" id="C0_cc_ebc1b184f0"/>
<path d="
M803.069 -374.714
L803.069 -472.739" id="C0_cd_7db97408cc"/>
<path d="
M806.111 -376.39
L806.111 -467.293" id="C0_ce_0ea975d9db"/>
<path d="
M809.152 -381.417
L809.152 -460.591" id="C0_cf_2f3dfd954f"/>
<path d="
M812.194 -385.187
L812.194 -472.32" id="C0_d0_57c5835f7b"/>
<path d="
M815.235 -386.025
L815.235 -460.591" id="C0_d1_74d17f7b9d"/>
<path d="
M818.277 -396.497
L818.277 -465.617" id="C0_d2_440c4b5107"/>
<path d="
M821.319 -393.565
L821.319 -471.063" id="C0_d3_be89264385"/>
<path d="
M824.36 -387.7
L824.36 -450.956" id="C0_d4_7931f35953"/>
<path d="
M827.402 -384.349
L827.402 -471.901" id="C0_d5_cdb1e6095e"/>
<path d="
M830.443 -404.876
L830.443 -489.076" id="C0_d6_e4cf32b74f"/>
<path d="
M833.485 -404.876
L833.485 -486.144" id="C0_d7_859d3ffc63"/>
<path d="
M836.526 -406.551
L836.526 -458.496" id="C0_d8_3991f936bb"/>
<path d="
M839.568 -393.984
L839.568 -463.942" id="C0_d9_8ae2324f01"/>
<path d="
M842.61 -386.863
L842.61 -454.726" id="C0_da_6aedce2c89"/>
<path d="
M845.651 -376.39
L845.651 -471.063" id="C0_db_b393d15417"/>
<path d="
M848.693 -393.146
L848.693 -473.996" id="C0_dc_7fc438dba0"/>
<path d="
M851.734 -404.876
L851.734 -487.401" id="C0_dd_40bd9e1af3"/>
<path d="
M854.776 -391.052
L854.776 -466.036" id="C0_de_10de21d198"/>
<path d="
M857.817 -385.606
L857.817 -454.307" id="C0_df_3821d61c95"/>
<path d="
M860.859 -392.727
L860.859 -457.658" id="C0_e0_b672f8c888"/>
<path d="
M863.9 -374.714
L863.9 -466.455" id="C0_e1_58bf156b24"/>
<path d="
M866.942 -382.255
L866.942 -464.361" id="C0_e2_c6e3fd080c"/>
<path d="
M869.984 -391.889
L869.984 -443.834" id="C0_e3_ff3d8521e3"/>
<path d="
M873.025 -393.565
L873.025 -447.604" id="C0_e4_1918f8266b"/>
<path d="
M876.067 -392.727
L876.067 -454.726" id="C0_e5_d4092db3b0"/>
<path d="
M879.108 -382.255
L879.108 -456.401" id="C0_e6_441c656bd5"/>
<path d="
M882.15 -384.349
L882.15 -454.726" id="C0_e7_183c00c2bb"/>
<path d="
M885.191 -381.417
L885.191 -447.185" id="C0_e8_cf77acf91c"/>
<path d="
M888.233 -359.215
L888.233 -450.537" id="C0_e9_a92768bd25"/>
<path d="
M891.274 -361.728
L891.274 -454.726" id="C0_ea_9706b38899"/>
<path d="
M894.316 -386.444
L894.316 -440.064" id="C0_eb_5430e43433"/>
<path d="
M897.358 -387.7
L897.358 -450.956" id="C0_ec_bd55abe57b"/>
<path d="
M900.399 -380.579
L900.399 -456.401" id="C0_ed_7cb18e9d4b"/>
<path d="
M903.441 -386.444
L903.441 -440.483" id="C0_ee_5f707b3ad7"/>
<path d="
M906.482 -386.863
L906.482 -433.78" id="C0_ef_9af0a497eb"/>
<path d="
M909.524 -393.565
L909.524 -434.199" id="C0_f0_f40c2882dc"/>
<path d="
M912.565 -373.457
L912.565 -442.159" id="C0_f1_9c47f56877"/>
<path d="
M915.607 -367.593
L915.607 -438.388" id="C0_f2_3fd2d73036"/>
<path d="
M918.648 -384.768
L918.648 -458.496" id="C0_f3_55fbc29164"/>
<path d="
M921.69 -367.174
L921.69 -463.942" id="C0_f4_aae4b0d69d"/>
<path d="
M924.732 -364.241
L924.732 -454.307" id="C0_f5_309d2195d0"/>
<path d="
M927.773 -367.593
L927.773 -436.713" id="C0_f6_a9c53269f8"/>
<path d="
M930.815 -357.12
L930.815 -431.267" id="C0_f7_a03a2734fb"/>
<path d="
M933.856 -357.958
L933.856 -430.848" id="C0_f8_e13c3f2409"/>
<path d="
M936.898 -360.052
L936.898 -434.618" id="C0_f9_8cb0ea060b"/>
<path d="
M939.939 -371.363
L939.939 -435.875" id="C0_fa_34ad3e4518"/>
<path d="
M942.981 -384.349
L942.981 -437.551" id="C0_fb_f0a57e3787"/>
<path d="
M946.022 -360.471
L946.022 -430.01" id="C0_fc_b096b91bf3"/>
<path d="
M949.064 -369.268
L949.064 -437.551" id="C0_fd_50c07fbeba"/>
<path d="
M952.106 -361.728
L952.106 -449.699" id="C0_fe_7ae57b74ad"/>
<path d="
M955.147 -361.728
L955.147 -437.132" id="C0_ff_a37dd7c6fc"/>
<path d="
M958.189 -371.363
L958.189 -447.185" id="C0_100_0bc22c5b86"/>
<path d="
M961.23 -357.539
L961.23 -430.848" id="C0_101_84cf6507e3"/>
<path d="
M964.272 -353.35
L964.272 -437.132" id="C0_102_37ee59614a"/>
<path d="
M967.313 -343.296
L967.313 -434.199" id="C0_103_2c7787f453"/>
<path d="
M970.355 -343.296
L970.355 -422.889" id="C0_104_a3aa8ce968"/>
<path d="
M973.396 -353.35
L973.396 -414.092" id="C0_105_9d87727bac"/>
<path d="
M976.438 -342.458
L976.438 -423.308" id="C0_106_b431226a4f"/>
<path d="
M979.48 -353.35
L979.48 -426.659" id="C0_107_952566517b"/>
<path d="
M982.521 -351.255
L982.521 -419.956" id="C0_108_61f0f7364a"/>
<path d="
M985.563 -333.661
L985.563 -423.308" id="C0_109_73fa28191b"/>
<path d="
M988.604 -344.553
L988.604 -423.727" id="C0_10a_272c5102de"/>
<path d="
M991.646 -340.783
L991.646 -421.632" id="C0_10b_966be8bd0a"/>
<path d="
M994.687 -347.066
L994.687 -440.483" id="C0_10c_b513b4626e"/>
<path d="
M997.729 -330.729
L997.729 -430.429" id="C0_10d_bad78b16f6"/>
<path d="
M1000.77 -342.877
L1000.77 -427.497" id="C0_10e_2a6df75863"/>
<path d="
M1003.81 -347.485
L1003.81 -409.484" id="C0_10f_ea3b6a37fe"/>
<path d="
M1006.85 -318.999
L1006.85 -404.038" id="C0_110_7a0a580206"/>
<path d="
M1009.9 -328.215
L1009.9 -407.389" id="C0_111_88dca2580a"/>
<path d="
M1012.94 -324.864
L1012.94 -393.565" id="C0_112_1caa17a7bd"/>
<path d="
M1015.98 -315.648
L1015.98 -417.024" id="C0_113_46dac62542"/>
<path d="
M1019.02 -304.337
L1019.02 -419.537" id="C0_114_adac3cdcea"/>
<path d="
M1022.06 -299.311
L1022.06 -411.578" id="C0_115_304ee80a60"/>
<path d="
M1025.1 -306.432
L1025.1 -416.186" id="C0_116_2e21bc8e56"/>
<path d="
M1028.14 -320.675
L1028.14 -414.929" id="C0_117_86c426b5d0"/>
<path d="
M1031.19 -303.919
L1031.19 -421.632" id="C0_118_8f20029057"/>
<path d="
M1034.23 -301.824
L1034.23 -413.254" id="C0_119_dd112e0427"/>
<path d="
M1037.27 -296.378
L1037.27 -417.443" id="C0_11a_6e22441813"/>
<path d="
M1040.31 -288
L1040.31 -409.903" id="C0_11b_4881589eaa"/>
<path d="
M1043.35 -311.04
L1043.35 -390.214" id="C0_11c_0051eec6f2"/>
<path d="
M1046.39 -313.135
L1046.39 -391.889" id="C0_11d_991c2f8d24"/>
<path d="
M1049.44 -297.635
L1049.44 -410.321" id="C0_11e_4408c4320d"/>
<path d="
M1052.48 -304.756
L1052.48 -393.565" id="C0_11f_3ee474b280"/>
<path d="
M1055.52 -291.351
L1055.52 -398.173" id="C0_120_9dd0a38a90"/>
<path d="
M1058.56 -275.852
L1058.56 -383.092" id="C0_121_427407c7f9"/>
<path d="
M1061.6 -295.54
L1061.6 -388.119" id="C0_122_f1c03e5ada"/>
<path d="
M1064.64 -291.351
L1064.64 -389.376" id="C0_123_afdbcd6aef"/>
<path d="
M1067.68 -299.311
L1067.68 -397.335" id="C0_124_038ea1b118"/>
<path d="
M1070.73 -308.527
L1070.73 -386.025" id="C0_125_ae8775266e"/>
<path d="
M1073.77 -316.067
L1073.77 -382.255" id="C0_126_944a92b7f1"/>
<path d="
M1076.81 -300.567
L1076.81 -386.863" id="C0_127_1b219672bf"/>
<path d="
M1079.85 -274.176
L1079.85 -398.173" id="C0_128_1bc16df069"/>
<path d="
M1082.89 -281.297
L1082.89 -387.281" id="C0_129_4bd451440f"/>
<path d="
M1085.93 -298.054
L1085.93 -388.957" id="C0_12a_a6601d7cea"/>
<path d="
M1088.98 -292.189
L1088.98 -382.255" id="C0_12b_370732edd9"/>
<path d="
M1092.02 -294.703
L1092.02 -387.7" id="C0_12c_381289f066"/>
<path d="
M1095.06 -277.527
L1095.06 -393.146" id="C0_12d_998cdb9b85"/>
<path d="
M1098.1 -271.663
L1098.1 -344.134" id="C0_12e_2696bf764a"/>
<path d="
M1101.14 -264.96
L1101.14 -345.391" id="C0_12f_81989e270e"/>
<path d="
M1104.18 -277.108
L1104.18 -373.039" id="C0_130_9965f8ea6e"/>
<path d="
M1107.23 -286.324
L1107.23 -375.552" id="C0_131_49e48533ee"/>
<path d="
M1110.27 -266.636
L1110.27 -370.106" id="C0_132_9aa16a0ce1"/>
<path d="
M1113.31 -275.014
L1113.31 -380.16" id="C0_133_f84c8e59d0"/>
<path d="
M1116.35 -264.96
L1116.35 -359.215" id="C0_134_8daca0d3f1"/>
<path d="
M1119.39 -272.081
L1119.39 -363.823" id="C0_135_faf564dc09"/>
<path d="
M1122.43 -260.352
L1122.43 -355.025" id="C0_136_78b45fcf3b"/>
<path d="
M1125.47 -262.447
L1125.47 -356.701" id="C0_137_4552c0a9b9"/>
<path d="
M1128.52 -267.473
L1128.52 -364.66" id="C0_138_138cb2363d"/>
<path d="
M1131.56 -257.42
L1131.56 -359.215" id="C0_139_f7c4ecc83f"/>
<path d="
M1134.6 -253.649
L1134.6 -368.431" id="C0_13a_1ccb8ecba2"/>
<path d="
M1137.64 -268.311
L1137.64 -362.566" id="C0_13b_f771e0890f"/>
<path d="
M1140.68 -260.352
L1140.68 -349.999" id="C0_13c_c9ad536193"/>
<path d="
M1143.72 -241.92
L1143.72 -341.201" id="C0_13d_51a7d2973a"/>
<path d="
M1146.77 -252.393
L1146.77 -356.701" id="C0_13e_eb6efca7fb"/>
<path d="
M1149.81 -238.988
L1149.81 -365.079" id="C0_13f_432479e4c7"/>
<path d="
M1152.85 -241.92
L1152.85 -371.363" id="C0_140_2f314fdf12"/>
<path d="
M1155.89 -250.298
L1155.89 -363.404" id="C0_141_50925fa0ce"/>
<path d="
M1158.93 -255.325
L1158.93 -352.093" id="C0_142_ee980e367c"/>
<path d="
M1161.97 -234.799
L1161.97 -343.715" id="C0_143_0f9322e5b9"/>
<path d="
M1165.01 -239.825
L1165.01 -338.688" id="C0_144_3091c92f25"/>
<path d="
M1168.06 -244.852
L1168.06 -341.201" id="C0_145_91577312f7"/>
<path d="
M1171.1 -222.231
L1171.1 -339.945" id="C0_146_2250e46c64"/>
<path d="
M1174.14 -227.258
L1174.14 -343.296" id="C0_147_2b86161477"/>
<path d="
M1177.18 -222.65
L1177.18 -350.417" id="C0_148_6021db1c47"/>
<path d="
M1180.22 -216.367
L1180.22 -361.309" id="C0_149_37e8879b2e"/>
<path d="
M1183.26 -244.852
L1183.26 -336.175" id="C0_14a_7fe360397a"/>
<path d="
M1186.31 -245.69
L1186.31 -341.201" id="C0_14b_5c9ed9645f"/>
<path d="
M1189.35 -214.691
L1189.35 -349.999" id="C0_14c_d1a96b3765"/>
<path d="
M1192.39 -238.988
L1192.39 -360.052" id="C0_14d_b835821d19"/>
<path d="
M1195.43 -230.609
L1195.43 -352.512" id="C0_14e_5aca966b33"/>
<path d="
M1198.47 -225.164
L1198.47 -365.917" id="C0_14f_79ec01ca87"/>
<path d="
M1201.51 -209.664
L1201.51 -325.702" id="C0_150_a8c9d129e7"/>
<path d="
M1204.55 -210.921
L1204.55 -349.58" id="C0_151_34a496c196"/>
<path d="
M1207.6 -203.38
L1207.6 -371.782" id="C0_152_ce6324d7b9"/>
<path d="
M1210.64 -222.231
L1210.64 -348.742" id="C0_153_ab59a42d03"/>
<path d="
M1213.68 -218.042
L1213.68 -363.823" id="C0_154_bc14a7e38a"/>
<path d="
M1216.72 -216.367
L1216.72 -358.796" id="C0_155_44b77ea9ca"/>
<path d="
M1219.76 -200.448
L1219.76 -314.81" id="C0_156_e31effe298"/>
<path d="
M1222.8 -211.759
L1222.8 -298.473" id="C0_157_36f6c968f3"/>
<path d="
M1225.85 -210.921
L1225.85 -336.593" id="C0_158_54880935be"/>
<path d="
M1228.89 -184.529
L1228.89 -324.864" id="C0_159_f6b28e7061"/>
<path d="
M1231.93 -190.813
L1231.93 -302.662" id="C0_15a_e6e276b659"/>
<path d="
M1234.97 -201.286
L1234.97 -318.58" id="C0_15b_b68ec1386a"/>
<path d="
M1238.01 -184.111
L1238.01 -325.702" id="C0_15c_5cda7dcb53"/>
<path d="
M1241.05 -199.191
L1241.05 -321.094" id="C0_15d_7e9d1bfa86"/>
<path d="
M1244.1 -219.299
L1244.1 -313.972" id="C0_15e_20a193f34b"/>
<path d="
M1247.14 -213.434
L1247.14 -326.121" id="C0_15f_15efb2c965"/>
<path d="
M1250.18 -197.935
L1250.18 -331.985" id="C0_160_de240a8d9d"/>
<path d="
M1253.22 -216.367
L1253.22 -292.189" id="C0_161_f9a1db42f8"/>
<path d="
M1256.26 -179.921
L1256.26 -306.432" id="C0_162_4e550b710f"/>
<path d="
M1259.3 -189.137
L1259.3 -324.026" id="C0_163_1400efaf7b"/>
<path d="
M1262.34 -200.029
L1262.34 -344.134" id="C0_164_eaba0370aa"/>
<path d="
M1265.39 -193.327
L1265.39 -344.553" id="C0_165_b68f6dff6a"/>
<path d="
M1268.43 -218.461
L1268.43 -316.905" id="C0_166_0347147fec"/>
<path d="
M1271.47 -199.61
L1271.47 -294.284" id="C0_167_f3e6a310ec"/>
<path d="
M1274.51 -184.529
L1274.51 -303.081" id="C0_168_0cdec910cc"/>
<path d="
M1277.55 -205.894
L1277.55 -305.175" id="C0_169_5c1e8f0ae0"/>
<path d="
M1280.59 -191.232
L1280.59 -331.148" id="C0_16a_00cbea6c5e"/>
<path d="
M1283.64 -196.259
L1283.64 -310.202" id="C0_16b_548dcde4f7"/>
<path d="
M1286.68 -198.353
L1286.68 -303.5" id="C0_16c_3d8722e230"/>
<path d="
M1289.72 -207.569
L1289.72 -305.175" id="C0_16d_80419ed004"/>
</defs>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_0_6195ab6e05" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_1_762f9c1185" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_2_85385f73e8" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_3_0a5c49e0a9" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_4_e41ca12003" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_5_34adf2ba97" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_6_0c80b23c1d" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_7_31a346ef52" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_8_a0956a95bc" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_9_842ec7c2ef" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_a_9ef552ebb9" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_b_030aff13de" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_c_e4d4203228" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_d_a23de0d7e9" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_e_5fca5a05ba" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_f_e142528bb6" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_10_68e20e5deb" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_11_605f5d5aac" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_12_596827e132" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_13_4e0ed2c0a2" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_14_7663604ed7" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_15_e1e3775aa3" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_16_51534fd057" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_17_26ce56b001" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_18_122ab9c9f9" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_19_418b7c0e79" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_1a_0bec992b38" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_1b_3fc2bd7353" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_1c_fc2072bdf8" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_1d_ee6debfc35" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_1e_10f2d92ad9" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_1f_c1acc70e3d" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_20_a584ff7cdc" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_21_2307649d02" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_22_9ffb578480" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_23_54d680e967" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_24_cd439357ec" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_25_ca8c1d9392" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_26_e4f24302e8" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_27_f0d5abb31f" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_28_69a87e2b12" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_29_325f712b4e" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_2a_0f0caa9fb3" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_2b_3a9c109f18" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_2c_caa4f25589" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_2d_d8a6a8779b" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_2e_1c523aa1ce" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_2f_64e16fa345" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_30_0a72b1ac44" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_31_6e18789d5f" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_32_5f53521a78" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_33_c0f192a0d9" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_34_c3d481c36f" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_35_53477b8811" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_36_6e60d91b43" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_37_9d8c0f77e9" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_38_431afff1b0" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_39_04b0dbd307" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_3a_2e0c3f9e9a" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_3b_c0a0b4ed4e" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_3c_e5f206a9e9" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_3d_2553fac405" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_3e_f027d54436" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_3f_f3abb9fa70" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_40_989d629d91" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_41_250deeb928" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_42_25eed2c2d1" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_43_1df5018b8b" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_44_45636837ad" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_45_c93f84a1e0" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_46_988e294fbc" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_47_38db6c509e" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_48_989d6cca09" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_49_d28f0c991d" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_4a_04682c0dee" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_4b_78b03c781a" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_4c_d2b0707686" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_4d_90380dc1e2" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_4e_a24353c237" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_4f_ccfaeaa6fc" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_50_f51fde22c8" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_51_408d0bdb93" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_52_131bd75676" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_53_e447e719f2" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_54_ee86f2e1e6" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_55_8d8004b026" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_56_3a7d186301" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_57_2119572a45" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_58_eb1d1dac01" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_59_e5c148e010" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_5a_83ba53ffce" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_5b_326df48e40" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_5c_362eb4d5ce" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_5d_5032ec92ff" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_5e_a0cd4b626b" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_5f_b52589ba45" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_60_bceb62daad" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_61_2c03eff3ff" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_62_a96c162e7a" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_63_e9044bb88b" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_64_74e6b75937" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_65_9dc120c62c" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_66_e429913596" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_67_af1e9a6be2" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_68_6cf6e064f2" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_69_ebeccb4468" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_6a_692def26c3" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_6b_be223c4dc2" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_6c_8d91fbf642" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_6d_92272b74aa" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_6e_3134d4aaa8" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_6f_59f7e2d34a" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_70_ea5d822e6b" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_71_27a8a7e48d" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_72_cc6af5c2f6" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_73_a41f2e9429" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_74_52ea46219e" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_75_0108130fb3" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_76_4e479b1f94" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_77_216119481c" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_78_dd4d179cbf" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_79_3ebd7b97d8" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_7a_17286cac18" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_7b_690bea740d" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_7c_bf0638cbff" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_7d_404ceffcb1" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_7e_436ff80bda" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_7f_429e93500f" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_80_592b4c289f" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_81_29c373955c" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_82_9e449cd38b" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_83_53023cb5aa" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_84_09e7fff1b3" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_85_e78a920d11" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_86_fc1888e8f0" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_87_a7685ac6a8" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_88_3cce7aac42" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_89_0dcdb30d33" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_8a_7e2d9d059e" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_8b_8b9464e9a0" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_8c_46f4756da0" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_8d_d2767615bb" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_8e_02bd30bbd6" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_8f_f81d7c3645" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_90_11e9e7a08a" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_91_84a68f6cbb" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_92_6f3ebc09bd" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_93_c143f57621" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_94_fe152d3264" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_95_92b2ec1da9" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_96_827b81a0bc" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_97_e07ea36d63" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_98_45391fb74e" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_99_d08a6df7e1" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_9a_3d4c347007" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_9b_ebb9aa5289" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_9c_8d5572137f" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_9d_526c6159f7" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_9e_60543f92ea" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_9f_beadabbb86" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_a0_137e15e336" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_a1_35bfb68977" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_a2_fda9cbf410" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_a3_5d9fa93e63" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_a4_8cb2b838e9" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_a5_0d847ee40f" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_a6_372d2775fd" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_a7_a0a424987c" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_a8_afecdf7af7" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_a9_aa4b823339" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_aa_c8dafb186d" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_ab_4d17abc535" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_ac_75d484eca1" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_ad_afdef6bc41" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_ae_d1a789f316" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_af_66fd2e9daa" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_b0_edad0ec293" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_b1_1ee661e7dd" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_b2_f75687429b" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_b3_701c8c262d" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_b4_4e2b7704a5" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_b5_d429c1fe10" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_b6_cbb4480ad9" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_b7_362ab691e2" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_b8_de7b69382a" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_b9_94571093d4" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_ba_bab821825f" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_bb_2681e723b3" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_bc_b4977ee574" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_bd_1d7a314b00" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_be_ade8e671a6" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_bf_8764c86c66" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_c0_36dbe54315" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_c1_d32d385171" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_c2_a7a472dd66" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_c3_053398dc77" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_c4_7b4db939fe" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_c5_16263726c4" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_c6_b5dcf67e2f" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_c7_0f65fc573a" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_c8_d6d8586f88" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_c9_cd71717b24" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_ca_8ae612be01" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_cb_75dce0d1c5" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_cc_ebc1b184f0" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_cd_7db97408cc" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_ce_0ea975d9db" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_cf_2f3dfd954f" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_d0_57c5835f7b" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_d1_74d17f7b9d" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_d2_440c4b5107" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_d3_be89264385" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_d4_7931f35953" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_d5_cdb1e6095e" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_d6_e4cf32b74f" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_d7_859d3ffc63" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_d8_3991f936bb" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_d9_8ae2324f01" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_da_6aedce2c89" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_db_b393d15417" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_dc_7fc438dba0" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_dd_40bd9e1af3" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_de_10de21d198" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_df_3821d61c95" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_e0_b672f8c888" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_e1_58bf156b24" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_e2_c6e3fd080c" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_e3_ff3d8521e3" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_e4_1918f8266b" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_e5_d4092db3b0" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_e6_441c656bd5" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_e7_183c00c2bb" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_e8_cf77acf91c" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_e9_a92768bd25" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_ea_9706b38899" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_eb_5430e43433" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_ec_bd55abe57b" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_ed_7cb18e9d4b" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_ee_5f707b3ad7" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_ef_9af0a497eb" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_f0_f40c2882dc" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_f1_9c47f56877" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_f2_3fd2d73036" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_f3_55fbc29164" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_f4_aae4b0d69d" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_f5_309d2195d0" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_f6_a9c53269f8" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_f7_a03a2734fb" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_f8_e13c3f2409" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_f9_8cb0ea060b" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_fa_34ad3e4518" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_fb_f0a57e3787" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_fc_b096b91bf3" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_fd_50c07fbeba" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_fe_7ae57b74ad" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_ff_a37dd7c6fc" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_100_0bc22c5b86" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_101_84cf6507e3" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_102_37ee59614a" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_103_2c7787f453" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_104_a3aa8ce968" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_105_9d87727bac" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_106_b431226a4f" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_107_952566517b" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_108_61f0f7364a" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_109_73fa28191b" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_10a_272c5102de" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_10b_966be8bd0a" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_10c_b513b4626e" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_10d_bad78b16f6" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_10e_2a6df75863" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_10f_ea3b6a37fe" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_110_7a0a580206" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_111_88dca2580a" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_112_1caa17a7bd" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_113_46dac62542" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_114_adac3cdcea" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_115_304ee80a60" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_116_2e21bc8e56" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_117_86c426b5d0" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_118_8f20029057" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_119_dd112e0427" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_11a_6e22441813" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_11b_4881589eaa" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_11c_0051eec6f2" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_11d_991c2f8d24" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_11e_4408c4320d" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_11f_3ee474b280" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_120_9dd0a38a90" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_121_427407c7f9" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_122_f1c03e5ada" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_123_afdbcd6aef" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_124_038ea1b118" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_125_ae8775266e" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_126_944a92b7f1" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_127_1b219672bf" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_128_1bc16df069" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_129_4bd451440f" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_12a_a6601d7cea" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_12b_370732edd9" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_12c_381289f066" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_12d_998cdb9b85" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_12e_2696bf764a" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_12f_81989e270e" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_130_9965f8ea6e" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_131_49e48533ee" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_132_9aa16a0ce1" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_133_f84c8e59d0" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_134_8daca0d3f1" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_135_faf564dc09" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_136_78b45fcf3b" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_137_4552c0a9b9" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_138_138cb2363d" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_139_f7c4ecc83f" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_13a_1ccb8ecba2" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_13b_f771e0890f" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_13c_c9ad536193" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_13d_51a7d2973a" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_13e_eb6efca7fb" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_13f_432479e4c7" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_140_2f314fdf12" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_141_50925fa0ce" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_142_ee980e367c" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_143_0f9322e5b9" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_144_3091c92f25" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_145_91577312f7" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_146_2250e46c64" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_147_2b86161477" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_148_6021db1c47" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_149_37e8879b2e" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_14a_7fe360397a" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_14b_5c9ed9645f" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_14c_d1a96b3765" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_14d_b835821d19" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_14e_5aca966b33" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_14f_79ec01ca87" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_150_a8c9d129e7" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_151_34a496c196" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_152_ce6324d7b9" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_153_ab59a42d03" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_154_bc14a7e38a" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_155_44b77ea9ca" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_156_e31effe298" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_157_36f6c968f3" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_158_54880935be" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_159_f6b28e7061" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_15a_e6e276b659" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_15b_b68ec1386a" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_15c_5cda7dcb53" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_15d_7e9d1bfa86" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_15e_20a193f34b" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_15f_15efb2c965" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_160_de240a8d9d" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_161_f9a1db42f8" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_162_4e550b710f" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_163_1400efaf7b" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_164_eaba0370aa" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_165_b68f6dff6a" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_166_0347147fec" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_167_f3e6a310ec" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_168_0cdec910cc" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_169_5c1e8f0ae0" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_16a_00cbea6c5e" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_16b_548dcde4f7" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_16c_3d8722e230" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#cdba96;stroke-opacity:0.9;stroke-width:1.5;" x="0.0" xlink:href="#C0_16d_80419ed004" y="576.0"/>
</g>
</g>
<g id="LineCollection_2">
<defs>
<path d="
M179.55 -232.44
L179.55 -274.198" id="C1_0_805c1971d7"/>
<path d="
M182.592 -233.684
L182.592 -268.544" id="C1_1_b47e1bf1c8"/>
<path d="
M185.633 -229.563
L185.633 -274.12" id="C1_2_e83e6b791e"/>
<path d="
M188.675 -229.145
L188.675 -273.48" id="C1_3_47438bc470"/>
<path d="
M191.716 -233.699
L191.716 -270.249" id="C1_4_30a9b3815b"/>
<path d="
M194.758 -233.221
L194.758 -273.901" id="C1_5_8b4e70a6b4"/>
<path d="
M197.799 -236.499
L197.799 -274.636" id="C1_6_2ddab6b7d4"/>
<path d="
M200.841 -233.355
L200.841 -270.328" id="C1_7_9fe96e0074"/>
<path d="
M203.882 -234.456
L203.882 -273.196" id="C1_8_8e2bfda5f5"/>
<path d="
M206.924 -227.805
L206.924 -272.931" id="C1_9_68bd9ee285"/>
<path d="
M209.966 -226.586
L209.966 -264.222" id="C1_a_b3f1e2207c"/>
<path d="
M213.007 -237.314
L213.007 -268.573" id="C1_b_328ac079c5"/>
<path d="
M216.049 -247.687
L216.049 -277.858" id="C1_c_1921579406"/>
<path d="
M219.09 -221.884
L219.09 -267.468" id="C1_d_05eba33989"/>
<path d="
M222.132 -216.218
L222.132 -256.422" id="C1_e_a656d4a7d0"/>
<path d="
M225.173 -215.562
L225.173 -259.018" id="C1_f_3dc7fa17a6"/>
<path d="
M228.215 -215.276
L228.215 -254.982" id="C1_10_3a8b466f95"/>
<path d="
M231.256 -212.038
L231.256 -260.426" id="C1_11_5480c1b095"/>
<path d="
M234.298 -215.783
L234.298 -258.003" id="C1_12_4e0d0c9752"/>
<path d="
M237.34 -224.315
L237.34 -255.247" id="C1_13_e59a856982"/>
<path d="
M240.381 -207.459
L240.381 -243.397" id="C1_14_d0ff11b1e2"/>
<path d="
M243.423 -206.359
L243.423 -240.838" id="C1_15_7af4b1076e"/>
<path d="
M246.464 -213.839
L246.464 -252.892" id="C1_16_7daad8f1b1"/>
<path d="
M249.506 -214.907
L249.506 -263.157" id="C1_17_922e340fe7"/>
<path d="
M252.547 -219.593
L252.547 -260.014" id="C1_18_6b084f3791"/>
<path d="
M255.589 -215.984
L255.589 -245.852" id="C1_19_e1164aaf1a"/>
<path d="
M258.63 -214.336
L258.63 -252.835" id="C1_1a_73e5691af8"/>
<path d="
M261.672 -217.534
L261.672 -259.295" id="C1_1b_63f50954fe"/>
<path d="
M264.714 -221.919
L264.714 -257.599" id="C1_1c_f772779089"/>
<path d="
M267.755 -226.29
L267.755 -267.692" id="C1_1d_a87c7d768d"/>
<path d="
M270.797 -226.254
L270.797 -258.512" id="C1_1e_805e9dea99"/>
<path d="
M273.838 -231.982
L273.838 -261.956" id="C1_1f_1ddefbc506"/>
<path d="
M276.88 -241.267
L276.88 -267.708" id="C1_20_93d81ed1a9"/>
<path d="
M279.921 -229.76
L279.921 -263.163" id="C1_21_eadd4cf962"/>
<path d="
M282.963 -227.663
L282.963 -260.057" id="C1_22_455c62d8be"/>
<path d="
M286.005 -218.347
L286.005 -256.321" id="C1_23_464923eeeb"/>
<path d="
M289.046 -218.484
L289.046 -259.58" id="C1_24_744b14c913"/>
<path d="
M292.088 -229.852
L292.088 -260.559" id="C1_25_40ad88da8a"/>
<path d="
M295.129 -228.004
L295.129 -256.541" id="C1_26_5eb69f9bf8"/>
<path d="
M298.171 -229.279
L298.171 -257.427" id="C1_27_d9b48f0d30"/>
<path d="
M301.212 -242.563
L301.212 -269.366" id="C1_28_3c5ba7afc2"/>
<path d="
M304.254 -232.679
L304.254 -263.772" id="C1_29_0cb12bb1ed"/>
<path d="
M307.295 -223.955
L307.295 -258.959" id="C1_2a_5bf51c09bd"/>
<path d="
M310.337 -224.128
L310.337 -254.024" id="C1_2b_aad3c7fbca"/>
<path d="
M313.379 -230.977
L313.379 -256.964" id="C1_2c_0b0c4ff459"/>
<path d="
M316.42 -234.682
L316.42 -264.019" id="C1_2d_735bfa897f"/>
<path d="
M319.462 -227.156
L319.462 -264.092" id="C1_2e_301e6128bd"/>
<path d="
M322.503 -232.536
L322.503 -264.665" id="C1_2f_5ba99726e6"/>
<path d="
M325.545 -234.312
L325.545 -268.489" id="C1_30_f137530a8c"/>
<path d="
M328.586 -235.001
L328.586 -270.182" id="C1_31_07581af8be"/>
<path d="
M331.628 -244.777
L331.628 -271.209" id="C1_32_9277970712"/>
<path d="
M334.669 -248.154
L334.669 -275.99" id="C1_33_ad7774309e"/>
<path d="
M337.711 -239.474
L337.711 -277.041" id="C1_34_2280251ad4"/>
<path d="
M340.753 -241.93
L340.753 -269.778" id="C1_35_00533c02e9"/>
<path d="
M343.794 -239.69
L343.794 -268.755" id="C1_36_8d3ede2fd0"/>
<path d="
M346.836 -240
L346.836 -267.564" id="C1_37_4849868180"/>
<path d="
M349.877 -239.424
L349.877 -272.504" id="C1_38_5a9ed18580"/>
<path d="
M352.919 -246.765
L352.919 -279.495" id="C1_39_16460183c2"/>
<path d="
M355.96 -250.583
L355.96 -282.732" id="C1_3a_ab668e801d"/>
<path d="
M359.002 -220.549
L359.002 -297.474" id="C1_3b_f85434a4d5"/>
<path d="
M362.043 -249.646
L362.043 -273.711" id="C1_3c_53e6cc2047"/>
<path d="
M365.085 -250.893
L365.085 -276.998" id="C1_3d_e69f733038"/>
<path d="
M368.127 -240.536
L368.127 -278.846" id="C1_3e_c430ae2de2"/>
<path d="
M371.168 -238.431
L371.168 -269.794" id="C1_3f_0dd524829d"/>
<path d="
M374.21 -252.226
L374.21 -275.489" id="C1_40_f6c78dc7a4"/>
<path d="
M377.251 -254.414
L377.251 -281.195" id="C1_41_e8749e487c"/>
<path d="
M380.293 -250.333
L380.293 -289.332" id="C1_42_1fcfaa44e3"/>
<path d="
M383.334 -251.145
L383.334 -291.651" id="C1_43_8175a72f1d"/>
<path d="
M386.376 -241.723
L386.376 -281.538" id="C1_44_dbfae88694"/>
<path d="
M389.417 -244.642
L389.417 -281.795" id="C1_45_4ae90b2942"/>
<path d="
M392.459 -254.942
L392.459 -286.134" id="C1_46_6e3186c71c"/>
<path d="
M395.501 -259.905
L395.501 -287.168" id="C1_47_517d64f122"/>
<path d="
M398.542 -260.377
L398.542 -292.252" id="C1_48_f3d8d732ce"/>
<path d="
M401.584 -265.569
L401.584 -300.024" id="C1_49_6aec1827d4"/>
<path d="
M404.625 -274.575
L404.625 -299.529" id="C1_4a_1b251e0438"/>
<path d="
M407.667 -266.088
L407.667 -293.464" id="C1_4b_f25b71a51e"/>
<path d="
M410.708 -260.242
L410.708 -290.623" id="C1_4c_260a5a8295"/>
<path d="
M413.75 -264.036
L413.75 -302.748" id="C1_4d_911d75e62d"/>
<path d="
M416.791 -264.613
L416.791 -292.029" id="C1_4e_ad3880287f"/>
<path d="
M419.833 -267.26
L419.833 -295.202" id="C1_4f_527de523c7"/>
<path d="
M422.875 -265.866
L422.875 -292.848" id="C1_50_f7f5e8b554"/>
<path d="
M425.916 -265.455
L425.916 -297.316" id="C1_51_5849513929"/>
<path d="
M428.958 -263.163
L428.958 -296.742" id="C1_52_202f97a26a"/>
<path d="
M431.999 -272.587
L431.999 -298.651" id="C1_53_2a054e23fc"/>
<path d="
M435.041 -274.327
L435.041 -295.412" id="C1_54_9bc7febef8"/>
<path d="
M438.082 -277.175
L438.082 -303.5" id="C1_55_b3a63e30c3"/>
<path d="
M441.124 -276.503
L441.124 -311.006" id="C1_56_d8a6dcd210"/>
<path d="
M444.165 -282.332
L444.165 -317.171" id="C1_57_e1975e7037"/>
<path d="
M447.207 -286.227
L447.207 -315.613" id="C1_58_91c14a81c3"/>
<path d="
M450.249 -289.466
L450.249 -319.43" id="C1_59_019953010a"/>
<path d="
M453.29 -287.209
L453.29 -320.407" id="C1_5a_7435d80d8e"/>
<path d="
M456.332 -286.683
L456.332 -316.745" id="C1_5b_d76655ffb5"/>
<path d="
M459.373 -290.826
L459.373 -311.896" id="C1_5c_60f906c9c6"/>
<path d="
M462.415 -293.906
L462.415 -315.078" id="C1_5d_475e0dc924"/>
<path d="
M465.456 -295.695
L465.456 -320.961" id="C1_5e_1c245f9a91"/>
<path d="
M468.498 -279.98
L468.498 -310.925" id="C1_5f_4dcf250669"/>
<path d="
M471.54 -283.717
L471.54 -313.581" id="C1_60_873021a7b7"/>
<path d="
M474.581 -289.786
L474.581 -325.812" id="C1_61_8fea900fd9"/>
<path d="
M477.623 -287.995
L477.623 -326.589" id="C1_62_26bf7dfaef"/>
<path d="
M480.664 -288.514
L480.664 -321.557" id="C1_63_a19cb975cc"/>
<path d="
M483.706 -293.921
L483.706 -321.632" id="C1_64_556170078d"/>
<path d="
M486.747 -298.578
L486.747 -321.033" id="C1_65_d9680c5fe8"/>
<path d="
M489.789 -296.32
L489.789 -321.923" id="C1_66_40c72e68fd"/>
<path d="
M492.83 -304.91
L492.83 -328.105" id="C1_67_87d59465f6"/>
<path d="
M495.872 -309.336
L495.872 -330.427" id="C1_68_2efe1dd7b0"/>
<path d="
M498.914 -309.176
L498.914 -337.994" id="C1_69_bf5b4a27ce"/>
<path d="
M501.955 -312.573
L501.955 -350.428" id="C1_6a_557f7c19b6"/>
<path d="
M504.997 -311.944
L504.997 -348.014" id="C1_6b_d3e6d03558"/>
<path d="
M508.038 -311.378
L508.038 -351.182" id="C1_6c_253cfe3925"/>
<path d="
M511.08 -315.539
L511.08 -343.052" id="C1_6d_7c6189d81c"/>
<path d="
M514.121 -322.018
L514.121 -351.919" id="C1_6e_1f3c0f6ca2"/>
<path d="
M517.163 -321.413
L517.163 -342.557" id="C1_6f_2261b6e067"/>
<path d="
M520.204 -313.979
L520.204 -339.805" id="C1_70_9a75cc0e49"/>
<path d="
M523.246 -312.553
L523.246 -342.246" id="C1_71_15e203014d"/>
<path d="
M526.288 -319.4
L526.288 -348.981" id="C1_72_a6dc6d163f"/>
<path d="
M529.329 -323.015
L529.329 -343.205" id="C1_73_b37ff4444e"/>
<path d="
M532.371 -318.141
L532.371 -346.667" id="C1_74_6a9b840459"/>
<path d="
M535.412 -321.033
L535.412 -342.32" id="C1_75_af5ce6ed2d"/>
<path d="
M538.454 -322.312
L538.454 -351.89" id="C1_76_28231697fd"/>
<path d="
M541.495 -331.622
L541.495 -348.841" id="C1_77_76f215b7d1"/>
<path d="
M544.537 -328.352
L544.537 -350.612" id="C1_78_b162f056b1"/>
<path d="
M547.578 -334.715
L547.578 -356.86" id="C1_79_605218d35e"/>
<path d="
M550.62 -333.531
L550.62 -361.924" id="C1_7a_b4de2198c1"/>
<path d="
M553.662 -330.168
L553.662 -359.379" id="C1_7b_3da564f557"/>
<path d="
M556.703 -330.474
L556.703 -361.321" id="C1_7c_9c89cb718b"/>
<path d="
M559.745 -336.321
L559.745 -362.353" id="C1_7d_90db7f9ca0"/>
<path d="
M562.786 -333.272
L562.786 -359.978" id="C1_7e_78b732a291"/>
<path d="
M565.828 -336.498
L565.828 -361.823" id="C1_7f_dac306762a"/>
<path d="
M568.869 -336.02
L568.869 -362.389" id="C1_80_c23d62552b"/>
<path d="
M571.911 -336.534
L571.911 -364.477" id="C1_81_76a8b85201"/>
<path d="
M574.952 -342.664
L574.952 -364.697" id="C1_82_b7aff5267a"/>
<path d="
M577.994 -341.1
L577.994 -364.762" id="C1_83_6c95c3c9af"/>
<path d="
M581.036 -343.982
L581.036 -371.89" id="C1_84_19367a8754"/>
<path d="
M584.077 -331.399
L584.077 -357.266" id="C1_85_01c2a46b2a"/>
<path d="
M587.119 -337.807
L587.119 -354.605" id="C1_86_8ba211a635"/>
<path d="
M590.16 -348.873
L590.16 -366.822" id="C1_87_e58397df5f"/>
<path d="
M593.202 -349.932
L593.202 -375.817" id="C1_88_39dabd81f4"/>
<path d="
M596.243 -345.701
L596.243 -366.731" id="C1_89_af6596b1ce"/>
<path d="
M599.285 -341.191
L599.285 -362.378" id="C1_8a_57bf4b3705"/>
<path d="
M602.326 -341.341
L602.326 -365.095" id="C1_8b_9a52334c06"/>
<path d="
M605.368 -346.195
L605.368 -377.349" id="C1_8c_90132720cc"/>
<path d="
M608.41 -351.265
L608.41 -385.331" id="C1_8d_89cb5c7370"/>
<path d="
M611.451 -344.993
L611.451 -373.701" id="C1_8e_ae14bdfd72"/>
<path d="
M614.493 -347.226
L614.493 -369.086" id="C1_8f_a1f1940694"/>
<path d="
M617.534 -360.136
L617.534 -382.281" id="C1_90_78dedda39c"/>
<path d="
M620.576 -356.143
L620.576 -387.465" id="C1_91_7e76508906"/>
<path d="
M623.617 -352.287
L623.617 -383.119" id="C1_92_a8f83b68c7"/>
<path d="
M626.659 -359.873
L626.659 -388.805" id="C1_93_6495fc7302"/>
<path d="
M629.7 -364.11
L629.7 -389.816" id="C1_94_12d9f7bcc7"/>
<path d="
M632.742 -371.589
L632.742 -397.389" id="C1_95_3f07205a89"/>
<path d="
M635.784 -376.257
L635.784 -405.846" id="C1_96_f5641462cb"/>
<path d="
M638.825 -378.215
L638.825 -408.827" id="C1_97_fffadebd4e"/>
<path d="
M641.867 -378.287
L641.867 -408.564" id="C1_98_55ceb7f0eb"/>
<path d="
M644.908 -382.618
L644.908 -412.518" id="C1_99_3f1ab1513d"/>
<path d="
M647.95 -372.784
L647.95 -397.766" id="C1_9a_bf42d976c6"/>
<path d="
M650.991 -363.094
L650.991 -383.821" id="C1_9b_239f525cfc"/>
<path d="
M654.033 -366.759
L654.033 -393.208" id="C1_9c_dc436f34bf"/>
<path d="
M657.075 -368.19
L657.075 -394.876" id="C1_9d_c74c204724"/>
<path d="
M660.116 -370.437
L660.116 -397.38" id="C1_9e_4179ae6c4d"/>
<path d="
M663.158 -382.234
L663.158 -418.786" id="C1_9f_b8e241df16"/>
<path d="
M666.199 -387.414
L666.199 -419.339" id="C1_a0_98a508c68b"/>
<path d="
M669.241 -385.093
L669.241 -415.266" id="C1_a1_db113b4784"/>
<path d="
M672.282 -384.737
L672.282 -411.168" id="C1_a2_008fbfdc71"/>
<path d="
M675.324 -385.629
L675.324 -409.791" id="C1_a3_d0965749c4"/>
<path d="
M678.365 -375.346
L678.365 -398.202" id="C1_a4_4cc45a54fa"/>
<path d="
M681.407 -373.689
L681.407 -401.667" id="C1_a5_b6a0b80388"/>
<path d="
M684.449 -383.337
L684.449 -406.13" id="C1_a6_98e2ce7b2e"/>
<path d="
M687.49 -388.041
L687.49 -407.247" id="C1_a7_96a12d8078"/>
<path d="
M690.532 -386.337
L690.532 -412.302" id="C1_a8_a19245b4ac"/>
<path d="
M693.573 -386.44
L693.573 -412.652" id="C1_a9_766ae8c6be"/>
<path d="
M696.615 -390.872
L696.615 -416.04" id="C1_aa_6c4caea351"/>
<path d="
M699.656 -394.113
L699.656 -420.851" id="C1_ab_7408f0de9f"/>
<path d="
M702.698 -392.767
L702.698 -419.916" id="C1_ac_f8d4b81415"/>
<path d="
M705.739 -398.513
L705.739 -419.925" id="C1_ad_5624786192"/>
<path d="
M708.781 -401.964
L708.781 -420.663" id="C1_ae_ba61a9b119"/>
<path d="
M711.823 -403.254
L711.823 -423.96" id="C1_af_70e6b18111"/>
<path d="
M714.864 -410.188
L714.864 -428.005" id="C1_b0_be2c57b1ba"/>
<path d="
M717.906 -416.713
L717.906 -439.207" id="C1_b1_a608a35f0c"/>
<path d="
M720.947 -414.88
L720.947 -436.321" id="C1_b2_91fdab1b91"/>
<path d="
M723.989 -411.26
L723.989 -432.137" id="C1_b3_d78b5b2b06"/>
<path d="
M727.03 -410.365
L727.03 -430.827" id="C1_b4_808dde0bcc"/>
<path d="
M730.072 -409.703
L730.072 -429.989" id="C1_b5_a3a5c34538"/>
<path d="
M733.113 -407.333
L733.113 -425.304" id="C1_b6_197e8032ad"/>
<path d="
M736.155 -406.571
L736.155 -427.124" id="C1_b7_4368257b38"/>
<path d="
M739.197 -409.536
L739.197 -430.024" id="C1_b8_594cf1e001"/>
<path d="
M742.238 -414.771
L742.238 -438.768" id="C1_b9_d9cae31f9f"/>
<path d="
M745.28 -417.427
L745.28 -442.373" id="C1_ba_c67b1d593e"/>
<path d="
M748.321 -414.677
L748.321 -441.507" id="C1_bb_170eeff30d"/>
<path d="
M751.363 -414.683
L751.363 -439.516" id="C1_bc_2ee51fbb7d"/>
<path d="
M754.404 -411.43
L754.404 -434.789" id="C1_bd_adc13e55df"/>
<path d="
M757.446 -413.38
L757.446 -432.927" id="C1_be_b44a06a186"/>
<path d="
M760.487 -412.984
L760.487 -433.323" id="C1_bf_271517b9bc"/>
<path d="
M763.529 -411.242
L763.529 -429.068" id="C1_c0_f94d952939"/>
<path d="
M766.571 -412.753
L766.571 -428.968" id="C1_c1_57fa59117f"/>
<path d="
M769.612 -408.167
L769.612 -426.851" id="C1_c2_8ac4681e8f"/>
<path d="
M772.654 -411.596
L772.654 -430.257" id="C1_c3_3939a0a522"/>
<path d="
M775.695 -416.09
L775.695 -439.918" id="C1_c4_f510867a9d"/>
<path d="
M778.737 -425.126
L778.737 -438.951" id="C1_c5_b7630319dc"/>
<path d="
M781.778 -432.152
L781.778 -449.917" id="C1_c6_3d66cb1242"/>
<path d="
M784.82 -433.009
L784.82 -455.938" id="C1_c7_68f2b07248"/>
<path d="
M787.861 -421.194
L787.861 -445.044" id="C1_c8_50688ec9aa"/>
<path d="
M790.903 -413.366
L790.903 -437.306" id="C1_c9_2cc1e85065"/>
<path d="
M793.945 -415.787
L793.945 -435.546" id="C1_ca_55fddf1422"/>
<path d="
M796.986 -418.073
L796.986 -438.949" id="C1_cb_c8159ef43f"/>
<path d="
M800.028 -414.248
L800.028 -435.057" id="C1_cc_fc1f09377a"/>
<path d="
M803.069 -411.529
L803.069 -437.511" id="C1_cd_96479f9586"/>
<path d="
M806.111 -409.971
L806.111 -434.881" id="C1_ce_454d7e6432"/>
<path d="
M809.152 -412.572
L809.152 -433.602" id="C1_cf_6d6f263447"/>
<path d="
M812.194 -413.73
L812.194 -437.428" id="C1_d0_0bc74f328e"/>
<path d="
M815.235 -415.468
L815.235 -434.146" id="C1_d1_0becfaf291"/>
<path d="
M818.277 -418.199
L818.277 -437.677" id="C1_d2_608a88e1ed"/>
<path d="
M821.319 -415.66
L821.319 -436.511" id="C1_d3_0aa4da7389"/>
<path d="
M824.36 -414.459
L824.36 -433.391" id="C1_d4_8577f0c00f"/>
<path d="
M827.402 -415.469
L827.402 -439.348" id="C1_d5_fc00a33e8f"/>
<path d="
M830.443 -426.496
L830.443 -446.797" id="C1_d6_48d6e54fb7"/>
<path d="
M833.485 -425.216
L833.485 -443.491" id="C1_d7_56e22485b1"/>
<path d="
M836.526 -423.312
L836.526 -439.31" id="C1_d8_65187a9a1c"/>
<path d="
M839.568 -420.012
L839.568 -438.906" id="C1_d9_728b13cb89"/>
<path d="
M842.61 -413.313
L842.61 -430.083" id="C1_da_adf43cdc2e"/>
<path d="
M845.651 -412.104
L845.651 -432.748" id="C1_db_bf6dd331ba"/>
<path d="
M848.693 -414.866
L848.693 -435.41" id="C1_dc_18c54a731b"/>
<path d="
M851.734 -417.961
L851.734 -436.151" id="C1_dd_5ff8afcc3e"/>
<path d="
M854.776 -419.091
L854.776 -435.638" id="C1_de_fcae65f410"/>
<path d="
M857.817 -413.677
L857.817 -431.263" id="C1_df_1af9abd653"/>
<path d="
M860.859 -412.142
L860.859 -429.005" id="C1_e0_f36a248046"/>
<path d="
M863.9 -409.218
L863.9 -431.267" id="C1_e1_c0e724e76e"/>
<path d="
M866.942 -409.738
L866.942 -430.968" id="C1_e2_7f7601cfe8"/>
<path d="
M869.984 -408.8
L869.984 -423.749" id="C1_e3_e76be71c4f"/>
<path d="
M873.025 -413.293
L873.025 -431.558" id="C1_e4_885c55a6b7"/>
<path d="
M876.067 -418.07
L876.067 -434.321" id="C1_e5_1cb8fa267b"/>
<path d="
M879.108 -410.137
L879.108 -430.613" id="C1_e6_ed1e13d8af"/>
<path d="
M882.15 -406.923
L882.15 -423.95" id="C1_e7_25f2c9eb24"/>
<path d="
M885.191 -404.304
L885.191 -424.85" id="C1_e8_0f18d82373"/>
<path d="
M888.233 -401.188
L888.233 -427.084" id="C1_e9_d4d31e9bb8"/>
<path d="
M891.274 -402.833
L891.274 -426.85" id="C1_ea_dc05bb3f8e"/>
<path d="
M894.316 -406.303
L894.316 -420.954" id="C1_eb_f87f24ded4"/>
<path d="
M897.358 -405.767
L897.358 -419.903" id="C1_ec_f31b1c724b"/>
<path d="
M900.399 -405.891
L900.399 -421.367" id="C1_ed_4103016771"/>
<path d="
M903.441 -407.05
L903.441 -421.222" id="C1_ee_a4b586e89b"/>
<path d="
M906.482 -409.766
L906.482 -421.416" id="C1_ef_e656078724"/>
<path d="
M909.524 -408.243
L909.524 -421.15" id="C1_f0_b4a3a04f24"/>
<path d="
M912.565 -403.248
L912.565 -421.231" id="C1_f1_36b8751315"/>
<path d="
M915.607 -400.567
L915.607 -419.944" id="C1_f2_fb8b6d50f2"/>
<path d="
M918.648 -405.292
L918.648 -425.316" id="C1_f3_b75fc2ee8a"/>
<path d="
M921.69 -399.714
L921.69 -423.84" id="C1_f4_5c5901c5e2"/>
<path d="
M924.732 -394.689
L924.732 -418.59" id="C1_f5_3327082169"/>
<path d="
M927.773 -399.041
L927.773 -415.605" id="C1_f6_d2534267eb"/>
<path d="
M930.815 -403.928
L930.815 -420.551" id="C1_f7_ce21d7b089"/>
<path d="
M933.856 -396.642
L933.856 -414.564" id="C1_f8_4dc1b6dd7e"/>
<path d="
M936.898 -390.036
L936.898 -409.706" id="C1_f9_76644e629d"/>
<path d="
M939.939 -397.458
L939.939 -416.854" id="C1_fa_1a88e40c07"/>
<path d="
M942.981 -400.542
L942.981 -415.779" id="C1_fb_2640a1af19"/>
<path d="
M946.022 -393.983
L946.022 -412.725" id="C1_fc_e1edd45016"/>
<path d="
M949.064 -390.474
L949.064 -409.532" id="C1_fd_751e2853e3"/>
<path d="
M952.106 -384.262
L952.106 -404.147" id="C1_fe_3f3ae186a5"/>
<path d="
M955.147 -386.752
L955.147 -405.626" id="C1_ff_ca78b187f9"/>
<path d="
M958.189 -393.344
L958.189 -410.322" id="C1_100_576bf34175"/>
<path d="
M961.23 -389.525
L961.23 -408.761" id="C1_101_3aecfe486d"/>
<path d="
M964.272 -384.966
L964.272 -406.265" id="C1_102_d103de551b"/>
<path d="
M967.313 -376.56
L967.313 -398.709" id="C1_103_d66294eab2"/>
<path d="
M970.355 -371.387
L970.355 -392.637" id="C1_104_974627f502"/>
<path d="
M973.396 -375.432
L973.396 -393.355" id="C1_105_49a4b20124"/>
<path d="
M976.438 -373.491
L976.438 -394.105" id="C1_106_3655efe9bf"/>
<path d="
M979.48 -377.97
L979.48 -398.224" id="C1_107_9963fdcb96"/>
<path d="
M982.521 -380.469
L982.521 -399.077" id="C1_108_6f3f384d17"/>
<path d="
M985.563 -377.784
L985.563 -399.424" id="C1_109_954764a8e7"/>
<path d="
M988.604 -370.836
L988.604 -395.349" id="C1_10a_aa10c7e21c"/>
<path d="
M991.646 -367.925
L991.646 -395.048" id="C1_10b_77646a78ce"/>
<path d="
M994.687 -369.489
L994.687 -392.904" id="C1_10c_f1e443726e"/>
<path d="
M997.729 -364.471
L997.729 -388.529" id="C1_10d_84e0d7a940"/>
<path d="
M1000.77 -368.514
L1000.77 -391.983" id="C1_10e_ebb906b327"/>
<path d="
M1003.81 -378.26
L1003.81 -393.702" id="C1_10f_c9846120c7"/>
<path d="
M1006.85 -361.471
L1006.85 -381.52" id="C1_110_030ce342a0"/>
<path d="
M1009.9 -355.612
L1009.9 -375.075" id="C1_111_807d68461b"/>
<path d="
M1012.94 -356.727
L1012.94 -375.989" id="C1_112_66d6fdf4fc"/>
<path d="
M1015.98 -352.127
L1015.98 -377.105" id="C1_113_43c2f083d7"/>
<path d="
M1019.02 -356.183
L1019.02 -385.131" id="C1_114_ecadbcc6d1"/>
<path d="
M1022.06 -354.286
L1022.06 -386.191" id="C1_115_2e1ba8e787"/>
<path d="
M1025.1 -351.355
L1025.1 -381.67" id="C1_116_0ec61e9814"/>
<path d="
M1028.14 -348.442
L1028.14 -377.924" id="C1_117_fd668c4331"/>
<path d="
M1031.19 -341.649
L1031.19 -372.37" id="C1_118_5a02b22d38"/>
<path d="
M1034.23 -342.624
L1034.23 -371.44" id="C1_119_e782d12ac4"/>
<path d="
M1037.27 -349.058
L1037.27 -376.912" id="C1_11a_100c6abf22"/>
<path d="
M1040.31 -349.916
L1040.31 -375.172" id="C1_11b_f568de19c1"/>
<path d="
M1043.35 -348.784
L1043.35 -368.851" id="C1_11c_874ec0eacb"/>
<path d="
M1046.39 -342.954
L1046.39 -363.746" id="C1_11d_c6b2e36637"/>
<path d="
M1049.44 -340.512
L1049.44 -363.983" id="C1_11e_0ea91c326c"/>
<path d="
M1052.48 -344.38
L1052.48 -365.362" id="C1_11f_efdcfb7018"/>
<path d="
M1055.52 -333.774
L1055.52 -359.918" id="C1_120_5f20cc04fe"/>
<path d="
M1058.56 -332.549
L1058.56 -353.779" id="C1_121_74cdec5073"/>
<path d="
M1061.6 -330.284
L1061.6 -352.516" id="C1_122_23969aca08"/>
<path d="
M1064.64 -328.757
L1064.64 -353.69" id="C1_123_e34644f1ea"/>
<path d="
M1067.68 -328.972
L1067.68 -355.547" id="C1_124_bd3fa44377"/>
<path d="
M1070.73 -334.11
L1070.73 -354.642" id="C1_125_ea2aa3ddb1"/>
<path d="
M1073.77 -331.517
L1073.77 -351.503" id="C1_126_e6824bcbb8"/>
<path d="
M1076.81 -321.691
L1076.81 -344.837" id="C1_127_1608cf82a7"/>
<path d="
M1079.85 -313.861
L1079.85 -342.393" id="C1_128_c46e719cc0"/>
<path d="
M1082.89 -316.296
L1082.89 -347.102" id="C1_129_e1dcc9991b"/>
<path d="
M1085.93 -323.043
L1085.93 -348.953" id="C1_12a_6e09ac0486"/>
<path d="
M1088.98 -323.636
L1088.98 -346.2" id="C1_12b_461c18fde8"/>
<path d="
M1092.02 -324.382
L1092.02 -348.232" id="C1_12c_257e4d2f06"/>
<path d="
M1095.06 -312.124
L1095.06 -341.396" id="C1_12d_3511001959"/>
<path d="
M1098.1 -300.281
L1098.1 -321.578" id="C1_12e_7b7a535cb6"/>
<path d="
M1101.14 -305.222
L1101.14 -328.632" id="C1_12f_25fc7882b8"/>
<path d="
M1104.18 -317.8
L1104.18 -341.806" id="C1_130_ee3e0e4893"/>
<path d="
M1107.23 -321.008
L1107.23 -347.989" id="C1_131_d8cb427483"/>
<path d="
M1110.27 -310.255
L1110.27 -338.194" id="C1_132_9b45fd3839"/>
<path d="
M1113.31 -305.917
L1113.31 -336.403" id="C1_133_5686cbe9d7"/>
<path d="
M1116.35 -297.536
L1116.35 -324.324" id="C1_134_33d8b69af5"/>
<path d="
M1119.39 -296.076
L1119.39 -318.331" id="C1_135_7050f37477"/>
<path d="
M1122.43 -299.183
L1122.43 -323.69" id="C1_136_9ebad1da1a"/>
<path d="
M1125.47 -301.838
L1125.47 -327.209" id="C1_137_0892dcb436"/>
<path d="
M1128.52 -297.909
L1128.52 -325.053" id="C1_138_877d3209fc"/>
<path d="
M1131.56 -293.691
L1131.56 -321.907" id="C1_139_0bcb438b0c"/>
<path d="
M1134.6 -299.303
L1134.6 -329.038" id="C1_13a_87562dd07b"/>
<path d="
M1137.64 -298.778
L1137.64 -323.258" id="C1_13b_3341ef3c3b"/>
<path d="
M1140.68 -290.542
L1140.68 -313.106" id="C1_13c_b4b8e11efe"/>
<path d="
M1143.72 -285.28
L1143.72 -314.973" id="C1_13d_03e5c6c71a"/>
<path d="
M1146.77 -289.05
L1146.77 -320.639" id="C1_13e_51f6908fc1"/>
<path d="
M1149.81 -293.008
L1149.81 -327.396" id="C1_13f_0bd9af20c8"/>
<path d="
M1152.85 -288.196
L1152.85 -324.404" id="C1_140_0408324b02"/>
<path d="
M1155.89 -283.207
L1155.89 -311.004" id="C1_141_c7fdede072"/>
<path d="
M1158.93 -279.156
L1158.93 -302.488" id="C1_142_5cad43e16a"/>
<path d="
M1161.97 -281.162
L1161.97 -306.303" id="C1_143_48130bb767"/>
<path d="
M1165.01 -283.942
L1165.01 -310.402" id="C1_144_9cd4ecae66"/>
<path d="
M1168.06 -282.264
L1168.06 -306.832" id="C1_145_db2723afbe"/>
<path d="
M1171.1 -280.588
L1171.1 -310.14" id="C1_146_c08acd2fdf"/>
<path d="
M1174.14 -271.15
L1174.14 -301.764" id="C1_147_87eea984ed"/>
<path d="
M1177.18 -271.044
L1177.18 -304.912" id="C1_148_5a385cef9d"/>
<path d="
M1180.22 -265.79
L1180.22 -303.463" id="C1_149_d8f040adf8"/>
<path d="
M1183.26 -280.609
L1183.26 -306.547" id="C1_14a_12840238fc"/>
<path d="
M1186.31 -284.295
L1186.31 -309.211" id="C1_14b_7a2e19e8e1"/>
<path d="
M1189.35 -276.771
L1189.35 -314.442" id="C1_14c_3d9e237e06"/>
<path d="
M1192.39 -274.79
L1192.39 -307.648" id="C1_14d_2d2b0020a8"/>
<path d="
M1195.43 -273.916
L1195.43 -308.081" id="C1_14e_7b8096c153"/>
<path d="
M1198.47 -274.481
L1198.47 -311.572" id="C1_14f_fdeda45adf"/>
<path d="
M1201.51 -262.539
L1201.51 -292.825" id="C1_150_551bbc4112"/>
<path d="
M1204.55 -258.369
L1204.55 -295.274" id="C1_151_4c28b9d742"/>
<path d="
M1207.6 -261.835
L1207.6 -300.187" id="C1_152_9cec283aae"/>
<path d="
M1210.64 -262.239
L1210.64 -298.196" id="C1_153_35c31eef2e"/>
<path d="
M1213.68 -250.35
L1213.68 -291.476" id="C1_154_1840355154"/>
<path d="
M1216.72 -249.325
L1216.72 -289.149" id="C1_155_7cde354d81"/>
<path d="
M1219.76 -241.459
L1219.76 -273.248" id="C1_156_f328d6c472"/>
<path d="
M1222.8 -245.794
L1222.8 -270.897" id="C1_157_baa4baede2"/>
<path d="
M1225.85 -251.888
L1225.85 -283.544" id="C1_158_617f531182"/>
<path d="
M1228.89 -250.973
L1228.89 -285.43" id="C1_159_f65a2b63dd"/>
<path d="
M1231.93 -252.329
L1231.93 -280.193" id="C1_15a_a267480313"/>
<path d="
M1234.97 -243.295
L1234.97 -275.293" id="C1_15b_5ea04b24f6"/>
<path d="
M1238.01 -241.43
L1238.01 -276.231" id="C1_15c_ee2a09f340"/>
<path d="
M1241.05 -248.539
L1241.05 -283.188" id="C1_15d_203979b280"/>
<path d="
M1244.1 -257.539
L1244.1 -282.303" id="C1_15e_731853663b"/>
<path d="
M1247.14 -250.543
L1247.14 -281.273" id="C1_15f_1d21acd16f"/>
<path d="
M1250.18 -240.445
L1250.18 -274.747" id="C1_160_3b5ed4e3d3"/>
<path d="
M1253.22 -248.942
L1253.22 -270.306" id="C1_161_0260df9e99"/>
<path d="
M1256.26 -235.277
L1256.26 -272.198" id="C1_162_9102a2fac5"/>
<path d="
M1259.3 -237.177
L1259.3 -275.589" id="C1_163_cceec9c2e0"/>
<path d="
M1262.34 -243.532
L1262.34 -279.068" id="C1_164_7737c6c01f"/>
<path d="
M1265.39 -243.597
L1265.39 -285.75" id="C1_165_24f97f3086"/>
<path d="
M1268.43 -249.641
L1268.43 -280.466" id="C1_166_00f604a464"/>
<path d="
M1271.47 -236.105
L1271.47 -265.748" id="C1_167_95ceaa56fe"/>
<path d="
M1274.51 -232.84
L1274.51 -262.333" id="C1_168_0ada828cf1"/>
<path d="
M1277.55 -239.386
L1277.55 -267.692" id="C1_169_ca05c1f1ea"/>
<path d="
M1280.59 -240.445
L1280.59 -272.763" id="C1_16a_f895a584d5"/>
<path d="
M1283.64 -243.828
L1283.64 -275.421" id="C1_16b_42e61295ac"/>
<path d="
M1286.68 -246.427
L1286.68 -273.765" id="C1_16c_73d2351b98"/>
<path d="
M1289.72 -237.479
L1289.72 -264.793" id="C1_16d_fcd2ce0fea"/>
</defs>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_0_805c1971d7" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_1_b47e1bf1c8" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_2_e83e6b791e" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_3_47438bc470" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_4_30a9b3815b" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_5_8b4e70a6b4" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_6_2ddab6b7d4" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_7_9fe96e0074" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_8_8e2bfda5f5" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_9_68bd9ee285" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_a_b3f1e2207c" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_b_328ac079c5" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_c_1921579406" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_d_05eba33989" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_e_a656d4a7d0" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_f_3dc7fa17a6" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_10_3a8b466f95" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_11_5480c1b095" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_12_4e0d0c9752" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_13_e59a856982" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_14_d0ff11b1e2" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_15_7af4b1076e" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_16_7daad8f1b1" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_17_922e340fe7" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_18_6b084f3791" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_19_e1164aaf1a" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_1a_73e5691af8" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_1b_63f50954fe" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_1c_f772779089" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_1d_a87c7d768d" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_1e_805e9dea99" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_1f_1ddefbc506" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_20_93d81ed1a9" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_21_eadd4cf962" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_22_455c62d8be" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_23_464923eeeb" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_24_744b14c913" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_25_40ad88da8a" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_26_5eb69f9bf8" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_27_d9b48f0d30" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_28_3c5ba7afc2" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_29_0cb12bb1ed" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_2a_5bf51c09bd" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_2b_aad3c7fbca" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_2c_0b0c4ff459" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_2d_735bfa897f" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_2e_301e6128bd" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_2f_5ba99726e6" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_30_f137530a8c" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_31_07581af8be" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_32_9277970712" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_33_ad7774309e" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_34_2280251ad4" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_35_00533c02e9" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_36_8d3ede2fd0" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_37_4849868180" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_38_5a9ed18580" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_39_16460183c2" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_3a_ab668e801d" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_3b_f85434a4d5" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_3c_53e6cc2047" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_3d_e69f733038" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_3e_c430ae2de2" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_3f_0dd524829d" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_40_f6c78dc7a4" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_41_e8749e487c" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_42_1fcfaa44e3" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_43_8175a72f1d" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_44_dbfae88694" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_45_4ae90b2942" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_46_6e3186c71c" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_47_517d64f122" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_48_f3d8d732ce" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_49_6aec1827d4" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_4a_1b251e0438" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_4b_f25b71a51e" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_4c_260a5a8295" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_4d_911d75e62d" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_4e_ad3880287f" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_4f_527de523c7" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_50_f7f5e8b554" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_51_5849513929" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_52_202f97a26a" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_53_2a054e23fc" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_54_9bc7febef8" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_55_b3a63e30c3" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_56_d8a6dcd210" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_57_e1975e7037" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_58_91c14a81c3" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_59_019953010a" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_5a_7435d80d8e" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_5b_d76655ffb5" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_5c_60f906c9c6" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_5d_475e0dc924" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_5e_1c245f9a91" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_5f_4dcf250669" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_60_873021a7b7" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_61_8fea900fd9" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_62_26bf7dfaef" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_63_a19cb975cc" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_64_556170078d" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_65_d9680c5fe8" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_66_40c72e68fd" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_67_87d59465f6" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_68_2efe1dd7b0" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_69_bf5b4a27ce" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_6a_557f7c19b6" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_6b_d3e6d03558" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_6c_253cfe3925" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_6d_7c6189d81c" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_6e_1f3c0f6ca2" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_6f_2261b6e067" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_70_9a75cc0e49" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_71_15e203014d" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_72_a6dc6d163f" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_73_b37ff4444e" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_74_6a9b840459" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_75_af5ce6ed2d" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_76_28231697fd" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_77_76f215b7d1" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_78_b162f056b1" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_79_605218d35e" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_7a_b4de2198c1" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_7b_3da564f557" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_7c_9c89cb718b" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_7d_90db7f9ca0" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_7e_78b732a291" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_7f_dac306762a" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_80_c23d62552b" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_81_76a8b85201" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_82_b7aff5267a" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_83_6c95c3c9af" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_84_19367a8754" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_85_01c2a46b2a" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_86_8ba211a635" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_87_e58397df5f" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_88_39dabd81f4" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_89_af6596b1ce" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_8a_57bf4b3705" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_8b_9a52334c06" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_8c_90132720cc" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_8d_89cb5c7370" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_8e_ae14bdfd72" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_8f_a1f1940694" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_90_78dedda39c" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_91_7e76508906" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_92_a8f83b68c7" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_93_6495fc7302" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_94_12d9f7bcc7" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_95_3f07205a89" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_96_f5641462cb" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_97_fffadebd4e" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_98_55ceb7f0eb" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_99_3f1ab1513d" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_9a_bf42d976c6" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_9b_239f525cfc" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_9c_dc436f34bf" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_9d_c74c204724" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_9e_4179ae6c4d" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_9f_b8e241df16" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_a0_98a508c68b" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_a1_db113b4784" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_a2_008fbfdc71" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_a3_d0965749c4" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_a4_4cc45a54fa" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_a5_b6a0b80388" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_a6_98e2ce7b2e" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_a7_96a12d8078" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_a8_a19245b4ac" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_a9_766ae8c6be" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_aa_6c4caea351" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_ab_7408f0de9f" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_ac_f8d4b81415" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_ad_5624786192" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_ae_ba61a9b119" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_af_70e6b18111" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_b0_be2c57b1ba" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_b1_a608a35f0c" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_b2_91fdab1b91" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_b3_d78b5b2b06" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_b4_808dde0bcc" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_b5_a3a5c34538" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_b6_197e8032ad" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_b7_4368257b38" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_b8_594cf1e001" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_b9_d9cae31f9f" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_ba_c67b1d593e" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_bb_170eeff30d" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_bc_2ee51fbb7d" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_bd_adc13e55df" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_be_b44a06a186" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_bf_271517b9bc" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_c0_f94d952939" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_c1_57fa59117f" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_c2_8ac4681e8f" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_c3_3939a0a522" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_c4_f510867a9d" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_c5_b7630319dc" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_c6_3d66cb1242" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_c7_68f2b07248" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_c8_50688ec9aa" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_c9_2cc1e85065" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_ca_55fddf1422" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_cb_c8159ef43f" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_cc_fc1f09377a" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_cd_96479f9586" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_ce_454d7e6432" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_cf_6d6f263447" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_d0_0bc74f328e" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_d1_0becfaf291" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_d2_608a88e1ed" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_d3_0aa4da7389" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_d4_8577f0c00f" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_d5_fc00a33e8f" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_d6_48d6e54fb7" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_d7_56e22485b1" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_d8_65187a9a1c" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_d9_728b13cb89" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_da_adf43cdc2e" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_db_bf6dd331ba" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_dc_18c54a731b" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_dd_5ff8afcc3e" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_de_fcae65f410" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_df_1af9abd653" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_e0_f36a248046" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_e1_c0e724e76e" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_e2_7f7601cfe8" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_e3_e76be71c4f" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_e4_885c55a6b7" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_e5_1cb8fa267b" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_e6_ed1e13d8af" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_e7_25f2c9eb24" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_e8_0f18d82373" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_e9_d4d31e9bb8" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_ea_dc05bb3f8e" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_eb_f87f24ded4" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_ec_f31b1c724b" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_ed_4103016771" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_ee_a4b586e89b" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_ef_e656078724" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_f0_b4a3a04f24" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_f1_36b8751315" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_f2_fb8b6d50f2" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_f3_b75fc2ee8a" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_f4_5c5901c5e2" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_f5_3327082169" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_f6_d2534267eb" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_f7_ce21d7b089" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_f8_4dc1b6dd7e" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_f9_76644e629d" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_fa_1a88e40c07" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_fb_2640a1af19" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_fc_e1edd45016" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_fd_751e2853e3" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_fe_3f3ae186a5" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_ff_ca78b187f9" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_100_576bf34175" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_101_3aecfe486d" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_102_d103de551b" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_103_d66294eab2" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_104_974627f502" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_105_49a4b20124" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_106_3655efe9bf" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_107_9963fdcb96" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_108_6f3f384d17" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_109_954764a8e7" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_10a_aa10c7e21c" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_10b_77646a78ce" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_10c_f1e443726e" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_10d_84e0d7a940" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_10e_ebb906b327" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_10f_c9846120c7" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_110_030ce342a0" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_111_807d68461b" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_112_66d6fdf4fc" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_113_43c2f083d7" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_114_ecadbcc6d1" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_115_2e1ba8e787" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_116_0ec61e9814" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_117_fd668c4331" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_118_5a02b22d38" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_119_e782d12ac4" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_11a_100c6abf22" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_11b_f568de19c1" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_11c_874ec0eacb" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_11d_c6b2e36637" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_11e_0ea91c326c" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_11f_efdcfb7018" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_120_5f20cc04fe" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_121_74cdec5073" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_122_23969aca08" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_123_e34644f1ea" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_124_bd3fa44377" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_125_ea2aa3ddb1" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_126_e6824bcbb8" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_127_1608cf82a7" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_128_c46e719cc0" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_129_e1dcc9991b" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_12a_6e09ac0486" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_12b_461c18fde8" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_12c_257e4d2f06" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_12d_3511001959" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_12e_7b7a535cb6" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_12f_25fc7882b8" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_130_ee3e0e4893" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_131_d8cb427483" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_132_9b45fd3839" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_133_5686cbe9d7" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_134_33d8b69af5" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_135_7050f37477" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_136_9ebad1da1a" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_137_0892dcb436" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_138_877d3209fc" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_139_0bcb438b0c" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_13a_87562dd07b" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_13b_3341ef3c3b" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_13c_b4b8e11efe" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_13d_03e5c6c71a" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_13e_51f6908fc1" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_13f_0bd9af20c8" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_140_0408324b02" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_141_c7fdede072" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_142_5cad43e16a" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_143_48130bb767" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_144_9cd4ecae66" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_145_db2723afbe" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_146_c08acd2fdf" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_147_87eea984ed" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_148_5a385cef9d" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_149_d8f040adf8" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_14a_12840238fc" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_14b_7a2e19e8e1" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_14c_3d9e237e06" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_14d_2d2b0020a8" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_14e_7b8096c153" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_14f_fdeda45adf" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_150_551bbc4112" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_151_4c28b9d742" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_152_9cec283aae" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_153_35c31eef2e" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_154_1840355154" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_155_7cde354d81" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_156_f328d6c472" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_157_baa4baede2" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_158_617f531182" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_159_f65a2b63dd" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_15a_a267480313" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_15b_5ea04b24f6" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_15c_ee2a09f340" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_15d_203979b280" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_15e_731853663b" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_15f_1d21acd16f" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_160_3b5ed4e3d3" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_161_0260df9e99" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_162_9102a2fac5" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_163_cceec9c2e0" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_164_7737c6c01f" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_165_24f97f3086" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_166_00f604a464" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_167_95ceaa56fe" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_168_0ada828cf1" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_169_ca05c1f1ea" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_16a_f895a584d5" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_16b_42e61295ac" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_16c_73d2351b98" y="576.0"/>
</g>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:1.5;" x="0.0" xlink:href="#C1_16d_fcd2ce0fea" y="576.0"/>
</g>
</g>
<g id="matplotlib.axis_1">
<g id="xtick_1">
<g id="line2d_1">
<path clip-path="url(#p2460cf4024)" d="
M273.838 518.4
L273.838 57.6" style="fill:none;stroke:#cdba96;stroke-dasharray:1.000000,3.000000;stroke-dashoffset:0.0;"/>
</g>
<g id="line2d_2">
<defs>
<path d="
M0 0
L0 0" id="m219da94a98" style="stroke:#262626;"/>
</defs>
<g>
<use style="fill:#262626;stroke:#262626;" x="273.838278689" xlink:href="#m219da94a98" y="518.4"/>
</g>
</g>
<g id="line2d_3">
<g>
<use style="fill:#262626;stroke:#262626;" x="273.838278689" xlink:href="#m219da94a98" y="57.6"/>
</g>
</g>
</g>
<g id="xtick_2">
<g id="line2d_4">
<path clip-path="url(#p2460cf4024)" d="
M362.043 518.4
L362.043 57.6" style="fill:none;stroke:#cdba96;stroke-dasharray:1.000000,3.000000;stroke-dashoffset:0.0;"/>
</g>
<g id="line2d_5">
<g>
<use style="fill:#262626;stroke:#262626;" x="362.043442623" xlink:href="#m219da94a98" y="518.4"/>
</g>
</g>
<g id="line2d_6">
<g>
<use style="fill:#262626;stroke:#262626;" x="362.043442623" xlink:href="#m219da94a98" y="57.6"/>
</g>
</g>
</g>
<g id="xtick_3">
<g id="line2d_7">
<path clip-path="url(#p2460cf4024)" d="
M456.332 518.4
L456.332 57.6" style="fill:none;stroke:#cdba96;stroke-dasharray:1.000000,3.000000;stroke-dashoffset:0.0;"/>
</g>
<g id="line2d_8">
<g>
<use style="fill:#262626;stroke:#262626;" x="456.331721311" xlink:href="#m219da94a98" y="518.4"/>
</g>
</g>
<g id="line2d_9">
<g>
<use style="fill:#262626;stroke:#262626;" x="456.331721311" xlink:href="#m219da94a98" y="57.6"/>
</g>
</g>
</g>
<g id="xtick_4">
<g id="line2d_10">
<path clip-path="url(#p2460cf4024)" d="
M547.578 518.4
L547.578 57.6" style="fill:none;stroke:#cdba96;stroke-dasharray:1.000000,3.000000;stroke-dashoffset:0.0;"/>
</g>
<g id="line2d_11">
<g>
<use style="fill:#262626;stroke:#262626;" x="547.578442623" xlink:href="#m219da94a98" y="518.4"/>
</g>
</g>
<g id="line2d_12">
<g>
<use style="fill:#262626;stroke:#262626;" x="547.578442623" xlink:href="#m219da94a98" y="57.6"/>
</g>
</g>
</g>
<g id="xtick_5">
<g id="line2d_13">
<path clip-path="url(#p2460cf4024)" d="
M641.867 518.4
L641.867 57.6" style="fill:none;stroke:#cdba96;stroke-dasharray:1.000000,3.000000;stroke-dashoffset:0.0;"/>
</g>
<g id="line2d_14">
<g>
<use style="fill:#262626;stroke:#262626;" x="641.866721311" xlink:href="#m219da94a98" y="518.4"/>
</g>
</g>
<g id="line2d_15">
<g>
<use style="fill:#262626;stroke:#262626;" x="641.866721311" xlink:href="#m219da94a98" y="57.6"/>
</g>
</g>
</g>
<g id="xtick_6">
<g id="line2d_16">
<path clip-path="url(#p2460cf4024)" d="
M733.113 518.4
L733.113 57.6" style="fill:none;stroke:#cdba96;stroke-dasharray:1.000000,3.000000;stroke-dashoffset:0.0;"/>
</g>
<g id="line2d_17">
<g>
<use style="fill:#262626;stroke:#262626;" x="733.113442623" xlink:href="#m219da94a98" y="518.4"/>
</g>
</g>
<g id="line2d_18">
<g>
<use style="fill:#262626;stroke:#262626;" x="733.113442623" xlink:href="#m219da94a98" y="57.6"/>
</g>
</g>
</g>
<g id="xtick_7">
<g id="line2d_19">
<path clip-path="url(#p2460cf4024)" d="
M827.402 518.4
L827.402 57.6" style="fill:none;stroke:#cdba96;stroke-dasharray:1.000000,3.000000;stroke-dashoffset:0.0;"/>
</g>
<g id="line2d_20">
<g>
<use style="fill:#262626;stroke:#262626;" x="827.401721311" xlink:href="#m219da94a98" y="518.4"/>
</g>
</g>
<g id="line2d_21">
<g>
<use style="fill:#262626;stroke:#262626;" x="827.401721311" xlink:href="#m219da94a98" y="57.6"/>
</g>
</g>
</g>
<g id="xtick_8">
<g id="line2d_22">
<path clip-path="url(#p2460cf4024)" d="
M921.69 518.4
L921.69 57.6" style="fill:none;stroke:#cdba96;stroke-dasharray:1.000000,3.000000;stroke-dashoffset:0.0;"/>
</g>
<g id="line2d_23">
<g>
<use style="fill:#262626;stroke:#262626;" x="921.69" xlink:href="#m219da94a98" y="518.4"/>
</g>
</g>
<g id="line2d_24">
<g>
<use style="fill:#262626;stroke:#262626;" x="921.69" xlink:href="#m219da94a98" y="57.6"/>
</g>
</g>
</g>
<g id="xtick_9">
<g id="line2d_25">
<path clip-path="url(#p2460cf4024)" d="
M1012.94 518.4
L1012.94 57.6" style="fill:none;stroke:#cdba96;stroke-dasharray:1.000000,3.000000;stroke-dashoffset:0.0;"/>
</g>
<g id="line2d_26">
<g>
<use style="fill:#262626;stroke:#262626;" x="1012.93672131" xlink:href="#m219da94a98" y="518.4"/>
</g>
</g>
<g id="line2d_27">
<g>
<use style="fill:#262626;stroke:#262626;" x="1012.93672131" xlink:href="#m219da94a98" y="57.6"/>
</g>
</g>
</g>
<g id="xtick_10">
<g id="line2d_28">
<path clip-path="url(#p2460cf4024)" d="
M1107.23 518.4
L1107.23 57.6" style="fill:none;stroke:#cdba96;stroke-dasharray:1.000000,3.000000;stroke-dashoffset:0.0;"/>
</g>
<g id="line2d_29">
<g>
<use style="fill:#262626;stroke:#262626;" x="1107.225" xlink:href="#m219da94a98" y="518.4"/>
</g>
</g>
<g id="line2d_30">
<g>
<use style="fill:#262626;stroke:#262626;" x="1107.225" xlink:href="#m219da94a98" y="57.6"/>
</g>
</g>
</g>
<g id="xtick_11">
<g id="line2d_31">
<path clip-path="url(#p2460cf4024)" d="
M1198.47 518.4
L1198.47 57.6" style="fill:none;stroke:#cdba96;stroke-dasharray:1.000000,3.000000;stroke-dashoffset:0.0;"/>
</g>
<g id="line2d_32">
<g>
<use style="fill:#262626;stroke:#262626;" x="1198.47172131" xlink:href="#m219da94a98" y="518.4"/>
</g>
</g>
<g id="line2d_33">
<g>
<use style="fill:#262626;stroke:#262626;" x="1198.47172131" xlink:href="#m219da94a98" y="57.6"/>
</g>
</g>
</g>
<g id="xtick_12">
<g id="line2d_34">
<path clip-path="url(#p2460cf4024)" d="
M1292.76 518.4
L1292.76 57.6" style="fill:none;stroke:#cdba96;stroke-dasharray:1.000000,3.000000;stroke-dashoffset:0.0;"/>
</g>
<g id="line2d_35">
<g>
<use style="fill:#262626;stroke:#262626;" x="1292.76" xlink:href="#m219da94a98" y="518.4"/>
</g>
</g>
<g id="line2d_36">
<g>
<use style="fill:#262626;stroke:#262626;" x="1292.76" xlink:href="#m219da94a98" y="57.6"/>
</g>
</g>
</g>
<g id="xtick_13">
<g id="line2d_37">
<path clip-path="url(#p2460cf4024)" d="
M225.173 518.4
L225.173 57.6" style="fill:none;stroke:#ffffff;stroke-linecap:round;"/>
</g>
<g id="line2d_38">
<defs>
<path d="
M0 0
L0 0" id="m8735711441" style="stroke:#262626;stroke-width:0.5;"/>
</defs>
<g>
<use style="fill:#262626;stroke:#262626;stroke-width:0.5;" x="225.173360656" xlink:href="#m8735711441" y="518.4"/>
</g>
</g>
<g id="line2d_39">
<g>
<use style="fill:#262626;stroke:#262626;stroke-width:0.5;" x="225.173360656" xlink:href="#m8735711441" y="57.6"/>
</g>
</g>
<g id="text_1">
<!-- January -->
<defs>
<path d="
M40.4375 6.39062
Q35.5469 2.25 31.0312 0.53125
Q26.5156 -1.17188 21.3438 -1.17188
Q12.7969 -1.17188 8.20312 3
Q3.60938 7.17188 3.60938 13.6719
Q3.60938 17.4844 5.34375 20.625
Q7.07812 23.7812 9.89062 25.6875
Q12.7031 27.5938 16.2188 28.5625
Q18.7969 29.25 24.0312 29.8906
Q34.6719 31.1562 39.7031 32.9062
Q39.75 34.7188 39.75 35.2031
Q39.75 40.5781 37.25 42.7812
Q33.8906 45.75 27.25 45.75
Q21.0469 45.75 18.0938 43.5781
Q15.1406 41.4062 13.7188 35.8906
L5.125 37.0625
Q6.29688 42.5781 8.98438 45.9688
Q11.6719 49.3594 16.75 51.1875
Q21.8281 53.0312 28.5156 53.0312
Q35.1562 53.0312 39.2969 51.4688
Q43.4531 49.9062 45.4062 47.5312
Q47.3594 45.1719 48.1406 41.5469
Q48.5781 39.3125 48.5781 33.4531
L48.5781 21.7344
Q48.5781 9.46875 49.1406 6.21875
Q49.7031 2.98438 51.375 0
L42.1875 0
Q40.8281 2.73438 40.4375 6.39062
M39.7031 26.0312
Q34.9062 24.0781 25.3438 22.7031
Q19.9219 21.9219 17.6719 20.9375
Q15.4375 19.9688 14.2031 18.0938
Q12.9844 16.2188 12.9844 13.9219
Q12.9844 10.4062 15.6406 8.0625
Q18.3125 5.71875 23.4375 5.71875
Q28.5156 5.71875 32.4688 7.9375
Q36.4219 10.1562 38.2812 14.0156
Q39.7031 17 39.7031 22.7969
z
" id="ArialMT-61"/>
<path d="
M6.20312 -19.9688
L5.21875 -11.7188
Q8.10938 -12.5 10.25 -12.5
Q13.1875 -12.5 14.9375 -11.5156
Q16.7031 -10.5469 17.8281 -8.79688
Q18.6562 -7.46875 20.5156 -2.25
Q20.75 -1.51562 21.2969 -0.09375
L1.60938 51.8594
L11.0781 51.8594
L21.875 21.8281
Q23.9688 16.1094 25.6406 9.8125
Q27.1562 15.875 29.25 21.625
L40.3281 51.8594
L49.125 51.8594
L29.3906 -0.875
Q26.2188 -9.42188 24.4688 -12.6406
Q22.125 -17 19.0938 -19.0156
Q16.0625 -21.0469 11.8594 -21.0469
Q9.32812 -21.0469 6.20312 -19.9688" id="ArialMT-79"/>
<path d="
M40.5781 0
L40.5781 7.625
Q34.5156 -1.17188 24.125 -1.17188
Q19.5312 -1.17188 15.5469 0.578125
Q11.5781 2.34375 9.64062 5
Q7.71875 7.67188 6.9375 11.5312
Q6.39062 14.1094 6.39062 19.7344
L6.39062 51.8594
L15.1875 51.8594
L15.1875 23.0938
Q15.1875 16.2188 15.7188 13.8125
Q16.5469 10.3594 19.2344 8.375
Q21.9219 6.39062 25.875 6.39062
Q29.8281 6.39062 33.2969 8.42188
Q36.7656 10.4531 38.2031 13.9375
Q39.6562 17.4375 39.6562 24.0781
L39.6562 51.8594
L48.4375 51.8594
L48.4375 0
z
" id="ArialMT-75"/>
<path d="
M6.5 0
L6.5 51.8594
L14.4062 51.8594
L14.4062 44
Q17.4375 49.5156 20 51.2656
Q22.5625 53.0312 25.6406 53.0312
Q30.0781 53.0312 34.6719 50.2031
L31.6406 42.0469
Q28.4219 43.9531 25.2031 43.9531
Q22.3125 43.9531 20.0156 42.2188
Q17.7188 40.4844 16.75 37.4062
Q15.2812 32.7188 15.2812 27.1562
L15.2812 0
z
" id="ArialMT-72"/>
<path d="
M6.59375 0
L6.59375 51.8594
L14.5 51.8594
L14.5 44.4844
Q20.2188 53.0312 31 53.0312
Q35.6875 53.0312 39.625 51.3438
Q43.5625 49.6562 45.5156 46.9219
Q47.4688 44.1875 48.25 40.4375
Q48.7344 37.9844 48.7344 31.8906
L48.7344 0
L39.9375 0
L39.9375 31.5469
Q39.9375 36.9219 38.9062 39.5781
Q37.8906 42.2344 35.2812 43.8125
Q32.6719 45.4062 29.1562 45.4062
Q23.5312 45.4062 19.4531 41.8438
Q15.375 38.2812 15.375 28.3281
L15.375 0
z
" id="ArialMT-6e"/>
<path d="
M2.875 20.3125
L11.4219 21.4844
Q11.7656 13.2812 14.5 10.25
Q17.2344 7.23438 22.0781 7.23438
Q25.6406 7.23438 28.2188 8.85938
Q30.8125 10.5 31.7812 13.2969
Q32.7656 16.1094 32.7656 22.2656
L32.7656 71.5781
L42.2344 71.5781
L42.2344 22.7969
Q42.2344 13.8125 40.0625 8.875
Q37.8906 3.95312 33.1719 1.35938
Q28.4688 -1.21875 22.125 -1.21875
Q12.7031 -1.21875 7.6875 4.20312
Q2.6875 9.625 2.875 20.3125" id="ArialMT-4a"/>
</defs>
<g style="fill:#262626;" transform="translate(207.564766906 531.5578125)scale(0.1 -0.1)">
<use xlink:href="#ArialMT-4a"/>
<use x="50.0" xlink:href="#ArialMT-61"/>
<use x="105.615234375" xlink:href="#ArialMT-6e"/>
<use x="161.23046875" xlink:href="#ArialMT-75"/>
<use x="216.845703125" xlink:href="#ArialMT-61"/>
<use x="272.4609375" xlink:href="#ArialMT-72"/>
<use x="305.76171875" xlink:href="#ArialMT-79"/>
</g>
</g>
</g>
<g id="xtick_14">
<g id="line2d_40">
<path clip-path="url(#p2460cf4024)" d="
M316.42 518.4
L316.42 57.6" style="fill:none;stroke:#ffffff;stroke-linecap:round;"/>
</g>
<g id="line2d_41">
<g>
<use style="fill:#262626;stroke:#262626;stroke-width:0.5;" x="316.420081967" xlink:href="#m8735711441" y="518.4"/>
</g>
</g>
<g id="line2d_42">
<g>
<use style="fill:#262626;stroke:#262626;stroke-width:0.5;" x="316.420081967" xlink:href="#m8735711441" y="57.6"/>
</g>
</g>
<g id="text_2">
<!-- February -->
<defs>
<path d="
M14.7031 0
L6.54688 0
L6.54688 71.5781
L15.3281 71.5781
L15.3281 46.0469
Q20.9062 53.0312 29.5469 53.0312
Q34.3281 53.0312 38.5938 51.0938
Q42.875 49.1719 45.625 45.6719
Q48.3906 42.1875 49.9531 37.25
Q51.5156 32.3281 51.5156 26.7031
Q51.5156 13.375 44.9219 6.09375
Q38.3281 -1.17188 29.1094 -1.17188
Q19.9219 -1.17188 14.7031 6.5
z
M14.5938 26.3125
Q14.5938 17 17.1406 12.8438
Q21.2969 6.0625 28.375 6.0625
Q34.125 6.0625 38.3281 11.0625
Q42.5312 16.0625 42.5312 25.9844
Q42.5312 36.1406 38.5 40.9688
Q34.4688 45.7969 28.7656 45.7969
Q23 45.7969 18.7969 40.7969
Q14.5938 35.7969 14.5938 26.3125" id="ArialMT-62"/>
<path d="
M42.0938 16.7031
L51.1719 15.5781
Q49.0312 7.625 43.2188 3.21875
Q37.4062 -1.17188 28.375 -1.17188
Q17 -1.17188 10.3281 5.82812
Q3.65625 12.8438 3.65625 25.4844
Q3.65625 38.5781 10.3906 45.7969
Q17.1406 53.0312 27.875 53.0312
Q38.2812 53.0312 44.875 45.9531
Q51.4688 38.875 51.4688 26.0312
Q51.4688 25.25 51.4219 23.6875
L12.75 23.6875
Q13.2344 15.1406 17.5781 10.5938
Q21.9219 6.0625 28.4219 6.0625
Q33.25 6.0625 36.6719 8.59375
Q40.0938 11.1406 42.0938 16.7031
M13.2344 30.9062
L42.1875 30.9062
Q41.6094 37.4531 38.875 40.7188
Q34.6719 45.7969 27.9844 45.7969
Q21.9219 45.7969 17.7969 41.75
Q13.6719 37.7031 13.2344 30.9062" id="ArialMT-65"/>
<path d="
M8.20312 0
L8.20312 71.5781
L56.5 71.5781
L56.5 63.1406
L17.6719 63.1406
L17.6719 40.9688
L51.2656 40.9688
L51.2656 32.5156
L17.6719 32.5156
L17.6719 0
z
" id="ArialMT-46"/>
</defs>
<g style="fill:#262626;" transform="translate(296.868519467 531.5578125)scale(0.1 -0.1)">
<use xlink:href="#ArialMT-46"/>
<use x="61.083984375" xlink:href="#ArialMT-65"/>
<use x="116.69921875" xlink:href="#ArialMT-62"/>
<use x="172.314453125" xlink:href="#ArialMT-72"/>
<use x="205.615234375" xlink:href="#ArialMT-75"/>
<use x="261.23046875" xlink:href="#ArialMT-61"/>
<use x="316.845703125" xlink:href="#ArialMT-72"/>
<use x="350.146484375" xlink:href="#ArialMT-79"/>
</g>
</g>
</g>
<g id="xtick_15">
<g id="line2d_43">
<path clip-path="url(#p2460cf4024)" d="
M407.667 518.4
L407.667 57.6" style="fill:none;stroke:#ffffff;stroke-linecap:round;"/>
</g>
<g id="line2d_44">
<g>
<use style="fill:#262626;stroke:#262626;stroke-width:0.5;" x="407.666803279" xlink:href="#m8735711441" y="518.4"/>
</g>
</g>
<g id="line2d_45">
<g>
<use style="fill:#262626;stroke:#262626;stroke-width:0.5;" x="407.666803279" xlink:href="#m8735711441" y="57.6"/>
</g>
</g>
<g id="text_3">
<!-- March -->
<defs>
<path d="
M40.4375 19
L49.0781 17.875
Q47.6562 8.9375 41.8125 3.875
Q35.9844 -1.17188 27.4844 -1.17188
Q16.8438 -1.17188 10.375 5.78125
Q3.90625 12.75 3.90625 25.7344
Q3.90625 34.125 6.6875 40.4219
Q9.46875 46.7344 15.1562 49.875
Q20.8438 53.0312 27.5469 53.0312
Q35.9844 53.0312 41.3594 48.75
Q46.7344 44.4844 48.25 36.625
L39.7031 35.2969
Q38.4844 40.5312 35.375 43.1562
Q32.2812 45.7969 27.875 45.7969
Q21.2344 45.7969 17.0781 41.0312
Q12.9375 36.2812 12.9375 25.9844
Q12.9375 15.5312 16.9375 10.7969
Q20.9531 6.0625 27.3906 6.0625
Q32.5625 6.0625 36.0312 9.23438
Q39.5 12.4062 40.4375 19" id="ArialMT-63"/>
<path d="
M6.59375 0
L6.59375 71.5781
L15.375 71.5781
L15.375 45.9062
Q21.5312 53.0312 30.9062 53.0312
Q36.6719 53.0312 40.9219 50.75
Q45.1719 48.4844 47 44.4844
Q48.8281 40.4844 48.8281 32.8594
L48.8281 0
L40.0469 0
L40.0469 32.8594
Q40.0469 39.4531 37.1875 42.4531
Q34.3281 45.4531 29.1094 45.4531
Q25.2031 45.4531 21.75 43.4219
Q18.3125 41.4062 16.8438 37.9375
Q15.375 34.4688 15.375 28.375
L15.375 0
z
" id="ArialMT-68"/>
<path d="
M7.42188 0
L7.42188 71.5781
L21.6875 71.5781
L38.625 20.9062
Q40.9688 13.8125 42.0469 10.2969
Q43.2656 14.2031 45.8438 21.7812
L62.9844 71.5781
L75.7344 71.5781
L75.7344 0
L66.6094 0
L66.6094 59.9062
L45.7969 0
L37.25 0
L16.5469 60.9375
L16.5469 0
z
" id="ArialMT-4d"/>
</defs>
<g style="fill:#262626;" transform="translate(394.486334529 531.5578125)scale(0.1 -0.1)">
<use xlink:href="#ArialMT-4d"/>
<use x="83.30078125" xlink:href="#ArialMT-61"/>
<use x="138.916015625" xlink:href="#ArialMT-72"/>
<use x="172.216796875" xlink:href="#ArialMT-63"/>
<use x="222.216796875" xlink:href="#ArialMT-68"/>
</g>
</g>
</g>
<g id="xtick_16">
<g id="line2d_46">
<path clip-path="url(#p2460cf4024)" d="
M501.955 518.4
L501.955 57.6" style="fill:none;stroke:#ffffff;stroke-linecap:round;"/>
</g>
<g id="line2d_47">
<g>
<use style="fill:#262626;stroke:#262626;stroke-width:0.5;" x="501.955081967" xlink:href="#m8735711441" y="518.4"/>
</g>
</g>
<g id="line2d_48">
<g>
<use style="fill:#262626;stroke:#262626;stroke-width:0.5;" x="501.955081967" xlink:href="#m8735711441" y="57.6"/>
</g>
</g>
<g id="text_4">
<!-- April -->
<defs>
<path d="
M-0.140625 0
L27.3438 71.5781
L37.5469 71.5781
L66.8438 0
L56.0625 0
L47.7031 21.6875
L17.7812 21.6875
L9.90625 0
z
M20.5156 29.3906
L44.7812 29.3906
L37.3125 49.2188
Q33.8906 58.25 32.2344 64.0625
Q30.8594 57.1719 28.375 50.3906
z
" id="ArialMT-41"/>
<path d="
M6.39062 0
L6.39062 71.5781
L15.1875 71.5781
L15.1875 0
z
" id="ArialMT-6c"/>
<path d="
M6.64062 61.4688
L6.64062 71.5781
L15.4375 71.5781
L15.4375 61.4688
z
M6.64062 0
L6.64062 51.8594
L15.4375 51.8594
L15.4375 0
z
" id="ArialMT-69"/>
<path d="
M6.59375 -19.875
L6.59375 51.8594
L14.5938 51.8594
L14.5938 45.125
Q17.4375 49.0781 21 51.0469
Q24.5625 53.0312 29.6406 53.0312
Q36.2812 53.0312 41.3594 49.6094
Q46.4375 46.1875 49.0156 39.9531
Q51.6094 33.7344 51.6094 26.3125
Q51.6094 18.3594 48.75 11.9844
Q45.9062 5.60938 40.4531 2.21875
Q35.0156 -1.17188 29 -1.17188
Q24.6094 -1.17188 21.1094 0.6875
Q17.625 2.54688 15.375 5.375
L15.375 -19.875
z
M14.5469 25.6406
Q14.5469 15.625 18.5938 10.8438
Q22.6562 6.0625 28.4219 6.0625
Q34.2812 6.0625 38.4531 11.0156
Q42.625 15.9688 42.625 26.375
Q42.625 36.2812 38.5469 41.2031
Q34.4688 46.1406 28.8125 46.1406
Q23.1875 46.1406 18.8594 40.8906
Q14.5469 35.6406 14.5469 25.6406" id="ArialMT-70"/>
</defs>
<g style="fill:#262626;" transform="translate(492.297269467 531.5578125)scale(0.1 -0.1)">
<use xlink:href="#ArialMT-41"/>
<use x="66.69921875" xlink:href="#ArialMT-70"/>
<use x="122.314453125" xlink:href="#ArialMT-72"/>
<use x="155.615234375" xlink:href="#ArialMT-69"/>
<use x="177.83203125" xlink:href="#ArialMT-6c"/>
</g>
</g>
</g>
<g id="xtick_17">
<g id="line2d_49">
<path clip-path="url(#p2460cf4024)" d="
M593.202 518.4
L593.202 57.6" style="fill:none;stroke:#ffffff;stroke-linecap:round;"/>
</g>
<g id="line2d_50">
<g>
<use style="fill:#262626;stroke:#262626;stroke-width:0.5;" x="593.201803279" xlink:href="#m8735711441" y="518.4"/>
</g>
</g>
<g id="line2d_51">
<g>
<use style="fill:#262626;stroke:#262626;stroke-width:0.5;" x="593.201803279" xlink:href="#m8735711441" y="57.6"/>
</g>
</g>
<g id="text_5">
<!-- May -->
<g style="fill:#262626;" transform="translate(584.171334529 531.5578125)scale(0.1 -0.1)">
<use xlink:href="#ArialMT-4d"/>
<use x="83.30078125" xlink:href="#ArialMT-61"/>
<use x="138.916015625" xlink:href="#ArialMT-79"/>
</g>
</g>
</g>
<g id="xtick_18">
<g id="line2d_52">
<path clip-path="url(#p2460cf4024)" d="
M687.49 518.4
L687.49 57.6" style="fill:none;stroke:#ffffff;stroke-linecap:round;"/>
</g>
<g id="line2d_53">
<g>
<use style="fill:#262626;stroke:#262626;stroke-width:0.5;" x="687.490081967" xlink:href="#m8735711441" y="518.4"/>
</g>
</g>
<g id="line2d_54">
<g>
<use style="fill:#262626;stroke:#262626;stroke-width:0.5;" x="687.490081967" xlink:href="#m8735711441" y="57.6"/>
</g>
</g>
<g id="text_6">
<!-- June -->
<g style="fill:#262626;" transform="translate(676.990081967 531.5578125)scale(0.1 -0.1)">
<use xlink:href="#ArialMT-4a"/>
<use x="50.0" xlink:href="#ArialMT-75"/>
<use x="105.615234375" xlink:href="#ArialMT-6e"/>
<use x="161.23046875" xlink:href="#ArialMT-65"/>
</g>
</g>
</g>
<g id="xtick_19">
<g id="line2d_55">
<path clip-path="url(#p2460cf4024)" d="
M778.737 518.4
L778.737 57.6" style="fill:none;stroke:#ffffff;stroke-linecap:round;"/>
</g>
<g id="line2d_56">
<g>
<use style="fill:#262626;stroke:#262626;stroke-width:0.5;" x="778.736803279" xlink:href="#m8735711441" y="518.4"/>
</g>
</g>
<g id="line2d_57">
<g>
<use style="fill:#262626;stroke:#262626;stroke-width:0.5;" x="778.736803279" xlink:href="#m8735711441" y="57.6"/>
</g>
</g>
<g id="text_7">
<!-- July -->
<g style="fill:#262626;" transform="translate(770.023522029 531.5578125)scale(0.1 -0.1)">
<use xlink:href="#ArialMT-4a"/>
<use x="50.0" xlink:href="#ArialMT-75"/>
<use x="105.615234375" xlink:href="#ArialMT-6c"/>
<use x="127.83203125" xlink:href="#ArialMT-79"/>
</g>
</g>
</g>
<g id="xtick_20">
<g id="line2d_58">
<path clip-path="url(#p2460cf4024)" d="
M873.025 518.4
L873.025 57.6" style="fill:none;stroke:#ffffff;stroke-linecap:round;"/>
</g>
<g id="line2d_59">
<g>
<use style="fill:#262626;stroke:#262626;stroke-width:0.5;" x="873.025081967" xlink:href="#m8735711441" y="518.4"/>
</g>
</g>
<g id="line2d_60">
<g>
<use style="fill:#262626;stroke:#262626;stroke-width:0.5;" x="873.025081967" xlink:href="#m8735711441" y="57.6"/>
</g>
</g>
<g id="text_8">
<!-- August -->
<defs>
<path d="
M25.7812 7.85938
L27.0469 0.09375
Q23.3438 -0.6875 20.4062 -0.6875
Q15.625 -0.6875 12.9844 0.828125
Q10.3594 2.34375 9.28125 4.8125
Q8.20312 7.28125 8.20312 15.1875
L8.20312 45.0156
L1.76562 45.0156
L1.76562 51.8594
L8.20312 51.8594
L8.20312 64.7031
L16.9375 69.9688
L16.9375 51.8594
L25.7812 51.8594
L25.7812 45.0156
L16.9375 45.0156
L16.9375 14.7031
Q16.9375 10.9375 17.4062 9.85938
Q17.875 8.79688 18.9219 8.15625
Q19.9688 7.51562 21.9219 7.51562
Q23.3906 7.51562 25.7812 7.85938" id="ArialMT-74"/>
<path d="
M4.98438 -4.29688
L13.5312 -5.5625
Q14.0625 -9.51562 16.5 -11.3281
Q19.7812 -13.7656 25.4375 -13.7656
Q31.5469 -13.7656 34.8594 -11.3281
Q38.1875 -8.89062 39.3594 -4.5
Q40.0469 -1.8125 39.9844 6.78125
Q34.2344 0 25.6406 0
Q14.9375 0 9.07812 7.71875
Q3.21875 15.4375 3.21875 26.2188
Q3.21875 33.6406 5.90625 39.9062
Q8.59375 46.1875 13.6875 49.6094
Q18.7969 53.0312 25.6875 53.0312
Q34.8594 53.0312 40.8281 45.6094
L40.8281 51.8594
L48.9219 51.8594
L48.9219 7.03125
Q48.9219 -5.07812 46.4531 -10.125
Q44 -15.1875 38.6406 -18.1094
Q33.2969 -21.0469 25.4844 -21.0469
Q16.2188 -21.0469 10.5 -16.875
Q4.78125 -12.7031 4.98438 -4.29688
M12.25 26.8594
Q12.25 16.6562 16.2969 11.9688
Q20.3594 7.28125 26.4688 7.28125
Q32.5156 7.28125 36.6094 11.9375
Q40.7188 16.6094 40.7188 26.5625
Q40.7188 36.0781 36.5 40.9062
Q32.2812 45.75 26.3125 45.75
Q20.4531 45.75 16.3438 40.9844
Q12.25 36.2344 12.25 26.8594" id="ArialMT-67"/>
<path d="
M3.07812 15.4844
L11.7656 16.8438
Q12.5 11.625 15.8438 8.84375
Q19.1875 6.0625 25.2031 6.0625
Q31.25 6.0625 34.1719 8.51562
Q37.1094 10.9844 37.1094 14.3125
Q37.1094 17.2812 34.5156 19
Q32.7188 20.1719 25.5312 21.9688
Q15.875 24.4219 12.1406 26.2031
Q8.40625 27.9844 6.46875 31.125
Q4.54688 34.2812 4.54688 38.0938
Q4.54688 41.5469 6.125 44.5
Q7.71875 47.4688 10.4531 49.4219
Q12.5 50.9219 16.0312 51.9688
Q19.5781 53.0312 23.6406 53.0312
Q29.7344 53.0312 34.3438 51.2656
Q38.9688 49.5156 41.1562 46.5
Q43.3594 43.5 44.1875 38.4844
L35.5938 37.3125
Q35.0156 41.3125 32.2031 43.5469
Q29.3906 45.7969 24.2656 45.7969
Q18.2188 45.7969 15.625 43.7969
Q13.0312 41.7969 13.0312 39.1094
Q13.0312 37.4062 14.1094 36.0312
Q15.1875 34.625 17.4844 33.6875
Q18.7969 33.2031 25.25 31.4531
Q34.5781 28.9531 38.25 27.3594
Q41.9375 25.7812 44.0312 22.75
Q46.1406 19.7344 46.1406 15.2344
Q46.1406 10.8438 43.5781 6.95312
Q41.0156 3.07812 36.1719 0.953125
Q31.3438 -1.17188 25.25 -1.17188
Q15.1406 -1.17188 9.84375 3.03125
Q4.54688 7.23438 3.07812 15.4844" id="ArialMT-73"/>
</defs>
<g style="fill:#262626;" transform="translate(857.489144467 531.5578125)scale(0.1 -0.1)">
<use xlink:href="#ArialMT-41"/>
<use x="66.69921875" xlink:href="#ArialMT-75"/>
<use x="122.314453125" xlink:href="#ArialMT-67"/>
<use x="177.9296875" xlink:href="#ArialMT-75"/>
<use x="233.544921875" xlink:href="#ArialMT-73"/>
<use x="283.544921875" xlink:href="#ArialMT-74"/>
</g>
</g>
</g>
<g id="xtick_21">
<g id="line2d_61">
<path clip-path="url(#p2460cf4024)" d="
M967.313 518.4
L967.313 57.6" style="fill:none;stroke:#ffffff;stroke-linecap:round;"/>
</g>
<g id="line2d_62">
<g>
<use style="fill:#262626;stroke:#262626;stroke-width:0.5;" x="967.313360656" xlink:href="#m8735711441" y="518.4"/>
</g>
</g>
<g id="line2d_63">
<g>
<use style="fill:#262626;stroke:#262626;stroke-width:0.5;" x="967.313360656" xlink:href="#m8735711441" y="57.6"/>
</g>
</g>
<g id="text_9">
<!-- September -->
<defs>
<path d="
M4.5 23
L13.4219 23.7812
Q14.0625 18.4062 16.375 14.9688
Q18.7031 11.5312 23.5781 9.40625
Q28.4688 7.28125 34.5781 7.28125
Q39.9844 7.28125 44.1406 8.89062
Q48.2969 10.5 50.3125 13.2969
Q52.3438 16.1094 52.3438 19.4375
Q52.3438 22.7969 50.3906 25.3125
Q48.4375 27.8281 43.9531 29.5469
Q41.0625 30.6719 31.2031 33.0312
Q21.3438 35.4062 17.3906 37.5
Q12.25 40.1875 9.73438 44.1562
Q7.23438 48.1406 7.23438 53.0781
Q7.23438 58.5 10.2969 63.2031
Q13.375 67.9219 19.2812 70.3594
Q25.2031 72.7969 32.4219 72.7969
Q40.375 72.7969 46.4531 70.2344
Q52.5469 67.6719 55.8125 62.6875
Q59.0781 57.7188 59.3281 51.4219
L50.25 50.7344
Q49.5156 57.5156 45.2812 60.9844
Q41.0625 64.4531 32.8125 64.4531
Q24.2188 64.4531 20.2812 61.2969
Q16.3594 58.1562 16.3594 53.7188
Q16.3594 49.8594 19.1406 47.3594
Q21.875 44.875 33.4219 42.2656
Q44.9688 39.6562 49.2656 37.7031
Q55.5156 34.8125 58.4844 30.3906
Q61.4688 25.9844 61.4688 20.2188
Q61.4688 14.5 58.2031 9.4375
Q54.9375 4.39062 48.7969 1.57812
Q42.6719 -1.21875 35.0156 -1.21875
Q25.2969 -1.21875 18.7188 1.60938
Q12.1562 4.4375 8.42188 10.125
Q4.6875 15.8281 4.5 23" id="ArialMT-53"/>
<path d="
M6.59375 0
L6.59375 51.8594
L14.4531 51.8594
L14.4531 44.5781
Q16.8906 48.3906 20.9375 50.7031
Q25 53.0312 30.1719 53.0312
Q35.9375 53.0312 39.625 50.6406
Q43.3125 48.25 44.8281 43.9531
Q50.9844 53.0312 60.8438 53.0312
Q68.5625 53.0312 72.7031 48.75
Q76.8594 44.4844 76.8594 35.5938
L76.8594 0
L68.1094 0
L68.1094 32.6719
Q68.1094 37.9375 67.25 40.25
Q66.4062 42.5781 64.1562 43.9844
Q61.9219 45.4062 58.8906 45.4062
Q53.4219 45.4062 49.7969 41.7656
Q46.1875 38.1406 46.1875 30.125
L46.1875 0
L37.4062 0
L37.4062 33.6875
Q37.4062 39.5469 35.25 42.4688
Q33.1094 45.4062 28.2188 45.4062
Q24.5156 45.4062 21.3594 43.4531
Q18.2188 41.5 16.7969 37.7344
Q15.375 33.9844 15.375 26.9062
L15.375 0
z
" id="ArialMT-6d"/>
</defs>
<g style="fill:#262626;" transform="translate(943.013360656 531.6796875)scale(0.1 -0.1)">
<use xlink:href="#ArialMT-53"/>
<use x="66.69921875" xlink:href="#ArialMT-65"/>
<use x="122.314453125" xlink:href="#ArialMT-70"/>
<use x="177.9296875" xlink:href="#ArialMT-74"/>
<use x="205.712890625" xlink:href="#ArialMT-65"/>
<use x="261.328125" xlink:href="#ArialMT-6d"/>
<use x="344.62890625" xlink:href="#ArialMT-62"/>
<use x="400.244140625" xlink:href="#ArialMT-65"/>
<use x="455.859375" xlink:href="#ArialMT-72"/>
</g>
</g>
</g>
<g id="xtick_22">
<g id="line2d_64">
<path clip-path="url(#p2460cf4024)" d="
M1058.56 518.4
L1058.56 57.6" style="fill:none;stroke:#ffffff;stroke-linecap:round;"/>
</g>
<g id="line2d_65">
<g>
<use style="fill:#262626;stroke:#262626;stroke-width:0.5;" x="1058.56008197" xlink:href="#m8735711441" y="518.4"/>
</g>
</g>
<g id="line2d_66">
<g>
<use style="fill:#262626;stroke:#262626;stroke-width:0.5;" x="1058.56008197" xlink:href="#m8735711441" y="57.6"/>
</g>
</g>
<g id="text_10">
<!-- October -->
<defs>
<path d="
M3.32812 25.9219
Q3.32812 40.3281 11.3281 47.2656
Q18.0156 53.0312 27.6406 53.0312
Q38.3281 53.0312 45.1094 46.0156
Q51.9062 39.0156 51.9062 26.6562
Q51.9062 16.6562 48.9062 10.9062
Q45.9062 5.17188 40.1562 2
Q34.4219 -1.17188 27.6406 -1.17188
Q16.75 -1.17188 10.0312 5.8125
Q3.32812 12.7969 3.32812 25.9219
M12.3594 25.9219
Q12.3594 15.9688 16.7031 11.0156
Q21.0469 6.0625 27.6406 6.0625
Q34.1875 6.0625 38.5312 11.0312
Q42.875 16.0156 42.875 26.2188
Q42.875 35.8438 38.5 40.7969
Q34.125 45.75 27.6406 45.75
Q21.0469 45.75 16.7031 40.8125
Q12.3594 35.8906 12.3594 25.9219" id="ArialMT-6f"/>
<path d="
M4.82812 34.8594
Q4.82812 52.6875 14.3906 62.7656
Q23.9688 72.8594 39.1094 72.8594
Q49.0312 72.8594 56.9844 68.1094
Q64.9375 63.375 69.1094 54.9062
Q73.2969 46.4375 73.2969 35.6875
Q73.2969 24.8125 68.8906 16.2188
Q64.5 7.625 56.4375 3.20312
Q48.3906 -1.21875 39.0625 -1.21875
Q28.9531 -1.21875 20.9844 3.65625
Q13.0312 8.54688 8.92188 16.9844
Q4.82812 25.4375 4.82812 34.8594
M14.5938 34.7188
Q14.5938 21.7812 21.5469 14.3281
Q28.5156 6.89062 39.0156 6.89062
Q49.7031 6.89062 56.6094 14.4062
Q63.5312 21.9219 63.5312 35.75
Q63.5312 44.4844 60.5781 51
Q57.625 57.5156 51.9219 61.1094
Q46.2344 64.7031 39.1562 64.7031
Q29.1094 64.7031 21.8438 57.7812
Q14.5938 50.875 14.5938 34.7188" id="ArialMT-4f"/>
</defs>
<g style="fill:#262626;" transform="translate(1040.94836322 531.5578125)scale(0.1 -0.1)">
<use xlink:href="#ArialMT-4f"/>
<use x="77.783203125" xlink:href="#ArialMT-63"/>
<use x="127.783203125" xlink:href="#ArialMT-74"/>
<use x="155.56640625" xlink:href="#ArialMT-6f"/>
<use x="211.181640625" xlink:href="#ArialMT-62"/>
<use x="266.796875" xlink:href="#ArialMT-65"/>
<use x="322.412109375" xlink:href="#ArialMT-72"/>
</g>
</g>
</g>
<g id="xtick_23">
<g id="line2d_67">
<path clip-path="url(#p2460cf4024)" d="
M1152.85 518.4
L1152.85 57.6" style="fill:none;stroke:#ffffff;stroke-linecap:round;"/>
</g>
<g id="line2d_68">
<g>
<use style="fill:#262626;stroke:#262626;stroke-width:0.5;" x="1152.84836066" xlink:href="#m8735711441" y="518.4"/>
</g>
</g>
<g id="line2d_69">
<g>
<use style="fill:#262626;stroke:#262626;stroke-width:0.5;" x="1152.84836066" xlink:href="#m8735711441" y="57.6"/>
</g>
</g>
<g id="text_11">
<!-- November -->
<defs>
<path d="
M21 0
L1.26562 51.8594
L10.5469 51.8594
L21.6875 20.7969
Q23.4844 15.7656 25 10.3594
Q26.1719 14.4531 28.2656 20.2188
L39.7969 51.8594
L48.8281 51.8594
L29.2031 0
z
" id="ArialMT-76"/>
<path d="
M7.625 0
L7.625 71.5781
L17.3281 71.5781
L54.9375 15.375
L54.9375 71.5781
L64.0156 71.5781
L64.0156 0
L54.2969 0
L16.7031 56.25
L16.7031 0
z
" id="ArialMT-4e"/>
</defs>
<g style="fill:#262626;" transform="translate(1130.09836066 531.5578125)scale(0.1 -0.1)">
<use xlink:href="#ArialMT-4e"/>
<use x="72.216796875" xlink:href="#ArialMT-6f"/>
<use x="127.83203125" xlink:href="#ArialMT-76"/>
<use x="177.83203125" xlink:href="#ArialMT-65"/>
<use x="233.447265625" xlink:href="#ArialMT-6d"/>
<use x="316.748046875" xlink:href="#ArialMT-62"/>
<use x="372.36328125" xlink:href="#ArialMT-65"/>
<use x="427.978515625" xlink:href="#ArialMT-72"/>
</g>
</g>
</g>
<g id="xtick_24">
<g id="line2d_70">
<path clip-path="url(#p2460cf4024)" d="
M1244.1 518.4
L1244.1 57.6" style="fill:none;stroke:#ffffff;stroke-linecap:round;"/>
</g>
<g id="line2d_71">
<g>
<use style="fill:#262626;stroke:#262626;stroke-width:0.5;" x="1244.09508197" xlink:href="#m8735711441" y="518.4"/>
</g>
</g>
<g id="line2d_72">
<g>
<use style="fill:#262626;stroke:#262626;stroke-width:0.5;" x="1244.09508197" xlink:href="#m8735711441" y="57.6"/>
</g>
</g>
<g id="text_12">
<!-- December -->
<defs>
<path d="
M7.71875 0
L7.71875 71.5781
L32.375 71.5781
Q40.7188 71.5781 45.125 70.5625
Q51.2656 69.1406 55.6094 65.4375
Q61.2812 60.6406 64.0781 53.1875
Q66.8906 45.75 66.8906 36.1875
Q66.8906 28.0312 64.9844 21.7344
Q63.0938 15.4375 60.1094 11.2969
Q57.125 7.17188 53.5781 4.79688
Q50.0469 2.4375 45.0469 1.21875
Q40.0469 0 33.5469 0
z
M17.1875 8.45312
L32.4688 8.45312
Q39.5469 8.45312 43.5781 9.76562
Q47.6094 11.0781 50 13.4844
Q53.375 16.8438 55.25 22.5312
Q57.125 28.2188 57.125 36.3281
Q57.125 47.5625 53.4375 53.5938
Q49.75 59.625 44.4844 61.6719
Q40.6719 63.1406 32.2344 63.1406
L17.1875 63.1406
z
" id="ArialMT-44"/>
</defs>
<g style="fill:#262626;" transform="translate(1221.34976947 531.5578125)scale(0.1 -0.1)">
<use xlink:href="#ArialMT-44"/>
<use x="72.216796875" xlink:href="#ArialMT-65"/>
<use x="127.83203125" xlink:href="#ArialMT-63"/>
<use x="177.83203125" xlink:href="#ArialMT-65"/>
<use x="233.447265625" xlink:href="#ArialMT-6d"/>
<use x="316.748046875" xlink:href="#ArialMT-62"/>
<use x="372.36328125" xlink:href="#ArialMT-65"/>
<use x="427.978515625" xlink:href="#ArialMT-72"/>
</g>
</g>
</g>
</g>
<g id="matplotlib.axis_2">
<g id="ytick_1">
<g id="line2d_73">
<path clip-path="url(#p2460cf4024)" d="
M179.55 518.4
L1292.76 518.4" style="fill:none;stroke:#ffffff;stroke-linecap:round;"/>
</g>
<g id="line2d_74">
<g>
<use style="fill:#262626;stroke:#262626;" x="179.55" xlink:href="#m219da94a98" y="518.4"/>
</g>
</g>
<g id="line2d_75">
<g>
<use style="fill:#262626;stroke:#262626;" x="1292.76" xlink:href="#m219da94a98" y="518.4"/>
</g>
</g>
<g id="text_13">
<!-- -10° -->
<defs>
<path d="
M4.15625 35.2969
Q4.15625 48 6.76562 55.7344
Q9.375 63.4844 14.5156 67.6719
Q19.6719 71.875 27.4844 71.875
Q33.25 71.875 37.5938 69.5469
Q41.9375 67.2344 44.7656 62.8594
Q47.6094 58.5 49.2188 52.2188
Q50.8281 45.9531 50.8281 35.2969
Q50.8281 22.7031 48.2344 14.9688
Q45.6562 7.23438 40.5 3
Q35.3594 -1.21875 27.4844 -1.21875
Q17.1406 -1.21875 11.2344 6.20312
Q4.15625 15.1406 4.15625 35.2969
M13.1875 35.2969
Q13.1875 17.6719 17.3125 11.8281
Q21.4375 6 27.4844 6
Q33.5469 6 37.6719 11.8594
Q41.7969 17.7188 41.7969 35.2969
Q41.7969 52.9844 37.6719 58.7812
Q33.5469 64.5938 27.3906 64.5938
Q21.3438 64.5938 17.7188 59.4688
Q13.1875 52.9375 13.1875 35.2969" id="ArialMT-30"/>
<path d="
M37.25 0
L28.4688 0
L28.4688 56
Q25.2969 52.9844 20.1406 49.9531
Q14.9844 46.9219 10.8906 45.4062
L10.8906 53.9062
Q18.2656 57.375 23.7812 62.2969
Q29.2969 67.2344 31.5938 71.875
L37.25 71.875
z
" id="ArialMT-31"/>
<path d="
M3.17188 21.4844
L3.17188 30.3281
L30.1719 30.3281
L30.1719 21.4844
z
" id="ArialMT-2d"/>
<path d="
M6.25 59.2812
Q6.25 64.8906 10.2188 68.8438
Q14.2031 72.7969 19.7812 72.7969
Q25.4375 72.7969 29.3906 68.8438
Q33.3438 64.8906 33.3438 59.2812
Q33.3438 53.6562 29.3594 49.6719
Q25.3906 45.7031 19.7812 45.7031
Q14.2031 45.7031 10.2188 49.6562
Q6.25 53.6094 6.25 59.2812
M11.5781 59.2812
Q11.5781 55.8594 13.9844 53.4375
Q16.4062 51.0312 19.8281 51.0312
Q23.1875 51.0312 25.6094 53.4375
Q28.0312 55.8594 28.0312 59.2812
Q28.0312 62.7031 25.6094 65.1094
Q23.1875 67.5312 19.8281 67.5312
Q16.4062 67.5312 13.9844 65.1094
Q11.5781 62.7031 11.5781 59.2812" id="ArialMT-b0"/>
</defs>
<g style="fill:#262626;" transform="translate(148.09375 522.01921875)scale(0.14 -0.14)">
<use xlink:href="#ArialMT-2d"/>
<use x="33.30078125" xlink:href="#ArialMT-31"/>
<use x="88.916015625" xlink:href="#ArialMT-30"/>
<use x="144.53125" xlink:href="#ArialMT-b0"/>
</g>
</g>
</g>
<g id="ytick_2">
<g id="line2d_76">
<path clip-path="url(#p2460cf4024)" d="
M179.55 476.509
L1292.76 476.509" style="fill:none;stroke:#ffffff;stroke-linecap:round;"/>
</g>
<g id="line2d_77">
<g>
<use style="fill:#262626;stroke:#262626;" x="179.55" xlink:href="#m219da94a98" y="476.509090909"/>
</g>
</g>
<g id="line2d_78">
<g>
<use style="fill:#262626;stroke:#262626;" x="1292.76" xlink:href="#m219da94a98" y="476.509090909"/>
</g>
</g>
<g id="text_14">
<!-- 0° -->
<g style="fill:#262626;" transform="translate(160.6784375 480.128309659)scale(0.14 -0.14)">
<use xlink:href="#ArialMT-30"/>
<use x="55.615234375" xlink:href="#ArialMT-b0"/>
</g>
</g>
</g>
<g id="ytick_3">
<g id="line2d_79">
<path clip-path="url(#p2460cf4024)" d="
M179.55 434.618
L1292.76 434.618" style="fill:none;stroke:#ffffff;stroke-linecap:round;"/>
</g>
<g id="line2d_80">
<g>
<use style="fill:#262626;stroke:#262626;" x="179.55" xlink:href="#m219da94a98" y="434.618181818"/>
</g>
</g>
<g id="line2d_81">
<g>
<use style="fill:#262626;stroke:#262626;" x="1292.76" xlink:href="#m219da94a98" y="434.618181818"/>
</g>
</g>
<g id="text_15">
<!-- 10° -->
<g style="fill:#262626;" transform="translate(153.8359375 438.237400568)scale(0.14 -0.14)">
<use xlink:href="#ArialMT-31"/>
<use x="55.615234375" xlink:href="#ArialMT-30"/>
<use x="111.23046875" xlink:href="#ArialMT-b0"/>
</g>
</g>
</g>
<g id="ytick_4">
<g id="line2d_82">
<path clip-path="url(#p2460cf4024)" d="
M179.55 392.727
L1292.76 392.727" style="fill:none;stroke:#ffffff;stroke-linecap:round;"/>
</g>
<g id="line2d_83">
<g>
<use style="fill:#262626;stroke:#262626;" x="179.55" xlink:href="#m219da94a98" y="392.727272727"/>
</g>
</g>
<g id="line2d_84">
<g>
<use style="fill:#262626;stroke:#262626;" x="1292.76" xlink:href="#m219da94a98" y="392.727272727"/>
</g>
</g>
<g id="text_16">
<!-- 20° -->
<defs>
<path d="
M50.3438 8.45312
L50.3438 0
L3.03125 0
Q2.9375 3.17188 4.04688 6.10938
Q5.85938 10.9375 9.82812 15.625
Q13.8125 20.3125 21.3438 26.4688
Q33.0156 36.0312 37.1094 41.625
Q41.2188 47.2188 41.2188 52.2031
Q41.2188 57.4219 37.4688 61
Q33.7344 64.5938 27.7344 64.5938
Q21.3906 64.5938 17.5781 60.7812
Q13.7656 56.9844 13.7188 50.25
L4.6875 51.1719
Q5.60938 61.2812 11.6562 66.5781
Q17.7188 71.875 27.9375 71.875
Q38.2344 71.875 44.2344 66.1562
Q50.25 60.4531 50.25 52
Q50.25 47.7031 48.4844 43.5469
Q46.7344 39.4062 42.6562 34.8125
Q38.5781 30.2188 29.1094 22.2188
Q21.1875 15.5781 18.9375 13.2031
Q16.7031 10.8438 15.2344 8.45312
z
" id="ArialMT-32"/>
</defs>
<g style="fill:#262626;" transform="translate(152.7225 396.346491477)scale(0.14 -0.14)">
<use xlink:href="#ArialMT-32"/>
<use x="55.615234375" xlink:href="#ArialMT-30"/>
<use x="111.23046875" xlink:href="#ArialMT-b0"/>
</g>
</g>
</g>
<g id="ytick_5">
<g id="line2d_85">
<path clip-path="url(#p2460cf4024)" d="
M179.55 350.836
L1292.76 350.836" style="fill:none;stroke:#ffffff;stroke-linecap:round;"/>
</g>
<g id="line2d_86">
<g>
<use style="fill:#262626;stroke:#262626;" x="179.55" xlink:href="#m219da94a98" y="350.836363636"/>
</g>
</g>
<g id="line2d_87">
<g>
<use style="fill:#262626;stroke:#262626;" x="1292.76" xlink:href="#m219da94a98" y="350.836363636"/>
</g>
</g>
<g id="text_17">
<!-- 30° -->
<defs>
<path d="
M4.20312 18.8906
L12.9844 20.0625
Q14.5 12.5938 18.1406 9.29688
Q21.7812 6 27 6
Q33.2031 6 37.4688 10.2969
Q41.75 14.5938 41.75 20.9531
Q41.75 27 37.7969 30.9219
Q33.8438 34.8594 27.7344 34.8594
Q25.25 34.8594 21.5312 33.8906
L22.5156 41.6094
Q23.3906 41.5 23.9219 41.5
Q29.5469 41.5 34.0312 44.4219
Q38.5312 47.3594 38.5312 53.4688
Q38.5312 58.2969 35.25 61.4688
Q31.9844 64.6562 26.8125 64.6562
Q21.6875 64.6562 18.2656 61.4219
Q14.8438 58.2031 13.875 51.7656
L5.07812 53.3281
Q6.6875 62.1562 12.3906 67.0156
Q18.1094 71.875 26.6094 71.875
Q32.4688 71.875 37.3906 69.3594
Q42.3281 66.8438 44.9375 62.5
Q47.5625 58.1562 47.5625 53.2656
Q47.5625 48.6406 45.0625 44.8281
Q42.5781 41.0156 37.7031 38.7656
Q44.0469 37.3125 47.5625 32.6875
Q51.0781 28.0781 51.0781 21.1406
Q51.0781 11.7656 44.2344 5.25
Q37.4062 -1.26562 26.9531 -1.26562
Q17.5312 -1.26562 11.2969 4.34375
Q5.07812 9.96875 4.20312 18.8906" id="ArialMT-33"/>
</defs>
<g style="fill:#262626;" transform="translate(152.8996875 354.455582386)scale(0.14 -0.14)">
<use xlink:href="#ArialMT-33"/>
<use x="55.615234375" xlink:href="#ArialMT-30"/>
<use x="111.23046875" xlink:href="#ArialMT-b0"/>
</g>
</g>
</g>
<g id="ytick_6">
<g id="line2d_88">
<path clip-path="url(#p2460cf4024)" d="
M179.55 308.945
L1292.76 308.945" style="fill:none;stroke:#ffffff;stroke-linecap:round;"/>
</g>
<g id="line2d_89">
<g>
<use style="fill:#262626;stroke:#262626;" x="179.55" xlink:href="#m219da94a98" y="308.945454545"/>
</g>
</g>
<g id="line2d_90">
<g>
<use style="fill:#262626;stroke:#262626;" x="1292.76" xlink:href="#m219da94a98" y="308.945454545"/>
</g>
</g>
<g id="text_18">
<!-- 40° -->
<defs>
<path d="
M32.3281 0
L32.3281 17.1406
L1.26562 17.1406
L1.26562 25.2031
L33.9375 71.5781
L41.1094 71.5781
L41.1094 25.2031
L50.7812 25.2031
L50.7812 17.1406
L41.1094 17.1406
L41.1094 0
z
M32.3281 25.2031
L32.3281 57.4688
L9.90625 25.2031
z
" id="ArialMT-34"/>
</defs>
<g style="fill:#262626;" transform="translate(152.4884375 312.564673295)scale(0.14 -0.14)">
<use xlink:href="#ArialMT-34"/>
<use x="55.615234375" xlink:href="#ArialMT-30"/>
<use x="111.23046875" xlink:href="#ArialMT-b0"/>
</g>
</g>
</g>
<g id="ytick_7">
<g id="line2d_91">
<path clip-path="url(#p2460cf4024)" d="
M179.55 267.055
L1292.76 267.055" style="fill:none;stroke:#ffffff;stroke-linecap:round;"/>
</g>
<g id="line2d_92">
<g>
<use style="fill:#262626;stroke:#262626;" x="179.55" xlink:href="#m219da94a98" y="267.054545455"/>
</g>
</g>
<g id="line2d_93">
<g>
<use style="fill:#262626;stroke:#262626;" x="1292.76" xlink:href="#m219da94a98" y="267.054545455"/>
</g>
</g>
<g id="text_19">
<!-- 50° -->
<defs>
<path d="
M4.15625 18.75
L13.375 19.5312
Q14.4062 12.7969 18.1406 9.39062
Q21.875 6 27.1562 6
Q33.5 6 37.8906 10.7812
Q42.2812 15.5781 42.2812 23.4844
Q42.2812 31 38.0625 35.3438
Q33.8438 39.7031 27 39.7031
Q22.75 39.7031 19.3281 37.7656
Q15.9219 35.8438 13.9688 32.7656
L5.71875 33.8438
L12.6406 70.6094
L48.25 70.6094
L48.25 62.2031
L19.6719 62.2031
L15.8281 42.9688
Q22.2656 47.4688 29.3438 47.4688
Q38.7188 47.4688 45.1562 40.9688
Q51.6094 34.4688 51.6094 24.2656
Q51.6094 14.5469 45.9531 7.46875
Q39.0625 -1.21875 27.1562 -1.21875
Q17.3906 -1.21875 11.2031 4.25
Q5.03125 9.71875 4.15625 18.75" id="ArialMT-35"/>
</defs>
<g style="fill:#262626;" transform="translate(152.893125 270.673764205)scale(0.14 -0.14)">
<use xlink:href="#ArialMT-35"/>
<use x="55.615234375" xlink:href="#ArialMT-30"/>
<use x="111.23046875" xlink:href="#ArialMT-b0"/>
</g>
</g>
</g>
<g id="ytick_8">
<g id="line2d_94">
<path clip-path="url(#p2460cf4024)" d="
M179.55 225.164
L1292.76 225.164" style="fill:none;stroke:#ffffff;stroke-linecap:round;"/>
</g>
<g id="line2d_95">
<g>
<use style="fill:#262626;stroke:#262626;" x="179.55" xlink:href="#m219da94a98" y="225.163636364"/>
</g>
</g>
<g id="line2d_96">
<g>
<use style="fill:#262626;stroke:#262626;" x="1292.76" xlink:href="#m219da94a98" y="225.163636364"/>
</g>
</g>
<g id="text_20">
<!-- 60° -->
<defs>
<path d="
M49.75 54.0469
L41.0156 53.375
Q39.8438 58.5469 37.7031 60.8906
Q34.125 64.6562 28.9062 64.6562
Q24.7031 64.6562 21.5312 62.3125
Q17.3906 59.2812 14.9844 53.4688
Q12.5938 47.6562 12.5 36.9219
Q15.6719 41.75 20.2656 44.0938
Q24.8594 46.4375 29.8906 46.4375
Q38.6719 46.4375 44.8438 39.9688
Q51.0312 33.5 51.0312 23.25
Q51.0312 16.5 48.125 10.7188
Q45.2188 4.9375 40.1406 1.85938
Q35.0625 -1.21875 28.6094 -1.21875
Q17.625 -1.21875 10.6875 6.85938
Q3.76562 14.9375 3.76562 33.5
Q3.76562 54.25 11.4219 63.6719
Q18.1094 71.875 29.4375 71.875
Q37.8906 71.875 43.2812 67.1406
Q48.6875 62.4062 49.75 54.0469
M13.875 23.1875
Q13.875 18.6562 15.7969 14.5
Q17.7188 10.3594 21.1875 8.17188
Q24.6562 6 28.4688 6
Q34.0312 6 38.0312 10.4844
Q42.0469 14.9844 42.0469 22.7031
Q42.0469 30.125 38.0781 34.3906
Q34.125 38.6719 28.125 38.6719
Q22.1719 38.6719 18.0156 34.3906
Q13.875 30.125 13.875 23.1875" id="ArialMT-36"/>
</defs>
<g style="fill:#262626;" transform="translate(152.8384375 228.782855114)scale(0.14 -0.14)">
<use xlink:href="#ArialMT-36"/>
<use x="55.615234375" xlink:href="#ArialMT-30"/>
<use x="111.23046875" xlink:href="#ArialMT-b0"/>
</g>
</g>
</g>
<g id="ytick_9">
<g id="line2d_97">
<path clip-path="url(#p2460cf4024)" d="
M179.55 183.273
L1292.76 183.273" style="fill:none;stroke:#ffffff;stroke-linecap:round;"/>
</g>
<g id="line2d_98">
<g>
<use style="fill:#262626;stroke:#262626;" x="179.55" xlink:href="#m219da94a98" y="183.272727273"/>
</g>
</g>
<g id="line2d_99">
<g>
<use style="fill:#262626;stroke:#262626;" x="1292.76" xlink:href="#m219da94a98" y="183.272727273"/>
</g>
</g>
<g id="text_21">
<!-- 70° -->
<defs>
<path d="
M4.73438 62.2031
L4.73438 70.6562
L51.0781 70.6562
L51.0781 63.8125
Q44.2344 56.5469 37.5156 44.4844
Q30.8125 32.4219 27.1562 19.6719
Q24.5156 10.6875 23.7812 0
L14.75 0
Q14.8906 8.45312 18.0625 20.4062
Q21.2344 32.375 27.1719 43.4844
Q33.1094 54.5938 39.7969 62.2031
z
" id="ArialMT-37"/>
</defs>
<g style="fill:#262626;" transform="translate(152.9740625 186.891946023)scale(0.14 -0.14)">
<use xlink:href="#ArialMT-37"/>
<use x="55.615234375" xlink:href="#ArialMT-30"/>
<use x="111.23046875" xlink:href="#ArialMT-b0"/>
</g>
</g>
</g>
<g id="ytick_10">
<g id="line2d_100">
<path clip-path="url(#p2460cf4024)" d="
M179.55 141.382
L1292.76 141.382" style="fill:none;stroke:#ffffff;stroke-linecap:round;"/>
</g>
<g id="line2d_101">
<g>
<use style="fill:#262626;stroke:#262626;" x="179.55" xlink:href="#m219da94a98" y="141.381818182"/>
</g>
</g>
<g id="line2d_102">
<g>
<use style="fill:#262626;stroke:#262626;" x="1292.76" xlink:href="#m219da94a98" y="141.381818182"/>
</g>
</g>
<g id="text_22">
<!-- 80° -->
<defs>
<path d="
M17.6719 38.8125
Q12.2031 40.8281 9.5625 44.5312
Q6.9375 48.25 6.9375 53.4219
Q6.9375 61.2344 12.5469 66.5469
Q18.1719 71.875 27.4844 71.875
Q36.8594 71.875 42.5781 66.4219
Q48.2969 60.9844 48.2969 53.1719
Q48.2969 48.1875 45.6719 44.5
Q43.0625 40.8281 37.75 38.8125
Q44.3438 36.6719 47.7812 31.875
Q51.2188 27.0938 51.2188 20.4531
Q51.2188 11.2812 44.7188 5.03125
Q38.2344 -1.21875 27.6406 -1.21875
Q17.0469 -1.21875 10.5469 5.04688
Q4.04688 11.3281 4.04688 20.7031
Q4.04688 27.6875 7.59375 32.3906
Q11.1406 37.1094 17.6719 38.8125
M15.9219 53.7188
Q15.9219 48.6406 19.1875 45.4062
Q22.4688 42.1875 27.6875 42.1875
Q32.7656 42.1875 36.0156 45.375
Q39.2656 48.5781 39.2656 53.2188
Q39.2656 58.0625 35.9062 61.3594
Q32.5625 64.6562 27.5938 64.6562
Q22.5625 64.6562 19.2344 61.4219
Q15.9219 58.2031 15.9219 53.7188
M13.0938 20.6562
Q13.0938 16.8906 14.875 13.375
Q16.6562 9.85938 20.1719 7.92188
Q23.6875 6 27.7344 6
Q34.0312 6 38.125 10.0469
Q42.2344 14.1094 42.2344 20.3594
Q42.2344 26.7031 38.0156 30.8594
Q33.7969 35.0156 27.4375 35.0156
Q21.2344 35.0156 17.1562 30.9062
Q13.0938 26.8125 13.0938 20.6562" id="ArialMT-38"/>
</defs>
<g style="fill:#262626;" transform="translate(152.8778125 145.001036932)scale(0.14 -0.14)">
<use xlink:href="#ArialMT-38"/>
<use x="55.615234375" xlink:href="#ArialMT-30"/>
<use x="111.23046875" xlink:href="#ArialMT-b0"/>
</g>
</g>
</g>
<g id="ytick_11">
<g id="line2d_103">
<path clip-path="url(#p2460cf4024)" d="
M179.55 99.4909
L1292.76 99.4909" style="fill:none;stroke:#ffffff;stroke-linecap:round;"/>
</g>
<g id="line2d_104">
<g>
<use style="fill:#262626;stroke:#262626;" x="179.55" xlink:href="#m219da94a98" y="99.4909090909"/>
</g>
</g>
<g id="line2d_105">
<g>
<use style="fill:#262626;stroke:#262626;" x="1292.76" xlink:href="#m219da94a98" y="99.4909090909"/>
</g>
</g>
<g id="text_23">
<!-- 90° -->
<defs>
<path d="
M5.46875 16.5469
L13.9219 17.3281
Q14.9844 11.375 18.0156 8.6875
Q21.0469 6 25.7812 6
Q29.8281 6 32.875 7.85938
Q35.9375 9.71875 37.8906 12.8125
Q39.8438 15.9219 41.1562 21.1875
Q42.4844 26.4688 42.4844 31.9375
Q42.4844 32.5156 42.4375 33.6875
Q39.7969 29.5 35.2344 26.875
Q30.6719 24.2656 25.3438 24.2656
Q16.4531 24.2656 10.2969 30.7031
Q4.15625 37.1562 4.15625 47.7031
Q4.15625 58.5938 10.5781 65.2344
Q17 71.875 26.6562 71.875
Q33.6406 71.875 39.4219 68.1094
Q45.2188 64.3594 48.2188 57.3906
Q51.2188 50.4375 51.2188 37.25
Q51.2188 23.5312 48.2344 15.4062
Q45.2656 7.28125 39.375 3.03125
Q33.5 -1.21875 25.5938 -1.21875
Q17.1875 -1.21875 11.8594 3.4375
Q6.54688 8.10938 5.46875 16.5469
M41.4531 48.1406
Q41.4531 55.7188 37.4219 60.1562
Q33.4062 64.5938 27.7344 64.5938
Q21.875 64.5938 17.5312 59.8125
Q13.1875 55.0312 13.1875 47.4062
Q13.1875 40.5781 17.3125 36.2969
Q21.4375 32.0312 27.4844 32.0312
Q33.5938 32.0312 37.5156 36.2969
Q41.4531 40.5781 41.4531 48.1406" id="ArialMT-39"/>
</defs>
<g style="fill:#262626;" transform="translate(152.893125 103.110127841)scale(0.14 -0.14)">
<use xlink:href="#ArialMT-39"/>
<use x="55.615234375" xlink:href="#ArialMT-30"/>
<use x="111.23046875" xlink:href="#ArialMT-b0"/>
</g>
</g>
</g>
<g id="ytick_12">
<g id="line2d_106">
<path clip-path="url(#p2460cf4024)" d="
M179.55 57.6
L1292.76 57.6" style="fill:none;stroke:#ffffff;stroke-linecap:round;"/>
</g>
<g id="line2d_107">
<g>
<use style="fill:#262626;stroke:#262626;" x="179.55" xlink:href="#m219da94a98" y="57.6"/>
</g>
</g>
<g id="line2d_108">
<g>
<use style="fill:#262626;stroke:#262626;" x="1292.76" xlink:href="#m219da94a98" y="57.6"/>
</g>
</g>
<g id="text_24">
<!-- 100° -->
<g style="fill:#262626;" transform="translate(146.050625 61.21921875)scale(0.14 -0.14)">
<use xlink:href="#ArialMT-31"/>
<use x="55.615234375" xlink:href="#ArialMT-30"/>
<use x="111.23046875" xlink:href="#ArialMT-30"/>
<use x="166.845703125" xlink:href="#ArialMT-b0"/>
</g>
</g>
</g>
</g>
<g id="LineCollection_3">
<defs>
<path d="
M742.238 -78.5455
L742.238 -225.164" id="C2_0_b2846a3820"/>
</defs>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#eed8ae;stroke-width:15.0;" x="0.0" xlink:href="#C2_0_b2846a3820" y="576.0"/>
</g>
</g>
<g id="LineCollection_4">
<defs>
<path d="
M742.238 -112.058
L742.238 -179.084" id="C3_0_f4a0dd777b"/>
</defs>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#8b7e66;stroke-width:15.0;" x="0.0" xlink:href="#C3_0_f4a0dd777b" y="576.0"/>
</g>
</g>
<g id="LineCollection_5">
<defs>
<path d="
M757.446 -112.058
L757.446 -162.327" id="C4_0_8ea5af4e81"/>
</defs>
<g clip-path="url(#p2460cf4024)">
<use style="fill:none;stroke:#000000;stroke-width:1.75;" x="0.0" xlink:href="#C4_0_8ea5af4e81" y="576.0"/>
</g>
</g>
<g id="line2d_109">
<defs>
<path d="
M0 3.5
C0.928211 3.5 1.81853 3.13122 2.47487 2.47487
C3.13122 1.81853 3.5 0.928211 3.5 0
C3.5 -0.928211 3.13122 -1.81853 2.47487 -2.47487
C1.81853 -3.13122 0.928211 -3.5 0 -3.5
C-0.928211 -3.5 -1.81853 -3.13122 -2.47487 -2.47487
C-3.13122 -1.81853 -3.5 -0.928211 -3.5 0
C-3.5 0.928211 -3.13122 1.81853 -2.47487 2.47487
C-1.81853 3.13122 -0.928211 3.5 0 3.5
z
" id="macaa6f577f"/>
</defs>
<g clip-path="url(#p2460cf4024)">
<use style="fill:#ff0000;" x="690.531639344" xlink:href="#macaa6f577f" y="127.976727273"/>
<use style="fill:#ff0000;" x="933.856229508" xlink:href="#macaa6f577f" y="138.030545455"/>
<use style="fill:#ff0000;" x="1052.47696721" xlink:href="#macaa6f577f" y="175.313454545"/>
<use style="fill:#ff0000;" x="1055.51852459" xlink:href="#macaa6f577f" y="184.110545455"/>
<use style="fill:#ff0000;" x="1095.05877049" xlink:href="#macaa6f577f" y="207.569454545"/>
</g>
</g>
<g id="line2d_110">
<defs>
<path d="
M0 3.5
C0.928211 3.5 1.81853 3.13122 2.47487 2.47487
C3.13122 1.81853 3.5 0.928211 3.5 0
C3.5 -0.928211 3.13122 -1.81853 2.47487 -2.47487
C1.81853 -3.13122 0.928211 -3.5 0 -3.5
C-0.928211 -3.5 -1.81853 -3.13122 -2.47487 -2.47487
C-3.13122 -1.81853 -3.5 -0.928211 -3.5 0
C-3.5 0.928211 -3.13122 1.81853 -2.47487 2.47487
C-1.81853 3.13122 -0.928211 3.5 0 3.5
z
" id="m1709273626"/>
</defs>
<g clip-path="url(#p2460cf4024)">
<use style="fill:#0000ff;" x="185.633114754" xlink:href="#m1709273626" y="406.970181818"/>
<use style="fill:#0000ff;" x="188.674672131" xlink:href="#m1709273626" y="410.321454545"/>
<use style="fill:#0000ff;" x="197.799344262" xlink:href="#m1709273626" y="417.861818182"/>
<use style="fill:#0000ff;" x="200.840901639" xlink:href="#m1709273626" y="422.469818182"/>
<use style="fill:#0000ff;" x="243.422704918" xlink:href="#m1709273626" y="423.726545455"/>
<use style="fill:#0000ff;" x="246.464262295" xlink:href="#m1709273626" y="419.956363636"/>
<use style="fill:#0000ff;" x="264.713606557" xlink:href="#m1709273626" y="400.267636364"/>
<use style="fill:#0000ff;" x="307.295409836" xlink:href="#m1709273626" y="396.916363636"/>
<use style="fill:#0000ff;" x="355.960327869" xlink:href="#m1709273626" y="404.037818182"/>
<use style="fill:#0000ff;" x="359.001885246" xlink:href="#m1709273626" y="365.079272727"/>
<use style="fill:#0000ff;" x="368.126557377" xlink:href="#m1709273626" y="391.470545455"/>
<use style="fill:#0000ff;" x="395.50057377" xlink:href="#m1709273626" y="355.863272727"/>
<use style="fill:#0000ff;" x="407.666803279" xlink:href="#m1709273626" y="357.957818182"/>
<use style="fill:#0000ff;" x="428.957704918" xlink:href="#m1709273626" y="358.795636364"/>
<use style="fill:#0000ff;" x="431.999262295" xlink:href="#m1709273626" y="344.133818182"/>
<use style="fill:#0000ff;" x="438.082377049" xlink:href="#m1709273626" y="350.417454545"/>
<use style="fill:#0000ff;" x="498.91352459" xlink:href="#m1709273626" y="313.553454545"/>
<use style="fill:#0000ff;" x="501.955081967" xlink:href="#m1709273626" y="304.337454545"/>
<use style="fill:#0000ff;" x="538.453770492" xlink:href="#m1709273626" y="267.473454545"/>
<use style="fill:#0000ff;" x="541.495327869" xlink:href="#m1709273626" y="290.094545455"/>
<use style="fill:#0000ff;" x="629.700491803" xlink:href="#m1709273626" y="243.595636364"/>
<use style="fill:#0000ff;" x="742.238114754" xlink:href="#m1709273626" y="183.272727273"/>
<use style="fill:#0000ff;" x="815.235491803" xlink:href="#m1709273626" y="180.759272727"/>
<use style="fill:#0000ff;" x="827.401721311" xlink:href="#m1709273626" y="178.664727273"/>
<use style="fill:#0000ff;" x="830.443278689" xlink:href="#m1709273626" y="183.691636364"/>
<use style="fill:#0000ff;" x="866.941967213" xlink:href="#m1709273626" y="184.948363636"/>
<use style="fill:#0000ff;" x="1067.6847541" xlink:href="#m1709273626" y="267.892363636"/>
<use style="fill:#0000ff;" x="1158.93147541" xlink:href="#m1709273626" y="364.660363636"/>
<use style="fill:#0000ff;" x="1165.01459016" xlink:href="#m1709273626" y="337.850181818"/>
<use style="fill:#0000ff;" x="1189.34704918" xlink:href="#m1709273626" y="344.971636364"/>
</g>
</g>
<g id="line2d_111">
<defs>
<path d="
M4 2.44929e-16
L-4 -2.44929e-16" id="m3560759755" style="stroke:#000000;"/>
</defs>
<g clip-path="url(#p2460cf4024)">
<use style="stroke:#000000;" x="757.445901639" xlink:href="#m3560759755" y="463.941818182"/>
</g>
</g>
<g id="line2d_112">
<g clip-path="url(#p2460cf4024)">
<use style="stroke:#000000;" x="757.445901639" xlink:href="#m3560759755" y="413.672727273"/>
</g>
</g>
<g id="line2d_113">
<path clip-path="url(#p2460cf4024)" d="
M757.446 438.807" style="fill:none;stroke:#000000;stroke-linecap:round;stroke-width:1.75;"/>
</g>
<g id="patch_3">
<path d="
M179.55 57.6
L1292.76 57.6" style="fill:none;"/>
</g>
<g id="patch_4">
<path d="
M1292.76 518.4
L1292.76 57.6" style="fill:none;"/>
</g>
<g id="patch_5">
<path d="
M179.55 518.4
L1292.76 518.4" style="fill:none;"/>
</g>
<g id="patch_6">
<path d="
M179.55 518.4
L179.55 57.6" style="fill:none;stroke:#8b7e66;stroke-width:2;"/>
</g>
<g id="text_25">
<!-- Normal Range -->
<defs>
<path d="
M7.85938 0
L7.85938 71.5781
L39.5938 71.5781
Q49.1719 71.5781 54.1406 69.6406
Q59.125 67.7188 62.1094 62.8281
Q65.0938 57.9531 65.0938 52.0469
Q65.0938 44.4375 60.1562 39.2031
Q55.2188 33.9844 44.9219 32.5625
Q48.6875 30.7656 50.6406 29
Q54.7812 25.2031 58.5 19.4844
L70.9531 0
L59.0312 0
L49.5625 14.8906
Q45.4062 21.3438 42.7188 24.75
Q40.0469 28.1719 37.9219 29.5312
Q35.7969 30.9062 33.5938 31.4531
Q31.9844 31.7812 28.3281 31.7812
L17.3281 31.7812
L17.3281 0
z
M17.3281 39.9844
L37.7031 39.9844
Q44.1875 39.9844 47.8438 41.3281
Q51.5156 42.6719 53.4219 45.625
Q55.3281 48.5781 55.3281 52.0469
Q55.3281 57.125 51.6406 60.3906
Q47.9531 63.6719 39.9844 63.6719
L17.3281 63.6719
z
" id="ArialMT-52"/>
<path id="ArialMT-20"/>
</defs>
<g style="fill:#262626;" transform="translate(760.487459016 441.839147727)scale(0.12 -0.12)">
<use xlink:href="#ArialMT-4e"/>
<use x="72.216796875" xlink:href="#ArialMT-6f"/>
<use x="127.83203125" xlink:href="#ArialMT-72"/>
<use x="161.1328125" xlink:href="#ArialMT-6d"/>
<use x="244.43359375" xlink:href="#ArialMT-61"/>
<use x="300.048828125" xlink:href="#ArialMT-6c"/>
<use x="322.265625" xlink:href="#ArialMT-20"/>
<use x="350.048828125" xlink:href="#ArialMT-52"/>
<use x="422.265625" xlink:href="#ArialMT-61"/>
<use x="477.880859375" xlink:href="#ArialMT-6e"/>
<use x="533.49609375" xlink:href="#ArialMT-67"/>
<use x="589.111328125" xlink:href="#ArialMT-65"/>
</g>
</g>
<g id="text_26">
<!-- Record High -->
<defs>
<path d="
M8.01562 0
L8.01562 71.5781
L17.4844 71.5781
L17.4844 42.1875
L54.6875 42.1875
L54.6875 71.5781
L64.1562 71.5781
L64.1562 0
L54.6875 0
L54.6875 33.7344
L17.4844 33.7344
L17.4844 0
z
" id="ArialMT-48"/>
<path d="
M40.2344 0
L40.2344 6.54688
Q35.2969 -1.17188 25.7344 -1.17188
Q19.5312 -1.17188 14.3281 2.25
Q9.125 5.67188 6.26562 11.7969
Q3.42188 17.9219 3.42188 25.875
Q3.42188 33.6406 6 39.9688
Q8.59375 46.2969 13.7656 49.6562
Q18.9531 53.0312 25.3438 53.0312
Q30.0312 53.0312 33.6875 51.0469
Q37.3594 49.0781 39.6562 45.9062
L39.6562 71.5781
L48.3906 71.5781
L48.3906 0
z
M12.4531 25.875
Q12.4531 15.9219 16.6406 10.9844
Q20.8438 6.0625 26.5625 6.0625
Q32.3281 6.0625 36.3438 10.7656
Q40.375 15.4844 40.375 25.1406
Q40.375 35.7969 36.2656 40.7656
Q32.1719 45.75 26.1719 45.75
Q20.3125 45.75 16.375 40.9688
Q12.4531 36.1875 12.4531 25.875" id="ArialMT-64"/>
</defs>
<g style="fill:#262626;" transform="translate(757.445901639 350.836363636)scale(0.12 -0.12)">
<use xlink:href="#ArialMT-52"/>
<use x="72.216796875" xlink:href="#ArialMT-65"/>
<use x="127.83203125" xlink:href="#ArialMT-63"/>
<use x="177.83203125" xlink:href="#ArialMT-6f"/>
<use x="233.447265625" xlink:href="#ArialMT-72"/>
<use x="266.748046875" xlink:href="#ArialMT-64"/>
<use x="322.36328125" xlink:href="#ArialMT-20"/>
<use x="350.146484375" xlink:href="#ArialMT-48"/>
<use x="422.36328125" xlink:href="#ArialMT-69"/>
<use x="444.580078125" xlink:href="#ArialMT-67"/>
<use x="500.1953125" xlink:href="#ArialMT-68"/>
</g>
</g>
<g id="text_27">
<!-- Record Low -->
<defs>
<path d="
M7.32812 0
L7.32812 71.5781
L16.7969 71.5781
L16.7969 8.45312
L52.0469 8.45312
L52.0469 0
z
" id="ArialMT-4c"/>
<path d="
M16.1562 0
L0.296875 51.8594
L9.375 51.8594
L17.625 21.9219
L20.7031 10.7969
Q20.9062 11.625 23.3906 21.4844
L31.6406 51.8594
L40.6719 51.8594
L48.4375 21.7812
L51.0312 11.8594
L54 21.875
L62.8906 51.8594
L71.4375 51.8594
L55.2188 0
L46.0938 0
L37.8438 31.0625
L35.8438 39.8906
L25.3438 0
z
" id="ArialMT-77"/>
</defs>
<g style="fill:#262626;" transform="translate(757.445901639 506.043920455)scale(0.12 -0.12)">
<use xlink:href="#ArialMT-52"/>
<use x="72.216796875" xlink:href="#ArialMT-65"/>
<use x="127.83203125" xlink:href="#ArialMT-63"/>
<use x="177.83203125" xlink:href="#ArialMT-6f"/>
<use x="233.447265625" xlink:href="#ArialMT-72"/>
<use x="266.748046875" xlink:href="#ArialMT-64"/>
<use x="322.36328125" xlink:href="#ArialMT-20"/>
<use x="350.146484375" xlink:href="#ArialMT-4c"/>
<use x="405.76171875" xlink:href="#ArialMT-6f"/>
<use x="461.376953125" xlink:href="#ArialMT-77"/>
</g>
</g>
<g id="text_28">
<!-- 2014 Temperature -->
<defs>
<path d="
M25.9219 0
L25.9219 63.1406
L2.34375 63.1406
L2.34375 71.5781
L59.0781 71.5781
L59.0781 63.1406
L35.4062 63.1406
L35.4062 0
z
" id="ArialMT-54"/>
</defs>
<g style="fill:#262626;" transform="translate(636.440317623 438.807272727)scale(0.12 -0.12)">
<use xlink:href="#ArialMT-32"/>
<use x="55.615234375" xlink:href="#ArialMT-30"/>
<use x="111.23046875" xlink:href="#ArialMT-31"/>
<use x="166.845703125" xlink:href="#ArialMT-34"/>
<use x="222.4609375" xlink:href="#ArialMT-20"/>
<use x="248.494140625" xlink:href="#ArialMT-54"/>
<use x="298.453125" xlink:href="#ArialMT-65"/>
<use x="354.068359375" xlink:href="#ArialMT-6d"/>
<use x="437.369140625" xlink:href="#ArialMT-70"/>
<use x="492.984375" xlink:href="#ArialMT-65"/>
<use x="548.599609375" xlink:href="#ArialMT-72"/>
<use x="581.900390625" xlink:href="#ArialMT-61"/>
<use x="637.515625" xlink:href="#ArialMT-74"/>
<use x="665.298828125" xlink:href="#ArialMT-75"/>
<use x="720.9140625" xlink:href="#ArialMT-72"/>
<use x="754.21484375" xlink:href="#ArialMT-65"/>
</g>
</g>
<g id="patch_7">
<path d="
M291.349 445.18
L290.497 446.99
L245.923 425.903
L245.923 424.903
L245.923 424.903
L245.923 424.903
L245.923 423.903
z
" style="fill:#0000ff;stroke:#eeeeee;stroke-width:0.3;"/>
</g>
<g id="text_29">
<!-- We had 30 days that were the -->
<defs>
<path d="
M20.2188 0
L1.21875 71.5781
L10.9375 71.5781
L21.8281 24.6562
Q23.5781 17.2812 24.8594 10.0156
Q27.5938 21.4844 28.0781 23.25
L41.7031 71.5781
L53.125 71.5781
L63.375 35.3594
Q67.2344 21.875 68.9531 10.0156
Q70.3125 16.7969 72.5156 25.5938
L83.7344 71.5781
L93.2656 71.5781
L73.6406 0
L64.5 0
L49.4219 54.5469
Q47.5156 61.375 47.1719 62.9375
Q46.0469 58.0156 45.0625 54.5469
L29.8906 0
z
" id="ArialMT-57"/>
</defs>
<g style="fill:#0000ff;" transform="translate(293.422704918 456.027170455)scale(0.12 -0.12)">
<use xlink:href="#ArialMT-57"/>
<use x="92.634765625" xlink:href="#ArialMT-65"/>
<use x="148.25" xlink:href="#ArialMT-20"/>
<use x="176.033203125" xlink:href="#ArialMT-68"/>
<use x="231.6484375" xlink:href="#ArialMT-61"/>
<use x="287.263671875" xlink:href="#ArialMT-64"/>
<use x="342.87890625" xlink:href="#ArialMT-20"/>
<use x="370.662109375" xlink:href="#ArialMT-33"/>
<use x="426.27734375" xlink:href="#ArialMT-30"/>
<use x="481.892578125" xlink:href="#ArialMT-20"/>
<use x="509.67578125" xlink:href="#ArialMT-64"/>
<use x="565.291015625" xlink:href="#ArialMT-61"/>
<use x="620.90625" xlink:href="#ArialMT-79"/>
<use x="670.90625" xlink:href="#ArialMT-73"/>
<use x="720.90625" xlink:href="#ArialMT-20"/>
<use x="748.689453125" xlink:href="#ArialMT-74"/>
<use x="776.47265625" xlink:href="#ArialMT-68"/>
<use x="832.087890625" xlink:href="#ArialMT-61"/>
<use x="887.703125" xlink:href="#ArialMT-74"/>
<use x="915.486328125" xlink:href="#ArialMT-20"/>
<use x="943.26953125" xlink:href="#ArialMT-77"/>
<use x="1015.48632812" xlink:href="#ArialMT-65"/>
<use x="1071.1015625" xlink:href="#ArialMT-72"/>
<use x="1104.40234375" xlink:href="#ArialMT-65"/>
<use x="1160.01757812" xlink:href="#ArialMT-20"/>
<use x="1187.80078125" xlink:href="#ArialMT-74"/>
<use x="1215.58398438" xlink:href="#ArialMT-68"/>
<use x="1271.19921875" xlink:href="#ArialMT-65"/>
</g>
<!-- coldest since 1995 -->
<g style="fill:#0000ff;" transform="translate(293.422704918 468.860045455)scale(0.12 -0.12)">
<use xlink:href="#ArialMT-63"/>
<use x="50.0" xlink:href="#ArialMT-6f"/>
<use x="105.615234375" xlink:href="#ArialMT-6c"/>
<use x="127.83203125" xlink:href="#ArialMT-64"/>
<use x="183.447265625" xlink:href="#ArialMT-65"/>
<use x="239.0625" xlink:href="#ArialMT-73"/>
<use x="289.0625" xlink:href="#ArialMT-74"/>
<use x="316.845703125" xlink:href="#ArialMT-20"/>
<use x="344.62890625" xlink:href="#ArialMT-73"/>
<use x="394.62890625" xlink:href="#ArialMT-69"/>
<use x="416.845703125" xlink:href="#ArialMT-6e"/>
<use x="472.4609375" xlink:href="#ArialMT-63"/>
<use x="522.4609375" xlink:href="#ArialMT-65"/>
<use x="578.076171875" xlink:href="#ArialMT-20"/>
<use x="605.859375" xlink:href="#ArialMT-31"/>
<use x="661.474609375" xlink:href="#ArialMT-39"/>
<use x="717.08984375" xlink:href="#ArialMT-39"/>
<use x="772.705078125" xlink:href="#ArialMT-35"/>
</g>
</g>
<g id="patch_8">
<path d="
M691.532 92.3761
L689.532 92.3761
L690.532 127.103
L690.532 126.103
L690.532 126.103
L690.532 126.103
L690.532 125.103
z
" style="fill:#ff0000;stroke:#eeeeee;stroke-width:0.3;"/>
</g>
<g id="text_30">
<!-- We had 5 days that were the -->
<g style="fill:#ff0000;" transform="translate(614.513514344 75.2844772727)scale(0.12 -0.12)">
<use xlink:href="#ArialMT-57"/>
<use x="92.634765625" xlink:href="#ArialMT-65"/>
<use x="148.25" xlink:href="#ArialMT-20"/>
<use x="176.033203125" xlink:href="#ArialMT-68"/>
<use x="231.6484375" xlink:href="#ArialMT-61"/>
<use x="287.263671875" xlink:href="#ArialMT-64"/>
<use x="342.87890625" xlink:href="#ArialMT-20"/>
<use x="370.662109375" xlink:href="#ArialMT-35"/>
<use x="426.27734375" xlink:href="#ArialMT-20"/>
<use x="454.060546875" xlink:href="#ArialMT-64"/>
<use x="509.67578125" xlink:href="#ArialMT-61"/>
<use x="565.291015625" xlink:href="#ArialMT-79"/>
<use x="615.291015625" xlink:href="#ArialMT-73"/>
<use x="665.291015625" xlink:href="#ArialMT-20"/>
<use x="693.07421875" xlink:href="#ArialMT-74"/>
<use x="720.857421875" xlink:href="#ArialMT-68"/>
<use x="776.47265625" xlink:href="#ArialMT-61"/>
<use x="832.087890625" xlink:href="#ArialMT-74"/>
<use x="859.87109375" xlink:href="#ArialMT-20"/>
<use x="887.654296875" xlink:href="#ArialMT-77"/>
<use x="959.87109375" xlink:href="#ArialMT-65"/>
<use x="1015.48632812" xlink:href="#ArialMT-72"/>
<use x="1048.78710938" xlink:href="#ArialMT-65"/>
<use x="1104.40234375" xlink:href="#ArialMT-20"/>
<use x="1132.18554688" xlink:href="#ArialMT-74"/>
<use x="1159.96875" xlink:href="#ArialMT-68"/>
<use x="1215.58398438" xlink:href="#ArialMT-65"/>
</g>
<!-- hottest since 1995 -->
<g style="fill:#ff0000;" transform="translate(642.075076844 88.1173522727)scale(0.12 -0.12)">
<use xlink:href="#ArialMT-68"/>
<use x="55.615234375" xlink:href="#ArialMT-6f"/>
<use x="111.23046875" xlink:href="#ArialMT-74"/>
<use x="139.013671875" xlink:href="#ArialMT-74"/>
<use x="166.796875" xlink:href="#ArialMT-65"/>
<use x="222.412109375" xlink:href="#ArialMT-73"/>
<use x="272.412109375" xlink:href="#ArialMT-74"/>
<use x="300.1953125" xlink:href="#ArialMT-20"/>
<use x="327.978515625" xlink:href="#ArialMT-73"/>
<use x="377.978515625" xlink:href="#ArialMT-69"/>
<use x="400.1953125" xlink:href="#ArialMT-6e"/>
<use x="455.810546875" xlink:href="#ArialMT-63"/>
<use x="505.810546875" xlink:href="#ArialMT-65"/>
<use x="561.42578125" xlink:href="#ArialMT-20"/>
<use x="589.208984375" xlink:href="#ArialMT-31"/>
<use x="644.82421875" xlink:href="#ArialMT-39"/>
<use x="700.439453125" xlink:href="#ArialMT-39"/>
<use x="756.0546875" xlink:href="#ArialMT-35"/>
</g>
</g>
<g id="text_31">
<!-- Data represents average daily temperatures. Accessible data dates back to -->
<defs>
<path d="
M6.64062 0
L6.64062 71.5781
L15.4375 71.5781
L15.4375 30.7656
L36.2344 51.8594
L47.6094 51.8594
L27.7812 32.625
L49.6094 0
L38.7656 0
L21.625 26.5156
L15.4375 20.5625
L15.4375 0
z
" id="ArialMT-6b"/>
<path d="
M9.07812 0
L9.07812 10.0156
L19.0938 10.0156
L19.0938 0
z
" id="ArialMT-2e"/>
</defs>
<g style="fill:#262626;" transform="translate(190.208084016 91.3239204545)scale(0.12 -0.12)">
<use xlink:href="#ArialMT-44"/>
<use x="72.216796875" xlink:href="#ArialMT-61"/>
<use x="127.83203125" xlink:href="#ArialMT-74"/>
<use x="155.615234375" xlink:href="#ArialMT-61"/>
<use x="211.23046875" xlink:href="#ArialMT-20"/>
<use x="239.013671875" xlink:href="#ArialMT-72"/>
<use x="272.314453125" xlink:href="#ArialMT-65"/>
<use x="327.9296875" xlink:href="#ArialMT-70"/>
<use x="383.544921875" xlink:href="#ArialMT-72"/>
<use x="416.845703125" xlink:href="#ArialMT-65"/>
<use x="472.4609375" xlink:href="#ArialMT-73"/>
<use x="522.4609375" xlink:href="#ArialMT-65"/>
<use x="578.076171875" xlink:href="#ArialMT-6e"/>
<use x="633.69140625" xlink:href="#ArialMT-74"/>
<use x="661.474609375" xlink:href="#ArialMT-73"/>
<use x="711.474609375" xlink:href="#ArialMT-20"/>
<use x="739.2578125" xlink:href="#ArialMT-61"/>
<use x="794.873046875" xlink:href="#ArialMT-76"/>
<use x="844.873046875" xlink:href="#ArialMT-65"/>
<use x="900.48828125" xlink:href="#ArialMT-72"/>
<use x="933.7890625" xlink:href="#ArialMT-61"/>
<use x="989.404296875" xlink:href="#ArialMT-67"/>
<use x="1045.01953125" xlink:href="#ArialMT-65"/>
<use x="1100.63476562" xlink:href="#ArialMT-20"/>
<use x="1128.41796875" xlink:href="#ArialMT-64"/>
<use x="1184.03320312" xlink:href="#ArialMT-61"/>
<use x="1239.6484375" xlink:href="#ArialMT-69"/>
<use x="1261.86523438" xlink:href="#ArialMT-6c"/>
<use x="1284.08203125" xlink:href="#ArialMT-79"/>
<use x="1334.08203125" xlink:href="#ArialMT-20"/>
<use x="1361.86523438" xlink:href="#ArialMT-74"/>
<use x="1389.6484375" xlink:href="#ArialMT-65"/>
<use x="1445.26367188" xlink:href="#ArialMT-6d"/>
<use x="1528.56445312" xlink:href="#ArialMT-70"/>
<use x="1584.1796875" xlink:href="#ArialMT-65"/>
<use x="1639.79492188" xlink:href="#ArialMT-72"/>
<use x="1673.09570312" xlink:href="#ArialMT-61"/>
<use x="1728.7109375" xlink:href="#ArialMT-74"/>
<use x="1756.49414062" xlink:href="#ArialMT-75"/>
<use x="1812.109375" xlink:href="#ArialMT-72"/>
<use x="1845.41015625" xlink:href="#ArialMT-65"/>
<use x="1901.02539062" xlink:href="#ArialMT-73"/>
<use x="1951.02539062" xlink:href="#ArialMT-2e"/>
<use x="1978.80859375" xlink:href="#ArialMT-20"/>
<use x="2001.09179688" xlink:href="#ArialMT-41"/>
<use x="2067.79101562" xlink:href="#ArialMT-63"/>
<use x="2117.79101562" xlink:href="#ArialMT-63"/>
<use x="2167.79101562" xlink:href="#ArialMT-65"/>
<use x="2223.40625" xlink:href="#ArialMT-73"/>
<use x="2273.40625" xlink:href="#ArialMT-73"/>
<use x="2323.40625" xlink:href="#ArialMT-69"/>
<use x="2345.62304688" xlink:href="#ArialMT-62"/>
<use x="2401.23828125" xlink:href="#ArialMT-6c"/>
<use x="2423.45507812" xlink:href="#ArialMT-65"/>
<use x="2479.0703125" xlink:href="#ArialMT-20"/>
<use x="2506.85351562" xlink:href="#ArialMT-64"/>
<use x="2562.46875" xlink:href="#ArialMT-61"/>
<use x="2618.08398438" xlink:href="#ArialMT-74"/>
<use x="2645.8671875" xlink:href="#ArialMT-61"/>
<use x="2701.48242188" xlink:href="#ArialMT-20"/>
<use x="2729.265625" xlink:href="#ArialMT-64"/>
<use x="2784.88085938" xlink:href="#ArialMT-61"/>
<use x="2840.49609375" xlink:href="#ArialMT-74"/>
<use x="2868.27929688" xlink:href="#ArialMT-65"/>
<use x="2923.89453125" xlink:href="#ArialMT-73"/>
<use x="2973.89453125" xlink:href="#ArialMT-20"/>
<use x="3001.67773438" xlink:href="#ArialMT-62"/>
<use x="3057.29296875" xlink:href="#ArialMT-61"/>
<use x="3112.90820312" xlink:href="#ArialMT-63"/>
<use x="3162.90820312" xlink:href="#ArialMT-6b"/>
<use x="3212.90820312" xlink:href="#ArialMT-20"/>
<use x="3240.69140625" xlink:href="#ArialMT-74"/>
<use x="3268.47460938" xlink:href="#ArialMT-6f"/>
</g>
<!-- January 1, 1975. Data for 2014 is only available through December 16. -->
<defs>
<path d="
M8.89062 0
L8.89062 10.0156
L18.8906 10.0156
L18.8906 0
Q18.8906 -5.51562 16.9375 -8.90625
Q14.9844 -12.3125 10.75 -14.1562
L8.29688 -10.4062
Q11.0781 -9.1875 12.3906 -6.8125
Q13.7188 -4.4375 13.875 0
z
" id="ArialMT-2c"/>
<path d="
M8.6875 0
L8.6875 45.0156
L0.921875 45.0156
L0.921875 51.8594
L8.6875 51.8594
L8.6875 57.375
Q8.6875 62.5938 9.625 65.1406
Q10.8906 68.5625 14.0781 70.6719
Q17.2812 72.7969 23.0469 72.7969
Q26.7656 72.7969 31.25 71.9219
L29.9375 64.2656
Q27.2031 64.75 24.75 64.75
Q20.75 64.75 19.0938 63.0312
Q17.4375 61.3281 17.4375 56.6406
L17.4375 51.8594
L27.5469 51.8594
L27.5469 45.0156
L17.4375 45.0156
L17.4375 0
z
" id="ArialMT-66"/>
</defs>
<g style="fill:#262626;" transform="translate(201.837771516 104.332295455)scale(0.12 -0.12)">
<use xlink:href="#ArialMT-4a"/>
<use x="50.0" xlink:href="#ArialMT-61"/>
<use x="105.615234375" xlink:href="#ArialMT-6e"/>
<use x="161.23046875" xlink:href="#ArialMT-75"/>
<use x="216.845703125" xlink:href="#ArialMT-61"/>
<use x="272.4609375" xlink:href="#ArialMT-72"/>
<use x="305.76171875" xlink:href="#ArialMT-79"/>
<use x="355.76171875" xlink:href="#ArialMT-20"/>
<use x="383.544921875" xlink:href="#ArialMT-31"/>
<use x="439.16015625" xlink:href="#ArialMT-2c"/>
<use x="466.943359375" xlink:href="#ArialMT-20"/>
<use x="494.7265625" xlink:href="#ArialMT-31"/>
<use x="550.341796875" xlink:href="#ArialMT-39"/>
<use x="605.95703125" xlink:href="#ArialMT-37"/>
<use x="661.572265625" xlink:href="#ArialMT-35"/>
<use x="717.1875" xlink:href="#ArialMT-2e"/>
<use x="744.970703125" xlink:href="#ArialMT-20"/>
<use x="772.75390625" xlink:href="#ArialMT-44"/>
<use x="844.970703125" xlink:href="#ArialMT-61"/>
<use x="900.5859375" xlink:href="#ArialMT-74"/>
<use x="928.369140625" xlink:href="#ArialMT-61"/>
<use x="983.984375" xlink:href="#ArialMT-20"/>
<use x="1011.76757812" xlink:href="#ArialMT-66"/>
<use x="1039.55078125" xlink:href="#ArialMT-6f"/>
<use x="1095.16601562" xlink:href="#ArialMT-72"/>
<use x="1128.46679688" xlink:href="#ArialMT-20"/>
<use x="1156.25" xlink:href="#ArialMT-32"/>
<use x="1211.86523438" xlink:href="#ArialMT-30"/>
<use x="1267.48046875" xlink:href="#ArialMT-31"/>
<use x="1323.09570312" xlink:href="#ArialMT-34"/>
<use x="1378.7109375" xlink:href="#ArialMT-20"/>
<use x="1406.49414062" xlink:href="#ArialMT-69"/>
<use x="1428.7109375" xlink:href="#ArialMT-73"/>
<use x="1478.7109375" xlink:href="#ArialMT-20"/>
<use x="1506.49414062" xlink:href="#ArialMT-6f"/>
<use x="1562.109375" xlink:href="#ArialMT-6e"/>
<use x="1617.72460938" xlink:href="#ArialMT-6c"/>
<use x="1639.94140625" xlink:href="#ArialMT-79"/>
<use x="1689.94140625" xlink:href="#ArialMT-20"/>
<use x="1717.72460938" xlink:href="#ArialMT-61"/>
<use x="1773.33984375" xlink:href="#ArialMT-76"/>
<use x="1823.33984375" xlink:href="#ArialMT-61"/>
<use x="1878.95507812" xlink:href="#ArialMT-69"/>
<use x="1901.171875" xlink:href="#ArialMT-6c"/>
<use x="1923.38867188" xlink:href="#ArialMT-61"/>
<use x="1979.00390625" xlink:href="#ArialMT-62"/>
<use x="2034.61914062" xlink:href="#ArialMT-6c"/>
<use x="2056.8359375" xlink:href="#ArialMT-65"/>
<use x="2112.45117188" xlink:href="#ArialMT-20"/>
<use x="2140.234375" xlink:href="#ArialMT-74"/>
<use x="2168.01757812" xlink:href="#ArialMT-68"/>
<use x="2223.6328125" xlink:href="#ArialMT-72"/>
<use x="2256.93359375" xlink:href="#ArialMT-6f"/>
<use x="2312.54882812" xlink:href="#ArialMT-75"/>
<use x="2368.1640625" xlink:href="#ArialMT-67"/>
<use x="2423.77929688" xlink:href="#ArialMT-68"/>
<use x="2479.39453125" xlink:href="#ArialMT-20"/>
<use x="2507.17773438" xlink:href="#ArialMT-44"/>
<use x="2579.39453125" xlink:href="#ArialMT-65"/>
<use x="2635.00976562" xlink:href="#ArialMT-63"/>
<use x="2685.00976562" xlink:href="#ArialMT-65"/>
<use x="2740.625" xlink:href="#ArialMT-6d"/>
<use x="2823.92578125" xlink:href="#ArialMT-62"/>
<use x="2879.54101562" xlink:href="#ArialMT-65"/>
<use x="2935.15625" xlink:href="#ArialMT-72"/>
<use x="2968.45703125" xlink:href="#ArialMT-20"/>
<use x="2996.24023438" xlink:href="#ArialMT-31"/>
<use x="3051.85546875" xlink:href="#ArialMT-36"/>
<use x="3107.47070312" xlink:href="#ArialMT-2e"/>
</g>
<!-- Average temperature for the year was 54.8° making 2014 the 6th coldest -->
<g style="fill:#262626;" transform="translate(196.395584016 117.340670455)scale(0.12 -0.12)">
<use xlink:href="#ArialMT-41"/>
<use x="64.94921875" xlink:href="#ArialMT-76"/>
<use x="114.94921875" xlink:href="#ArialMT-65"/>
<use x="170.564453125" xlink:href="#ArialMT-72"/>
<use x="203.865234375" xlink:href="#ArialMT-61"/>
<use x="259.48046875" xlink:href="#ArialMT-67"/>
<use x="315.095703125" xlink:href="#ArialMT-65"/>
<use x="370.7109375" xlink:href="#ArialMT-20"/>
<use x="398.494140625" xlink:href="#ArialMT-74"/>
<use x="426.27734375" xlink:href="#ArialMT-65"/>
<use x="481.892578125" xlink:href="#ArialMT-6d"/>
<use x="565.193359375" xlink:href="#ArialMT-70"/>
<use x="620.80859375" xlink:href="#ArialMT-65"/>
<use x="676.423828125" xlink:href="#ArialMT-72"/>
<use x="709.724609375" xlink:href="#ArialMT-61"/>
<use x="765.33984375" xlink:href="#ArialMT-74"/>
<use x="793.123046875" xlink:href="#ArialMT-75"/>
<use x="848.73828125" xlink:href="#ArialMT-72"/>
<use x="882.0390625" xlink:href="#ArialMT-65"/>
<use x="937.654296875" xlink:href="#ArialMT-20"/>
<use x="965.4375" xlink:href="#ArialMT-66"/>
<use x="993.220703125" xlink:href="#ArialMT-6f"/>
<use x="1048.8359375" xlink:href="#ArialMT-72"/>
<use x="1082.13671875" xlink:href="#ArialMT-20"/>
<use x="1109.91992188" xlink:href="#ArialMT-74"/>
<use x="1137.703125" xlink:href="#ArialMT-68"/>
<use x="1193.31835938" xlink:href="#ArialMT-65"/>
<use x="1248.93359375" xlink:href="#ArialMT-20"/>
<use x="1276.71679688" xlink:href="#ArialMT-79"/>
<use x="1326.71679688" xlink:href="#ArialMT-65"/>
<use x="1382.33203125" xlink:href="#ArialMT-61"/>
<use x="1437.94726562" xlink:href="#ArialMT-72"/>
<use x="1471.24804688" xlink:href="#ArialMT-20"/>
<use x="1499.03125" xlink:href="#ArialMT-77"/>
<use x="1571.24804688" xlink:href="#ArialMT-61"/>
<use x="1626.86328125" xlink:href="#ArialMT-73"/>
<use x="1676.86328125" xlink:href="#ArialMT-20"/>
<use x="1704.64648438" xlink:href="#ArialMT-35"/>
<use x="1760.26171875" xlink:href="#ArialMT-34"/>
<use x="1815.87695312" xlink:href="#ArialMT-2e"/>
<use x="1843.66015625" xlink:href="#ArialMT-38"/>
<use x="1899.27539062" xlink:href="#ArialMT-b0"/>
<use x="1939.265625" xlink:href="#ArialMT-20"/>
<use x="1967.04882812" xlink:href="#ArialMT-6d"/>
<use x="2050.34960938" xlink:href="#ArialMT-61"/>
<use x="2105.96484375" xlink:href="#ArialMT-6b"/>
<use x="2155.96484375" xlink:href="#ArialMT-69"/>
<use x="2178.18164062" xlink:href="#ArialMT-6e"/>
<use x="2233.796875" xlink:href="#ArialMT-67"/>
<use x="2289.41210938" xlink:href="#ArialMT-20"/>
<use x="2317.1953125" xlink:href="#ArialMT-32"/>
<use x="2372.81054688" xlink:href="#ArialMT-30"/>
<use x="2428.42578125" xlink:href="#ArialMT-31"/>
<use x="2484.04101562" xlink:href="#ArialMT-34"/>
<use x="2539.65625" xlink:href="#ArialMT-20"/>
<use x="2567.43945312" xlink:href="#ArialMT-74"/>
<use x="2595.22265625" xlink:href="#ArialMT-68"/>
<use x="2650.83789062" xlink:href="#ArialMT-65"/>
<use x="2706.453125" xlink:href="#ArialMT-20"/>
<use x="2734.23632812" xlink:href="#ArialMT-36"/>
<use x="2789.8515625" xlink:href="#ArialMT-74"/>
<use x="2817.63476562" xlink:href="#ArialMT-68"/>
<use x="2873.25" xlink:href="#ArialMT-20"/>
<use x="2901.03320312" xlink:href="#ArialMT-63"/>
<use x="2951.03320312" xlink:href="#ArialMT-6f"/>
<use x="3006.6484375" xlink:href="#ArialMT-6c"/>
<use x="3028.86523438" xlink:href="#ArialMT-64"/>
<use x="3084.48046875" xlink:href="#ArialMT-65"/>
<use x="3140.09570312" xlink:href="#ArialMT-73"/>
<use x="3190.09570312" xlink:href="#ArialMT-74"/>
</g>
<!-- yearsince 1995 -->
<g style="fill:#262626;" transform="translate(348.967146516 130.216295455)scale(0.12 -0.12)">
<use xlink:href="#ArialMT-79"/>
<use x="50.0" xlink:href="#ArialMT-65"/>
<use x="105.615234375" xlink:href="#ArialMT-61"/>
<use x="161.23046875" xlink:href="#ArialMT-72"/>
<use x="194.53125" xlink:href="#ArialMT-73"/>
<use x="244.53125" xlink:href="#ArialMT-69"/>
<use x="266.748046875" xlink:href="#ArialMT-6e"/>
<use x="322.36328125" xlink:href="#ArialMT-63"/>
<use x="372.36328125" xlink:href="#ArialMT-65"/>
<use x="427.978515625" xlink:href="#ArialMT-20"/>
<use x="455.76171875" xlink:href="#ArialMT-31"/>
<use x="511.376953125" xlink:href="#ArialMT-39"/>
<use x="566.9921875" xlink:href="#ArialMT-39"/>
<use x="622.607421875" xlink:href="#ArialMT-35"/>
</g>
</g>
<g id="text_32">
<!-- Temperature in Fahrenheit -->
<defs>
<path d="
M20.3125 0
L6.59375 0
L6.59375 51.8594
L19.3438 51.8594
L19.3438 44.4844
Q22.6094 49.7031 25.2188 51.3594
Q27.8281 53.0312 31.1562 53.0312
Q35.8438 53.0312 40.1875 50.4375
L35.9375 38.4844
Q32.4688 40.7188 29.5 40.7188
Q26.6094 40.7188 24.6094 39.125
Q22.6094 37.5469 21.4531 33.3906
Q20.3125 29.25 20.3125 16.0156
z
" id="Arial-BoldMT-72"/>
<path d="
M6.78125 51.8594
L19.5781 51.8594
L19.5781 44.2344
Q22.0781 48.1406 26.3125 50.5781
Q30.5625 53.0312 35.75 53.0312
Q44.7812 53.0312 51.0781 45.9531
Q57.375 38.875 57.375 26.2188
Q57.375 13.2344 51.0156 6.03125
Q44.6719 -1.17188 35.6406 -1.17188
Q31.3438 -1.17188 27.8438 0.53125
Q24.3594 2.25 20.5156 6.39062
L20.5156 -19.7344
L6.78125 -19.7344
z
M20.3594 26.8125
Q20.3594 18.0625 23.8281 13.8906
Q27.2969 9.71875 32.2812 9.71875
Q37.0625 9.71875 40.2344 13.5469
Q43.4062 17.3906 43.4062 26.125
Q43.4062 34.2812 40.125 38.2344
Q36.8594 42.1875 32.0312 42.1875
Q27 42.1875 23.6719 38.2969
Q20.3594 34.4219 20.3594 26.8125" id="Arial-BoldMT-70"/>
<path d="
M37.2031 16.5
L50.875 14.2031
Q48.25 6.6875 42.5469 2.75
Q36.8594 -1.17188 28.3281 -1.17188
Q14.7969 -1.17188 8.29688 7.67188
Q3.17188 14.75 3.17188 25.5312
Q3.17188 38.4219 9.90625 45.7188
Q16.6562 53.0312 26.9531 53.0312
Q38.5312 53.0312 45.2188 45.3906
Q51.9062 37.75 51.6094 21.9688
L17.2344 21.9688
Q17.3906 15.875 20.5625 12.4688
Q23.7344 9.07812 28.4688 9.07812
Q31.6875 9.07812 33.875 10.8281
Q36.0781 12.5938 37.2031 16.5
M37.9844 30.375
Q37.8438 36.3281 34.9062 39.4219
Q31.9844 42.5312 27.7812 42.5312
Q23.2969 42.5312 20.3594 39.2656
Q17.4375 35.9844 17.4844 30.375
z
" id="Arial-BoldMT-65"/>
<path d="
M41.3125 0
L41.3125 7.76562
Q38.4844 3.60938 33.8594 1.21875
Q29.25 -1.17188 24.125 -1.17188
Q18.8906 -1.17188 14.7344 1.125
Q10.5938 3.42188 8.73438 7.5625
Q6.89062 11.7188 6.89062 19.0469
L6.89062 51.8594
L20.6094 51.8594
L20.6094 28.0312
Q20.6094 17.0938 21.3594 14.625
Q22.125 12.1562 24.125 10.7188
Q26.125 9.28125 29.2031 9.28125
Q32.7188 9.28125 35.5 11.2031
Q38.2812 13.1406 39.2969 15.9844
Q40.3281 18.8438 40.3281 29.9844
L40.3281 51.8594
L54.0469 51.8594
L54.0469 0
z
" id="Arial-BoldMT-75"/>
<path d="
M17.4375 36.0312
L4.98438 38.2812
Q7.07812 45.7969 12.2031 49.4062
Q17.3281 53.0312 27.4375 53.0312
Q36.625 53.0312 41.1094 50.8594
Q45.6094 48.6875 47.4375 45.3438
Q49.2656 42 49.2656 33.0625
L49.125 17.0469
Q49.125 10.2031 49.7812 6.95312
Q50.4375 3.71875 52.25 0
L38.6719 0
Q38.1406 1.375 37.3594 4.04688
Q37.0156 5.28125 36.8594 5.67188
Q33.3438 2.25 29.3438 0.53125
Q25.3438 -1.17188 20.7969 -1.17188
Q12.7969 -1.17188 8.17188 3.17188
Q3.5625 7.51562 3.5625 14.1562
Q3.5625 18.5625 5.65625 22
Q7.76562 25.4375 11.5469 27.2656
Q15.3281 29.1094 22.4688 30.4688
Q32.0781 32.2812 35.7969 33.8438
L35.7969 35.2031
Q35.7969 39.1562 33.8438 40.8438
Q31.8906 42.5312 26.4688 42.5312
Q22.7969 42.5312 20.75 41.0938
Q18.7031 39.6562 17.4375 36.0312
M35.7969 24.9062
Q33.1562 24.0312 27.4375 22.7969
Q21.7344 21.5781 19.9688 20.4062
Q17.2812 18.5 17.2812 15.5781
Q17.2812 12.7031 19.4219 10.5938
Q21.5781 8.5 24.9062 8.5
Q28.6094 8.5 31.9844 10.9375
Q34.4688 12.7969 35.25 15.4844
Q35.7969 17.2344 35.7969 22.1719
z
" id="Arial-BoldMT-61"/>
<path d="
M20.8438 71.5781
L20.8438 45.2656
Q27.4844 53.0312 36.7188 53.0312
Q41.4531 53.0312 45.2656 51.2656
Q49.0781 49.5156 51 46.7812
Q52.9375 44.0469 53.6406 40.7188
Q54.3438 37.4062 54.3438 30.4219
L54.3438 0
L40.625 0
L40.625 27.3906
Q40.625 35.5469 39.8438 37.7344
Q39.0625 39.9375 37.0781 41.2344
Q35.1094 42.5312 32.125 42.5312
Q28.7188 42.5312 26.0312 40.8594
Q23.3438 39.2031 22.0938 35.8594
Q20.8438 32.5156 20.8438 25.9844
L20.8438 0
L7.125 0
L7.125 71.5781
z
" id="Arial-BoldMT-68"/>
<path d="
M7.17188 58.8906
L7.17188 71.5781
L20.9062 71.5781
L20.9062 58.8906
z
M7.17188 0
L7.17188 51.8594
L20.9062 51.8594
L20.9062 0
z
" id="Arial-BoldMT-69"/>
<path d="
M30.9531 51.8594
L30.9531 40.9219
L21.5781 40.9219
L21.5781 20.0156
Q21.5781 13.6719 21.8438 12.625
Q22.125 11.5781 23.0781 10.8906
Q24.0312 10.2031 25.3906 10.2031
Q27.2969 10.2031 30.9062 11.5312
L32.0781 0.875
Q27.2969 -1.17188 21.2344 -1.17188
Q17.5312 -1.17188 14.5469 0.0625
Q11.5781 1.3125 10.1875 3.29688
Q8.79688 5.28125 8.25 8.64062
Q7.8125 11.0312 7.8125 18.3125
L7.8125 40.9219
L1.51562 40.9219
L1.51562 51.8594
L7.8125 51.8594
L7.8125 62.1562
L21.5781 70.1719
L21.5781 51.8594
z
" id="Arial-BoldMT-74"/>
<path id="Arial-BoldMT-20"/>
<path d="
M6.15625 51.8594
L18.7969 51.8594
L18.7969 44.7812
Q25.5938 53.0312 34.9688 53.0312
Q39.9375 53.0312 43.5938 50.9688
Q47.2656 48.9219 49.6094 44.7812
Q53.0312 48.9219 56.9844 50.9688
Q60.9375 53.0312 65.4375 53.0312
Q71.1406 53.0312 75.0938 50.7031
Q79.0469 48.3906 81 43.8906
Q82.4219 40.5781 82.4219 33.1562
L82.4219 0
L68.7031 0
L68.7031 29.6406
Q68.7031 37.3594 67.2812 39.5938
Q65.375 42.5312 61.4219 42.5312
Q58.5469 42.5312 56 40.7656
Q53.4688 39.0156 52.3438 35.625
Q51.2188 32.2344 51.2188 24.9062
L51.2188 0
L37.5 0
L37.5 28.4219
Q37.5 35.9844 36.7656 38.1719
Q36.0312 40.375 34.4844 41.4531
Q32.9531 42.5312 30.3281 42.5312
Q27.1562 42.5312 24.6094 40.8125
Q22.0781 39.1094 20.9688 35.8906
Q19.875 32.6719 19.875 25.2031
L19.875 0
L6.15625 0
z
" id="Arial-BoldMT-6d"/>
<path d="
M54.3438 0
L40.625 0
L40.625 26.4688
Q40.625 34.8594 39.75 37.3281
Q38.875 39.7969 36.8906 41.1562
Q34.9062 42.5312 32.125 42.5312
Q28.5625 42.5312 25.7344 40.5781
Q22.9062 38.625 21.8438 35.3906
Q20.7969 32.1719 20.7969 23.4844
L20.7969 0
L7.07812 0
L7.07812 51.8594
L19.8281 51.8594
L19.8281 44.2344
Q26.6094 53.0312 36.9219 53.0312
Q41.4531 53.0312 45.2031 51.3906
Q48.9688 49.75 50.8906 47.2031
Q52.8281 44.6719 53.5781 41.4531
Q54.3438 38.2344 54.3438 32.2344
z
" id="Arial-BoldMT-6e"/>
<path d="
M23.3906 0
L23.3906 59.4688
L2.15625 59.4688
L2.15625 71.5781
L59.0312 71.5781
L59.0312 59.4688
L37.8438 59.4688
L37.8438 0
z
" id="Arial-BoldMT-54"/>
<path d="
M7.375 0
L7.375 71.5781
L56.4531 71.5781
L56.4531 59.4688
L21.8281 59.4688
L21.8281 42.5312
L51.7031 42.5312
L51.7031 30.4219
L21.8281 30.4219
L21.8281 0
z
" id="Arial-BoldMT-46"/>
</defs>
<g style="fill:#262626;" transform="translate(185.633114754 70.1672727273)scale(0.15 -0.15)">
<use xlink:href="#Arial-BoldMT-20"/>
<use x="27.783203125" xlink:href="#Arial-BoldMT-54"/>
<use x="81.4921875" xlink:href="#Arial-BoldMT-65"/>
<use x="137.107421875" xlink:href="#Arial-BoldMT-6d"/>
<use x="226.0234375" xlink:href="#Arial-BoldMT-70"/>
<use x="287.107421875" xlink:href="#Arial-BoldMT-65"/>
<use x="342.72265625" xlink:href="#Arial-BoldMT-72"/>
<use x="381.638671875" xlink:href="#Arial-BoldMT-61"/>
<use x="437.25390625" xlink:href="#Arial-BoldMT-74"/>
<use x="470.5546875" xlink:href="#Arial-BoldMT-75"/>
<use x="531.638671875" xlink:href="#Arial-BoldMT-72"/>
<use x="570.5546875" xlink:href="#Arial-BoldMT-65"/>
<use x="626.169921875" xlink:href="#Arial-BoldMT-20"/>
<use x="653.953125" xlink:href="#Arial-BoldMT-69"/>
<use x="681.736328125" xlink:href="#Arial-BoldMT-6e"/>
<use x="742.8203125" xlink:href="#Arial-BoldMT-20"/>
<use x="770.603515625" xlink:href="#Arial-BoldMT-46"/>
<use x="831.6875" xlink:href="#Arial-BoldMT-61"/>
<use x="887.302734375" xlink:href="#Arial-BoldMT-68"/>
<use x="948.38671875" xlink:href="#Arial-BoldMT-72"/>
<use x="987.302734375" xlink:href="#Arial-BoldMT-65"/>
<use x="1042.91796875" xlink:href="#Arial-BoldMT-6e"/>
<use x="1104.00195312" xlink:href="#Arial-BoldMT-68"/>
<use x="1165.0859375" xlink:href="#Arial-BoldMT-65"/>
<use x="1220.70117188" xlink:href="#Arial-BoldMT-69"/>
<use x="1248.484375" xlink:href="#Arial-BoldMT-74"/>
</g>
</g>
<g id="text_33">
<!-- New York City's Weather in 2014 -->
<defs>
<path d="
M6.64062 46.2344
L4.39062 59.625
L4.39062 71.5781
L14.4062 71.5781
L14.4062 59.625
L12.0625 46.2344
z
" id="ArialMT-27"/>
<path d="
M58.7969 25.0938
L68.2656 22.7031
Q65.2812 11.0312 57.5469 4.90625
Q49.8125 -1.21875 38.625 -1.21875
Q27.0469 -1.21875 19.7969 3.48438
Q12.5469 8.20312 8.76562 17.1406
Q4.98438 26.0781 4.98438 36.3281
Q4.98438 47.5156 9.25 55.8281
Q13.5312 64.1562 21.4062 68.4688
Q29.2969 72.7969 38.7656 72.7969
Q49.5156 72.7969 56.8281 67.3281
Q64.1562 61.8594 67.0469 51.9531
L57.7188 49.75
Q55.2188 57.5625 50.4844 61.125
Q45.75 64.7031 38.5781 64.7031
Q30.3281 64.7031 24.7812 60.7344
Q19.2344 56.7812 16.9844 50.1094
Q14.75 43.4531 14.75 36.375
Q14.75 27.25 17.4062 20.4375
Q20.0625 13.625 25.6719 10.25
Q31.2969 6.89062 37.8438 6.89062
Q45.7969 6.89062 51.3125 11.4688
Q56.8438 16.0625 58.7969 25.0938" id="ArialMT-43"/>
<path d="
M27.875 0
L27.875 30.3281
L0.296875 71.5781
L11.8125 71.5781
L25.9219 50
Q29.8281 43.9531 33.2031 37.8906
Q36.4219 43.5 41.0156 50.5312
L54.8906 71.5781
L65.9219 71.5781
L37.3594 30.3281
L37.3594 0
z
" id="ArialMT-59"/>
</defs>
<g style="fill:#262626;" transform="translate(179.55 52.6)scale(0.23 -0.23)">
<use xlink:href="#ArialMT-20"/>
<use x="27.783203125" xlink:href="#ArialMT-4e"/>
<use x="100.0" xlink:href="#ArialMT-65"/>
<use x="155.615234375" xlink:href="#ArialMT-77"/>
<use x="227.83203125" xlink:href="#ArialMT-20"/>
<use x="253.865234375" xlink:href="#ArialMT-59"/>
<use x="311.439453125" xlink:href="#ArialMT-6f"/>
<use x="367.0546875" xlink:href="#ArialMT-72"/>
<use x="400.35546875" xlink:href="#ArialMT-6b"/>
<use x="450.35546875" xlink:href="#ArialMT-20"/>
<use x="478.138671875" xlink:href="#ArialMT-43"/>
<use x="550.35546875" xlink:href="#ArialMT-69"/>
<use x="572.572265625" xlink:href="#ArialMT-74"/>
<use x="600.35546875" xlink:href="#ArialMT-79"/>
<use x="650.35546875" xlink:href="#ArialMT-27"/>
<use x="669.447265625" xlink:href="#ArialMT-73"/>
<use x="719.447265625" xlink:href="#ArialMT-20"/>
<use x="747.23046875" xlink:href="#ArialMT-57"/>
<use x="839.865234375" xlink:href="#ArialMT-65"/>
<use x="895.48046875" xlink:href="#ArialMT-61"/>
<use x="951.095703125" xlink:href="#ArialMT-74"/>
<use x="978.87890625" xlink:href="#ArialMT-68"/>
<use x="1034.49414062" xlink:href="#ArialMT-65"/>
<use x="1090.109375" xlink:href="#ArialMT-72"/>
<use x="1123.41015625" xlink:href="#ArialMT-20"/>
<use x="1151.19335938" xlink:href="#ArialMT-69"/>
<use x="1173.41015625" xlink:href="#ArialMT-6e"/>
<use x="1229.02539062" xlink:href="#ArialMT-20"/>
<use x="1256.80859375" xlink:href="#ArialMT-32"/>
<use x="1312.42382812" xlink:href="#ArialMT-30"/>
<use x="1368.0390625" xlink:href="#ArialMT-31"/>
<use x="1423.65429688" xlink:href="#ArialMT-34"/>
</g>
</g>
<g id="line2d_114">
<path clip-path="url(#p2460cf4024)" d="
M179.55 355.444
L182.592 355.444
L185.633 406.97
L188.675 410.321
L191.716 354.607
L194.758 289.257
L197.799 417.862
L200.841 422.47
L203.882 368.849
L206.924 349.999
L209.966 293.446
L213.007 277.108
L216.049 301.405
L219.09 284.649
L225.173 312.716
L231.256 319.418
L234.298 351.674
L237.34 310.621
L240.381 368.849
L243.423 423.727
L246.464 419.956
L249.506 410.74
L252.547 384.349
L255.589 384.768
L258.63 353.769
L261.672 399.011
L264.714 400.268
L267.755 393.565
L270.797 348.742
L273.838 308.527
L276.88 307.689
L279.921 327.377
L282.963 352.512
L286.005 344.553
L289.046 357.539
L292.088 356.701
L295.129 364.241
L298.171 367.174
L301.212 368.012
L304.254 381.836
L307.295 396.916
L310.337 356.282
L313.379 328.215
L316.42 331.985
L319.462 362.566
L322.503 374.295
L325.545 348.323
L328.586 324.026
L331.628 296.378
L334.669 321.094
L337.711 285.905
L340.753 275.433
L343.794 308.945
L346.836 356.282
L349.877 359.215
L352.919 373.039
L355.96 404.038
L359.002 365.079
L362.043 323.188
L365.085 368.012
L368.127 391.471
L371.168 348.323
L374.21 375.133
L377.251 363.823
L380.293 302.243
L383.334 303.081
L386.376 300.986
L389.417 257.42
L392.459 275.014
L395.501 355.863
L398.542 352.093
L401.584 275.852
L404.625 318.58
L407.667 357.958
L413.75 326.54
L416.791 286.743
L419.833 297.635
L422.875 273.757
L425.916 302.662
L428.958 358.796
L431.999 344.134
L435.041 336.593
L438.082 350.417
L441.124 288.419
L444.165 274.176
L447.207 291.77
L450.249 300.148
L453.29 284.23
L456.332 285.487
L459.373 264.122
L462.415 271.244
L465.456 286.743
L468.498 288.419
L471.54 284.23
L474.581 262.865
L477.623 261.19
L480.664 267.892
L483.706 228.515
L486.747 230.191
L489.789 226.001
L492.83 218.042
L495.872 238.15
L498.914 313.553
L501.955 304.337
L504.997 309.364
L508.038 264.541
L511.08 260.352
L514.121 267.473
L517.163 240.244
L520.204 243.596
L523.246 269.568
L526.288 257.42
L529.329 258.676
L532.371 261.609
L535.412 251.555
L538.454 267.473
L541.495 290.095
L544.537 228.096
L547.578 213.434
L550.62 218.042
L553.662 230.609
L556.703 235.636
L559.745 228.515
L562.786 229.353
L565.828 243.596
L568.869 246.528
L571.911 202.543
L577.994 169.868
L581.036 200.867
L584.077 239.825
L587.119 222.231
L590.16 195.002
L593.202 215.948
L596.243 223.488
L599.285 223.488
L602.326 202.124
L605.368 184.529
L608.41 213.015
L611.451 223.907
L614.493 224.326
L617.534 202.124
L620.576 161.489
L623.617 143.476
L626.659 179.084
L629.7 243.596
L632.742 211.759
L635.784 208.407
L638.825 203.799
L641.867 184.529
L644.908 159.395
L647.95 185.367
L650.991 195.84
L654.033 192.489
L657.075 176.989
L660.116 156.463
L663.158 191.651
L666.199 196.259
L669.241 189.556
L672.282 210.083
L675.324 201.286
L678.365 184.948
L681.407 193.327
L684.449 174.895
L687.49 155.206
L690.532 127.977
L693.573 163.165
L696.615 169.449
L699.656 183.273
L702.698 182.854
L705.739 169.868
L708.781 168.611
L711.823 160.652
L714.864 151.855
L717.906 164.422
L720.947 159.814
L723.989 162.746
L727.03 158.976
L730.072 145.571
L733.113 134.26
L736.155 145.99
L739.197 178.665
L742.238 183.273
L745.28 148.922
L748.321 135.936
L751.363 125.463
L754.404 143.476
L757.446 156.881
L760.487 154.368
L763.529 153.949
L766.571 161.071
L769.612 153.111
L772.654 156.881
L775.695 167.354
L778.737 162.327
L781.778 164.003
L784.82 170.287
L787.861 178.246
L790.903 166.516
L793.945 149.341
L796.986 140.544
L800.028 154.787
L803.069 164.003
L806.111 159.395
L809.152 151.855
L812.194 148.922
L815.235 180.759
L818.277 172.8
L821.319 161.908
L824.36 155.206
L827.402 178.665
L830.443 183.692
L833.485 160.652
L836.526 142.639
L839.568 154.368
L842.61 161.489
L845.651 166.516
L848.693 151.855
L851.734 145.99
L854.776 142.639
L857.817 160.233
L860.859 169.03
L863.9 174.895
L866.942 184.948
L869.984 176.151
L873.025 163.584
L876.067 172.381
L879.108 182.854
L882.15 160.652
L885.191 162.327
L888.233 178.246
L891.274 182.854
L894.316 174.895
L897.358 160.652
L900.399 145.571
L903.441 145.571
L906.482 156.044
L909.524 182.016
L912.565 176.151
L915.607 152.273
L918.648 140.125
L921.69 123.369
L924.732 140.544
L927.773 145.571
L930.815 148.503
L933.856 138.031
L936.898 170.287
L939.939 179.084
L942.981 191.232
L946.022 189.556
L949.064 167.354
L952.106 180.759
L955.147 203.799
L958.189 216.367
L961.23 210.083
L964.272 208.826
L967.313 202.543
L970.355 193.327
L973.396 216.367
L976.438 204.218
L979.48 181.597
L982.521 188.3
L985.563 221.393
L988.604 204.218
L991.646 214.272
L994.687 198.353
L997.729 172.381
L1000.77 169.03
L1003.81 171.962
L1006.85 187.881
L1009.9 211.34
L1012.94 211.34
L1015.98 215.11
L1019.02 204.218
L1022.06 249.46
L1025.1 228.515
L1028.14 195.421
L1031.19 193.327
L1034.23 207.569
L1037.27 223.907
L1040.31 241.082
L1043.35 245.69
L1046.39 230.191
L1049.44 193.327
L1052.48 175.313
L1055.52 184.111
L1058.56 200.867
L1061.6 207.988
L1064.64 248.204
L1067.68 267.892
L1070.73 225.164
L1073.77 237.731
L1076.81 257.839
L1079.85 247.366
L1082.89 230.609
L1085.93 226.839
L1088.98 237.731
L1092.02 232.704
L1095.06 207.569
L1098.1 250.298
L1101.14 267.473
L1104.18 275.014
L1107.23 289.676
L1110.27 275.014
L1113.31 224.326
L1116.35 219.299
L1119.39 255.744
L1122.43 268.73
L1125.47 298.892
L1128.52 267.473
L1131.56 259.514
L1134.6 246.528
L1137.64 230.609
L1140.68 285.068
L1143.72 311.878
L1146.77 318.161
L1149.81 311.459
L1152.85 293.446
L1155.89 276.689
L1158.93 364.66
L1161.97 316.905
L1165.01 337.85
L1168.06 332.823
L1171.1 280.041
L1174.14 235.636
L1177.18 224.745
L1180.22 292.189
L1183.26 323.607
L1186.31 332.404
L1189.35 344.972
L1192.39 281.716
L1195.43 244.433
L1198.47 310.202
L1201.51 294.284
L1204.55 300.567
L1207.6 315.648
L1210.64 288.419
L1213.68 311.459
L1216.72 351.674
L1219.76 314.391
L1222.8 314.81
L1225.85 333.242
L1228.89 331.985
L1231.93 320.675
L1234.97 307.27
L1238.01 302.243
L1241.05 304.756
L1241.05 304.756" style="fill:none;stroke:#000000;stroke-linecap:round;stroke-width:1.75;"/>
</g>
</g>
</g>
<defs>
<clipPath id="p2460cf4024">
<rect height="460.8" width="1113.21" x="179.55" y="57.6"/>
</clipPath>
</defs>
</svg>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment